Metadata-Version: 2.4
Name: actipyme
Version: 0.2.0
Summary: A simple python interface to Actitime API
License-Expression: MIT
License-File: LICENSE
Author: Maicol Silvestri
Author-email: light1990@hotmail.it
Requires-Python: >=3.11
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Dist: pendulum (>=3.1.0,<4.0.0)
Requires-Dist: pydantic (>=2.12.4,<3.0.0)
Requires-Dist: requests (>=2.32.5,<3.0.0)
Project-URL: Homepage, https://github.com/mikermice/actipyme/
Project-URL: Issues, https://github.com/mikermice/actipyme/issues
Description-Content-Type: text/markdown

# ActiPyme

![actiTime Logo][actitime]
![Python Logo][py]

Python interface to *actiTIME* API.

## Basic usage

```python
from actipyme import ApiClient

url = "<actitime_api_url>"
username = "<your_username>"
passwors = "<your_password>"

client = ApiClient(url, (username, password))

me = client.get_me()
print("Me:", me)
```

----

[py]: https://www.python.org/static/img/python-logo.png
[actitime]: https://www.actitime.com/_nuxt/assets/img/actitime-logo-color-bec498a.svg
