Metadata-Version: 2.1
Name: pybyte
Version: 0.1.6
Summary: Byte API Wrapper for Python
Home-page: https://github.com/ms7m/py-byte
Author: Mustafa Mohamed
Author-email: mustafa@ms7m.me
License: MIT
Description: 
        ![pybyte-logo](images/logo.svg)
        
        *** 
        
        # Byte API Wrapper for Python
        Python 3.6+ Required.
        ***
        **Attention**: This project was built in a weekend (mostly in the weekend that it was launched) as such this is **not production level** software. 
        
        Byte **does not** have an official web API for developers, and most likely this will violate the ToS. Endpoints were found from the mobile app. As such, this wrapper can break at anytime. Do not rely on this wrapper.
        ***
        
        
        # Installation
        - PyPi (Recommended)
            ```
            pip install pybyte
            ```
        - Git repo
            ```
            git clone https://github.com/ms7m/py-byte
            cd py-byte
            python3 setup.py install
            ```
        # Usage
        
        ```python
        >>> import pybyte
        >>> byte = pybyte.Byte(TOKEN)
        >>> byte.me().username
        'cmmvo22123'
        >>>
        
        >>> # View your timeline
        >>> byte.me().timeline_feed()
        >>> # iterate over your timeline feed
        >>> for post in byte.me().timeline_feed().feed:
        >>>     print(post.caption)
        >>>     print(post.author)
        >>>     post.comment("Hey!")
        
        
        
        >>> # Set your username/display name/biography
        ...
        >>> byte.me().username = "BotBottyFace220"
        >>> byte.me().username
        'BotBottyFace220'
        
        >>> # Get Posts
        >>> post = byte.get_post("4ZPUKLE5OZB7JJGIBLVMIYQLBU")
        >>> post.caption
        '@peaks'
        >>> post.mentions
        [mention1]
        
        # Rebyte/Like posts
        >>> post.rebyte()
        >>> post.like()
        
        # Comment Posts
        >>> post.comment("That's really funny!")
        
        
        # Upload Posts
        >>> byte.upload("sample.mp4", caption="Megan is too funny!")
        
        ```
        
        
        
        ### Example Script
        
        ```python
        # Go through the global feed, comment and follow the author if they have < 10 followers
        
        global_feed = byte.me().global_feed()
        
        for post in global_feed.feed:
            if post.author.followers['followerCount'] > 10:
              	post.comment("Hey man, thanks for making me laugh!")
                post.like()
            else:
              	continue
                
         
        ```
        
        ### Example Scripts
        
        ```python
        # Go through your posts and delete any post older than 3 days
        
        # coming soon.
        ```
        
        # Tests
        Coming soon
        
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Python: >=3.6.0
Description-Content-Type: text/markdown
