Metadata-Version: 2.1
Name: dashamail
Version: 0.1.0
Summary: DashaMail API client for Python
Home-page: https://github.com/pilosus/python-dashamail/
Author: Vitaly Samigullin
Author-email: vrs@pilosus.org
License: Apache License 2.0
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python :: 3
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Topic :: Office/Business
Requires-Python: >=3.6,<4
Description-Content-Type: text/x-rst
License-File: LICENSE
Requires-Dist: requests (<3,>=2.0)

dashamail
=========

`DashaMail`_ API client for Python

Usage
-----

1. Sign up for a DashaMail account
2. Get your API access token: My account -> Integrations
3. Look up `DashaMail API`_ methods you need
4. Use ``dashamail`` client to call the method:

.. code-block:: python

  from dashamail import DashaMailClient

  client = DashaMailClient(api_key="YOUR-API-KEY")
  client.lists_get()


Installation
------------

Just run:

.. code-block:: bash

  pip install -U dashamail


Contributing
------------

See `CONTRIBUTING.rst`_.


.. _DashaMail: https://dashamail.ru/
.. _DashaMail API: https://dashamail.ru/api/
.. _CONTRIBUTING.rst: https://github.com/pilosus/python-dashamail/tree/master/CONTRIBUTING.rst


Changelog
---------

0.1.0 (2022-04-20)
..................
* Support for ``lists.*`` API methods


