
Security News
npm Introduces minimumReleaseAge and Bulk OIDC Configuration
npm rolls out a package release cooldown and scalable trusted publishing updates as ecosystem adoption of install safeguards grows.
recnetpy
Advanced tools
RecNetPy is a Rec Room API wrapper built in Python. RecNetPy aims to be easy to use yet powerful. It's the same wrapper used to power RecNetBot!
All platforms via pip:
pip install -U recnetpy
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.
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.
To install a local build run the following command.
pip install .
Distributed under the MIT license. See LICENSE for more information.
git checkout -b feature/fooBar)git commit -am 'Add some fooBar')git push origin feature/fooBar)FAQs
RecNetPy is an API wrapper built in Python for pulling data from RecNet.
We found that recnetpy demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
npm rolls out a package release cooldown and scalable trusted publishing updates as ecosystem adoption of install safeguards grows.

Security News
AI agents are writing more code than ever, and that's creating new supply chain risks. Feross joins the Risky Business Podcast to break down what that means for open source security.

Research
/Security News
Socket uncovered four malicious NuGet packages targeting ASP.NET apps, using a typosquatted dropper and localhost proxy to steal Identity data and backdoor apps.