Metadata-Version: 2.4
Name: pydapnet
Version: 0.0.1
Summary: Python client library for the DAPNET REST API
Author: Petr Kracik
License-Expression: MIT
Project-URL: Homepage, https://github.com/petrkr/pydapnet
Project-URL: Issues, https://github.com/petrkr/pydapnet/issues
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Topic :: Communications :: Ham Radio
Requires-Python: >=3.11
Description-Content-Type: text/x-rst
License-File: LICENSE
Requires-Dist: requests
Dynamic: license-file

pydapnet
========

Python client library for the DAPNET REST API.

The current implementation targets the production DAPNET API 1.1.x exposed by
``https://hampager.de/api``.

Installation
------------

.. code-block:: console

   pip install pydapnet

Example
-------

.. code-block:: python

   from dapnet.api import DapnetApi

   api = DapnetApi()
   api.login("call", "secret")

   api.post_news(
       rubric_name="example",
       text="Hello from pydapnet",
       position=1,
   )

Status
------

Alpha. API may change before 1.0.
