Metadata-Version: 2.1
Name: better-twitter
Version: 0.0.11
Summary: A python package to block fake and toxic twitter accounts in an automated and easy way.
Home-page: https://github.com/saeedesmaili/better-twitter
Author: Saeed Esmaili
Author-email: me@saeedesmaili.com
License: MIT license
Keywords: twitter
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: AUTHORS.rst
Requires-Dist: pandas
Requires-Dist: python-twitter
Requires-Dist: pendulum

## Better-Twitter
A simple python tool that makes your twitter timeline much better.

### Installation
```bash
pip3 install better-twitter
```

### Twitter API
To be able to use this package, you need to [register a Twitter app](https://github.com/saeedesmaili/better-twitter/blob/main/docs/twitter_app.md) and add its credentials when you use this package for the first time. This package will connect to your Twitter account using that app's credentials on behalf of you.

### Get started
#### Using in command line
To block multiple users of a file:
```bash
better-twitter --block-file test_file.csv
```
Note: The csv file should have two columns named `user_id` and `screen_name`.

To update twitter API credentials:
```bash
better-twitter --update-api
```

