According to an update from Hazel, the Ravy API will no longer be in operation. The maintenance status of this library is currently in jeopardy.
A simple and dynamic asynchronous Python wrapper for the Ravy API.
- Easy usability
- 100% API coverage
- Unit tested (soon™️)
- Pyright type compatible
- Compatible with Python 3.8+
- Not yet available on PyPI
python3 -m pip install git+https://github.com/GoogolGenius/RavyAPI.py# Import required packagesimportasyncioimportravyapiasyncdefmain() ->None:
# Construct a ravyapi client objectclient=ravyapi.Client("token") # Replace "token" with your API key# Make a simple request to get token informationtoken_info=awaitclient.tokens.get_token()
print(token_info.token_type) # Print the token type: "ravy" | "ksoft"# Close and teardown the clientawaitclient.close()
# Start the event loop and run the main functionasyncio.run(main())Feel free to create pull requests and issues. Just be civil, kind, and respectful.
This is my first library, so if you have any suggestions or questions, please let me know! Reach out via GitHub Issues or Discord @googolgenius.