Metadata-Version: 2.1
Name: tweetpy-janmarkuslanger
Version: 0.0.2
Summary: Create your own twitter bot without the api
Home-page: https://github.com/janmarkuslanger/tweetpy
Author: Jan-Markus Langer
Author-email: janmarkuslanger10121994@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: certifi (==2019.9.11)
Requires-Dist: chardet (==3.0.4)
Requires-Dist: colorama (==0.4.1)
Requires-Dist: configparser (==4.0.2)
Requires-Dist: crayons (==0.3.0)
Requires-Dist: entrypoints (==0.3)
Requires-Dist: flake8 (==3.7.9)
Requires-Dist: idna (==2.8)
Requires-Dist: mccabe (==0.6.1)
Requires-Dist: pycodestyle (==2.5.0)
Requires-Dist: pyflakes (==2.1.1)
Requires-Dist: requests (==2.22.0)
Requires-Dist: selenium (==3.141.0)
Requires-Dist: urllib3 (==1.25.7)
Requires-Dist: webdriver-manager (==2.3.0)

# tweetpy

Create your own bot without the api.

> Use at your own risk!

## Install

`pip install tweetpy-janmarkuslanger`

## Example

``` python
import time
from tweetpy import Twitter

hashtags = ('development', 'software', 'selenium', 'python')

while True:
    with Twitter(username='myusername', password='mypassword') as bot:
        bot.login()

        for hashtag in hashtags:
            bot.retweet_by_tag(hashtag, max=10) # retweets the newest hashtags

        time.sleep(3600) # sleep for an hour

```


