re2o-ns/README.md

26 lines
617 B
Markdown
Raw Normal View History

2021-04-04 13:09:57 +02:00
# Re2o-ns
A simple DNS wrapper, reading from the non-standard re2o API and converting it
to the popular dnspython format to be easily outputed to a zone format in plain
text or otherwise manipulated.
## How to install
Git pull
```
git clone https://gitea.auro.re/aurore/re2o-ns.git --recursive
```
then install the dependencies
```
pip install -r requirements.txt
```
2021-04-14 16:02:09 +02:00
Dependencies are only `dnspython` and optionnally `iso8601` which is only
required in re2oAPI. The script runs fine with just `dnspython` as long as it
does not stumble upon an error in the re2oAPI, which is should not according the
2021-04-14 16:02:09 +02:00
tests.
2021-04-04 13:09:57 +02:00