Skip to main content

Unofficial Asynchronous Keitaro Admin API client

Project description

keitaro

keitaro is a simple and easy to use API wrapper library for Keitaro Admin API written in Python3 and aiohttp

📄 Official Keitaro resources

📖 Getting Started

Installation

Pypi package is not updated, you can build it using setup.py

Keitaro tracker initialization

Begin by importing Keitaro class from aiokeitaro module and passing Admin API key and URL of Keitaro tracker to it

from aiokeitaro import Keitaro

api = Keitaro('API KEY', 'URL with http or https (if is domain)')

📚 Examples

If API request was successful, status code 200 will be received and a response in the json format.

import asyncio
from aiokeitaro import Keitaro, Offer

async def main():
    api = Keitaro('API KEY', 'URL with http or https (if is domain)')
    
    # Create an instance of the Offer class
    offer = Offer(api)
    
    # Call the get method on the instance
    ss = await offer.get()
    print(ss)

# run main.py
asyncio.run(main())
Click to see a response sample Admin API reference

{ "id": 14, "name": "string", "postback_url": "string", "offer_param": "string", "state": "string", "template_name": "string", "notes": "string", "pull_api_options": "string", "created_at": "string", "updated_at": "string", "offers": "string" }

Get all offers or specific one

To get all offers call get() method without any arguments

all_offers = await offer.get()

Let's try to get a specific offer by its id

dummy_offer = await offer.get(21)

As a result you'll get a response in JSON format

Click to see a response sample

[ { "id": 21, "name": "string", "group_id": 0, "action_type": "string", "action_payload": "string", "action_options": [], "affiliate_network_id": 0, "payout_value": 0, "payout_currency": "string", "payout_type": "string", "state": "string", "created_at": {}, "updated_at": {}, "payout_auto": true, "payout_upsell": true, "country": [], "notes": "string", "affiliate_network": "string", "archive": "string", "local_path": "string", "preview_path": "string" } ]

Campaign creation

To create an advertising campaign, you can simply call create() method of the campaigns resource

payload = {
  'name': 'Dummy campaign',
  'state': 'disabled',
  'cost_type': 'CPC',
  'cost_value': '5',
  'cost_currency': 'USD',
  'cost_auto': True
}

campaign = await campaigns.create(payload)

The non-asynchronous module is located here: https://github.com/ysomad/keitaro

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

aiokeitaro-1.0.3.tar.gz (11.0 kB view details)

Uploaded Source

Built Distribution

aiokeitaro-1.0.3-py3-none-any.whl (14.7 kB view details)

Uploaded Python 3

File details

Details for the file aiokeitaro-1.0.3.tar.gz.

File metadata

  • Download URL: aiokeitaro-1.0.3.tar.gz
  • Upload date:
  • Size: 11.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.11.0

File hashes

Hashes for aiokeitaro-1.0.3.tar.gz
Algorithm Hash digest
SHA256 b80cd2708f3950ec32c3f029e3a655a61317b3b2dbb10af1f9a0c5a081841895
MD5 996dbc08246c0d895dc4f20141cb0c20
BLAKE2b-256 ceb4c42e5b57070e501f21ba8075d4551342ae47213a9e1940aeeda4001e1650

See more details on using hashes here.

File details

Details for the file aiokeitaro-1.0.3-py3-none-any.whl.

File metadata

  • Download URL: aiokeitaro-1.0.3-py3-none-any.whl
  • Upload date:
  • Size: 14.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.11.0

File hashes

Hashes for aiokeitaro-1.0.3-py3-none-any.whl
Algorithm Hash digest
SHA256 85da07ee30de7551c1f41d364596a8cf0f5e024c5c972bdb2ddb07e6413546d5
MD5 8c954dd52ecc8e36983b9943a0cc7c15
BLAKE2b-256 3b401f6f312aa6bf406261b2194fbd7f3579ec625fedf8a54007ff2b2d848eca

See more details on using hashes here.

Supported by

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