mailosaur


Namemailosaur JSON
Version 7.16.0 PyPI version JSON
download
home_pagehttps://github.com/mailosaur/mailosaur-python
SummaryThe Mailosaur Python library lets you integrate email and SMS testing into your continuous integration process.
upload_time2023-09-15 14:31:38
maintainer
docs_urlNone
authorMailosaur Ltd
requires_python>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*
licenseMIT
keywords email sms testing automation selenium robot framework
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # [Mailosaur - Python library](https://mailosaur.com/) · [![](https://github.com/mailosaur/mailosaur-python/workflows/CI/badge.svg)](https://github.com/mailosaur/mailosaur-python/actions) 

Mailosaur lets you automate email and SMS tests as part of software development and QA.

- **Unlimited test email addresses for all**  - every account gives users an unlimited number of test email addresses to test with.
- **End-to-end (e2e) email and SMS testing** Allowing you to set up end-to-end tests for password reset emails, account verification processes and MFA/one-time passcodes sent via text message.
- **Fake SMTP servers** Mailosaur also provides dummy SMTP servers to test with; allowing you to catch email in staging environments - preventing email being sent to customers by mistake.

## Get Started

This guide provides several key sections:

  - [Get Started](#get-started)
  - [Creating an account](#creating-an-account)
  - [Test email addresses with Mailosaur](#test-email-addresses-with-mailosaur)
  - [Find an email](#find-an-email)
  - [Find an SMS message](#find-an-sms-message)
  - [Testing plain text content](#testing-plain-text-content)
  - [Testing HTML content](#testing-html-content)
  - [Working with hyperlinks](#working-with-hyperlinks)
  - [Working with attachments](#working-with-attachments)
  - [Working with images and web beacons](#working-with-images-and-web-beacons)
  - [Spam checking](#spam-checking)

You can find the full [Mailosaur documentation](https://mailosaur.com/docs/) on the website.

If you get stuck, just contact us at support@mailosaur.com.

## Installation

```
pip install --upgrade mailosaur
```

Then import the library into your code. The value for `YOUR_API_KEY` is covered in the next step ([creating an account](#creating-an-account)):

```py
from mailosaur import MailosaurClient
mailosaur = MailosaurClient("YOUR_API_KEY")
```

### API Reference

This library is powered by the Mailosaur [email & SMS testing API](https://mailosaur.com/docs/api/). You can easily check out the API itself by looking at our [API reference documentation](https://mailosaur.com/docs/api/) or via our Postman or Insomnia collections:

[![Run in Postman](https://run.pstmn.io/button.svg)](https://app.getpostman.com/run-collection/6961255-6cc72dff-f576-451a-9023-b82dec84f95d?action=collection%2Ffork&collection-url=entityId%3D6961255-6cc72dff-f576-451a-9023-b82dec84f95d%26entityType%3Dcollection%26workspaceId%3D386a4af1-4293-4197-8f40-0eb49f831325)
 [![Run in Insomnia}](https://insomnia.rest/images/run.svg)](https://insomnia.rest/run/?label=Mailosaur&uri=https%3A%2F%2Fmailosaur.com%2Finsomnia.json)

## Creating an account

Create a [free trial account](https://mailosaur.com/app/signup) for Mailosaur via the website.

Once you have this, navigate to the [API tab](https://mailosaur.com/app/project/api) to find the following values:

- **Server ID** - Servers act like projects, which group your tests together. You need this ID whenever you interact with a server via the API.
- **Server Domain** - Every server has its own domain name. You'll need this to send email to your server.
- **API Key** - You can create an API key per server (recommended), or an account-level API key to use across your whole account. [Learn more about API keys](https://mailosaur.com/docs/managing-your-account/api-keys/).

## Test email addresses with Mailosaur

Mailosaur gives you an **unlimited number of test email addresses** - with no setup or coding required!

Here's how it works:

* When you create an account, you are given a server.
* Every server has its own **Server Domain** name (e.g. `abc123.mailosaur.net`)
* Any email address that ends with `@{YOUR_SERVER_DOMAIN}` will work with Mailosaur without any special setup. For example:
  * `build-423@abc123.mailosaur.net`
  * `john.smith@abc123.mailosaur.net`
  * `rAnDoM63423@abc123.mailosaur.net`
* You can create more servers when you need them. Each one will have its own domain name.

***Can't use test email addresses?** You can also [use SMTP to test email](https://mailosaur.com/docs/email-testing/sending-to-mailosaur/#sending-via-smtp). By connecting your product or website to Mailosaur via SMTP, Mailosaur will catch all email your application sends, regardless of the email address.*

## Find an email

In automated tests you will want to wait for a new email to arrive. This library makes that easy with the `messages.get` method. Here's how you use it:

```py
from mailosaur import MailosaurClient
from mailosaur.models import SearchCriteria

mailosaur = MailosaurClient("API_KEY")

# See https://mailosaur.com/app/project/api
server_id = "abc123"
server_domain = "abc123.mailosaur.net"

criteria = SearchCriteria()
criteria.sent_to = "anything@" + server_domain

email = mailosaur.messages.get(server_id, criteria)

print(email.subject) # "Hello world!"
```

### What is this code doing?

1. Sets up an instance of `MailosaurClient` with your API key.
2. Waits for an email to arrive at the server with ID `abc123`.
3. Outputs the subject line of the email.

## Find an SMS message

**Important:** Trial accounts do not automatically have SMS access. Please contact our support team to enable a trial of SMS functionality.

If your account has [SMS testing](https://mailosaur.com/sms-testing/) enabled, you can reserve phone numbers to test with, then use the Mailosaur API in a very similar way to when testing email:

```py
from mailosaur import MailosaurClient
from mailosaur.models import SearchCriteria

mailosaur = MailosaurClient("API_KEY")

# See https://mailosaur.com/app/project/api
server_id = "abc123"
server_domain = "abc123.mailosaur.net"

criteria = SearchCriteria()
criteria.sent_to = "4471235554444"

sms = mailosaur.messages.get(server_id, criteria)

print(sms.text.body)
```

## Testing plain text content

Most emails, and all SMS messages, should have a plain text body. Mailosaur exposes this content via the `text.body` property on an email or SMS message:

```py
print(message.text.body) # "Hi Jason, ..."

if "Jason" in message.text.body:
  print('Email contains "Jason"')
```

### Extracting verification codes from plain text

You may have an email or SMS message that contains an account verification code, or some other one-time passcode. You can extract content like this using a simple regex.

Here is how to extract a 6-digit numeric code:

```py
print(message.text.body) # "Your access code is 243546."

match = re.search("([0-9]{6})", message.text.body)
print(match.group()) # "243546"
```

[Read more](https://mailosaur.com/docs/test-cases/text-content/)

## Testing HTML content

Most emails also have an HTML body, as well as the plain text content. You can access HTML content in a very similar way to plain text:

```py
print(message.html.body) # "<html><head ..."
```

### Working with HTML using Beautiful Soup

If you need to traverse the HTML content of an email. For example, finding an element via a CSS selector, you can use the [Beautiful Soup](https://pypi.org/project/beautifulsoup4/) library.

```sh
pip install beautifulsoup4
```

```py
from bs4 import BeautifulSoup

# ...

dom = BeautifulSoup(message.html.body, 'html.parser')

el = dom.find('.verification-code')
verification_code = el.text

print(verification_code) # "542163"
```

[Read more](https://mailosaur.com/docs/test-cases/html-content/)

## Working with hyperlinks

When an email is sent with an HTML body, Mailosaur automatically extracts any hyperlinks found within anchor (`<a>`) and area (`<area>`) elements and makes these viable via the `html.links` array.

Each link has a text property, representing the display text of the hyperlink within the body, and an href property containing the target URL:

```py
# How many links?
print(len(message.html.links)) # 2

first_link = message.html.links[0]
print(first_link.text) # "Google Search"
print(first_link.href) # "https://www.google.com/"
```

**Important:** To ensure you always have valid emails. Mailosaur only extracts links that have been correctly marked up with `<a>` or `<area>` tags.

### Links in plain text (including SMS messages)

Mailosaur auto-detects links in plain text content too, which is especially useful for SMS testing:

```py
# How many links?
print(len(message.text.links)) # 2

first_link = message.text.links[0]
print(first_link.href) # "https://www.google.com/"
```

## Working with attachments

If your email includes attachments, you can access these via the `attachments` property:

```py
# How many attachments?
print(len(message.attachments)) # 2
```

Each attachment contains metadata on the file name and content type:

```py
first_attachment = message.attachments[0]
print(first_attachment.file_name) # "contract.pdf"
print(first_attachment.content_type) # "application/pdf"
```

The `length` property returns the size of the attached file (in bytes):

```py
first_attachment = message.attachments[0]
print(first_attachment.length) # 4028
```

## Working with images and web beacons

The `html.images` property of a message contains an array of images found within the HTML content of an email. The length of this array corresponds to the number of images found within an email:

```py
# How many images in the email?
print(len(message.html.images)) # 1
```

### Remotely-hosted images

Emails will often contain many images that are hosted elsewhere, such as on your website or product. It is recommended to check that these images are accessible by your recipients.

All images should have an alternative text description, which can be checked using the `alt` attribute.

```py
image = message.html.images[0]
print(image.alt) # "Hot air balloon"
```

### Triggering web beacons

A web beacon is a small image that can be used to track whether an email has been opened by a recipient.

Because a web beacon is simply another form of remotely-hosted image, you can use the `src` attribute to perform an HTTP request to that address:

```py
import requests

# ...

const image = message.html.images[0]
print(image.src) # "https://example.com/s.png?abc123"

# Make an HTTP call to trigger the web beacon
response = requests.get(image.src)
print(response.status_code) # 200
```

## Spam checking

You can perform a [SpamAssassin](https://spamassassin.apache.org/) check against an email. The structure returned matches the [spam test object](https://mailosaur.com/docs/api/#spam):

```py
result = mailosaur.analysis.spam(message.id)

print(result.score) # 0.5

for r in result.spam_filter_results.spam_assassin:
  print(r.rule)
  print(r.description)
  print(r.score)
```

## Development

You must have the following prerequisites installed:

* [pip](https://pip.pypa.io/en/stable/installing/)

Install all development dependencies:

```sh
pip install -r requirements.txt
```

The test suite requires the following environment variables to be set:

```sh
export MAILOSAUR_BASE_URL=https://mailosaur.com/
export MAILOSAUR_API_KEY=your_api_key
export MAILOSAUR_SERVER=server_id
```

Run all tests:

```sh
pytest
```

## Contacting us

You can get us at [support@mailosaur.com](mailto:support@mailosaur.com)



            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/mailosaur/mailosaur-python",
    "name": "mailosaur",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*",
    "maintainer_email": "",
    "keywords": "email sms testing automation selenium robot framework",
    "author": "Mailosaur Ltd",
    "author_email": "code@mailosaur.com",
    "download_url": "https://files.pythonhosted.org/packages/cb/4b/135c52687a71772d0fafe31a871a36e6f58ca19343019b2a9d003c84d3b5/mailosaur-7.16.0.tar.gz",
    "platform": null,
    "description": "# [Mailosaur - Python library](https://mailosaur.com/) &middot; [![](https://github.com/mailosaur/mailosaur-python/workflows/CI/badge.svg)](https://github.com/mailosaur/mailosaur-python/actions) \n\nMailosaur lets you automate email and SMS tests as part of software development and QA.\n\n- **Unlimited test email addresses for all**  - every account gives users an unlimited number of test email addresses to test with.\n- **End-to-end (e2e) email and SMS testing** Allowing you to set up end-to-end tests for password reset emails, account verification processes and MFA/one-time passcodes sent via text message.\n- **Fake SMTP servers** Mailosaur also provides dummy SMTP servers to test with; allowing you to catch email in staging environments - preventing email being sent to customers by mistake.\n\n## Get Started\n\nThis guide provides several key sections:\n\n  - [Get Started](#get-started)\n  - [Creating an account](#creating-an-account)\n  - [Test email addresses with Mailosaur](#test-email-addresses-with-mailosaur)\n  - [Find an email](#find-an-email)\n  - [Find an SMS message](#find-an-sms-message)\n  - [Testing plain text content](#testing-plain-text-content)\n  - [Testing HTML content](#testing-html-content)\n  - [Working with hyperlinks](#working-with-hyperlinks)\n  - [Working with attachments](#working-with-attachments)\n  - [Working with images and web beacons](#working-with-images-and-web-beacons)\n  - [Spam checking](#spam-checking)\n\nYou can find the full [Mailosaur documentation](https://mailosaur.com/docs/) on the website.\n\nIf you get stuck, just contact us at support@mailosaur.com.\n\n## Installation\n\n```\npip install --upgrade mailosaur\n```\n\nThen import the library into your code. The value for `YOUR_API_KEY` is covered in the next step ([creating an account](#creating-an-account)):\n\n```py\nfrom mailosaur import MailosaurClient\nmailosaur = MailosaurClient(\"YOUR_API_KEY\")\n```\n\n### API Reference\n\nThis library is powered by the Mailosaur [email & SMS testing API](https://mailosaur.com/docs/api/). You can easily check out the API itself by looking at our [API reference documentation](https://mailosaur.com/docs/api/) or via our Postman or Insomnia collections:\n\n[![Run in Postman](https://run.pstmn.io/button.svg)](https://app.getpostman.com/run-collection/6961255-6cc72dff-f576-451a-9023-b82dec84f95d?action=collection%2Ffork&collection-url=entityId%3D6961255-6cc72dff-f576-451a-9023-b82dec84f95d%26entityType%3Dcollection%26workspaceId%3D386a4af1-4293-4197-8f40-0eb49f831325)\n [![Run in Insomnia}](https://insomnia.rest/images/run.svg)](https://insomnia.rest/run/?label=Mailosaur&uri=https%3A%2F%2Fmailosaur.com%2Finsomnia.json)\n\n## Creating an account\n\nCreate a [free trial account](https://mailosaur.com/app/signup) for Mailosaur via the website.\n\nOnce you have this, navigate to the [API tab](https://mailosaur.com/app/project/api) to find the following values:\n\n- **Server ID** - Servers act like projects, which group your tests together. You need this ID whenever you interact with a server via the API.\n- **Server Domain** - Every server has its own domain name. You'll need this to send email to your server.\n- **API Key** - You can create an API key per server (recommended), or an account-level API key to use across your whole account. [Learn more about API keys](https://mailosaur.com/docs/managing-your-account/api-keys/).\n\n## Test email addresses with Mailosaur\n\nMailosaur gives you an **unlimited number of test email addresses** - with no setup or coding required!\n\nHere's how it works:\n\n* When you create an account, you are given a server.\n* Every server has its own **Server Domain** name (e.g. `abc123.mailosaur.net`)\n* Any email address that ends with `@{YOUR_SERVER_DOMAIN}` will work with Mailosaur without any special setup. For example:\n  * `build-423@abc123.mailosaur.net`\n  * `john.smith@abc123.mailosaur.net`\n  * `rAnDoM63423@abc123.mailosaur.net`\n* You can create more servers when you need them. Each one will have its own domain name.\n\n***Can't use test email addresses?** You can also [use SMTP to test email](https://mailosaur.com/docs/email-testing/sending-to-mailosaur/#sending-via-smtp). By connecting your product or website to Mailosaur via SMTP, Mailosaur will catch all email your application sends, regardless of the email address.*\n\n## Find an email\n\nIn automated tests you will want to wait for a new email to arrive. This library makes that easy with the `messages.get` method. Here's how you use it:\n\n```py\nfrom mailosaur import MailosaurClient\nfrom mailosaur.models import SearchCriteria\n\nmailosaur = MailosaurClient(\"API_KEY\")\n\n# See https://mailosaur.com/app/project/api\nserver_id = \"abc123\"\nserver_domain = \"abc123.mailosaur.net\"\n\ncriteria = SearchCriteria()\ncriteria.sent_to = \"anything@\" + server_domain\n\nemail = mailosaur.messages.get(server_id, criteria)\n\nprint(email.subject) # \"Hello world!\"\n```\n\n### What is this code doing?\n\n1. Sets up an instance of `MailosaurClient` with your API key.\n2. Waits for an email to arrive at the server with ID `abc123`.\n3. Outputs the subject line of the email.\n\n## Find an SMS message\n\n**Important:** Trial accounts do not automatically have SMS access. Please contact our support team to enable a trial of SMS functionality.\n\nIf your account has [SMS testing](https://mailosaur.com/sms-testing/) enabled, you can reserve phone numbers to test with, then use the Mailosaur API in a very similar way to when testing email:\n\n```py\nfrom mailosaur import MailosaurClient\nfrom mailosaur.models import SearchCriteria\n\nmailosaur = MailosaurClient(\"API_KEY\")\n\n# See https://mailosaur.com/app/project/api\nserver_id = \"abc123\"\nserver_domain = \"abc123.mailosaur.net\"\n\ncriteria = SearchCriteria()\ncriteria.sent_to = \"4471235554444\"\n\nsms = mailosaur.messages.get(server_id, criteria)\n\nprint(sms.text.body)\n```\n\n## Testing plain text content\n\nMost emails, and all SMS messages, should have a plain text body. Mailosaur exposes this content via the `text.body` property on an email or SMS message:\n\n```py\nprint(message.text.body) # \"Hi Jason, ...\"\n\nif \"Jason\" in message.text.body:\n  print('Email contains \"Jason\"')\n```\n\n### Extracting verification codes from plain text\n\nYou may have an email or SMS message that contains an account verification code, or some other one-time passcode. You can extract content like this using a simple regex.\n\nHere is how to extract a 6-digit numeric code:\n\n```py\nprint(message.text.body) # \"Your access code is 243546.\"\n\nmatch = re.search(\"([0-9]{6})\", message.text.body)\nprint(match.group()) # \"243546\"\n```\n\n[Read more](https://mailosaur.com/docs/test-cases/text-content/)\n\n## Testing HTML content\n\nMost emails also have an HTML body, as well as the plain text content. You can access HTML content in a very similar way to plain text:\n\n```py\nprint(message.html.body) # \"<html><head ...\"\n```\n\n### Working with HTML using Beautiful Soup\n\nIf you need to traverse the HTML content of an email. For example, finding an element via a CSS selector, you can use the [Beautiful Soup](https://pypi.org/project/beautifulsoup4/) library.\n\n```sh\npip install beautifulsoup4\n```\n\n```py\nfrom bs4 import BeautifulSoup\n\n# ...\n\ndom = BeautifulSoup(message.html.body, 'html.parser')\n\nel = dom.find('.verification-code')\nverification_code = el.text\n\nprint(verification_code) # \"542163\"\n```\n\n[Read more](https://mailosaur.com/docs/test-cases/html-content/)\n\n## Working with hyperlinks\n\nWhen an email is sent with an HTML body, Mailosaur automatically extracts any hyperlinks found within anchor (`<a>`) and area (`<area>`) elements and makes these viable via the `html.links` array.\n\nEach link has a text property, representing the display text of the hyperlink within the body, and an href property containing the target URL:\n\n```py\n# How many links?\nprint(len(message.html.links)) # 2\n\nfirst_link = message.html.links[0]\nprint(first_link.text) # \"Google Search\"\nprint(first_link.href) # \"https://www.google.com/\"\n```\n\n**Important:** To ensure you always have valid emails. Mailosaur only extracts links that have been correctly marked up with `<a>` or `<area>` tags.\n\n### Links in plain text (including SMS messages)\n\nMailosaur auto-detects links in plain text content too, which is especially useful for SMS testing:\n\n```py\n# How many links?\nprint(len(message.text.links)) # 2\n\nfirst_link = message.text.links[0]\nprint(first_link.href) # \"https://www.google.com/\"\n```\n\n## Working with attachments\n\nIf your email includes attachments, you can access these via the `attachments` property:\n\n```py\n# How many attachments?\nprint(len(message.attachments)) # 2\n```\n\nEach attachment contains metadata on the file name and content type:\n\n```py\nfirst_attachment = message.attachments[0]\nprint(first_attachment.file_name) # \"contract.pdf\"\nprint(first_attachment.content_type) # \"application/pdf\"\n```\n\nThe `length` property returns the size of the attached file (in bytes):\n\n```py\nfirst_attachment = message.attachments[0]\nprint(first_attachment.length) # 4028\n```\n\n## Working with images and web beacons\n\nThe `html.images` property of a message contains an array of images found within the HTML content of an email. The length of this array corresponds to the number of images found within an email:\n\n```py\n# How many images in the email?\nprint(len(message.html.images)) # 1\n```\n\n### Remotely-hosted images\n\nEmails will often contain many images that are hosted elsewhere, such as on your website or product. It is recommended to check that these images are accessible by your recipients.\n\nAll images should have an alternative text description, which can be checked using the `alt` attribute.\n\n```py\nimage = message.html.images[0]\nprint(image.alt) # \"Hot air balloon\"\n```\n\n### Triggering web beacons\n\nA web beacon is a small image that can be used to track whether an email has been opened by a recipient.\n\nBecause a web beacon is simply another form of remotely-hosted image, you can use the `src` attribute to perform an HTTP request to that address:\n\n```py\nimport requests\n\n# ...\n\nconst image = message.html.images[0]\nprint(image.src) # \"https://example.com/s.png?abc123\"\n\n# Make an HTTP call to trigger the web beacon\nresponse = requests.get(image.src)\nprint(response.status_code) # 200\n```\n\n## Spam checking\n\nYou can perform a [SpamAssassin](https://spamassassin.apache.org/) check against an email. The structure returned matches the [spam test object](https://mailosaur.com/docs/api/#spam):\n\n```py\nresult = mailosaur.analysis.spam(message.id)\n\nprint(result.score) # 0.5\n\nfor r in result.spam_filter_results.spam_assassin:\n  print(r.rule)\n  print(r.description)\n  print(r.score)\n```\n\n## Development\n\nYou must have the following prerequisites installed:\n\n* [pip](https://pip.pypa.io/en/stable/installing/)\n\nInstall all development dependencies:\n\n```sh\npip install -r requirements.txt\n```\n\nThe test suite requires the following environment variables to be set:\n\n```sh\nexport MAILOSAUR_BASE_URL=https://mailosaur.com/\nexport MAILOSAUR_API_KEY=your_api_key\nexport MAILOSAUR_SERVER=server_id\n```\n\nRun all tests:\n\n```sh\npytest\n```\n\n## Contacting us\n\nYou can get us at [support@mailosaur.com](mailto:support@mailosaur.com)\n\n\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "The Mailosaur Python library lets you integrate email and SMS testing into your continuous integration process.",
    "version": "7.16.0",
    "project_urls": {
        "Bug Tracker": "https://github.com/mailosaur/mailosaur-python/issues",
        "Documentation": "https://mailosaur.com/docs/email-testing/python/",
        "Homepage": "https://github.com/mailosaur/mailosaur-python",
        "Source Code": "https://github.com/mailosaur/mailosaur-python"
    },
    "split_keywords": [
        "email",
        "sms",
        "testing",
        "automation",
        "selenium",
        "robot",
        "framework"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6621a64ed427d3267bd3dfce32471ce1977e94d2df639120f52ddbccb09cf85a",
                "md5": "69fab95308a131e4a164163fdc654377",
                "sha256": "4c07f1ba5f551cd15990b2e0bda68ac177f0c0a57bf5ae81aaf3a51b3ea8dd4a"
            },
            "downloads": -1,
            "filename": "mailosaur-7.16.0-py2.py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "69fab95308a131e4a164163fdc654377",
            "packagetype": "bdist_wheel",
            "python_version": "py2.py3",
            "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*",
            "size": 42664,
            "upload_time": "2023-09-15T14:31:36",
            "upload_time_iso_8601": "2023-09-15T14:31:36.182692Z",
            "url": "https://files.pythonhosted.org/packages/66/21/a64ed427d3267bd3dfce32471ce1977e94d2df639120f52ddbccb09cf85a/mailosaur-7.16.0-py2.py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cb4b135c52687a71772d0fafe31a871a36e6f58ca19343019b2a9d003c84d3b5",
                "md5": "e14db7ca615d54aa2f988945bee5140a",
                "sha256": "7a68f86e75ae7955a1a10a0d6985b614699847bea730f190e8d328d32f908dc4"
            },
            "downloads": -1,
            "filename": "mailosaur-7.16.0.tar.gz",
            "has_sig": false,
            "md5_digest": "e14db7ca615d54aa2f988945bee5140a",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*",
            "size": 28395,
            "upload_time": "2023-09-15T14:31:38",
            "upload_time_iso_8601": "2023-09-15T14:31:38.326099Z",
            "url": "https://files.pythonhosted.org/packages/cb/4b/135c52687a71772d0fafe31a871a36e6f58ca19343019b2a9d003c84d3b5/mailosaur-7.16.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-09-15 14:31:38",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "mailosaur",
    "github_project": "mailosaur-python",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [],
    "lcname": "mailosaur"
}
        
Elapsed time: 0.11532s