Warning
Depreciation notice for NeosVR, this project will be forked and modified to support only Resonite. See https://github.com/brodokk/resonitepy
Unofficial NeosVR API python library.
Based on a work by mralext20. The main difference with his library is the simplification of the HTTP call by make them sync instead of async but is more up to date.
The code is still in WIP mode, see the files neosvrpy/classes.py
and
neosvrpy/client.py
for how to use them.
Quick exemple of to use it
from neosvrpy.client import Client
from neosvrpy.classes import LoginDetails
client = Client()
client.login(
LoginDetails(username="YOURUSERNAME", password="YOURPASSWORD")
)
friends = client.getFriends()
for friend in friends:
print(friend.friendUsername)