vrchatapi / VRChatPython

A Python library for the VRChat API.
41 stars 10 forks source link

I created the library I guess. #1

Closed DaFluffyPotato closed 4 years ago

DaFluffyPotato commented 5 years ago

ye

avail commented 5 years ago

I think you should make an actual interface (classes and parse requests into those) and have helper methods for everything instead of having to specify url manually (i.e. friends = VRChatAPI_Interface.GetFriends() or similar)

DaFluffyPotato commented 5 years ago

There are a few reasons I didn’t do that:

  1. It takes way more time to make a more complete library.

  2. Mine is dependent on the API itself and its documentation. This means that if something in the API changes, most likely this library will still work. It’s pretty obscure, so I wouldn’t want to make it hard to maintain.

  3. It’s better than what we have now (nothing), especially if you’re unfamiliar with urllib.

ariesclark commented 5 years ago

I'd have to agree with @avail in regards to interfaces and such. Expand the library to cover the core objects such as users, friends and such.