├── .gitignore ├── LICENSE ├── README.md ├── examples ├── get_followed.py ├── get_followers.py ├── get_user_posts.py ├── get_user_posts_with_comments.py ├── like_user_posts.py └── unlike_user_posts.py ├── install.sh ├── misc └── pygram.svg ├── pygram ├── __init__.py ├── errors.py ├── helper.py └── pygram.py ├── requirements.txt ├── setup.py └── upload.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labteral/pygram/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labteral/pygram/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labteral/pygram/HEAD/README.md -------------------------------------------------------------------------------- /examples/get_followed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labteral/pygram/HEAD/examples/get_followed.py -------------------------------------------------------------------------------- /examples/get_followers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labteral/pygram/HEAD/examples/get_followers.py -------------------------------------------------------------------------------- /examples/get_user_posts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labteral/pygram/HEAD/examples/get_user_posts.py -------------------------------------------------------------------------------- /examples/get_user_posts_with_comments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labteral/pygram/HEAD/examples/get_user_posts_with_comments.py -------------------------------------------------------------------------------- /examples/like_user_posts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labteral/pygram/HEAD/examples/like_user_posts.py -------------------------------------------------------------------------------- /examples/unlike_user_posts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labteral/pygram/HEAD/examples/unlike_user_posts.py -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | rm dist/* 3 | python3 setup.py install 4 | -------------------------------------------------------------------------------- /misc/pygram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labteral/pygram/HEAD/misc/pygram.svg -------------------------------------------------------------------------------- /pygram/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labteral/pygram/HEAD/pygram/__init__.py -------------------------------------------------------------------------------- /pygram/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labteral/pygram/HEAD/pygram/errors.py -------------------------------------------------------------------------------- /pygram/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labteral/pygram/HEAD/pygram/helper.py -------------------------------------------------------------------------------- /pygram/pygram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labteral/pygram/HEAD/pygram/pygram.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labteral/pygram/HEAD/setup.py -------------------------------------------------------------------------------- /upload.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | python3 setup.py bdist_wheel 3 | twine upload dist/*.whl 4 | --------------------------------------------------------------------------------