Metadata-Version: 2.3
Name: dynaddrmgr
Version: 0.8.2
Summary: Tools to manage actions based on dynamic host address changes.
License: MIT
Author: Quien Sabe
Author-email: qs5779@mail.com
Requires-Python: >=3.10,<4.0
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Typing :: Typed
Requires-Dist: click (>=8.1.0,<9.0.0)
Requires-Dist: dailylog-lib (>=0.2.2,<0.3.0)
Requires-Dist: dnspython (>=2.4.2,<3.0.0)
Requires-Dist: jinja2 (>=3.1.2,<4.0.0)
Requires-Dist: nslookup (>=1.7.0,<2.0.0)
Requires-Dist: wtforglib (>=1.2.1)
Project-URL: Repository, https://github.com/wtfo-guru/dynaddrmgr
Description-Content-Type: text/markdown

# dynaddrmgr

[![Build Status](https://github.com/wtfo-guru/dynaddrmgr/actions/workflows/test.yml/badge.svg)](https://github.com/wtfo-guru/dynaddrmgr/actions/workflows/test.yml)
[![codecov](https://codecov.io/gh/wtfo-guru/dynaddrmgr/branch/main/graph/badge.svg)](https://codecov.io/gh/wtfo-guru/dynaddrmgr)
[![Python Version](https://img.shields.io/pypi/pyversions/dynaddrmgr.svg)](https://pypi.org/project/dynaddrmgr/)
[![wemake-python-styleguide](https://img.shields.io/badge/style-wemake-000000.svg)](https://github.com/wemake-services/wemake-python-styleguide)

Tools to manage actions based on dynamic host address changes.


## Features

- Fully typed with annotations and checked with mypy, [PEP561 compatible](https://www.python.org/dev/peps/pep-0561/)
- Manages content of files based on current ipaddress(es) of specified hostname(s), using jinja2 templates


## Installation

```bash
pip install dynaddrmgr
```


## Example

Showcase how your project can be used:

```python
from dynaddrmgr.example import some_function

print(some_function(3, 4))
# => 7
```

## License

[MIT](https://github.com/wtfo-guru/dynaddrmgr/blob/main/LICENSE)


## Credits

This project was generated with [`wemake-python-package`](https://github.com/wemake-services/wemake-python-package). Current template version is: [9899cb192f754a566da703614227e6d63227b933](https://github.com/wemake-services/wemake-python-package/tree/9899cb192f754a566da703614227e6d63227b933). See what is [updated](https://github.com/wemake-services/wemake-python-package/compare/9899cb192f754a566da703614227e6d63227b933...master) since then.

