Core.rq_inventory_export is a collection of function wrappers around the Discogs API for inventory exports.
# Example for usage of request_inventory_export
request_inventory_export(user=example_user)
# Example for usage of get_recent_inventory_exports
get_recent_inventory_exports(user=example_user,
page=1,
per_page=3)
# Example for usage of get_inventory_export_details
get_inventory_export_details(user=example_user,
export_id=838414)
# Example for usage of download_inventory_export
download_inventory_export(user=example_user, export_id=838414)