Metadata-Version: 2.1
Name: Bubblez.py
Version: 0.0.2.3
Summary: Api Module for https://bubblez.app/
Home-page: UNKNOWN
Author: Mees Meijer (Discord: @MeeSOS#1721)
License: UNKNOWN
Description: 
        # Bubblez.py - Api Module for [Bubblez.app](https://bubblez.app)
        A Python Module for the [Bubblez.app](https://bubblez.app) api
        - [Bubblez.app](https://bubblez.app/library#bubblez.py) has approved Bubblez.py
        
        ## Version's 
        - Python: [Github Bubblez.py](https://github.com/MeesMeijer/bubblez.py)
        - PyPi: [Bubblez.py](https://pypi.org/project/Bubblez.py/0.0.2.1/)
        - Nodejs: [Bubblez.js](https://github.com/ProjectBubblez/bubblez.js)
        - Nodejs Wiki/Documentation: [Wiki/Documentation](https://github.com/ProjectBubblez/bubblez.js/blob/master/DOCUMENTATION.md)
         ---- 
        - Website: [Bubblez.app](https://bubblez.app)
        
        ## Setup
        
        Pip install:
        ```bash
           pip install bubblez.py
        ```
         --- 
        Copy: 
        
        Required modules: requests
        ```bash 
           $ python3 -m pip install requests 
        ```
        
        
        ## Examples
        Check the [examples.py](https://github.com/MeesMeijer/bubblez.py/blob/main/examples.py) file above!
        
        
        # Docs
        ### Basic Client Setup:
        If u do not have a token:
           Request your token at: https://bubblez.app/applications/api-token'
        
        ```python3
           from Bubblez import Bubblez 
           
           client = Bubblez("Your Username", "your token")  
        ```
        
        <br>
        
        ## User: 
        #### checkUser()
        ```python3
           client.user.checkUser()
        ```
        
        
        #### pingUser()
        ```python3
           client.user.pingUser()
        ```
        
        ### getUser()
        ```python3
           client.user.getUser()
        ```
        
        <br>
        
        ## Posts:
        #### sendPost()
        ```python3
           client.post.sendPost(
                message="The best Website is:...",
                from_="This Beauti Python Program",
                locked=True or False,
                nsfw=True or False,
            )
        ```
        
        #### getPost()
        ```python3
           client.post.getPost(
              postid=...
           )
        ```
        
        #### deletePost()
        ```python3
           client.post.deletePost(
              postid=...
           )
        ```
        
        #### lockPost()
        ```python3
           client.post.lockPost(
              postid=..., 
              locked=True or False
           )
        ```
        
        #### getLatestPost()   ``Global``
        ```python3
           client.post.getLatestPost(
              postid_only=True or False
           )
        ```
        
        <br>
        
        ### Reply's: 
        #### sendReply()
        ```python3
           client.reply.sendReply(
                postid=..., 
                message="The beauti reply on this beauti message..", 
                from_="from python", 
                nsfw=True or False
           )
        ```
        
        #### deleteReply()
        ```python3
           client.reply.deleteReply(
                replyid=...
           )
        ```
           
        <br>
           
        ## Blog:
        #### getLatest()
        ```python3
           client.blog.getLatest()
        ```
        
        <br>
        
        ## Lis
        U can just use it
        
        
Keywords: python,api
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: Unix
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Requires: wheel
Description-Content-Type: text/markdown
