ErikBoesen / schoolopy

:school: Python wrapper for Schoology's REST API.
MIT License
47 stars 19 forks source link

Reorganize API wrapper to be more modular #14

Open ErikBoesen opened 6 years ago

ErikBoesen commented 6 years ago

I'd like to make this a bit simpler to use by changing the request format from this style:

sc.get_group_update_comment(group_id=12345, update_id=54321, comment_id=98765)

to this:

sc.group(12345).update(54321).comment(98765).get()

This would be totally backward-incompatible.