Metadata-Version: 2.1
Name: PyTweet
Version: 1.0.0
Summary: A Python wrapper for the Twitter API using Twitter API version 1.1 and 2!
Home-page: https://github.com/TheFarGG/PyTweet/
Author: ['TheGenocides', 'TheFarGG']
License: MIT
Description: # PyTweet
        
        PyTweet is an api wrapper made for twitter using twitter's api version 2! 
        
        ## Installation
        
        ### Windows
        ```bash
        py3 -m pip install PyTweet
        ```
        ### Linux
        ```bash
        python -m pip install PyTweet
        ```
        
        ## Usage
        
        ```py
        import twitter
        
        client=twitter.Client("Your Bearer Token Here!!!", consumer_key="Your consumer_key here", consumer_key_secret="Your consumer_key_secret here", access_token="Your access_token here", access_token_secret="Your access_token_secret here") #if you dont have one make an application in https://apps.twitter.com
        
        user=client.get_user_by_username("TheGenocides")
        print(user.name, user.username, user.id)
        #Return The user's name, username, and id
        ```
        
        # Contribute
        You can Contribute or open an issue regarding this wrapper in [github](https://github.com/TheFarGG/PyTweet)! 
        
        # Licence
        [MIT](https://opensource.org/licenses/MIT)
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Requires-Python: >=3.8.0
Description-Content-Type: text/markdown
