Skip to main content

Python wrapper for the TikTok Events API

Project description

Python TikTok Events API

This library is an unoffical Python wrapper arround the TikTok Events API, allowing for easy interaction with the API:

  • Pydantic types are used to validate the data to be sent to TikTok.
  • Customer identifiable information is hashed using SHA256 before being sent to the TikTok API.
  • Events can be sent one at a time or in batches.

The TikTok Events API allows advertisers to share the actions customers take on their websites and offiline directly with TikTok. This allows advertisers to measure the effectiveness of their TikTok campaigns and optimize their ad spend.

Please reference the TikTok Events API documentation for more information on the API and the data it accepts and requires: https://ads.tiktok.com/marketing_api/docs?id=1741601162187777.

TikTok API uses custom return error codes. Reference this TikTok Events API documentation for more information on the error codes.

Disclaimers

  1. This library is in beta. Feedback and contributions are welcome.

Installing

You can install pytt_events_api using pip:

pip install pytt-events-api

Quick Start Guide

Here's a quick guide on how to use the library to send events to TikTok.

Authentication

The only thing you need to do to authenticate with TikTok Events API is to set the environment variables listed below.

  • TIKTOK_ACCESS_TOKEN: Events API access token - Required
  • TIKTOK_PIXEL_ID: The ID of the pixel - Required
  • TIKTOK_API_VERSION: The API version to use, defaults to v1.3.
  • TIKTOK_TEST_EVENT_CODE: Used so events can be tested without affecting the pixel's data. You may find the test event code in the events manager under the "Test Events" tab.

You can find the values for these variables in the TikTok Events Manager.

The environment variables are loaded when the TikTokAuth class is initialized. If the environment variables are not found, the class will raise an exception.

Importing the library and initializing the API

from pytt_events.auth import TikTokAuth
from pytt_events.tiktok_events_api import TikTokEventsApi
from pytt_events.event import Event
from pytt_events.properties import Properties
from pytt_events.context import Context, Ad, Page, User
from pytt_events.properties import ContentType
from pytt_events.properties import Content

api = TikTokEventsApi()
auth = TikTokAuth()

Creating an event

context = Context(
    user_agent='Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.109 Safari/537.36',
    ip='13.57.97.131',
    ad=Ad(callback='E.C.P.v3fQ2RHacdkfKfofPmlyuStIIHJ4Af1tKYxF9zz2c2PLx1Oaw15oHpcfl5AH' ), # ttclid
    page=Page(
        url='https://www.example.com',
        referrer='https://www.google.com'
    ),
    user=User(
        external_id='123456',
        email='test@test.com',
        phone_number='+5541998862934',
        ttp='94e2a4j9-h3ss-k2h5-98cc-c84a745mk098',
    ))
properties = Properties(
    currency='BRL', # ISO 4217
    value=1.00,
    description='mock description',
    query='mock query',
    status='mock status',
    contents=[Content(
        content_type=ContentType.PRODUCT,
        content_id='123456789',
        content_name='mock content name',
        content_category='mock content category',
        price=1.00,
        quantity=1
    )]
)
event = Event (
    pixel_code=auth.TIKTOK_PIXEL_ID,
    test_event_code=auth.TIKTOK_TEST_EVENT_CODE,
    event='ViewContent',
    event_id='123456789',
    timestamp='2023-02-01T00:00:00-03:00', # str or datetime object
    context=context,
    properties=properties
)

Errors in the Docs

TikTok's documentation says that content_type should be a parameter of the Properties object, but it actually is a parameter of the Content object.

Sending an event

response = api.post_event(
    event=event,
    auth=auth
)

Sending events in bulk

events = []
response = api.post_events_in_bulk(events=events, auth=auth)

Project details


Download files

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

Source Distribution

pytt_events_api-0.1.10.tar.gz (12.2 kB view details)

Uploaded Source

Built Distribution

pytt_events_api-0.1.10-py3-none-any.whl (14.1 kB view details)

Uploaded Python 3

File details

Details for the file pytt_events_api-0.1.10.tar.gz.

File metadata

  • Download URL: pytt_events_api-0.1.10.tar.gz
  • Upload date:
  • Size: 12.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 colorama/0.4.4 importlib-metadata/4.6.4 keyring/23.5.0 pkginfo/1.8.2 readme-renderer/34.0 requests-toolbelt/0.9.1 requests/2.25.1 rfc3986/1.5.0 tqdm/4.57.0 urllib3/1.26.5 CPython/3.10.12

File hashes

Hashes for pytt_events_api-0.1.10.tar.gz
Algorithm Hash digest
SHA256 adaeb897f0c002e4fe1b252866e4b789279dac080097016aeda851bc477c5a1b
MD5 98bc416ecbcd6e3b5b1ca4c2c50b49b2
BLAKE2b-256 253c90c0f471574ea0e000a9e1f649cc2a785e90bcff259d4cbb47850a0a0f7c

See more details on using hashes here.

File details

Details for the file pytt_events_api-0.1.10-py3-none-any.whl.

File metadata

  • Download URL: pytt_events_api-0.1.10-py3-none-any.whl
  • Upload date:
  • Size: 14.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 colorama/0.4.4 importlib-metadata/4.6.4 keyring/23.5.0 pkginfo/1.8.2 readme-renderer/34.0 requests-toolbelt/0.9.1 requests/2.25.1 rfc3986/1.5.0 tqdm/4.57.0 urllib3/1.26.5 CPython/3.10.12

File hashes

Hashes for pytt_events_api-0.1.10-py3-none-any.whl
Algorithm Hash digest
SHA256 3c582d818edd2d0aa1af487be17fb22252c47aca450da8c9334eab893bd1a79f
MD5 8d3d216b3e816806ebe90bebfcd1c6d8
BLAKE2b-256 3eaf988cb4307b6e0d557631ffc5a63f32396ee3d7f3250fffab808f30a2b327

See more details on using hashes here.

Supported by

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