Skip to content

Commit f0e3ce9

Browse files
authored
Merge pull request #244 from InternetNZ/develop
Version 0.1.7
2 parents d2f5c17 + c8e3bf4 commit f0e3ce9

5 files changed

Lines changed: 14 additions & 12 deletions

File tree

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
# PyEPP
22
>
3-
> A Python API on top of the EPP protocol to work easier with registry systems.
3+
> A Python API on top of the EPP protocol and an EPP CLI client to work easier with registry systems.
44
5-
This a Python API on [EPP](https://en.wikipedia.org/wiki/Extensible_Provisioning_Protocol) protocol to connect to
6-
any registry systems that support EPP and work with it. It supports bellow RFCs:
5+
This is a Python API on [EPP](https://en.wikipedia.org/wiki/Extensible_Provisioning_Protocol) protocol to connect to
6+
any registry systems that support EPP and work with it. Also, it is a CLI client to interact with the registry systems.
7+
It supports bellow RFCs:
78

89
- [RFC 5730 - Extensible Provisioning Protocol](https://datatracker.ietf.org/doc/html/rfc5730)
910
- [RFC 5731 - Domain Name Mapping](https://datatracker.ietf.org/doc/html/rfc5731)

docs/index.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
PyEPP
22
=====
33

4-
This a Python API on `EPP <https://en.wikipedia.org/wiki/Extensible_Provisioning_Protocol>`_
4+
This is a Python API on `EPP <https://en.wikipedia.org/wiki/Extensible_Provisioning_Protocol>`_
55
protocol to connect to any registry systems that support EPP and manage the registry objects.
6+
Also, it is a CLI client to interact with the registry systems.
67
It supports the bellow RFCs:
78

89
* `RFC 5730 - Extensible Provisioning Protocol <https://datatracker.ietf.org/doc/html/rfc5730>`_

pyepp/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
PyEPP Package
33
"""
44

5-
__version__ = "0.1.6"
5+
__version__ = "0.1.7"
66

77
from pyepp.epp import (
88
EppCommunicator,

requirements.dev.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
bandit==1.8.3
2-
coverage==7.8.0
3-
pylint==3.3.7
4-
pytest==8.3.5
1+
bandit==1.8.6
2+
coverage==7.10.7
3+
pylint==3.3.8
4+
pytest==8.4.2
55
pip-audit==2.9.0

requirements.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
jinja2==3.1.6
2-
lxml==5.4.0
3-
beautifulsoup4==4.13.4
4-
click==8.2.0
2+
lxml==6.0.1
3+
beautifulsoup4==4.13.5
4+
click==8.3.0

0 commit comments

Comments
 (0)