Skip to content

Latest commit

 

History

History
49 lines (40 loc) · 1.62 KB

README.md

File metadata and controls

49 lines (40 loc) · 1.62 KB

foxford wrapper logo
Foxford Wrapper

Example / Boilerplate

from foxford import Client
import asyncio

ffclient = Client("token")

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

asyncio.run(main())

Documentation

You can look at documentation here: https://foxford.readthedocs.io

Disclaimer

this "framework" uses most of the ro.py's code,
thanks to them for writing it.
i dunno how to properly write frameworks,
so looking at their code and copying lol (sorry pls)

so, here the original roblox api wrapper: https://github.com/ro-py/ro.py
also heavily inspired by vkbottle.

to install/upgrade the latest unstable version of foxford wrapper, install git-scm and run the following:

pip install git+https://github.com/frostx-official/foxford.git --upgrade