Metadata-Version: 2.1
Name: twitter-cleanup
Version: 0.0.7
Summary: Clean-up inactive accounts and bots from your Twitter
Home-page: https://github.com/cuducos/twitter-cleanup
Author: Eduardo Cuducos
License: GPLv3
Description: # Twitter Clean-up [![GitHub Actions: Black workflow](https://github.com/cuducos/twitter-cleanup/workflows/Black/badge.svg)]() [![GitHub Actions: Tests workflow](https://github.com/cuducos/twitter-cleanup/workflows/Tests/badge.svg)]()
        
        > [🇧🇷 Versão em português do Brasil](docs/README.pt-BR.md)
        
        Tiny script to clean-up your Twitter account:
        
        * Removing users that have not been tweeting for a while
        * Soft-blocking bots (blocks and immediately unblocks the account, so it stops following you)
        
        ## Requirements
        
        
        * Python 3.6+
        * Set environment variables with your [Twitter API keys](https://apps.twitter.com/) and with [Botometer API key](https://rapidapi.com/OSoMe/api/botometer):
            * `TWITTER_CONSUMER_KEY`
            * `TWITTER_CONSUMER_SECRET`
            * `TWITTER_ACCESS_TOKEN_KEY`
            * `TWITTER_ACCESS_TOKEN_SECRET`
            * `BOTOMETER_MASHAPE_KEY`
        
        ## Installing
        
        
        Install the package with:
        
        ```console
        $ pip install twitter-cleanup
        ```
        
        Usage
        -----
        
        Run the CLI with `twitter-cleanup --help` and follow the on screen instructions.
        
        For example, unfollow everyone that hasn't tweeted in the last 30 days with:
        
        ```console
        $ twitter-cleanup inactive 30
        ```
        
        Or soft-block every bot with:
        
        ```
        $ twitter-cleanup bots
        ```
        
        Contributing
        ------------
        
        Please, write and run tests locally, and format your code with [Black](https://github.com/ambv/black>):
        
        ```console
        $ python setup.py test
        $ black .
        ```
Keywords: twitter,bots,social network
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: End Users/Desktop
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Utilities
Description-Content-Type: text/markdown
