Python-EPP icon indicating copy to clipboard operation
Python-EPP copied to clipboard

Python EPP Client

Results 3 Python-EPP issues
Sort by recently updated
recently updated
newest added

Improvement list - some pep8 cleanup stuff - add return to Domain create - a bit of tweaking on the package structure to make it easier to understand - ssl...

Hi, im starting to use your project to connect to registro.br and i made some modfications listed on PR #7. Hope you like it

``` from epp import EPP, Contact, Domain, Nameserver config = { 'host': 'epp-server.com', 'port': 700, 'user': 'user', 'pass': '*****', } epp = epp(**config) domain = Domain(epp, 'nextgear.nl') print domain.token() ns...