A Python API on top of the EPP protocol.
Project description
PyEPP
A Python API on top of EPP protocol to work with registry systems.
This a Python API on EPP protocol to connect to any registry systems that support EPP and work with it. It supports bellow RFCs:
- RFC 5730 - Extensible Provisioning Protocol
- RFC 5731 - Domain Name Mapping
- RFC 5732 - Host Mapping
- RFC 5733 - Contact Mapping
- RFC 5734 - Transport over TCP
This is an early version and not stable yet. Please use with care.
Installation
pip install pyepp
Usage example
from datetime import date
from pyepp import EppCommunicator
from pyepp.domain import Domain, DomainData, DSRecordData, DNSSECAlgorithm, DigestTypeEnum
from pyepp.contact import Contact, ContactData, PostalInfoData, AddressData
config = {
"server": "epp.test.net.nz",
"port": "700",
"client_cert": "/PATH/TO/YOUR/CLIENT_CERTIFICATE.crt",
"client_key": "/PATH/TO/YOUR/CLIENT_KEY.pem"
}
epp = EppCommunicator(**config)
connect = epp.connect()
login = epp.login("user_name", "password")
# Sends a hello request and receive greeting in respond
hello = epp.hello()
contact = Contact(epp)
# Check contacts availability
contact_check = contact.check(['contact-1', 'contact-2'])
# Create a new contact
contact_create_params = ContactData(
id='contact-1',
email='epp@example.net.nz',
postal_info=PostalInfoData(
name='Registrar 1',
organization='Registrar 1',
address=AddressData(
street_1='18 Registrar Street',
street_2='Registrar CBD',
city='Registrar',
country_code='NZ',
province='Registrar',
postal_code='6011'
),
),
phone='+64.111111111'
)
contact_create = contact.create(contact_create_params)
# Get contact details
contact_info = contact.info('contact-1')
domain = Domain(epp)
# Check domains availability
domain_check = domain.check(['domain1.nz', 'domain2.nz'])
# Create a new domain name
domain_create_params = DomainData(
domain_name='example.nz',
registrant='contact-1',
admin='contact-1',
tech='contact-1',
billing='contact-3',
period=3,
host=['01y.test-indwrx2vkicn2otgm3otav5wpnzvjd.co.nz', '0d9x6239.example.co.nz'],
dns_sec=DSRecordData(
key_tag=1235,
algorithm=DNSSECAlgorithm.DSA_SHA_1.value,
digest_type=DigestTypeEnum.SHA_1.value,
digest='8cdb09364147aed879d12c68d615f98af5900b73'
),
)
domain_create = domain.create(domain_create_params)
# Renew a domain name
renew_domain = domain.renew(domain_name='example-1.nz', expiry_date=date(2024, 2, 23), period=2)
PyEPP CLI
PyEPP also has a command line interface that allows the user to interact with the registry system.
Usage: pyepp [OPTIONS] COMMAND [ARGS]...
A command line interface to work with PyEpp library.
Options:
--server TEXT [required]
--port TEXT [required]
--client-cert TEXT [required]
--client-key TEXT [required]
--user TEXT [required]
--password TEXT [required]
-o, --output-format [XML|OBJECT|MIN]
[default: XML]
--no-pretty
--dry-run
-f, --file FILENAME If provided, the output will be written in
the file.
-v, --verbose
-d, --debug
--version Show the version and exit.
-h, --help Show this message and exit.
Commands:
contact To work with Contact objects in the registry.
domain To work with Domain name objects in the registry.
host To work with Host objects in the registry.
poll To manage registry service messages.
run Receive an XML file containing an EPP XML command and execute it.
Development setup
Clone this project. It's recommended to create virtual environment. Then install the dependencies and development dependencies:
pip install -r requirements.txt
pip install -r requirements.dev.txt
Before creating any pull requests please make sure your code lints and there is no security issues in your code by running below scripts:
./scripts/linter.sh
./scripts/code-security-check.sh
Happy developing!
Contributing
Please refer to CONTRIBUTING.md
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file pyepp-0.0.12.tar.gz
.
File metadata
- Download URL: pyepp-0.0.12.tar.gz
- Upload date:
- Size: 44.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.10.14
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 026d112623888d170d995463da2e6b7d543d4cada421f5c7f56f23e37f0de1af |
|
MD5 | 63d517d1b2c534c8df4c94ed45fcac0f |
|
BLAKE2b-256 | adec74a9201941a8b532358ecd565faaefce6d9331ced9b0000b4dfa8478d8ca |
Provenance
File details
Details for the file pyepp-0.0.12-py3-none-any.whl
.
File metadata
- Download URL: pyepp-0.0.12-py3-none-any.whl
- Upload date:
- Size: 39.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.10.14
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a906d0f609f6b94005d5dbced67a46ae1a046538ffa4974c6e75d5656f027fe7 |
|
MD5 | e5b92da6ef23e1a3338b74a65437beec |
|
BLAKE2b-256 | 14fd9df40bf34f1af7da6bd2d1d1b1aed994c04c77ef44fb163ef35ac120916d |