v1.1.0
⚠️ Breaking Changes ⚠️
This release adds support for the newly announced MCC Island API. In doing so, it moves the previously existing Event API functionality to the mcc_api.event
subpackage. To update your code, you an replace all from mcc_api import xyz
lines with from mcc_api.event import xyz
, with the exception of:
mcc_api.__version__
(the current version of the package)mcc_api.__user_agent
(the user agent used for requests to both APIs)
New Island functionality is introduced in the mcc_api.island
subpackage. The MCC Island API uses GraphQL, and also requires an API key which can be minted using Noxcrew Gateway and used with mcc_api.island.set_api_key()
.
Changelog
- Package split into two subpackages:
mcc_api.event
andmcc_api.island
for querying the Event API and Island API respectively - Documentation changes