A simple CPDLC client
Project description
python-cpdlc
A simple CPDLC client for flight simulation written by python
Quick Start
- install package with pip or any tools you like
pip install python-cpdlc
- use example code under
By the way, dont forgot to logon your ATC CPDLC first :)
import asyncio
from python_cpdlc import CPDLC
async def main():
# Create CPDLC client instance
cpdlc = CPDLC()
# Set your hoppie code
cpdlc.set_logon_code("11111111111")
# Set your email for network change (If you dont need to change network, you can skip it)
cpdlc.set_email("halfnothingno@gmail.com")
# of course, you can use your own hoppie server
# cpdlc.set_acars_url("http://127.0.0.1:80")
# you can add callback function which will be called when cpdlc connected and disconnected
# there can only be one callback function per event
# cpdlc.set_cpdlc_connect_callback(lambda: None)
# cpdlc.set_cpdlc_disconnect_callback(lambda: None)
# cpdlc.set_cpdlc_atc_info_update_callback(lambda: None)
# you also can add message callback
# cpdlc.add_message_sender_callback()
# cpdlc.add_message_receiver_callback()
# Decorators are recommended
# @cpdlc.listen_message_receiver()
# def message_receiver(msg: AcarsMessage):
# pass
# @cpdlc.listen_message_sender()
# def message_sender(to: str, msg: str):
# pass
# you should set your callsign before you use CPDLC, and you can change this anytime you like
# but if you change this callsign, you may miss some message send to you
cpdlc.set_callsign("CES2352")
# after set complete, you need to initialize service
cpdlc.initialize_service()
# you can reset service or reinitialize service anytime you like
# cpdlc.reset_service()
# cpdlc.reinitialize_service()
# you can get your current network by cpdlc.network
# you can change your network if necessary
# cpdlc.change_network(Network.VATSIM)
# some function...
# cpdlc.query_info()
# cpdlc.send_telex_message()
# cpdlc.departure_clearance_delivery()
# send login request
cpdlc.cpdlc_login("ZSHA")
# wait 60 seconds
await asyncio.sleep(60)
# request logout
cpdlc.cpdlc_logout()
if __name__ == "__main__":
asyncio.run(main())
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
python_cpdlc-1.3.1.tar.gz
(29.4 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
File details
Details for the file python_cpdlc-1.3.1.tar.gz.
File metadata
- Download URL: python_cpdlc-1.3.1.tar.gz
- Upload date:
- Size: 29.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: pdm/2.25.4 CPython/3.10.7 Windows/10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
74dc64368d652fca90f9817f6c50998b34cbce188c390d9e1a307fcc37de0e06
|
|
| MD5 |
c8dec1f1b4af7bf7007f70fddbe811ef
|
|
| BLAKE2b-256 |
35b8e9d8ef0b390457c33dc385e288f86218e6975c6bd478fdfda4fc3c4caf07
|
File details
Details for the file python_cpdlc-1.3.1-py3-none-any.whl.
File metadata
- Download URL: python_cpdlc-1.3.1-py3-none-any.whl
- Upload date:
- Size: 35.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: pdm/2.25.4 CPython/3.10.7 Windows/10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c29802e27b43729e8bc4204b7f8aa523d197daa31e95380ac1ebd7b96b7cf3a4
|
|
| MD5 |
bc9569c49d2f53958b4986d79378fab7
|
|
| BLAKE2b-256 |
70e81d7c4023f65e8e40fd0221c62865d07cc45b48ce53f29d29e7e905066fa2
|