Skip to main content
PyTAK Logo

Python Team Awareness Kit (PyTAK)

PyTAK is a Python library and command-line TAK client for building small, usable TAK clients, servers, and gateways. It can be embedded in another application or used directly to send and receive Cursor on Target (CoT) data on TAK networks.

Install

python3 -m pip install pytak

Command-line example

Connect with a TAK onboarding URL directly from the CLI:

pytak "tak://com.atakmap.app/enroll?host=takserver.example.com&username=myuser&token=mytoken"

Generate onboarding data packages (PKCS#12, PEM, ATAK + iTAK ZIPs) without connecting:

pytak dp 'tak://com.atakmap.app/enroll?host=takserver.example.com&username=myuser&token=mytoken'

See Onboarding data packages in the docs.

Quick example

import asyncio, xml.etree.ElementTree as ET
from configparser import ConfigParser
import pytak

class MySender(pytak.QueueWorker):
    async def handle_data(self, data):
        await self.put_queue(data)
    async def run(self):
        while True:
            root = ET.Element("event", version="2.0", type="t-x-d-d",
                              uid="myMarker", how="m-g",
                              time=pytak.cot_time(), start=pytak.cot_time(),
                              stale=pytak.cot_time(3600))
            await self.handle_data(ET.tostring(root))
            await asyncio.sleep(20)

async def main():
    config = ConfigParser()
    config["mytool"] = {"COT_URL": "tcp://takserver.example.com:8087"}
    config = config["mytool"]
    clitool = pytak.CLITool(config)
    await clitool.setup()
    clitool.add_tasks(set([MySender(clitool.tx_queue, config)]))
    await clitool.run()

asyncio.run(main())

Features

  • TAK Protocol support: XML (TAK Protocol v0) and Protobuf (TAK Protocol v1, via takproto)
  • Multiple transports: TCP, TLS, UDP unicast, UDP multicast (Mesh SA), UDP broadcast, file, stdout, WebSockets
  • TLS client auth: PEM certs, PKCS#12 (.p12), password-protected keys
  • TAK enrollment: automatic certificate enrollment from a tak:// onboarding URL; pytak dp exports ATAK/iTAK connection packages
  • Marti REST API: send/receive CoT via TAK Server's HTTP API (marti:// URL scheme)
  • TAK Data Packages: import .zip pref packages containing server connection settings and certs
  • No required external deps: pure-Python asyncio core; optional extras for TLS enrollment and Protobuf

Documentation

Full documentation at pytak.rtfd.io including installation, configuration, examples, and troubleshooting.

License & Copyright

Copyright Sensors & Signals LLC https://www.snstac.com

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

asyncio_dgram is Copyright (c) 2019 Justin Bronder and is licensed under the MIT License, see pytak/asyncio_dgram/LICENSE for details.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pytak-7.6.1.tar.gz (115.0 kB view details)

Uploaded Source

Built Distribution

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

pytak-7.6.1-py3-none-any.whl (75.4 kB view details)

Uploaded Python 3

File details

Details for the file pytak-7.6.1.tar.gz.

File metadata

  • Download URL: pytak-7.6.1.tar.gz
  • Upload date:
  • Size: 115.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pytak-7.6.1.tar.gz
Algorithm Hash digest
SHA256 9dc7ac271f932ac18585ebcc5d30441c707f5d68d97c0d1408db7695fb7498db
MD5 04b063e57f2df19c15763e2e790bb648
BLAKE2b-256 ab1de0494128d4579bce0e98967aa596bd2c5d2d0bbae1d1c2b7caf6511197d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytak-7.6.1.tar.gz:

Publisher: ci.yml on snstac/pytak

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pytak-7.6.1-py3-none-any.whl.

File metadata

  • Download URL: pytak-7.6.1-py3-none-any.whl
  • Upload date:
  • Size: 75.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pytak-7.6.1-py3-none-any.whl
Algorithm Hash digest
SHA256 5a8a36282149022b4937390665ec84ddd1fefa656e2dd6f0689f65be176d3738
MD5 b3a9e9bd1ee5f00a97278a629ac91b8a
BLAKE2b-256 233d4430744208ee3c655c1b9a43644a20557c1b190de54fb6c2921c6cbf67cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytak-7.6.1-py3-none-any.whl:

Publisher: ci.yml on snstac/pytak

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

This release

7.6.1 This release

2 files

7.5.2

2 files

7.5.1

2 files

7.5.0

2 files

7.4.3

2 files

7.4.2

2 files

7.4.1

2 files

7.4.0

2 files

7.3.14

2 files

7.3.13

2 files

7.3.12

2 files

7.3.11

2 files

7.3.10

2 files

7.3.9

2 files

7.3.7

2 files

7.3.0

2 files

7.2.1

2 files

7.0.2

2 files

7.0.1

2 files

7.0.0

2 files

6.4.0

2 files

6.3.2

2 files

6.3.1

2 files

6.3.0

2 files

6.2.4

2 files

6.2.3

2 files

6.2.2

2 files

6.2.1

2 files

6.2.0

2 files

6.0.0

2 files

5.6.1

2 files

5.6.0

2 files

5.5.0

2 files

5.4.1

2 files

5.4.0

2 files

5.3.1

2 files

5.3.0

2 files

5.2.0

2 files

5.1.0

2 files

5.0.4

2 files

5.0.3

2 files

5.0.2

2 files

5.0.1

2 files

5.0.0

2 files

4.0.0

2 files

3.5.2

2 files

3.5.1

2 files

3.4.0

1 file

3.2.0

1 file

3.1.1

1 file

3.1.0

1 file

3.0.0

1 file

2.2.1

1 file

2.2.0

1 file

2.1.0

1 file

2.0.0

1 file

1.0.0

1 file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page