1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114
|
Metadata-Version: 2.1
Name: mailmanclient
Version: 3.3.5
Summary: mailmanclient -- Python bindings for Mailman REST API
Home-page: http://www.list.org/
Maintainer: Barry Warsaw
Maintainer-email: barry@list.org
License: LGPLv3
Platform: UNKNOWN
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Operating System :: POSIX
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Topic :: Internet :: WWW/HTTP
Description-Content-Type: text/x-rst
Provides-Extra: testing
Provides-Extra: docs
Provides-Extra: lint
License-File: COPYING.LESSER
..
This file is part of mailmanclient.
mailmanclient is free software: you can redistribute it and/or modify it
under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, version 3 of the License.
mailmanclient is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
License for more details.
You should have received a copy of the GNU Lesser General Public License
along with mailman.client. If not, see <http://www.gnu.org/licenses/>.
==============
Mailman Client
==============
.. image:: https://gitlab.com/mailman/mailmanclient/badges/master/build.svg
:target: https://gitlab.com/mailman/mailmanclient/commits/master
.. image:: https://readthedocs.org/projects/mailmanclient/badge
:target: https://mailmanclient.readthedocs.io
.. image:: http://img.shields.io/pypi/v/mailmanclient.svg
:target: https://pypi.python.org/pypi/mailmanclient
.. image:: http://img.shields.io/pypi/dm/mailmanclient.svg
:target: https://pypi.python.org/pypi/mailmanclient
The ``mailmanclient`` library provides official Python bindings for the GNU
Mailman 3 REST API.
Requirements
============
``mailmanclient`` requires Python 3.7 or newer.
Documentation
=============
A `simple guide`_ to using the library is available within this package, in
the form of doctests. The manual is also available online at:
https://mailmanclient.readthedocs.io/en/latest/
Project details
===============
The project home page is:
https://gitlab.com/mailman/mailmanclient
You should report bugs at:
https://gitlab.com/mailman/mailmanclient/issues
You can download the latest version of the package either from the `Cheese Shop`_:
http://pypi.python.org/pypi/mailmanclient
or from the GitLab page above. Of course you can also just install it with
``pip`` from the command line::
$ pip install mailmanclient
You can grab the latest development copy of the code using Git, from the Gitlab
home page above. If you have Git installed, you can grab your own branch of
the code like this::
$ git clone https://gitlab.com/mailman/mailmanclient.git
You may contact the developers via mailman-developers@python.org
Acknowledgements
================
Many thanks to Florian Fuchs for his contribution of an initial REST
client. Also thanks to all the contributors of Mailman Client who have
contributed code, raised issues or devoted their time in any capacity!
.. _`simple guide`: https://mailmanclient.readthedocs.io/en/latest/src/mailmanclient/docs/using.html
.. _`Cheese Shop`: https://pypi.org/project/mailmanclient
|