twint
An advanced Twitter scraping & OSINT tool written in Python that doesn't use Twitter's API, allowing you to scrape a user's followers, following, Tweets and more while evading most API limitations.
File Explorer
Download Latest Version (.zip)- ISSUE_TEMPLATE.md
- FUNDING.yml
- ISSUE_TEMPLATE.md
- dashboard.json
- index-follow.json
- index-tweets.json
- index-user.json
- README.md
- visualizations.json
- __init__.py
- db.py
- elasticsearch.py
- panda.py
- write.py
- write_meta.py
- __init__.py
- __version__.py
- cli.py
- config.py
- datelock.py
- feed.py
- format.py
- get.py
- output.py
- run.py
- token.py
- tweet.py
- url.py
- user.py
- verbose.py
- .gitignore
- .travis.yml
- automate.py
- Dockerfile
- LICENSE
- MANIFEST.in
- README.md
- requirements.txt
- setup.py
- test.py
๐ Installation Guide
git clone https://github.com/twintproject/twint
Downloads the entire project code from GitHub to your computer.
cd twint
Moves into the project folder you just downloaded.
2. Official Install Script
Easy Recommended- Python 3 Python is required to use pip.
pip3 install . -r requirements.txt
Installs the package published on PyPI directly โ no need to clone the source.
pip3 install twint
Installs the package published on PyPI directly โ no need to clone the source.
pip3 install --user --upgrade git+https://github.com/twintproject/twint.git@origin/master#egg=twint
Installs the package published on PyPI directly โ no need to clone the source.
Pulled directly from this repo's README.
3. Docker
Easy- Git Needed to download the project code from GitHub.
- Docker Desktop Needed to build and run containers. Install it and keep it running in the background.
docker build -t twint .
Builds a runnable image based on the Dockerfile.
docker run -p 8080:80 twint
Runs the built image as an actual container.
4. Python
Easypip3 install . -r requirements.txt
Installs the package published on PyPI directly โ no need to clone the source.
pip3 install twint
Installs the package published on PyPI directly โ no need to clone the source.
pip3 install --user --upgrade git+https://github.com/twintproject/twint.git@origin/master#egg=twint
Installs the package published on PyPI directly โ no need to clone the source.
Pulled directly from this repo's README.
