Skip to content
This repository was archived by the owner on Feb 8, 2024. It is now read-only.

Latest commit

 

History

History
33 lines (23 loc) · 845 Bytes

README.md

File metadata and controls

33 lines (23 loc) · 845 Bytes

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)