Metadata-Version: 2.1
Name: foxford
Version: 1.4
Summary: Modern object-oriented asynchronous Python wrapper for the Foxford's web API.
Author-email: FrostX <denialfrostiks589@gmail.com>
Project-URL: Homepage, https://github.com/frostx-official/foxford
Project-URL: Issues, https://github.com/frostx-official/foxford/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Framework :: AsyncIO
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries
Classifier: Topic :: Software Development :: Libraries
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

<p align="center" width="100%">
    <a href="https://github.com/frostx-official/foxford">
        <img src="https://raw.githubusercontent.com/frostx-official/foxford/main/resources/logo.png" alt="foxford wrapper logo" height="128em" />
    </a>
    <br>
    <b>Foxford Wrapper</b>
    <br>
</p>

<p align="center">
  <img alt="PyPI Downloads" src="https://img.shields.io/pypi/dm/foxford?logo=pypi&logoColor=white&cacheSeconds=0">
  <img alt="GitHub Issues" 
  src="https://img.shields.io/github/issues/frostx-official/foxford/bug">
  <img alt="PyPI Version" src="https://img.shields.io/pypi/v/foxford?color=green&label=PyPI">
  <img alt="GitHub Stars" src="https://img.shields.io/github/stars/frostx-official/foxford">
  <img src="https://img.shields.io/github/languages/code-size/frostx-official/foxford?label=repo%20size">
</p>

## Example / Boilerplate

```python
from foxford import Client
import asyncio

ffclient = Client("token")

async def main():
    user = await ffclient.get_user()
    print(user.id)

ffclient.loop.run_until_complete(main())
```

## No documentation yet. :(

# Disclaimer
this "framework" uses most of the ro.py's code,<br>
thanks to them for writing it.<br>
i dunno how to properly write frameworks,<br>
so looking at their code and copying lol (sorry pls)
<br><br>
so, here the original roblox api wrapper: https://github.com/ro-py/ro.py<br>
also heavily inspired by vkbottle.

to install/upgrade the latest unstable version of foxford wrapper, install [git-scm](https://git-scm.com/downloads) and run the following:
```
pip install git+https://github.com/frostx-official/foxford.git --upgrade
```
