Skip to main content

Python SDK for the Rebrandly API

Project description

Python SDK

Version

For our official developer documentation, visit our developer site

Description

This repository is a Python SDK that wraps the Rebrandly API.

Installation

pip install rebrandly-sdk

Local Development and Testing

Create a .env.development or .env.test file with the below code and populate the values:

API_KEY='YOUR_API_KEY'
EXTENDED_WORKSPACE_ID='YOUR_EXTENDED_WORKSPACE_ID'
EXTENDED_WORKSPACE_DOMAIN_ID='YOUR_EXTENDED_WORKSPACE_DOMAIN_ID'
IOS_APP_ID='YOUR_IOS_APP_ID'
ANDROID_APP_ID='YOUR_ANDROID_APP_ID'

Export your ENVIRONMENT variable before running tests so test files know which .env file to load. If the ENVIRONMENT variable is not specified, the default file to be loaded is .env.development.

Authentication

This SDK supports authentication via API key. You can create an API key in your Rebrandly dashboard. The API key should be specified when creating a RebrandlyClient instance.

from src.rebrandly_client import RebrandlyClient

client = RebrandlyClient('YOUR_API_KEY')

Usage

Create a link:

client = RebrandlyClient('YOUR_API_KEY')
new_link = client.links.create('https://destination_url_...')

Create conditional traffic routing rule:

link_id = client.links.create('https://www.rebrandly.com')['id']
route = {
    "destination":'https://www.rebrandly.com/enterprise-security',
    "condition":
        {"and":[{"property":"req.country","operator":"in","values":["ie"]}]}
    }
client.links.create_route(link_id, route)

Create link OpenGraph:

link_id = client.links.create(destination_url_google)['id']
client.links.set_opengraph(link_id, 'What is Rebrandly', image_url='https://rebrandly.com/example.jpg', object_type='website')

Create deep link:

link_id = client.links.create('https://wwww.rebrandly.com')['id']
path = {"path":"/watch?apex=&ios_scheme=&v=3VmtibKpmXI"}
client.links.create_deep_link(link_id, 'YOUR-APP-ID-HERE', path)

Manage workspaces:

# Create a workspace
workspace = client.workspaces.create('My Workspace', 'classic')

# List workspaces
workspaces = client.workspaces.list()

# Update a workspace
client.workspaces.update(workspace['id'], name='Renamed Workspace')

# Delete a workspace
client.workspaces.delete(workspace['id'])

Pagination

This SDK supports pagination for requests that return many results. When a method that supports pagination is called, a PaginatedResponse instance will be returned. A PaginatedResponse is an iterable object that supports a next() function to retrieve the next batch of results. Here is a code snippet for how to work with a method that supports pagination. In the example below, it will list all links and aggregate those links into an array called all_links.

    page_of_links = client.links.list()
    all_links = []
    while page_of_links.current_items_count > 0:
        for link in page_of_links:
            all_links.append(link)
        page_of_links.next()

Design Patterns

Create and Update vs Set

Create methods will create a new resource. Update methods will update an existing resource. Set methods will create a resource or overwrite the existing resource if one already exists.

License

Rebrandly Python SDK is released under the MIT License.

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

rebrandly_official-0.1.0.tar.gz (10.2 kB view details)

Uploaded Source

Built Distribution

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

rebrandly_official-0.1.0-py3-none-any.whl (13.0 kB view details)

Uploaded Python 3

File details

Details for the file rebrandly_official-0.1.0.tar.gz.

File metadata

  • Download URL: rebrandly_official-0.1.0.tar.gz
  • Upload date:
  • Size: 10.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for rebrandly_official-0.1.0.tar.gz
Algorithm Hash digest
SHA256 0c6aae394c005f184c0784ad19ab1c59fe745ae4be2ca1a347c19cf50b03f846
MD5 e9c5cd8c0a64b0a87e7292ec91d6f87a
BLAKE2b-256 e0258e9500ed1d9bcac75696c3bcebf44de278cd6758a03f27b7e25fc115b2f2

See more details on using hashes here.

File details

Details for the file rebrandly_official-0.1.0-py3-none-any.whl.

File metadata

File hashes

Hashes for rebrandly_official-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 b85a55d62dc6e64dfd2c3ca33b5af592ec8052af7b6e470e9e13e2216f10f62f
MD5 308ccfd08009943018975feb5bea2280
BLAKE2b-256 447e3433bd988ad0b0ef4c0a2daa433996ec28a3b4f87e9419c06a0715c55a2f

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