brodokk / neosvrpy

Unofficial NeosVR API python library.

Home Page:https://brodokk.github.io/neosvrpy/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

neosvrpy

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.

Usage

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)

About

Unofficial NeosVR API python library.

https://brodokk.github.io/neosvrpy/

License:MIT License


Languages

Language:Python 100.0%