<h1 align="center">InstaGPy</h1>
<p align="center">
<a href="https://choosealicense.com/licenses/mit/"> <img src="https://img.shields.io/badge/License-MIT-green.svg"></a>
<a href="https://www.python.org/"><img src="https://img.shields.io/pypi/pyversions/instagpy"></a>
<a href="https://pypi.org/project/instagpy/"> <img src="https://img.shields.io/pypi/v/instagpy"></a>
<a href="https://github.com/iSarabjitDhiman/InstaGPy/commits"> <img src="https://img.shields.io/github/last-commit/iSarabjitDhiman/InstaGPy"></a>
<a href="https://twitter.com/isarabjitdhiman"> <img src="https://img.shields.io/twitter/follow/iSarabjitDhiman?style=social"></a>
## Overview
InstaGPy is an Instagram Unofficial API to extract data from Instargam Profiles. Scrape data from user's profile like username, userid, bio, email, phone, followers/followings list, profile media, account_type, etc.
> _Note_ : `Use it on Your Own Risk. Scraping with Residential proxies is advisable while extracting data at scale/in bulk. If possible, use multiple accounts to fetch data from Instagram.` **_DON'T USE YOUR PERSONAL ACCOUNT FOR SCRAPING PURPOSES._**
## Installation
Install InstaGPy with pip
```python
pip install instagpy
```
## Usage/Examples
```python
python quickstart.py
```
OR
```python
from instagpy import InstaGPy
InstaGPy(use_mutiple_account=False, session_ids=None, min_requests=None, max_requests=None)
```
> ### Example - Get Basic User Details of a User
```python
from instagpy import InstaGPy
insta = InstaGPy()
insta.get_user_basic_details('champagnepapi',pretty_print=True)
```
## Documentation
Check out step by step guide.
[Documentation](instagpy/docs/docs.md)
## Configuration
> ### Example - Config Usage
```python
from instagpy import config
config.PROXY = {"http":"127.0.0.1","https":"127.0.0.1"}
config.TIMEOUT = 10
```
Check out configuration docs for the available settings.
[Configurations](instagpy/docs/config.md)
## Features
- Extracts User's Followers
- Extracts User's Followings
- Extracts User's Profile Details along with Contact Details (Phone, WhatsApp, Email & Address)
- Extracts Instagram Profile Media
## Authors
- [@iSarabjitDhiman](https://www.github.com/iSarabjitDhiman)
## Feedback
If you have any feedback, please reach out to us at hello@sarabjitdhiman.com or contact me on Social Media @iSarabjitDhiman
## Support
For support, email hello@sarabjitdhiman.com
Raw data
{
"_id": null,
"home_page": "https://github.com/iSarabjitDhiman/InstaGPy",
"name": "instagpy",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3",
"maintainer_email": null,
"keywords": "instagpy, instagram scraper, instagram email scraper, insta data extraction, instagram api, instagram python",
"author": "Sarabjit Dhiman",
"author_email": "hello@sarabjitdhiman.com",
"download_url": "https://files.pythonhosted.org/packages/df/01/bb5ee7f6d58da3bf36e13ebe2a219d401009c8158cf5d885afee0fea5aea/instagpy-0.1.15.tar.gz",
"platform": null,
"description": "<h1 align=\"center\">InstaGPy</h1>\r\n\r\n<p align=\"center\">\r\n<a href=\"https://choosealicense.com/licenses/mit/\"> <img src=\"https://img.shields.io/badge/License-MIT-green.svg\"></a>\r\n<a href=\"https://www.python.org/\"><img src=\"https://img.shields.io/pypi/pyversions/instagpy\"></a>\r\n<a href=\"https://pypi.org/project/instagpy/\"> <img src=\"https://img.shields.io/pypi/v/instagpy\"></a>\r\n<a href=\"https://github.com/iSarabjitDhiman/InstaGPy/commits\"> <img src=\"https://img.shields.io/github/last-commit/iSarabjitDhiman/InstaGPy\"></a>\r\n<a href=\"https://twitter.com/isarabjitdhiman\"> <img src=\"https://img.shields.io/twitter/follow/iSarabjitDhiman?style=social\"></a>\r\n\r\n## Overview\r\n\r\nInstaGPy is an Instagram Unofficial API to extract data from Instargam Profiles. Scrape data from user's profile like username, userid, bio, email, phone, followers/followings list, profile media, account_type, etc.\r\n\r\n> _Note_ : `Use it on Your Own Risk. Scraping with Residential proxies is advisable while extracting data at scale/in bulk. If possible, use multiple accounts to fetch data from Instagram.` **_DON'T USE YOUR PERSONAL ACCOUNT FOR SCRAPING PURPOSES._**\r\n\r\n## Installation\r\n\r\nInstall InstaGPy with pip\r\n\r\n```python\r\n pip install instagpy\r\n```\r\n\r\n## Usage/Examples\r\n\r\n```python\r\npython quickstart.py\r\n```\r\n\r\nOR\r\n\r\n```python\r\nfrom instagpy import InstaGPy\r\n\r\nInstaGPy(use_mutiple_account=False, session_ids=None, min_requests=None, max_requests=None)\r\n```\r\n\r\n> ### Example - Get Basic User Details of a User\r\n\r\n```python\r\nfrom instagpy import InstaGPy\r\n\r\ninsta = InstaGPy()\r\n\r\ninsta.get_user_basic_details('champagnepapi',pretty_print=True)\r\n\r\n```\r\n\r\n## Documentation\r\n\r\nCheck out step by step guide.\r\n\r\n[Documentation](instagpy/docs/docs.md)\r\n\r\n## Configuration\r\n\r\n> ### Example - Config Usage\r\n\r\n```python\r\nfrom instagpy import config\r\n\r\nconfig.PROXY = {\"http\":\"127.0.0.1\",\"https\":\"127.0.0.1\"}\r\nconfig.TIMEOUT = 10\r\n\r\n```\r\n\r\nCheck out configuration docs for the available settings.\r\n\r\n[Configurations](instagpy/docs/config.md)\r\n\r\n## Features\r\n\r\n- Extracts User's Followers\r\n- Extracts User's Followings\r\n- Extracts User's Profile Details along with Contact Details (Phone, WhatsApp, Email & Address)\r\n- Extracts Instagram Profile Media\r\n\r\n## Authors\r\n\r\n- [@iSarabjitDhiman](https://www.github.com/iSarabjitDhiman)\r\n\r\n## Feedback\r\n\r\nIf you have any feedback, please reach out to us at hello@sarabjitdhiman.com or contact me on Social Media @iSarabjitDhiman\r\n\r\n## Support\r\n\r\nFor support, email hello@sarabjitdhiman.com\r\n",
"bugtrack_url": null,
"license": "MIT",
"summary": "InstaGPy is an Instagram Unofficial API to extract data from Instargam Profiles. Scrape data from user's profile like username, userid, bio, email, phone, followers/followings list, profile media, account_type, etc.",
"version": "0.1.15",
"project_urls": {
"Homepage": "https://github.com/iSarabjitDhiman/InstaGPy"
},
"split_keywords": [
"instagpy",
" instagram scraper",
" instagram email scraper",
" insta data extraction",
" instagram api",
" instagram python"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "df9c27e7868def23a2f82dfa3f6d058a9258c8dd0cafc1001cf0578b17e9aac0",
"md5": "37540044950d244080214bc8cacbc2d8",
"sha256": "e05ecfe79b8590ba97bd75a7b6c3d009a3300b2822e738a5489c29871e16b8f0"
},
"downloads": -1,
"filename": "instagpy-0.1.15-py3-none-any.whl",
"has_sig": false,
"md5_digest": "37540044950d244080214bc8cacbc2d8",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3",
"size": 14402,
"upload_time": "2024-05-24T14:51:19",
"upload_time_iso_8601": "2024-05-24T14:51:19.532946Z",
"url": "https://files.pythonhosted.org/packages/df/9c/27e7868def23a2f82dfa3f6d058a9258c8dd0cafc1001cf0578b17e9aac0/instagpy-0.1.15-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "df01bb5ee7f6d58da3bf36e13ebe2a219d401009c8158cf5d885afee0fea5aea",
"md5": "670371972f4c64dcfe31c6ec6e8e5b56",
"sha256": "3b4c106a7a389f5b1306144f3f2d6e0d537342b5faae38f0535adace5ac5c1f2"
},
"downloads": -1,
"filename": "instagpy-0.1.15.tar.gz",
"has_sig": false,
"md5_digest": "670371972f4c64dcfe31c6ec6e8e5b56",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3",
"size": 14117,
"upload_time": "2024-05-24T14:51:22",
"upload_time_iso_8601": "2024-05-24T14:51:22.259157Z",
"url": "https://files.pythonhosted.org/packages/df/01/bb5ee7f6d58da3bf36e13ebe2a219d401009c8158cf5d885afee0fea5aea/instagpy-0.1.15.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-05-24 14:51:22",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "iSarabjitDhiman",
"github_project": "InstaGPy",
"travis_ci": false,
"coveralls": false,
"github_actions": false,
"requirements": [
{
"name": "beautifulsoup4",
"specs": []
},
{
"name": "bs4",
"specs": []
},
{
"name": "certifi",
"specs": []
},
{
"name": "emoji",
"specs": []
},
{
"name": "lxml",
"specs": []
},
{
"name": "PySocks",
"specs": []
},
{
"name": "requests",
"specs": []
},
{
"name": "urllib3",
"specs": []
}
],
"lcname": "instagpy"
}