Metadata-Version: 2.1
Name: ScuffedAPI
Version: 0.0.2
Summary: Asynchronous Python wrapper for ScuffedAPI. By Oli
Home-page: https://github.com/xMistt/ScuffedAPI-Wrapper
Author: Pirxcy
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Requires-Dist: aiohttp
Requires-Dist: requests

# ScuffedAPI
Python wrapper for ScuffedAPI. (Made By Oli)

[![Requires: Python 3.x](https://img.shields.io/pypi/pyversions/ScuffedAPI.svg)](https://pypi.org/project/ScuffedAPI/)
[![ScuffedAPI Version: 0.0.1](https://img.shields.io/pypi/v/ScuffedAPI.svg)](https://pypi.org/project/ScuffedAPI/)

## Installing:
Windows: ``py -3 -m pip install ScuffedAPI``<br>
Linux/macOS: ``python3 -m pip install ScuffedAPI``

## Examples:
```
import ScuffedAPI
import asyncio

async def arrow():
    banner = await ScuffedAPI.get_banner(name="Arrow")
    print(banner.id)

loop = asyncio.get_event_loop()
loop.run_until_complete(arrow())
loop.close()
```

This would output:<br>
```StandardBanner1```

fortnitepy example:
```
import fortnitepy
import ScuffedAPI

client = fortnitepy.Client(
    email='example@email.com',
    password='password123'
)

@client.event
async def event_friend_message(message):
    args = message.content.split()
    split = args[1:]
    content = " ".join(split)

    if args[0] == '!playlist':
        playlist = await ScuffedAPI.get_playlist(name=content)
        await client.user.party.set_playlist(playlist=playlist.id)

client.run()
```

Documentation coming soon, examples of all functions at: https://scuffedapi.herokuapp.com/


