{"id":22224214,"url":"https://github.com/iSarabjitDhiman/TweeterPy","last_synced_at":"2025-07-27T17:32:16.179Z","repository":{"id":176802824,"uuid":"656266745","full_name":"iSarabjitDhiman/TweeterPy","owner":"iSarabjitDhiman","description":"TweeterPy is a python library to extract data from Twitter. TweeterPy API lets you scrape data from a user's profile like username, userid, bio, followers/followings list, profile media, tweets, etc.","archived":false,"fork":false,"pushed_at":"2024-11-26T14:31:41.000Z","size":184,"stargazers_count":170,"open_issues_count":9,"forks_count":30,"subscribers_count":7,"default_branch":"master","last_synced_at":"2024-12-02T08:09:51.613Z","etag":null,"topics":["api-wrapper","tweeter","tweeter-api","tweets-extraction","twitter-api","twitter-automation","twitter-bot","twitter-client","twitter-python","twitter-scraper","twitter-scraping"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/iSarabjitDhiman.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":["iSarabjitDhiman"]}},"created_at":"2023-06-20T15:36:08.000Z","updated_at":"2024-12-02T08:04:29.000Z","dependencies_parsed_at":"2024-01-06T16:25:39.339Z","dependency_job_id":"fb65b239-4853-4e9e-9b03-653502b44a13","html_url":"https://github.com/iSarabjitDhiman/TweeterPy","commit_stats":null,"previous_names":["isarabjitdhiman/tweeterpy"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iSarabjitDhiman%2FTweeterPy","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iSarabjitDhiman%2FTweeterPy/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iSarabjitDhiman%2FTweeterPy/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iSarabjitDhiman%2FTweeterPy/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/iSarabjitDhiman","download_url":"https://codeload.github.com/iSarabjitDhiman/TweeterPy/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":227714417,"owners_count":17808712,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["api-wrapper","tweeter","tweeter-api","tweets-extraction","twitter-api","twitter-automation","twitter-bot","twitter-client","twitter-python","twitter-scraper","twitter-scraping"],"created_at":"2024-12-03T00:02:44.894Z","updated_at":"2024-12-03T00:05:13.633Z","avatar_url":"https://github.com/iSarabjitDhiman.png","language":"Python","funding_links":["https://github.com/sponsors/iSarabjitDhiman"],"categories":["package"],"sub_categories":[],"readme":"\u003ch1 align=\"center\"\u003eTweeterPy\u003c/h1\u003e\n\n\u003cp align=\"center\"\u003e\n\u003ca href=\"https://choosealicense.com/licenses/mit/\"\u003e \u003cimg src=\"https://img.shields.io/badge/License-MIT-green.svg\"\u003e\u003c/a\u003e\n\u003ca href=\"https://www.python.org/\"\u003e\u003cimg src=\"https://img.shields.io/pypi/pyversions/tweeterpy\"\u003e\u003c/a\u003e\n\u003ca href=\"https://pypi.org/project/tweeterpy/\"\u003e \u003cimg src=\"https://img.shields.io/pypi/v/tweeterpy\"\u003e\u003c/a\u003e\n\u003ca href=\"https://github.com/iSarabjitDhiman/TweeterPy/commits\"\u003e \u003cimg src=\"https://img.shields.io/github/last-commit/iSarabjitDhiman/TweeterPy\"\u003e\u003c/a\u003e\n\u003ca href=\"https://discord.gg/pHY6CU5Ke4\"\u003e \u003cimg alt=\"Discord\" src=\"https://img.shields.io/discord/1149281691479851018?style=flat\u0026logo=discord\u0026logoColor=white\"\u003e\u003c/a\u003e\n\u003ca href=\"https://twitter.com/isarabjitdhiman\"\u003e \u003cimg src=\"https://img.shields.io/twitter/follow/iSarabjitDhiman?style=social\"\u003e\u003c/a\u003e\n\n## Overview\n\nTweeterPy is a python library to extract data from Twitter. TweeterPy API lets you scrape data from a user's profile like username, userid, bio, followers/followings list, profile media, tweets, etc.\n\n\u003e _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 Twitter.` **_DON'T USE YOUR PERSONAL ACCOUNT FOR SCRAPING PURPOSES._**\n\n## Installation\n\nInstall TweeterPy with pip\n\n```python\n  pip install tweeterpy\n```\n\n## Usage/Examples\n\n```python\npython quickstart.py\n```\n\nOR\n\n```python\nfrom twitter import TweeterPy\n# proxy = {'http': 'proxy_here', 'https': 'proxy_here'}\nproxy = None\nTweeterPy(proxies=proxy, log_level=\"INFO\")\n```\n\n\u003e ### Example - Get User ID of a User.\n\n```python\nfrom tweeterpy import TweeterPy\n\ntwitter = TweeterPy()\n\nprint(twitter.get_user_id('elonmusk'))\n\n```\n\n## Documentation\n\nCheck out step by step guide.\n\n[Documentation](docs/docs.md)\n\n## Features\n\n- Extracts Tweets\n- Extracts User's Followers\n- Extracts User's Followings\n- Extracts User's Profile Details\n- Extracts Twitter Profile Media and much more.\n\n## Authors\n\n- [@iSarabjitDhiman](https://www.github.com/iSarabjitDhiman)\n\n## Feedback\n\nIf you have any feedback, please reach out to us at hello@sarabjitdhiman.com or contact me on Social Media @iSarabjitDhiman\n\n## Support\n\nFor support, email hello@sarabjitdhiman.com\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FiSarabjitDhiman%2FTweeterPy","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FiSarabjitDhiman%2FTweeterPy","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FiSarabjitDhiman%2FTweeterPy/lists"}