-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
tabby
committed
Feb 4, 2021
0 parents
commit b38991a
Showing
114 changed files
with
11,817 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
# Byte-compiled / optimized / DLL files | ||
__pycache__/ | ||
*.py[cod] | ||
*$py.class | ||
|
||
# C extensions | ||
*.so | ||
|
||
# Distribution / packaging | ||
.Python | ||
env/ | ||
build/ | ||
develop-eggs/ | ||
dist/ | ||
downloads/ | ||
eggs/ | ||
.eggs/ | ||
lib/ | ||
lib64/ | ||
parts/ | ||
sdist/ | ||
var/ | ||
*.egg-info/ | ||
.installed.cfg | ||
*.egg | ||
|
||
# PyInstaller | ||
# Usually these files are written by a python script from a template | ||
# before PyInstaller builds the exe, so as to inject date/other infos into it. | ||
*.manifest | ||
*.spec | ||
|
||
# Installer logs | ||
pip-log.txt | ||
pip-delete-this-directory.txt | ||
|
||
# Unit test / coverage reports | ||
htmlcov/ | ||
.tox/ | ||
.coverage | ||
.coverage.* | ||
.cache | ||
nosetests.xml | ||
coverage.xml | ||
*,cover | ||
.hypothesis/ | ||
venv/ | ||
.python-version | ||
|
||
# Translations | ||
*.mo | ||
*.pot | ||
|
||
# Django stuff: | ||
*.log | ||
|
||
# Sphinx documentation | ||
docs/_build/ | ||
|
||
# PyBuilder | ||
target/ | ||
|
||
#Ipython Notebook | ||
.ipynb_checkpoints |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Swagger Codegen Ignore | ||
# Generated by swagger-codegen https://github.com/swagger-api/swagger-codegen | ||
|
||
# Use this file to prevent files from being overwritten by the generator. | ||
# The patterns follow closely to .gitignore or .dockerignore. | ||
|
||
# As an example, the C# client generator defines ApiClient.cs. | ||
# You can make changes and tell Swagger Codgen to ignore just this file by uncommenting the following line: | ||
#ApiClient.cs | ||
|
||
# You can match any string of characters against a directory, file or extension with a single asterisk (*): | ||
#foo/*/qux | ||
# The above matches foo/bar/qux and foo/baz/qux, but not foo/bar/baz/qux | ||
|
||
# You can recursively match patterns against a directory, file or extension with a double asterisk (**): | ||
#foo/**/qux | ||
# This matches foo/bar/qux, foo/baz/qux, and foo/bar/baz/qux | ||
|
||
# You can also negate patterns with an exclamation (!). | ||
# For example, you can ignore all files in a docs folder with the file extension .md: | ||
#docs/*.md | ||
# Then explicitly reverse the ignore rule for a single file: | ||
#!docs/README.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
2.4.18 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# ref: https://docs.travis-ci.com/user/languages/python | ||
language: python | ||
python: | ||
- "2.7" | ||
- "3.2" | ||
- "3.3" | ||
- "3.4" | ||
- "3.5" | ||
#- "3.5-dev" # 3.5 development branch | ||
#- "nightly" # points to the latest development branch e.g. 3.6-dev | ||
# command to install dependencies | ||
install: "pip install -r requirements.txt" | ||
# command to run tests | ||
script: nosetests |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
# coding: utf-8 | ||
|
||
# flake8: noqa | ||
|
||
""" | ||
MimePost API Reference (Beta) | ||
MimePost API for sending email. You can find out more about MimePost at [https://mimepost.com](http://mimepost.com). For this sample, you can use the api key `special-key` to test the authorization filters. # noqa: E501 | ||
OpenAPI spec version: 0.1.0 | ||
Contact: [email protected] | ||
Generated by: https://github.com/swagger-api/swagger-codegen.git | ||
""" | ||
|
||
|
||
from __future__ import absolute_import | ||
|
||
# import apis into sdk package | ||
from MimePost.api.accounts_api import AccountsApi | ||
from MimePost.api.domains_api import DomainsApi | ||
from MimePost.api.emails_api import EmailsApi | ||
from MimePost.api.stats_api import StatsApi | ||
from MimePost.api.webhooks_api import WebhooksApi | ||
|
||
# import ApiClient | ||
from MimePost.api_client import ApiClient | ||
from MimePost.configuration import Configuration | ||
# import models into sdk package | ||
from MimePost.models.account_profile import AccountProfile | ||
from MimePost.models.account_profile_response import AccountProfileResponse | ||
from MimePost.models.account_settings import AccountSettings | ||
from MimePost.models.api_response import ApiResponse | ||
from MimePost.models.api_response_all_webhooks import ApiResponseAllWebhooks | ||
from MimePost.models.api_response_all_webhooks_data import ApiResponseAllWebhooksData | ||
from MimePost.models.api_response_domains_list import ApiResponseDomainsList | ||
from MimePost.models.api_response_domains_list_data import ApiResponseDomainsListData | ||
from MimePost.models.api_response_emaillogs import ApiResponseEmaillogs | ||
from MimePost.models.api_response_emaillogs_data import ApiResponseEmaillogsData | ||
from MimePost.models.api_response_single_webhooks import ApiResponseSingleWebhooks | ||
from MimePost.models.api_response_stats import ApiResponseStats | ||
from MimePost.models.api_response_stats_data import ApiResponseStatsData | ||
from MimePost.models.api_response_stats_data_datewise_summary import ApiResponseStatsDataDatewiseSummary | ||
from MimePost.models.api_response_stats_data_graph_summary import ApiResponseStatsDataGraphSummary | ||
from MimePost.models.api_response_stats_data_total_summary import ApiResponseStatsDataTotalSummary | ||
from MimePost.models.api_response_stats_data_total_summary_status import ApiResponseStatsDataTotalSummaryStatus | ||
from MimePost.models.api_response_webhooks import ApiResponseWebhooks | ||
from MimePost.models.api_response_webhooks_data import ApiResponseWebhooksData | ||
from MimePost.models.domain import Domain | ||
from MimePost.models.email import Email | ||
from MimePost.models.email_attachments import EmailAttachments | ||
from MimePost.models.email_global_merge_vars import EmailGlobalMergeVars | ||
from MimePost.models.email_merge_vars import EmailMergeVars | ||
from MimePost.models.email_to import EmailTo | ||
from MimePost.models.webhook import Webhook | ||
from MimePost.models.webhook1 import Webhook1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
from __future__ import absolute_import | ||
|
||
# flake8: noqa | ||
|
||
# import apis into api package | ||
from MimePost.api.accounts_api import AccountsApi | ||
from MimePost.api.domains_api import DomainsApi | ||
from MimePost.api.emails_api import EmailsApi | ||
from MimePost.api.stats_api import StatsApi | ||
from MimePost.api.webhooks_api import WebhooksApi |
Oops, something went wrong.