Library to interact with iTunes Reporter API
Project description
A Python Framework for Getting Information Out Of iTunes Reporter API
Overview
The iTunes Reporter interface has a lot of very useful information in it, but unfortunately Apple only provides a Java Applet to access it, and no API.
This library lets you access that data as native Python objects so that you can display, analyze, or store it however you like.
Reporter takes your API information (either username and password or AccessKey), and then lets you request information from the API. In the case of a report, it downloads the TSV (Tab Separated Values) file, unzips it, and converts it into a native Python object.
In a coming version, you will also be able to use this via the command-line.
Basic Usage
To access the iTunes Reporter API, you must first instantiate the Reporter class, using either your username and password:
from reporter import Reporter rep = Reporter(user_id='user@mydomain.com', password='hunter2') print(rep.vendors) # ['80012345', '80054321']
Or your AccessKey (obtainable via the web interface, Apple’s own Reporter tool, or using the access_token property of an already instantiated Reporter object:
from reporter import Reporter rep = Reporter(access_token='29c656f3-2dcf-1234-5678-123456789abc') print(rep.vendors) # ['80012345', '80054321']
In the case of using your user_id and password, at the time of your first request, Reporter will fetch your AccessKey and use it for that request and all subsequent ones.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
File details
Details for the file pytunes_reporter-0.3.2-py3-none-any.whl
.
File metadata
- Download URL: pytunes_reporter-0.3.2-py3-none-any.whl
- Upload date:
- Size: 6.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.6.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.6.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e888f4cfb70ccd098c450ecbc0c94f54b0ccfea45d13f299f0d0a9d570aaffd7 |
|
MD5 | 21c1fe17cbc3e785fe635b8e2c910516 |
|
BLAKE2b-256 | 5218cf79d3d3f01dacc9f68a3f64d0db39d8e1487909856b5b26188174b4d632 |