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
Description: # 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
        
        ```
        
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
