A Python wrapper for Porkbun API with extra features and shortcuts
Project description
Porkbun API
This is an API wrapper for Porkbun written in Python with few extra features/shortcuts.
This project is subject to breaking changes as Porkbun API may change and/or become invalid. I do not guarantee anything.
Installing
You can install this through PyPi with pip:
pip install porkbun-api
Or you can grab a .whl or .tar.gz file from Github releases.
Usage
This wrapper supports everything other than operations with ID's for now.
Available functions and arguments:
Please keep in mind every function requires an apikey and secretapikey arguments, but you can set APIKEY and SECRETAPIKEY variables in the code or PORKBUN_APIKEY and PORKBUN_SECRETAPIKEY environment variables with their respective values and not have to give keys as arguments at every function call.
Key precedence is environment variable > code variable > function argument. Please note at the moment you can not mix and match different ways of providing your keys
- ping()
- Optional:
ipv4only(takes True or False and returns IPv4 only if True and IPv6 if available otherwise. Default = True). - Returns IP address.
- Optional:
- nsupdate()
- Requires
domain(takes a string of the domain you want to work on) andnslist(a list containing nameservers). - Does not return anything, changes the authoritative nameservers for given domain.
- Requires
- create()
- Requires
domain,rtype(string of the record type such as A, AAAA, MX, etc), andcontent(string value for said request type such as the IP address). - Optional:
subdomain(string subdomain for said domain) andttl(integer number for time to live, default and minimum for Porkbun is 600).prio(integer priority for record types that support it) - Does not return anything. Creates a new DNS record with given arguments.
- Requires
- read()
- Requires
domain,rtype. - Optional:
subdomain. - Returns a list of records.
- Requires
- update()
- Requires
domain,rtype, andcontent. - Optional:
namettl, andprio. - Does not return anything. Updates the matching record with given
content
- Requires
- delete()
- Requires
domainandrtype. - Optional
subdomain. - Does not return anything. Deletes the matching record.
- Requires
- ddns_update()
- Requires
domain. - Optional:
ip(the string IP address to update the record with. If not given, uses the return of ping() as IP),subdomain, andipv4only. - Does not return anything. Updates the
domainorsubdomain's A or AAAA record depending on the IP type given.
- Requires
Examples
import porkbun_api as pb
from time import sleep # only as an example, not required.
pb.APIKEY = "pk1_..." # or the env var PORKBUN_APIKEY="pk1_..."
pb.SECRETAPIKEY = "sk1_..." # or the env var PORKBUN_SECRETAPIKEY="sk1_..."
print(pb.ping())
pb.create(domain = "m3r.one", rtype = "A", content = "23.94.123.251")
pb.delete(domain = "m3r.one", rtype = "A", subdomain = "bin", apikey = "pk1_overwrite-the-variable", secretapikey = "sk1_overwrite-the-variable")
while True:
pb.ddns_update(domain = "m3r.one")
sleep(86400)
Notes
It is recommended to use try - except blocks with every function because it raises a PorkbunError exception if Porkbun returns an error for whatever reason. Plus, requests library will raise exceptions itself if something goes wrong with the request.
Feel free to open issues or contact me in case you wish to see extra features added.
This project is not affiliated with Porkbun LLC.
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file porkbun_api-2.0.0.tar.gz.
File metadata
- Download URL: porkbun_api-2.0.0.tar.gz
- Upload date:
- Size: 5.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1a2e8a83ed70018a285a42176654bb615642c1c19f89342788c0e62e0abecd55
|
|
| MD5 |
24be75297d839bf69da68accb570b378
|
|
| BLAKE2b-256 |
bd909c840315a88611b37170ef7cac2bbea6e6773f7aac5816b9d596777ab9d3
|
File details
Details for the file porkbun_api-2.0.0-py3-none-any.whl.
File metadata
- Download URL: porkbun_api-2.0.0-py3-none-any.whl
- Upload date:
- Size: 5.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
13d1cf991f5d751da9dedadf0552f8e2d2105ce053c70c72a2b24c4190194abf
|
|
| MD5 |
60e8693c4243dbc38aa0d15fae3d67da
|
|
| BLAKE2b-256 |
ff0fa7f6d0bc341162adec5bf266f45b283ee2bd27c521dba9cddf468f08fa44
|