-
Notifications
You must be signed in to change notification settings - Fork 705
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
15 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,25 @@ | ||
from setuptools import setup, find_packages | ||
|
||
long_description = ''' | ||
Fast and effective Instagram Private API wrapper (public+private requests and challenge resolver) | ||
Fast and effective Instagram Private API wrapper (public+private requests and challenge resolver). | ||
Use the most recent version of the API from Instagram. | ||
### Features | ||
1. Performs Public API (web, anonymous) or Private API (mobile app, authorized) requests depending on the situation (to avoid Instagram limits) | ||
2. Challenge Resolver have Email (as well as recipes for automating receive a code from email) and SMS handlers | ||
3. Support upload a Photo, Video, IGTV, Albums and Stories | ||
4. Support work with User, Media, Insights, Collections, Location (Place), Hashtag and Direct objects | ||
5. Like, Follow, Edit account (Bio) and much more else | ||
6. Insights by account, posts and stories | ||
7. Build stories with custom background, font animation, swipe up link and mention users | ||
8. In the next release, account registration and captcha passing will appear | ||
''' | ||
|
||
setup( | ||
name='instagrapi', | ||
version='1.3.1', | ||
version='1.3.2', | ||
author='Mikhail Andreev', | ||
author_email='[email protected]', | ||
license='MIT', | ||
|