Skip to main content

A simple yet powerful SDK for the YouTube Analytics API.

Project description

analytix logo

A simple yet powerful SDK for the YouTube Analytics API.

PyPI - Version PyPI - Python Version PyPI - Implementation

Features

  • Pythonic syntax lets you feel right at home
  • Dynamic error handling saves hours of troubleshooting and makes sure only valid requests count toward your API quota
  • A clever interface allows you to make multiple requests across multiple sessions without reauthorising
  • Extra support enables you to export reports in a variety of filetypes and to a number of DataFrame formats
  • Easy enough for beginners, but powerful enough for advanced users

Installation

Installing analytix

To install the latest stable version of analytix, use the following command:

pip install analytix

You can also install the latest development version using the following command:

pip install git+https://github.com/parafoxia/analytix

You may need to prefix these commands with a call to the Python interpreter depending on your OS and Python configuration.

Dependencies

Below is a list of analytix's dependencies. Note that the minimum version assumes you're using CPython 3.8. The latest versions of each library are always supported.

Name Min. version Required? Usage
urllib3 2.2.0 Yes Making HTTP requests
jwt 1.2.0 No Decoding JWT ID tokens (from v5.1)
openpyxl 3.0.0 No Exporting report data to Excel spreadsheets
pandas ~1.3.0 No Exporting report data to pandas DataFrames
polars 0.15.17 No Exporting report data to Polars DataFrames
pyarrow ~5.0.0 No Exporting report data to Apache Arrow tables and file formats

OAuth authentication

All requests to the YouTube Analytics API need to be authorised through OAuth 2. In order to do this, you will need a Google Developers project with the YouTube Analytics API enabled. You can find instructions on how to do that in the API setup guide.

Once a project is set up, analytix handles authorisation — including token refreshing — for you.

More details regarding how and when refresh tokens expire can be found on the Google Identity documentation.

Usage

Retrieving reports

The following example creates a CSV file containing basic info for the 10 most viewed videos, from most to least viewed, in the US in 2022:

from datetime import date

from analytix import Client

client = Client("secrets.json")
report = client.fetch_report(
    dimensions=("video",),
    filters={"country": "US"},
    metrics=("estimatedMinutesWatched", "views", "likes", "comments"),
    sort_options=("-estimatedMinutesWatched",),
    start_date=date(2022, 1, 1),
    end_date=date(2022, 12, 31),
    max_results=10,
)
report.to_csv("analytics.csv")

If you want to analyse this data using additional tools such as pandas, you can directly export the report as a DataFrame or table using the to_pandas(), to_arrow(), and to_polars() methods of the report instance. You can also save the report as a .tsv, .json, .xlsx, .parquet, or .feather file.

There are more examples in the GitHub repository.

Fetching group information

You can also fetch groups and group items:

from analytix import Client

# You can also use the client as context manager!
with Client("secrets.json") as client:
    groups = client.fetch_groups()
    group_items = client.fetch_group_items(groups[0].id)

Logging

If you want to see what analytix is doing, you can enable the packaged logger:

import analytix

analytix.enable_logging()

This defaults to showing all log messages of level INFO and above. To show more (or less) messages, pass a logging level as an argument.

Compatibility

CPython versions 3.8 through 3.14 and PyPy versions 3.9 through 3.11 are officially supported*. CPython 3.15-dev is provisionally supported*. Windows, MacOS, and Linux are all supported.

*For base analytix functionality; support cannot be guaranteed for functionality requiring external libraries.

Contributing

Contributions are very much welcome! To get started:

License

The analytix module for Python is licensed under the BSD 3-Clause License.

Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

analytix-5.5.1.tar.gz (56.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

analytix-5.5.1-py3-none-any.whl (81.3 kB view details)

Uploaded Python 3

File details

Details for the file analytix-5.5.1.tar.gz.

File metadata

  • Download URL: analytix-5.5.1.tar.gz
  • Upload date:
  • Size: 56.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for analytix-5.5.1.tar.gz
Algorithm Hash digest
SHA256 3fbf56e3598881b0319cc522237c50b18560a47329ce41100c431cf7021432d6
MD5 b8241bebd012485281905d5289e83f82
BLAKE2b-256 2ceeb4596409c50ada715c6de685d91d4e482bf4a5cf31acc83ecc85ddc2a185

See more details on using hashes here.

File details

Details for the file analytix-5.5.1-py3-none-any.whl.

File metadata

  • Download URL: analytix-5.5.1-py3-none-any.whl
  • Upload date:
  • Size: 81.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for analytix-5.5.1-py3-none-any.whl
Algorithm Hash digest
SHA256 cca131a69899e2c6cc109aba6311989d8feef24967e430047cacc9ef0daf944d
MD5 e2ef5ec550b46373f6a4b4897635431a
BLAKE2b-256 b82a003c7cb6b8cc3da4d87ba07be01b2f390f1538469a16d057b69819b73451

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page