Incorporating Manifest Information
The destiny manifest holds much information which is not returned directly via the API, like the location of an activity, what modifiers it has, and many, many more.
Manifest information is available if an attribute starting with manifest_ is present. These attributes are empty by default since providing them takes additional requests and / or processing time.
To view those information and make use of the manifest there are two options. Either manually request the information per model by calling await model.fetch_manifest_information() or set always_return_manifest_information=True when setting up the Client.
All manifest information are downloaded once, and then stored locally in a database. You can pass the database where everything should be stored by passing it to manifest_storage when setting up the Client.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | |
Be aware that this will fetch the manifest information for every single request you do. The manifest is several hundred MB big if you save everything.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | |