Skip to main content

A Python CLI interface for the Postmark DMARC monitoring API

Project description

py-postdmarc

License Quality Gate Status Code style: black

A Python interface for the Postmark DMARC monitoring API.


Table of Contents


Example

set POSTMARK_API_KEY="aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee"
postdmarc get_record
postdmarc export_all_reports --from_date 2020-01-01 --to_date 2020-01-08 --filepath reports.json

Installation

pip install py-postdmarc

Clone

Clone this repo to your local machine using https://github.com/scuriosity/py-postdmarc, then install locally with pip:

git clone https://github.com/scuriosity/py-postdmarc
pip install .

Features

Implements the 10 API methods provided by the API Documentation:

  • Create a record
  • Get a record
  • Update a record
  • Get DNS snippet
  • Verify DNS
  • Delete a record
  • List DMARC reports
  • Get a specific DMARC report by ID
  • Recover API token
  • Rotate API token

As well as

  • Export all forensic reports within a given timeframe to a JSON file.

Usage

API Key

For most commands, your Postmark API key is required. The py-postdmarc package can load your API key either from the POSTMARK_API_KEY environment variable or the file PM_API.key in the package root. The API key should be a hexadecimal string like this:

aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee

py-postdmarc/
+-- postdmarc/
|   +-- __init__.py
|   +-- pdm_exceptions.py
|   â””-- postdmarc.py
|
+-- tests/
|   +-- __init__.py
|   +-- test_meta.py
|   â””-- test_postdmarc.py
|
+-- license.txt
+-- PM_API.key
+-- readme.md
+-- requirements.txt
+-- setup.py

If the key isn't set in one of these two locations, an APIKeyMissingError will be raised.

Syntax

Create a record

postdmarc create_record --email EMAIL@domain.com --domain domain.com

Get a record

postdmarc get_record

Update a record

postdmarc update_record --email EMAIL@domeng.com

Get DNS snippet

postdmarc get_dns_snippet

Verify DNS

postdmarc verify_dns

Delete a record

postdmarc delete_record

List DMARC reports

postdmarc list_reports --from_date 01-01-2020 --to_date 01-02-2020

Optional flags for "after", "before" and "reverse" are provided.

Get a specific DMARC report by ID

postdmarc get_report --id 1234567
postdmarc get_report --id 1234567 --fmt xml

Recover API token

postdmarc recover_token --owner domain.com

Rotate API token

postdmarc rotate_token

Export all forensic reports

postdmarc export_all_reports --from_date 2020-01-01 --to_date 2020-01-08 --filepath reports.json

Contributing

Issues and pull requests are welcome. Create a new pull request using https://github.com/scuriosity/py-postdmarc/compare


License

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

py-postdmarc-0.0.2.tar.gz (10.1 kB view hashes)

Uploaded Source

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