RecNetPy is an API wrapper built in Python for pulling data from RecNet.
Project description
RecNetPy
RecNetPy is an API wrapper built in Python for pulling data from RecNet. RecNetPy aims to be easy to use yet powerful. It's the same wrapper used to power RecNetBot!
Installation
All platforms via pip:
pip install -U recnetpy
Quickstart
Creating an instance of RecNetPy:
import recnetpy
RecNet = recnetpy.Client(api_key="...")
An example that showcases how to fetch an account by username and acquire its bio:
import recnetpy # Import the module
import asyncio
async def main():
# Create a new RecNetPy client instance
RecNet = recnetpy.Client(api_key="...")
# Fetch the user from the AccountManager with the "get" method
user = await RecNet.accounts.get("ColinXYZ")
# Fetch the bio from the Account dataclass
bio = await user.get_bio()
# Print and close the client
print(bio)
await RecNet.close()
asyncio.run(main())
For more examples and usage, please refer to the examples
. More documentation can be found Here.
Authorization
In order to use most of the endpoints, you need an API key. You may acquire one from https://devportal.rec.net/. Endpoints that require an API key are marked in function docstrings.
For more information and guidance, refer to https://recroom.zendesk.com/hc/en-us/articles/16543324225303-Third-Party-API-Access-and-Usage.
Development setup
To install a local build run the following command.
pip install .
Meta
Distributed under the MIT license. See LICENSE
for more information.
Contributing
- Fork it (https://github.com/RecNetBot-Development/RecNetPy/fork)
- Create your feature branch (
git checkout -b feature/fooBar
) - Commit your changes (
git commit -am 'Add some fooBar'
) - Push to the branch (
git push origin feature/fooBar
) - Create a new Pull Request
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file recnetpy-0.2.74.tar.gz
.
File metadata
- Download URL: recnetpy-0.2.74.tar.gz
- Upload date:
- Size: 30.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.11
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7bc43bceb308522a51f7409ee3dc33fc9d01bdd529159b4cd3a529de1ba6e594 |
|
MD5 | 308cdee873b4e116099b2274fa678c68 |
|
BLAKE2b-256 | e31bf4b9172e9d8d2386068da519c087dfbc556f334066a70e5822bc75ec9c8c |
File details
Details for the file recnetpy-0.2.74-py3-none-any.whl
.
File metadata
- Download URL: recnetpy-0.2.74-py3-none-any.whl
- Upload date:
- Size: 47.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.11
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3f3db0759e3247e8d51da507b9221bfe7f3bf92f74d4b3f66cbdefaca77acb5f |
|
MD5 | 348d6b3c41475f5109087da148b23a6a |
|
BLAKE2b-256 | ebf03c717c9f291135d50e65dbf9ad72168f2641352df7ae4a8864e88e4f408b |