Metadata-Version: 2.1
Name: Bubblez.py
Version: 0.0.2.1
Summary: Api Module for https://bubblez.app/
Home-page: UNKNOWN
Author: Mees Meijer (Discord: @MeeSOS#1721)
License: UNKNOWN
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
License-File: LICENSE
Requires-Dist: requests


# Bubblez.py - Api Module for [Bubblez.app](https://bubblez.app)

A Python Module for the [Bubblez.app](https://bubblez.app) api



## Version's 

- Python: This one..

- Nodejs: [HERE](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 [example.py](examples.py) file above!





# Docs

### Basic Client Setup:

```python3

   from Bubblez import Bubblez 

   

   client = Bubblez("Your Username", "your token")  # Request your token at: 'https://bubblez.app/applications/api-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





