Skip to main content

An unoffical Python interface for the Porkbun domain registrars API

Project description

pyrkbun - Python library for the porkbun.com API

pyrkbun is an unoffical python library for interfacing with the porkbun.com API

Getting Started

Install pyrkbun using pip.

pip install pyrkbun

Enable porkbun.com API access

You will need to ensure that you have API access enabled for your domain and an API Access Key / Secret Key. Details on how to configure your domain fro API access can be found on the pokbun website

Configure Environment

Before using pyrkbun you will need to set a couple of envorinment variables to hold your API credentails.

export PYRK_API_SECRET_KEY='sk_abcdef123456789abcdef123456789abcdef'
export PYRK_API_KEY = 'sk_abcdef123456789abcdef123456789abcdef'

By default pyrkbun will utilise the default porkbun.com API endpoint which supports both IPv4 and IPv6. To force IPv4 only you can set an additional environement variable as follows.

export PYRK_FORCE_V4 = True

Using pyrkbun

pyrkbun exposes all of the porkbun.com api functionality through a set of functions and classes. Functionality is grouped into sub-modules as follows:

  • pyrkbun.ssl: Operations related to certificate management. Exposes a single function to reirieve certifcate bundle.
  • pyrkbun.pricing: Operations relating to retrival of domain pricing information. Exposes a single function to retrieve pricing information.
  • pyrkbun.dns: Operations relating to DNS management. This is the bulk of the functionality.

pyrkbun ssl

Retrieve porkbun.com provided wildcard cert bundle for your domain

>>> import pyrkbun
>>> x = pyrkbun.ssl.get()
>>> print(x)
{'status': 'SUCCESS',
"intermediatecertificate": "<cert-data>",
"certificatechain": "<cert-data>",
"privatekey": "<cert-data>",
"publickey": "<cert-data>"}

pyrkbun pricing

Retrieve porkbun.com default domain pricing data

>>> import pyrkbun
>>> x = pyrkbun.pricing.get()
>>> print(x)
{'status': 'SUCCESS',
'pricing': {'de': {'registration': '5.55', 'renewal': '4.11',
'transfer': '4.11', 'coupons': {'registration':
{'code': 'AWESOMENESS', 'max_per_user': 1, 'first_year_only': 'yes',
'type': 'amount', 'amount': 1}}},
'xof': {'registration': '6.49', 'renewal': '21.94', ... }

pyrkbun dns

DNS comprises the bulk of the functionality of pyrkbun. The dns submodule defines a class for interacting with the DNS api. You can either instantiate class instances and use the exposed instance methods, or execute class methods to interact with the API without the need to instantiate a class instance.

NOTE: When defining hostnames for A, AAAA, CNAME and ALIAS records, you should always provide the unqualified name. (e.g. if your domain is example.com, provide hostnames as 'www' not 'www.example.com')

DNS class instantiation

The following example shows how to instantiate a class instance and create, update and delete a DNS record

>>> import pyrkbun

# Instantiate class instance representing 'www' A record with IP of '198.51.100.45' and ttl of 620 in domain example.com
>>> x = pyrkbun.dns('example.com',
                   'A',
                   '198.51.100.45',
                   'www',
                   '620',
                   '0') 

# Call porkbun API to create DNS record from class data
>>> x.create() 
{'status': 'SUCCESS', 'id': 253916852}

# Update hostname
>>> x.name = 'website' 

# Call porkbun API to update DNS record with new hostname
>>> x.update()
{'status': 'SUCCESS'}

# Refresh record data held in class instance (in case updates were made out of band)
>>> x.refresh()
{'status': 'SUCCESS'}

# Delete the record
>>> x.delete()
{'status': 'SUCCESS'}

DNS class methods

The following example shows how to create, update and delete a DNS record using the provided class methods.

>>> import pyrkbun

# Create dict containd data for a 'www' A record with IP of '198.51.100.45' and ttl of 620 in domain example.com
>>> record = {'name': 'www',
           'type': 'A',
           'content': '198.51.100.45',
           'ttl': '620',
           'prio': '0'}

# Call porkbun API to create record
>>> x = pyrkbun.dns.create_record('example.com', record)
>>> print(x)
{'status': 'SUCCESS', 'id': 253475380}

# Create record containing updates
>>> update = {'name': 'website',
           'type': 'A',
           'content': '198.51.100.45',
           'ttl': '620',
           'prio': '0'}

# Call porkbun API to update DNS record
>>> x = pyrkbun.dns.update_record('example.com', update)
>>> print(x)
{'status': 'SUCCESS'}

# Delete the record by name and type
>>> x = pyrkbun.dns.delete_record('example.com', 'A', 'www')
>>> print(x)
{'status': 'SUCCESS'}

Get domain records

A class method is exposed to collect existing domain records. The method will return a list of class instances for each record returned. Arguments can be provided to the method to select specific records or set of records to be returned. To collect all records for a domain simply provide the domain name as the only argument.

>>> import pyrkbun

>>> x = pyrkbun.dns.get_records('example.com')
>>> print(x)
[Dns(domain='example.com', name='www', record_type='A',
content='198.51.100.45', ttl='650', prio='0', notes='',
record_id='253440859'), Dns(domain='example.com', .... ]

Getting help on working with DNS

All methods and functions are fully documented, additional detail on working with pyrkbun is available via the python help function

>>> import pyrkbun

>>> help(pyrkbun.dns)
...

pyrkbun ping

Porkbun provides a simple API endpoint for polling the API and returning your current IP address. This can be useful for usecases such as dynamic dns record creation. This is exposed in pyrkbun as pyrkbun.ping

>>> import pyrkbun

# Ping porkbun API and return IP
>>> x = pyrkbun.ping()
>>> print(x)
{'status': 'SUCCESS', 'yourIp': '2001:0db8:85a3:0000:0000:8a2e:0370:7334'}

# Ping porkbun API and force the use of IPv4
>>> x = pyrkbun.ping(ipv4=True)
>>> print(x)
{'status': 'SUCCESS', 'yourIp': '198.51.100.45'}

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pyrkbun-1.0.0.tar.gz (18.9 kB view details)

Uploaded Source

Built Distribution

pyrkbun-1.0.0-py3-none-any.whl (17.8 kB view details)

Uploaded Python 3

File details

Details for the file pyrkbun-1.0.0.tar.gz.

File metadata

  • Download URL: pyrkbun-1.0.0.tar.gz
  • Upload date:
  • Size: 18.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.6

File hashes

Hashes for pyrkbun-1.0.0.tar.gz
Algorithm Hash digest
SHA256 311700e89727c1f84252b1d05a95328dfa00f072d5e65c4f26e90e0af2e1c7c1
MD5 343e7e71c95cad78c5493f2eaf18bdc6
BLAKE2b-256 c210ac53e1454e92fa0f42768ba3d4569866525312bdff95622777fff2dcd12a

See more details on using hashes here.

File details

Details for the file pyrkbun-1.0.0-py3-none-any.whl.

File metadata

  • Download URL: pyrkbun-1.0.0-py3-none-any.whl
  • Upload date:
  • Size: 17.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.6

File hashes

Hashes for pyrkbun-1.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 7133f2ce6c1ebd98b85dd14b3ff4259a494c2dbd81cfa611036fe873e7a272a6
MD5 e72b073b4558be39de1d4ae405c38999
BLAKE2b-256 7c77b24d1aff9692ca90dac0b38a2290a5765f5136a02049b40bd53a0bec3930

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page