Skip to main content

AMCP (Advanced Media Control Protocol) Client Library

Project description

Python AMCP Client Library

v0.2.1

Build Status PyPI PyPI Support Project

Introduction

Welcome to the AMCP client library repository for Python! The goal of this library is to provide simple and understandable interface for communication with CasparCG server.

Installation

pip install amcp_pylib

Usage examples

Below you can see various usage examples.

Connecting to server

from amcp_pylib.core import Client

client = Client()
client.connect("caspar-server.local", 6969)  # defaults to 127.0.0.1, 5250

Built-in support for asyncio module:

import asyncio
from amcp_pylib.core import ClientAsync

client = ClientAsync()
asyncio.new_event_loop().run_until_complete(client.connect("caspar-server.local", 6969))

Sending commands

from amcp_pylib.core import Client
from amcp_pylib.module.query import VERSION, BYE

client = Client()
client.connect()

response = client.send(VERSION(component="server"))
print(response)

response = client.send(BYE())
print(response)
<SuccessResponse(data=['2.0.7.e9fc25a Stable'],    code=201, code_description='VERSION')>
<InfoResponse(   data=['SERVER SENT NO RESPONSE'], code=0,   code_description='EMPTY')>

All supported protocol commands are listed and documented on CasparCG's wiki pages. Some commands may not be supported yet (in that case, please create issue (or pull ;) request).

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

amcp_pylib-0.2.2.tar.gz (22.3 kB view details)

Uploaded Source

Built Distribution

amcp_pylib-0.2.2-py3-none-any.whl (30.6 kB view details)

Uploaded Python 3

File details

Details for the file amcp_pylib-0.2.2.tar.gz.

File metadata

  • Download URL: amcp_pylib-0.2.2.tar.gz
  • Upload date:
  • Size: 22.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.2

File hashes

Hashes for amcp_pylib-0.2.2.tar.gz
Algorithm Hash digest
SHA256 6888ec89195dd2d109cafd7027d0c608037b13b3d8100dfdc1802de7fd2a98e2
MD5 f407c12b4e17b4b8f812d2ae6e9ef35e
BLAKE2b-256 f8c9cc59534ec42f6999b2cc12fdb33e00920fb926e37d06065e5bd88528bf2a

See more details on using hashes here.

File details

Details for the file amcp_pylib-0.2.2-py3-none-any.whl.

File metadata

  • Download URL: amcp_pylib-0.2.2-py3-none-any.whl
  • Upload date:
  • Size: 30.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.2

File hashes

Hashes for amcp_pylib-0.2.2-py3-none-any.whl
Algorithm Hash digest
SHA256 a864249b8beaf49d4658020f174e564c20173b5e9f3c272388d2dc2da781846a
MD5 b852aa27af436b8a18615043174215f4
BLAKE2b-256 6d29e6f78ef3e717c2cd553fc03861f6053738402cccf420facc6ff74b2cadc1

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