Skip to main content

FCast Python Lib

Project description

Installation

pip install libfcast

Usage

Send message:

import fcast

fc = fcast.FCastSession(<IP/Host>)
fc.connect()
fc.send(fcast.message.Ping())

Handle received messages:

import fcast

def callback(msg: fcast.message.Message):
	<do stuff>

fc = fcast.FCastSession(<IP/Host>)
fc.connect()
fc.subscribe((fcast.message.Ping, callback))
fc.receive()	

Run receive loop in a separate thread:

import fcast
from threading import Thread

def callback(msg: fcast.message.Message):
    <do stuff>

fc = fcast.FCastSession(<IP/Host>)
fc.connect()
fc.subscribe((fcast.message.Ping,callback))
recv_thread = Thread(target=fc.receive)
recv_thread.start()
<do other stuff>
fc.disconnect()
recv_thread.join()

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

libfcast-3.2.2.tar.gz (41.2 kB view details)

Uploaded Source

Built Distribution

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

libfcast-3.2.2-py3-none-any.whl (29.8 kB view details)

Uploaded Python 3

File details

Details for the file libfcast-3.2.2.tar.gz.

File metadata

  • Download URL: libfcast-3.2.2.tar.gz
  • Upload date:
  • Size: 41.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.7

File hashes

Hashes for libfcast-3.2.2.tar.gz
Algorithm Hash digest
SHA256 b4a6fa40a3d75e1c252d5e3af8bde8bf0f83483048433908e13541224ae8e32a
MD5 5870e67d229d85a53057dbe96a342dd7
BLAKE2b-256 6f504e400b3078aed2104d720cb14540acea8ae10d4efe704b480a24f6460aae

See more details on using hashes here.

File details

Details for the file libfcast-3.2.2-py3-none-any.whl.

File metadata

  • Download URL: libfcast-3.2.2-py3-none-any.whl
  • Upload date:
  • Size: 29.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.7

File hashes

Hashes for libfcast-3.2.2-py3-none-any.whl
Algorithm Hash digest
SHA256 00ad2d92b8cde9339bfd47a2924b63e0e097eb9952ecf07022c059d220bf1aee
MD5 87a8d1f66de21f424426cae50470032d
BLAKE2b-256 b8b4bd342a3ad6bffab09421589ddf7f141f7fe884747ba8686611bbfc63bc67

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