Metadata-Version: 2.1
Name: tweety
Version: 0.0.2
Summary: Python package which to access the Twitter database without API
Home-page: https://github.com/santhoshse7en/tweety
Author: M Santhosh Kumar
Author-email: santhoshse7en@gmail.com
License: UNKNOWN
Description: # tweety
        
        Twitter's API is annoying to work with, and has lots of limitations. tweety scrape all the tweets using python and selenium - No API rate limits. No restrictions. Extremely fast.
        
        ## Average Tweets
        
        It appears you can ask for up to 25 pages around tweets reliably (~1200 tweets)
        
        ## Dependencies
        
        * selenium
        * vaderSentiment
        * textblob
        * chromedriver-binary
        
        ## Dependencies Installation
        
        Use the package manager [pip](https://pip.pypa.io/en/stable/) to install following
        ```bash
        pip install -r requirements.txt
        ```
        
        ## Usage
        
        Download it by clicking the green download button here on Github. You only need to parse argument specific Twitter keyword.
        ```python
        from twitter.tweety import tweets
        tweety = tweets('Super Deluxe')
        ```
        
        **Directory of tweety**
        
        ![dirt](https://user-images.githubusercontent.com/47944792/58116804-d3727b80-7c1a-11e9-9e2e-a675d98b8682.PNG)
        
        ## Output
        
        ![capture](https://user-images.githubusercontent.com/47944792/53886316-c3002b00-4045-11e9-8a56-10ef06275951.PNG)
        
        ## Contributing
        
        Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
        
        Please make sure to update tests as appropriate.
        
        ## License
        [MIT](https://choosealicense.com/licenses/mit/)
        
Keywords: twitter,tweets,without-api,twitter_scraper,selenium,vaderSentiment,bs4,textblob,twitter_sentiment,sentiment_analysis,twitter_analysis
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: End Users/Desktop
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Communications :: Email
Classifier: Topic :: Office/Business
Classifier: Topic :: Software Development :: Bug Tracking
Description-Content-Type: text/markdown
