Metadata-Version: 2.1
Name: fusionsidsapi
Version: 0.0.7
Summary: An asynchronous api wrapper for FusionSidsAPI.
Home-page: https://github.com/FusionSid/FusionSidAPI.py
Author: Siddhesh Zantye
Author-email: siddheshadsv@icloud.com
License: UNKNOWN
Platform: UNKNOWN
Description-Content-Type: text/markdown
License-File: LICENCE
Requires-Dist: aiohttp (==3.8.1)
Requires-Dist: aiofiles (==0.6.0)

[![CodeFactor](https://www.codefactor.io/repository/github/fusionsid/fusionsidapi.py/badge)](https://www.codefactor.io/repository/github/fusionsid/fusionsidapi.py)

[![Downloads](https://img.shields.io/pypi/dd/fusionsidsapi?style=for-the-badge)](https://pypi.org/project/fusionsidsapi/)
[![PyPi-Version](https://img.shields.io/pypi/v/fusionsidsapi?style=for-the-badge)](https://pypi.org/project/fusionsidsapi/)


# FusionSidAPI Wrapper for python

An asynchronous api wrapper to use [FusionSidAPI](https://fusionsidapi.herokuapp.com/) in python.

---

# Install:

You can install this library from PyPi: [Link](https://pypi.org/project/fusionsidsapi/)

**Install with pip:**
```py
pip install -U fusionsidsapi
```

---

# Need Help

Even though there is so documentation for this package at the moment, each class and function has a doc string so if you need help with anything in the pacakge just use the built in python function `help()`

eg:
```py
import fusionsid

# Example 1
help(fusionsid.RandomMeme)
help(fusionsid.GenerateMeme)

# Example 2
help(fusionsid.Image.qrcode)
help(fusionsid.Fun.truth_or_dare)

```

# Examples:

Look in the [examples](https://github.com/FusionSid/FusionSidAPI.py/tree/master/examples) folder for some examples

Example for getting a roast:
```py
import asyncio
from fusionsid import Fun

async def main():
    roast = await Fun().roast()
    print(roast)

loop = asyncio.new_event_loop()
loop.run_until_complete(main())
```

---

### [FusionSidAPI Github](https://github.com/FusionSid/FusionSidsAPI)

---

## Contact:
Discord: `FusionSid#3645`

[My Github](https://github.com/FusionSid/)

Change Log
==========

0.0.7 (10/03/2022)
-------------------
- Added 9 Text convert functions in `fusionsid.Text()` 
- Added reddit_search

0.0.6 (09/03/2022)
-------------------
- Wordle answer

0.0.5 (08/03/2022)
-------------------
- Fixed some bugs with the stats

0.0.4 (08/03/2022)
-------------------
- Added doc strings to every function/class

0.0.3 (08/03/2022)
-------------------
- Added Fact, `Truth`, `Dare` and `Truth+Dare` functions in the `Fun` Class

0.0.2 (06/03/2022)
-------------------
- Added `created_at` Attribute to `Meme`, `QRCode` and `RandomMeme` classes

0.0.1 (06/03/2022)
-------------------
- First Release

