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
Release history Release notifications | RSS feed
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.1.tar.gz
(41.2 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
libfcast-3.2.1-py3-none-any.whl
(29.8 kB
view details)
File details
Details for the file libfcast-3.2.1.tar.gz.
File metadata
- Download URL: libfcast-3.2.1.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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
40f34e50aa2956a19e99bc58b7def6fdd422df3e08703a54f26dcaa40020815a
|
|
| MD5 |
82d0cf0fe22ed5225c34e65d478f5498
|
|
| BLAKE2b-256 |
c7cf47fbf095b3dd80d14cb629a964857062a47d0ead38437f36591f26b73b17
|
File details
Details for the file libfcast-3.2.1-py3-none-any.whl.
File metadata
- Download URL: libfcast-3.2.1-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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c3b8555fbec23eaceab2692c2927433fe142c411c7feb6d07fdd2cd71d3784ac
|
|
| MD5 |
05977add91562786211ebbc87d666f52
|
|
| BLAKE2b-256 |
f0839267b7b6de60b25a319e4b848a07798af6171aafade612185af2025a5c28
|