{
"info": {
"author": "Charles TISSIER",
"author_email": "charles@vingtcinq.io",
"bugtrack_url": null,
"classifiers": [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.6",
"Topic :: Software Development :: Libraries :: Python Modules"
],
"description": "|mailchimp3 v3.0.9 on PyPi| |MIT license| |Stable|\n\npython-mailchimp-api\n====================\n\nA straighforward python client for v3 of MailChimp API using requests >=\n2.7.0.\n\nGetting Started\n---------------\n\nInstallation\n~~~~~~~~~~~~\n\nThis client is hosted at PyPi under the name ``mailchimp3``, to install\nit, simply run\n\n``pip install mailchimp3``\n\nUpgrading from v2.x\n~~~~~~~~~~~~~~~~~~~\n\nThe order of arguments for initializing the Mailchimp API has been\nreversed starting in 2.1.0 as the username is an optional argument for\nbasic auth. Please reverse the order of your arguments or remove the\nusername argument entirely. The name of the authentication argument has\nalso changed from ``mc_secret`` to ``mc_api``.\n\nUpgrading from v1.x\n~~~~~~~~~~~~~~~~~~~\n\nThe installation procedure for 2.x is the same as before, however there\nare a massive number of changes to the naming conventions within this\nwrapper and the way in which certain methods are called. Please read the\ndocumentation below carefully for information on the new structure and\nexpanded functionality. With this release, all documented endpoints are\nimplemented and all endpoint methods are available.\n\nHistory\n~~~~~~~\n\nUp to date with\n`changelog `__\nfeatures listed thru 3/03/2017.\n\nInitialization\n~~~~~~~~~~~~~~\n\nGrab ``YOUR_API_KEY`` from your mailchimp account (Account > Extra > Api\nKeys). ``YOUR_USERNAME`` is the one you use to login on the website and\nis optional.\n\n::\n\n from mailchimp3 import MailChimp\n\n client = MailChimp(mc_api='YOUR_API_KEY', mc_user='YOUR_USERNAME')\n\nOAuth Support\n~~~~~~~~~~~~~\n\nIn addition to HTTP Basic Authentication, MailChimp supports\nauthentication through OAuth2. Information on obtaining the proper\naccess key can be found\n`here `__.\n\nPagination\n~~~~~~~~~~\n\nSimply add ``count`` and ``offset`` arguments in your function. The\ncount is how many records to return, the offset is how many records to\nskip. For endpoints that allow the pagination parameters, the all()\nmethod has an additional boolean ``get_all`` argument that will loop\nthrough all records until the API no longer returns any to get all\nrecords without manually performing an additional query. By default,\ncount is 10 and offset is 0 for all endpoints that support it. The\n``get_all`` parameter on the all() method on any endpoint defaults to\nfalse, which follows the values that are provided in the call, and using\n``get_all=True`` will ignore the provided offset to ensure that all\nrecords are returned. When using get_all, the count will be 500 unless\notherwise specified. It is strongly recommended to avoid small values\nfor ``count`` to fetch large numbers of records because this will flood\nthe system. A large ``count`` size should not impact calls which are\nexpected to return a very small number of records, and should improve\nperformance for calls where fetching 500 records would only provide a\nfraction by preventing the delay of making a huge number of requests.\n\n::\n\n client.lists.members.all('123456', count=100, offset=0)\n\nFields\n~~~~~~\n\nMany endpoints allow you to select which fields will be returned out of\nall available fields (for example, only the email_address of a member).\nSimply add ``fields`` arguments in your function. The following only\ndisplay email_address and id for each member in list 123456:\n\n::\n\n client.lists.members.all('123456', get_all=True, fields=\"members.email_address,members.id\")\n\nExamples\n~~~~~~~~\n\n::\n\n # returns all the lists (only name and id)\n client.lists.all(get_all=True, fields=\"lists.name,lists.id\")\n\n # returns all members inside list '123456'\n client.lists.members.all('123456', get_all=True)\n\n # return the first 100 member's email addresses for the list with id 123456\n client.lists.members.all('123456', count=100, offset=0, fields=\"members.email_address\")\n\n # returns the list matching id '123456'\n client.lists.get('123456')\n\n # add John Doe with email john.doe@example.com to list matching id '123456'\n client.lists.members.create('123456', {\n 'email_address': 'john.doe@example.com',\n 'status': 'subscribed',\n 'merge_fields': {\n 'FNAME': 'John',\n 'LNAME': 'Doe',\n },\n })\n\n # returns all the campaigns\n client.campaigns.all(get_all=True)\n\n # You can also disable at runtime with the optional ``enabled`` parameter.\n # Every API call will return None\n client = MailChimp('YOUR SECRET KEY', enabled=False)\n\n # You are encouraged to specify a value in seconds for the ``timeout``\n # parameter to avoid hanging requests.\n client = MailChimp('YOUR SECRET KEY', timeout=10.0)\n\n # You are encouraged to specify a User-Agent for requests to the MailChimp\n # API. Headers can be specified using the ``request_headers`` parameter.\n headers = requests.utils.default_headers()\n headers['User-Agent'] = 'Example (example@example.com)'\n client = MailChimp('YOUR SECRET KEY', request_headers=headers)\n\nAPI Structure\n-------------\n\nAll endpoints follow the structure listed in the official MailChimp API\nv3 documentation. The structure will be listed below and then the\nindividual methods available after.\n\n::\n\n MailChimp\n +- Root\n +- Authorized Apps\n +- Automations\n | +- Actions\n | +- Emails\n | | +- Actions\n | | +- Queues\n | +- Removed Subscribers\n +- Batch Operations\n +- Batch Webhooks\n +- Campaign Folders\n +- Campaigns\n | +- Actions\n | +- Content\n | +- Feedback\n | +- Send Checklist\n +- Conversations\n | +- Messages\n +- Stores\n | +- Carts\n | | +- Lines\n | +- Customers\n | +- Orders\n | | +- Lines\n | +- Products\n | +- Images\n | +- Variants\n | +- Promo Rules\n | +- Promo Codes\n +- File Manager Files\n +- File Manager Folders\n +- Lists\n | +- Abuse Reports\n | +- Activity\n | +- Clients\n | +- Growth History\n | +- Interest Categories\n | | +- Interests\n | +- Members\n | | +- Activity\n | | +- Goals\n | | +- Notes\n | | +- Tags\n | +- Merge Fields\n | +- Segments\n | | +- Segment Members\n | +- Signup Forms\n | +- Twitter Lead Generation Carts\n | +- Webhooks\n +- Ping\n +- Reports\n | +- Campaign Abuse\n | +- Campaign Advice\n | +- Campaign Open reports\n | +- Click Reports\n | | +- Members\n | +- Domain Performance\n | +- EepURL Reports\n | +- Email Activity\n | +- Google Analytics\n | +- Location\n | +- Sent To\n | +- Sub-Reports\n | +- Unsubscribes\n +- Seach Campaigns\n +- Search Members\n +- Template Folders\n +- Templates\n +- Default Content\n\nAPI Endpoints\n-------------\n\nBelow is the list of all endpoints and the methods that can be called\nagainst them. Any endpoint that has a method that takes an ID argument\n(for example the app_id in the authorized_apps endpoint or the\nsubscriber_hash in the list members endpoints) will record all IDs\npassed as well as those generated by methods that will only ever return\na single result such as the create() method present on some endpoints.\nThese stored attributes are only available at the level that they were\npassed or created at and must be passed again to interact with a lower\nor higher level such as accessing a list and then a member. The below\ncode assumes that you have initialized the MailChimp class as listed\nabove with the name ``client``.\n\nRoot\n~~~~\n\n.. _root-1:\n\nRoot\n^^^^\n\n::\n\n client.root.get()\n\nAuthorized Apps\n~~~~~~~~~~~~~~~\n\n.. _authorized-apps-1:\n\nAuthorized Apps\n^^^^^^^^^^^^^^^\n\n::\n\n client.authorized_apps.create(data={})\n client.authorized_apps.all(get_all=False)\n client.authorized_apps.get(app_id='')\n\nAutomations\n~~~~~~~~~~~\n\n.. _automations-1:\n\nAutomations\n^^^^^^^^^^^\n\n::\n\n client.automations.all(get_all=False)\n client.automations.get(workflow_id='')\n\nAutomation Actions\n^^^^^^^^^^^^^^^^^^\n\n::\n\n client.automations.actions.pause(workflow_id='')\n client.automations.actions.start(workflow_id='')\n\nAutomation Emails\n^^^^^^^^^^^^^^^^^\n\n::\n\n client.automations.emails.all(workflow_id='')\n client.automations.emails.get(workflow_id='', email_id='')\n\nAutomation Email Actions\n^^^^^^^^^^^^^^^^^^^^^^^^\n\n::\n\n client.automations.emails.actions.pause(workflow_id='', email_id='')\n client.automations.emails.actions.start(workflow_id='', email_id='')\n\nAutomation Email Queues\n^^^^^^^^^^^^^^^^^^^^^^^\n\n::\n\n client.automations.emails.queues.create(workflow_id='', email_id='', data={})\n client.automations.emails.queues.all(workflow_id='', email_id='')\n client.automations.emails.queues.get(workflow_id='', email_id='', subscriber_hash='')\n\nAutomation Removed Subscribers\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\n::\n\n client.automations.removed_subscribers.create(workflow_id='', data={})\n client.automations.removed_subscribers.all(workflow_id='')\n\nBatch Operations\n~~~~~~~~~~~~~~~~\n\n.. _batch-operations-1:\n\nBatch Operations\n^^^^^^^^^^^^^^^^\n\n::\n\n client.batch_operations.create(data={})\n client.batch_operations.all(get_all=False)\n client.batch_operations.get(batch_id='')\n client.batch_operations.delete(batch_id='')\n\nBatch Webhooks\n~~~~~~~~~~~~~~\n\n.. _batch-webhooks-1:\n\nBatch Webhooks\n^^^^^^^^^^^^^^\n\n::\n\n client.batch_webhooks.create(data={})\n client.batch_webhooks.all(get_all=False)\n client.batch_webhooks.get(batch_webhook_id='')\n client.batch_webhooks.update(batch_webhook_id='', data={})\n client.batch_webhooks.delete(batch_webhook_id='')\n\nCampaigns\n~~~~~~~~~\n\nFolders\n^^^^^^^\n\n::\n\n client.campaign_folders.create(data={})\n client.campaign_folders.all(get_all=False)\n client.campaign_folders.get(folder_id='')\n client.campaign_folders.update(folder_id='', data={})\n client.campaign_folders.delete(folder_id='')\n\n.. _campaigns-1:\n\nCampaigns\n^^^^^^^^^\n\n::\n\n client.campaigns.create(data={})\n client.campaigns.all(get_all=False)\n client.campaigns.get(campaign_id='')\n client.campaigns.update(campaign_id='')\n client.campaigns.delete(campaign_id='')\n\nCampaign Actions\n^^^^^^^^^^^^^^^^\n\n::\n\n client.campaigns.actions.cancel(campaign_id='')\n client.campaigns.actions.pause(campaign_id='')\n client.campaigns.actions.replicate(campaign_id='')\n client.campaigns.actions.resume(campaign_id='')\n client.campaigns.actions.schedule(campaign_id='', data={})\n client.campaigns.actions.send(campaign_id='')\n client.campaigns.actions.test(campaign_id='', data={})\n client.campaigns.actions.unschedule(campaign_id='')\n\nCampaign Content\n^^^^^^^^^^^^^^^^\n\n::\n\n client.campaigns.content.get(campaign_id='')\n client.campaigns.content.update(campaign_id='', data={})\n\nCampaign Feedback\n^^^^^^^^^^^^^^^^^\n\n::\n\n client.campaigns.feedback.create(campaign_id='', data={})\n client.campaigns.feedback.all(campaign_id='', get_all=False)\n client.campaigns.feedback.get(campaign_id='', feedback_id='')\n client.campaigns.feedback.update(campaign_id='', feedback_id='', data={})\n client.campaigns.feedback.delete(campaign_id='', feedback_id='')\n\nCampaign Send Checklist\n^^^^^^^^^^^^^^^^^^^^^^^\n\n::\n\n client.campaigns.send_checklist.get(campaign_id='')\n\nConversations\n~~~~~~~~~~~~~\n\n.. _conversations-1:\n\nConversations\n^^^^^^^^^^^^^\n\n::\n\n client.conversations.all(get_all=False)\n client.conversations.get(conversation_id='')\n\nConversation Messages\n^^^^^^^^^^^^^^^^^^^^^\n\n::\n\n client.conversations.messages.create(conversation_id='', data={})\n client.conversations.messages.all(conversation_id='')\n client.conversations.messages.get(conversation_id='', message_id='')\n\nE-Commerce\n~~~~~~~~~~\n\nStores\n^^^^^^\n\n::\n\n client.stores.create(data={})\n client.stores.all(get_all=False)\n client.stores.get(store_id='')\n client.stores.update(store_id='', data={})\n client.stores.delete(store_id='')\n\nStore Carts\n^^^^^^^^^^^\n\n::\n\n client.stores.carts.create(store_id='', data={})\n client.stores.carts.all(store_id='', get_all=False)\n client.stores.carts.get(store_id='', cart_id='')\n client.stores.carts.update(store_id='', cart_id='', data={})\n client.stores.carts.delete(store_id='', cart_id='')\n\nStore Cart Lines\n^^^^^^^^^^^^^^^^\n\n::\n\n client.stores.carts.lines.create(store_id='', cart_id='', data={})\n client.stores.carts.lines.all(store_id='', cart_id='', get_all=False)\n client.stores.carts.lines.get(store_id='', cart_id='', line_id='')\n client.stores.carts.lines.update(store_id='', cart_id='', line_id='', data={})\n client.stores.carts.lines.delete(store_id='', cart_id='', line_id='')\n\nStore Customers\n^^^^^^^^^^^^^^^\n\n::\n\n client.stores.customers.create(store_id='', data={})\n client.stores.customers.all(store_id='', get_all=False)\n client.stores.customers.get(store_id='', customer_id='')\n client.stores.customers.update(store_id='', customer_id='', data={})\n client.stores.customers.create_or_update(store_id='', customer_id='', data={})\n client.stores.customers.delete(store_id='', customer_id='')\n\nStore Orders\n^^^^^^^^^^^^\n\n::\n\n client.stores.orders.create(store_id='', data={})\n client.stores.orders.all(store_id='', get_all=False)\n client.stores.orders.get(store_id='', order_id='')\n client.stores.orders.update(store_id='', order_id='', data={})\n client.stores.orders.delete(store_id='', order_id='')\n\nStore Order Lines\n^^^^^^^^^^^^^^^^^\n\n::\n\n client.stores.orders.lines.create(store_id='', order_id='', data={})\n client.stores.orders.lines.all(store_id='', order_id='', get_all=False)\n client.stores.orders.lines.get(store_id='', order_id='', line_id='')\n client.stores.orders.lines.update(store_id='', order_id='', line_id='', data={})\n client.stores.orders.lines.delete(store_id='', order_id='', line_id='')\n\nStore Products\n^^^^^^^^^^^^^^\n\n::\n\n client.stores.products.create(store_id='', data={})\n client.stores.products.all(store_id='', get_all=False)\n client.stores.products.get(store_id='', product_id='')\n client.stores.products.update(store_id='', product_id='')\n client.stores.products.delete(store_id='', product_id='')\n\nStore Product Images\n^^^^^^^^^^^^^^^^^^^^\n\n::\n\n client.stores.products.images.create(store_id='', product_id='', data={})\n client.stores.products.images.all(store_id='', product_id='', get_all=False)\n client.stores.products.images.get(store_id='', product_id='', image_id='')\n client.stores.products.images.update(store_id='', product_id='', image_id='', data={})\n client.stores.products.images.delete(store_id='', product_id='', image_id='')\n\nStore Product Variants\n^^^^^^^^^^^^^^^^^^^^^^\n\n::\n\n client.stores.products.variants.create(store_id='', product_id='', data={})\n client.stores.products.variants.all(store_id='', product_id='', get_all=False)\n client.stores.products.variants.get(store_id='', product_id='', variant_id='')\n client.stores.products.variants.update(store_id='', product_id='', variant_id='', data={})\n client.stores.products.variants.create_or_update(store_id='', product_id='', variant_id='', data={})\n client.stores.products.variants.delete(store_id='', product_id='', variant_id='')\n\nFile Manager\n~~~~~~~~~~~~\n\nFiles\n^^^^^\n\n::\n\n client.files.create(data={})\n client.files.all(get_all=False)\n client.files.get(file_id='')\n client.files.update(file_id='', data={})\n client.files.delete(file_id='')\n\n.. _folders-1:\n\nFolders\n^^^^^^^\n\n::\n\n client.folders.create(data={})\n client.folders.all(get_all=False)\n client.folders.get(folder_id='')\n client.folders.update(folder_id='', data={})\n client.folders.delete(folder_id='')\n\nLists\n~~~~~\n\n.. _lists-1:\n\nLists\n^^^^^\n\n::\n\n client.lists.create(data={})\n client.lists.update_members(list_id='', data={})\n client.lists.all(get_all=False)\n client.lists.get(list_id='')\n client.lists.update(list_id='', data={})\n client.lists.delete(list_id='')\n\nList Abuse Reports\n^^^^^^^^^^^^^^^^^^\n\n::\n\n client.lists.abuse_reports.all(list_id='', get_all=False)\n client.lists.abuse_reports.get(list_id='', report_id='')\n\nList Activity\n^^^^^^^^^^^^^\n\n::\n\n client.lists.activity.all(list_id='')\n\nList Clients\n^^^^^^^^^^^^\n\n::\n\n client.lists.clients.all(list_id='')\n\nList Growth History\n^^^^^^^^^^^^^^^^^^^\n\n::\n\n client.lists.growth_history.all(list_id='', get_all=False)\n client.lists.growth_history.get(list_id='', month='')\n\nList Interest Categories\n^^^^^^^^^^^^^^^^^^^^^^^^\n\n::\n\n client.lists.interest_categories.create(list_id='', data={})\n client.lists.interest_categories.all(list_id='', get_all=False)\n client.lists.interest_categories.get(list_id='', category_id='')\n client.lists.interest_categories.update(list_id='', category_id='', data={})\n client.lists.interest_categories.delete(list_id='', category_id='')\n\nList Interest Category Interests\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\n::\n\n client.lists.interest_categories.interests.create(list_id='', category_id='', data={})\n client.lists.interest_categories.interests.all(list_id='', category_id='', get_all=False)\n client.lists.interest_categories.interests.get(list_id='', category_id='', interest_id='')\n client.lists.interest_categories.interests.update(list_id='', category_id='', interest_id='', data={})\n client.lists.interest_categories.interests.delete(list_id='', category_id='', interest_id='')\n\nList Members\n^^^^^^^^^^^^\n\n::\n\n client.lists.members.create(list_id='', data={})\n client.lists.members.all(list_id='', get_all=False)\n client.lists.members.get(list_id='', subscriber_hash='')\n client.lists.members.update(list_id='', subscriber_hash='', data={})\n client.lists.members.create_or_update(list_id='', subscriber_hash='', data={})\n client.lists.members.delete(list_id='', subscriber_hash='')\n client.lists.members.delete_permanent(list_id='', subscriber_hash='')\n\nList Member Activity\n^^^^^^^^^^^^^^^^^^^^\n\n::\n\n client.lists.members.activity.all(list_id='', subscriber_hash='')\n\nList Member Goals\n^^^^^^^^^^^^^^^^^\n\n::\n\n client.lists.members.goals.all(list_id='', subscriber_hash='')\n\nList Member Notes\n^^^^^^^^^^^^^^^^^\n\n::\n\n client.lists.members.notes.create(list_id='', subscriber_hash='', data={})\n client.lists.members.notes.all(list_id='', subscriber_hash='', get_all=False)\n client.lists.members.notes.get(list_id='', subscriber_hash='', note_id='')\n client.lists.members.notes.update(list_id='', subscriber_hash='', note_id='', data={})\n client.lists.members.notes.delete(list_id='', subscriber_hash='', note_id='')\n\nList Member Tags\n^^^^^^^^^^^^^^^^\n\n::\n\n client.lists.members.tags.update(list_id='', subscriber_hash='', data={})\n client.lists.members.tags.all(list_id='', subscriber_hash='')\n\nList Merge Fields\n^^^^^^^^^^^^^^^^^\n\n::\n\n client.lists.merge_fields.create(list_id='', data={})\n client.lists.merge_fields.all(list_id='', get_all=False)\n client.lists.merge_fields.get(list_id='', merge_id='')\n client.lists.merge_fields.update(list_id='', merge_id='', data={})\n client.lists.merge_fields.delete(list_id='', merge_id='')\n\nList Segments\n^^^^^^^^^^^^^\n\n::\n\n client.lists.segments.create(list_id='', data={})\n client.lists.segments.all(list_id='', get_all=False)\n client.lists.segments.get(list_id='', segment_id='')\n client.lists.segments.update(list_id='', segment_id='', data={})\n client.lists.segments.update_members(list_id='', segment_id='', data={})\n client.lists.segments.delete(list_id='', segment_id='')\n\nList Segment Members\n^^^^^^^^^^^^^^^^^^^^\n\n::\n\n client.lists.segments.members.create(list_id='', segment_id='', data={})\n client.lists.segments.members.all(list_id='', segment_id='', get_all=False)\n client.lists.segments.members.delete(list_id='', segment_id='', subscriber_hash='')\n\nList Signup Forms\n^^^^^^^^^^^^^^^^^\n\n::\n\n client.lists.signup_forms.create(list_id='', data={})\n client.lists.signup_forms.all(list_id='')\n\nList Webhooks\n^^^^^^^^^^^^^\n\n::\n\n client.lists.webhooks.create(list_id='', data={})\n client.lists.webhooks.all(list_id='')\n client.lists.webhooks.get(list_id='', webhook_id='')\n client.lists.webhooks.update(list_id='', webhook_id='', data={})\n client.lists.webhooks.delete(list_id='', webhook_id='')\n\nReports\n~~~~~~~\n\n.. _reports-1:\n\nReports\n^^^^^^^\n\n::\n\n client.reports.all(get_all=False)\n client.reports.get(campaign_id='')\n\nCampaign Abuse Reports\n^^^^^^^^^^^^^^^^^^^^^^\n\n::\n\n client.reports.abuse_reports.all(campaign_id='')\n client.reports.abuse_reports.get(campaign_id='', report_id='')\n\nCampaign Advice\n^^^^^^^^^^^^^^^\n\n::\n\n client.reports.advice.all(campaign_id='')\n\nClick Details Report\n^^^^^^^^^^^^^^^^^^^^\n\n::\n\n client.reports.click_details.all(campaign_id='', get_all=False)\n client.reports.click_details.get(campaign_id='', link_id='')\n\nClick Details Report Members\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\n::\n\n client.reports.click_details.members.all(campaign_id='', link_id='', get_all=False)\n client.reports.click_details.members.get(campaign_id='', link_id='', subscriber_hash='')\n\nDomain Performance Reports\n^^^^^^^^^^^^^^^^^^^^^^^^^^\n\n::\n\n client.reports.domain_performance.all(campaign_id='')\n\nEepURL Reports\n^^^^^^^^^^^^^^\n\n::\n\n client.reports.eepurl.all(camnpaign_id='')\n\nEmail Activity Reports\n^^^^^^^^^^^^^^^^^^^^^^\n\n::\n\n client.reports.email_activity.all(campaign_id='', get_all=False)\n client.reports.email_activity.get(campaign_id='', subscriber_hash='')\n\nLocations Report\n^^^^^^^^^^^^^^^^\n\n::\n\n client.reports.locations.all(campaign_id='', get_all=False)\n\nSent To Reports\n^^^^^^^^^^^^^^^\n\n::\n\n client.reports.sent_to.all(campaign_id='', get_all=False)\n client.reports.sent_to.get(campaign_id='', subscriber_hash='')\n\nSub-Reports\n^^^^^^^^^^^\n\n::\n\n client.reports.subreports.all(campaign_id='')\n\nUnsubscribes\n^^^^^^^^^^^^\n\n::\n\n client.reports.unsubscribes.all(campaign_id='', get_all=False)\n client.reports.unsubscribes.get(campaign_id='', subscriber_hash='')\n\nSearch\n~~~~~~\n\n.. _campaigns-2:\n\nCampaigns\n^^^^^^^^^\n\n::\n\n client.search_campaigns.get()\n\nMembers\n^^^^^^^\n\n::\n\n client.search_members.get()\n\nTemplates\n~~~~~~~~~\n\n.. _folders-2:\n\nFolders\n^^^^^^^\n\n::\n\n client.template_folders.create(data={})\n client.template_folders.all(get_all=False)\n client.template_folders.get(folder_id='')\n client.template_folders.update(folder_id='', data={})\n client.template_folders.delete(folder_id='')\n\n.. _templates-1:\n\nTemplates\n^^^^^^^^^\n\n::\n\n client.templates.create(data={})\n client.templates.all(get_all=False)\n client.templates.get(template_id='')\n client.templates.update(template_id='', data={})\n client.templates.delete(template_id='')\n\nDefault Content\n^^^^^^^^^^^^^^^\n\n::\n\n client.templates.default_content.all(template_id='')\n\nLogging\n-------\n\nThe MailChimp client will log request/response detail into the\nmailchimp3.client logging namespace. Consider the following snippet to\nget started with logging:\n\n.. code:: python\n\n import logging\n fh = logging.FileHandler('/path/to/some/log.log')\n logger = logging.getLogger('mailchimp3.client')\n logger.addHandler(fh)\n\n # use the client normally\n client.lists.all(**{'fields': 'lists.date_created'})\n\nrequest/response detail will be appended into /path/to/some/log.log:\n\n::\n\n GET Request: https://us15.api.mailchimp.com/3.0/lists?fields=lists.date_created\n GET Response: 200 {\"lists\":[{\"date_created\":\"2017-05-10T13:53:05+00:00\"},{\"date_created\":\"2017-08-22T20:27:56+00:00\"},{\"date_created\":\"2017-05-12T21:22:15+00:00\"},{\"date_created\":\"2017-04-27T17:42:04+00:00\"},{\"date_created\":\"2017-05-10T14:14:49+00:00\"},{\"date_created\":\"2017-05-10T13:52:37+00:00\"},{\"date_created\":\"2017-05-10T13:51:40+00:00\"}]}\n\nCheck the `docs `__ for\nmore detail on the Python logging package.\n\nSupport\n-------\n\nIf you are having issues, please let us know or submit a pull request.\n\nLicense\n-------\n\nThe project is licensed under the MIT License.\n\n.. |mailchimp3 v3.0.9 on PyPi| image:: https://img.shields.io/pypi/v/mailchimp3.svg\n :target: https://pypi.python.org/pypi/mailchimp3\n.. |MIT license| image:: https://img.shields.io/badge/licence-MIT-blue.svg\n.. |Stable| image:: https://img.shields.io/badge/status-stable-green.svg\n\n\n\n",
"description_content_type": "",
"docs_url": null,
"download_url": "",
"downloads": {
"last_day": -1,
"last_month": -1,
"last_week": -1
},
"home_page": "https://github.com/charlesthk/python-mailchimp",
"keywords": "mailchimp api v3 client wrapper",
"license": "MIT",
"maintainer": "",
"maintainer_email": "",
"name": "mailchimp3",
"package_url": "https://pypi.org/project/mailchimp3/",
"platform": "",
"project_url": "https://pypi.org/project/mailchimp3/",
"project_urls": {
"Homepage": "https://github.com/charlesthk/python-mailchimp"
},
"release_url": "https://pypi.org/project/mailchimp3/3.0.9/",
"requires_dist": [
"requests (>=2.7.0)"
],
"requires_python": "",
"summary": "A python client for v3 of MailChimp API",
"version": "3.0.9"
},
"last_serial": 5807200,
"releases": {
"1.0": [
{
"comment_text": "",
"digests": {
"md5": "10f39f80fba0b5a73a34cdad934ef733",
"sha256": "af7302e6d7d53e613c4a964022d30a2f4afd1bcd3a90bd88f321a598729faed6"
},
"downloads": -1,
"filename": "mailchimp3-1.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "10f39f80fba0b5a73a34cdad934ef733",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 9891,
"upload_time": "2015-09-10T22:50:53",
"url": "https://files.pythonhosted.org/packages/42/a9/dbf13743488c665e906230a8f6b700f10aa028bf72030c08d44581760928/mailchimp3-1.0-py2.py3-none-any.whl"
}
],
"1.0.1": [
{
"comment_text": "",
"digests": {
"md5": "30645b35b002c9d7df0bc3be4523a1dd",
"sha256": "eebf3f147494e17c6b4cd313d0e44a296a1c82f08141f31bedc8b8057ffe2ad4"
},
"downloads": -1,
"filename": "mailchimp3-1.0.1-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "30645b35b002c9d7df0bc3be4523a1dd",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 11462,
"upload_time": "2015-09-10T23:25:00",
"url": "https://files.pythonhosted.org/packages/1f/69/eed8c49d5f22e5437ae11a3031b83e44dd363986a92e258f392805c25258/mailchimp3-1.0.1-py2.py3-none-any.whl"
}
],
"1.0.10": [
{
"comment_text": "",
"digests": {
"md5": "6c6e9a516aa89816a8158ee5dd8ebb74",
"sha256": "2ce9cc1ebfabf98cfbc46a8152a6b396994ae46f5b9bc39b2f036b4b94a3c8ee"
},
"downloads": -1,
"filename": "mailchimp3-1.0.10-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "6c6e9a516aa89816a8158ee5dd8ebb74",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 13999,
"upload_time": "2015-09-14T16:08:35",
"url": "https://files.pythonhosted.org/packages/1b/4c/3da22179c549380562c2e645063c6c9f08522605d9617c6c4b947e76ebd0/mailchimp3-1.0.10-py2.py3-none-any.whl"
}
],
"1.0.11": [
{
"comment_text": "",
"digests": {
"md5": "2f80d054b25279d760aafb851aa0c015",
"sha256": "6302ef016d1400f3df4e0cd437aa0af883b9be172547704fc5ac3c2dfab290b7"
},
"downloads": -1,
"filename": "mailchimp3-1.0.11-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "2f80d054b25279d760aafb851aa0c015",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 13984,
"upload_time": "2015-09-14T16:20:59",
"url": "https://files.pythonhosted.org/packages/cb/79/047bd93faa944d5507b135f3ba7f1e51c65c501034ec4fe9720a730c5f8e/mailchimp3-1.0.11-py2.py3-none-any.whl"
}
],
"1.0.12": [
{
"comment_text": "",
"digests": {
"md5": "b57df2a6590a2193878bb282281332ee",
"sha256": "edf5171a6152c4fca94dbf39d1e2527f047fe7cf404879e887257056503ccb9e"
},
"downloads": -1,
"filename": "mailchimp3-1.0.12-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "b57df2a6590a2193878bb282281332ee",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 17063,
"upload_time": "2016-01-27T02:10:39",
"url": "https://files.pythonhosted.org/packages/ff/1b/8e0250aa62222df45e8c928ecb64c3253ae7368c46d2f1c58a2dbb1a25e2/mailchimp3-1.0.12-py2.py3-none-any.whl"
}
],
"1.0.13": [
{
"comment_text": "",
"digests": {
"md5": "ff53c5f530b37475a1a04abf965e6cb8",
"sha256": "28db6af8debac2299c8af27e4116a8c5bdf8c97db08c3f83089886c045f5a5af"
},
"downloads": -1,
"filename": "mailchimp3-1.0.13-py2-none-any.whl",
"has_sig": false,
"md5_digest": "ff53c5f530b37475a1a04abf965e6cb8",
"packagetype": "bdist_wheel",
"python_version": "py2",
"requires_python": null,
"size": 18418,
"upload_time": "2016-02-03T00:21:56",
"url": "https://files.pythonhosted.org/packages/67/29/df99fdb4d8fd8cb9e540d70fd07b746dee562277b8ce4b00f22eb9c42418/mailchimp3-1.0.13-py2-none-any.whl"
}
],
"1.0.14": [
{
"comment_text": "",
"digests": {
"md5": "76d90cdec8442b9f486f0ff4ac95c352",
"sha256": "e7a54eee428f38d708b48b6f76dd71e0b5d2475640cbefdbccb8894867d4e1a9"
},
"downloads": -1,
"filename": "mailchimp3-1.0.14-py2-none-any.whl",
"has_sig": false,
"md5_digest": "76d90cdec8442b9f486f0ff4ac95c352",
"packagetype": "bdist_wheel",
"python_version": "py2",
"requires_python": null,
"size": 18620,
"upload_time": "2016-02-26T13:08:15",
"url": "https://files.pythonhosted.org/packages/71/1b/0f2336e05e5558d4e123db10eb73d7735567d7569730d5376845fd340923/mailchimp3-1.0.14-py2-none-any.whl"
}
],
"1.0.17": [
{
"comment_text": "",
"digests": {
"md5": "57ddbe32332bc7fdc6468823688753e6",
"sha256": "2cc26c8efe42449d5d9ce4e59dbe0474daee5d8ef58e320fc363298254b8e205"
},
"downloads": -1,
"filename": "mailchimp3-1.0.17-py2-none-any.whl",
"has_sig": false,
"md5_digest": "57ddbe32332bc7fdc6468823688753e6",
"packagetype": "bdist_wheel",
"python_version": "py2",
"requires_python": null,
"size": 19547,
"upload_time": "2016-03-18T12:26:12",
"url": "https://files.pythonhosted.org/packages/91/e6/c2fb8d9ca031760f0bc06043ea987e14512f84163750a8071f44d50c5327/mailchimp3-1.0.17-py2-none-any.whl"
}
],
"1.0.2": [
{
"comment_text": "",
"digests": {
"md5": "157938924ecd51207d1f214654a0445e",
"sha256": "c599a3e1c615ed4b4ca7644be7fec228e5f5e8d8cab1805f3568154e899e4678"
},
"downloads": -1,
"filename": "mailchimp3-1.0.2-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "157938924ecd51207d1f214654a0445e",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 11840,
"upload_time": "2015-09-14T15:15:20",
"url": "https://files.pythonhosted.org/packages/19/6e/59ffa9463e0bfcbf3fde1660850e33c02b75b0b00c39f03c11cd24fe47aa/mailchimp3-1.0.2-py2.py3-none-any.whl"
}
],
"1.0.22": [
{
"comment_text": "",
"digests": {
"md5": "512ce40418ff389e87f351dc7dbd580d",
"sha256": "fcec12c0686a0e1a595c1f9744fa3149739c78cd2a8877f61ee56fb6f17039c7"
},
"downloads": -1,
"filename": "mailchimp3-1.0.22-py2-none-any.whl",
"has_sig": false,
"md5_digest": "512ce40418ff389e87f351dc7dbd580d",
"packagetype": "bdist_wheel",
"python_version": "py2",
"requires_python": null,
"size": 21886,
"upload_time": "2016-07-27T19:34:18",
"url": "https://files.pythonhosted.org/packages/0c/6d/66f9fa931ec44af4302330a1fab98164a914680e757ada85461f8941a2e8/mailchimp3-1.0.22-py2-none-any.whl"
}
],
"1.0.23": [
{
"comment_text": "",
"digests": {
"md5": "9a9fa56ffcf51da40564cde1ff2db109",
"sha256": "44848f952c15e6bb45669e44988b12b0413f7712e6a8dfee299317364c596a2f"
},
"downloads": -1,
"filename": "mailchimp3-1.0.23-py2-none-any.whl",
"has_sig": false,
"md5_digest": "9a9fa56ffcf51da40564cde1ff2db109",
"packagetype": "bdist_wheel",
"python_version": "py2",
"requires_python": null,
"size": 22891,
"upload_time": "2016-07-27T19:46:13",
"url": "https://files.pythonhosted.org/packages/7d/54/fac2dd9c9416a5a30faa341ab865c4ddfe813f4ff18b56fe6e6f712ec2fa/mailchimp3-1.0.23-py2-none-any.whl"
}
],
"1.0.24": [
{
"comment_text": "",
"digests": {
"md5": "6f6408ac1348c0793fe18e577a967245",
"sha256": "faeafc38cb471a211233ed208accce45b4496f18afa5a2db1a204775283054dd"
},
"downloads": -1,
"filename": "mailchimp3-1.0.24-py2-none-any.whl",
"has_sig": false,
"md5_digest": "6f6408ac1348c0793fe18e577a967245",
"packagetype": "bdist_wheel",
"python_version": "py2",
"requires_python": null,
"size": 23263,
"upload_time": "2016-07-28T12:38:14",
"url": "https://files.pythonhosted.org/packages/3d/84/94ddf839b0197c664e7fc8027d107f42b66d2ca4f6fc2fc2ab12f00c5663/mailchimp3-1.0.24-py2-none-any.whl"
}
],
"1.0.25": [
{
"comment_text": "",
"digests": {
"md5": "e2ae29cbb583aa95f22e153e29cf93dc",
"sha256": "1f1cb627640d3e8282f32baeed15afcebbf8297013ba84ac8ecedfdff7ca3391"
},
"downloads": -1,
"filename": "mailchimp3-1.0.25-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "e2ae29cbb583aa95f22e153e29cf93dc",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 23277,
"upload_time": "2016-07-28T13:31:28",
"url": "https://files.pythonhosted.org/packages/57/87/6f63b7d9c2469bed25d2cc522ff4ad0f85f8026562e744fac8290c5a4c1a/mailchimp3-1.0.25-py2.py3-none-any.whl"
}
],
"1.0.26": [
{
"comment_text": "",
"digests": {
"md5": "6f97919a76127854ee4d57321891ac32",
"sha256": "0d9eb7eb389299323870d7209a713acf75480364bd8ddb71633db3df01821a14"
},
"downloads": -1,
"filename": "mailchimp3-1.0.26-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "6f97919a76127854ee4d57321891ac32",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 23269,
"upload_time": "2016-07-28T13:34:18",
"url": "https://files.pythonhosted.org/packages/27/c2/3680b36af45c4e044bfd43cbd530df1f1908bc9cd4e895de6d528faa341c/mailchimp3-1.0.26-py2.py3-none-any.whl"
}
],
"1.0.3": [
{
"comment_text": "",
"digests": {
"md5": "dbc5dc71be6d1f083b5f6f25c7a52102",
"sha256": "355ef4e37b56caaaed977bc6ec6279dc0f409e07fb7a430b49d85ba832f31f2f"
},
"downloads": -1,
"filename": "mailchimp3-1.0.3-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "dbc5dc71be6d1f083b5f6f25c7a52102",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 11840,
"upload_time": "2015-09-14T15:22:19",
"url": "https://files.pythonhosted.org/packages/bd/7f/93de37d7cdeebd9f578a2273960d0aadae89205190b15391a023f57dc225/mailchimp3-1.0.3-py2.py3-none-any.whl"
}
],
"1.0.4": [
{
"comment_text": "",
"digests": {
"md5": "468041cd046e72e405232f2fb7091146",
"sha256": "f1ecdec70e725c145f384bc9a2a8b35a7b25b669225053b6ae1f546ab51ee6c1"
},
"downloads": -1,
"filename": "mailchimp3-1.0.4-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "468041cd046e72e405232f2fb7091146",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 13914,
"upload_time": "2015-09-14T15:25:33",
"url": "https://files.pythonhosted.org/packages/c2/31/8061261ddc64a47427e830dbf6b478a64d6155c33f65618d45d16668f2d2/mailchimp3-1.0.4-py2.py3-none-any.whl"
}
],
"1.0.5": [
{
"comment_text": "",
"digests": {
"md5": "cb6123e61fbeecd128193951ec65b886",
"sha256": "617e85b0b8aad7d484bb212baae964971e7cba38d33bdcf10eb41e295b9180fc"
},
"downloads": -1,
"filename": "mailchimp3-1.0.5-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "cb6123e61fbeecd128193951ec65b886",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 13908,
"upload_time": "2015-09-14T15:28:17",
"url": "https://files.pythonhosted.org/packages/28/b4/d922e38e2f3e5e5bbf74090bb43a4da3d6de7800a4f094cfe947c354d8b6/mailchimp3-1.0.5-py2.py3-none-any.whl"
}
],
"1.0.6": [
{
"comment_text": "",
"digests": {
"md5": "4bc5c4d3d62c74e1e7a25acc10c53550",
"sha256": "bb8d6128e3b3162894f5e7150706ecef3b92e4573a019ff7ccf6341fb66a72a2"
},
"downloads": -1,
"filename": "mailchimp3-1.0.6-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "4bc5c4d3d62c74e1e7a25acc10c53550",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 13909,
"upload_time": "2015-09-14T15:32:13",
"url": "https://files.pythonhosted.org/packages/60/0a/6f6a8c93548e6c5616723bd65896088c42a14bdbc18d654feddad4f14023/mailchimp3-1.0.6-py2.py3-none-any.whl"
}
],
"1.0.7": [
{
"comment_text": "",
"digests": {
"md5": "a3e10237982350e8416f51bb9d996572",
"sha256": "b1a9f81d58c63b859e806096890644485fa8b074c5eae11e6a0e8334bc9e16de"
},
"downloads": -1,
"filename": "mailchimp3-1.0.7-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "a3e10237982350e8416f51bb9d996572",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 13956,
"upload_time": "2015-09-14T15:33:11",
"url": "https://files.pythonhosted.org/packages/02/d6/71f8c5dec616baaef4488db8e24fd64a0b196dbabba382da333380a0a31a/mailchimp3-1.0.7-py2.py3-none-any.whl"
}
],
"1.0.8": [
{
"comment_text": "",
"digests": {
"md5": "ec03ed8430f448c88ee3351197e6839e",
"sha256": "f517be9351af13d4e5206b01d78b2334acbb5fd7141d91084ee94d0f7a82d5b5"
},
"downloads": -1,
"filename": "mailchimp3-1.0.8-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "ec03ed8430f448c88ee3351197e6839e",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 13983,
"upload_time": "2015-09-14T15:39:20",
"url": "https://files.pythonhosted.org/packages/a6/18/75a5404bdf97e2edb9a354da77afafec643404d319b983e34ea7d74019cf/mailchimp3-1.0.8-py2.py3-none-any.whl"
}
],
"1.0.9": [
{
"comment_text": "",
"digests": {
"md5": "de343faa5ce42f44e8a4c24c7ae4bed5",
"sha256": "c3c96d0916ba0aeb5ce7ed428aa707d64dc0d38e98b3ea0c9b6689e931aad68b"
},
"downloads": -1,
"filename": "mailchimp3-1.0.9-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "de343faa5ce42f44e8a4c24c7ae4bed5",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 13977,
"upload_time": "2015-09-14T15:41:46",
"url": "https://files.pythonhosted.org/packages/2f/dc/c689a6c561d98d45b36470ebf2ad4e43aed5f8e5b1eda4d5b3a5a64589ed/mailchimp3-1.0.9-py2.py3-none-any.whl"
}
],
"2.0.0": [
{
"comment_text": "",
"digests": {
"md5": "69a66a541ae0812256f8c470dcf00c26",
"sha256": "0f0c6004b9be5f3dd4a1e7b22ef8d2ffd0ed5994aacb41771b47d458f9404b4c"
},
"downloads": -1,
"filename": "mailchimp3-2.0.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "69a66a541ae0812256f8c470dcf00c26",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 83459,
"upload_time": "2016-10-28T16:45:54",
"url": "https://files.pythonhosted.org/packages/7b/c4/3fe6dcc86b64ef6186f4cd77822936f5419507ea64e58a46092cc98ddd04/mailchimp3-2.0.0-py2.py3-none-any.whl"
}
],
"2.0.1": [
{
"comment_text": "",
"digests": {
"md5": "12aacb0a930faf52b4f0a197d137eb0e",
"sha256": "4f7fbbdda2447ca87a08dafe01359579eeef58663cd57c4e0c9335de2b22803c"
},
"downloads": -1,
"filename": "mailchimp3-2.0.1-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "12aacb0a930faf52b4f0a197d137eb0e",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 83490,
"upload_time": "2016-11-08T19:18:02",
"url": "https://files.pythonhosted.org/packages/3c/74/3632fc058cde31ea5e71c7516fe0d94038663df68069075a6e4fe6e5c94b/mailchimp3-2.0.1-py2.py3-none-any.whl"
}
],
"2.0.10": [
{
"comment_text": "",
"digests": {
"md5": "ec80aa63976be2df8b5d174168e44966",
"sha256": "90710a6d0628ded9ee7b4638dcec390112920e247e42c04188fca956d7430793"
},
"downloads": -1,
"filename": "mailchimp3-2.0.10-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "ec80aa63976be2df8b5d174168e44966",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 82475,
"upload_time": "2017-03-31T17:24:25",
"url": "https://files.pythonhosted.org/packages/7e/55/5cf03f8aa025a5c96929057fb40975de57d92f24a8d9345902a5328862f8/mailchimp3-2.0.10-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "1ab3336641ef12047b9e226a94a66875",
"sha256": "d0abbc8a231ec4068b4908b4fcc8af8e995720335af780f90618aadd63d28adb"
},
"downloads": -1,
"filename": "mailchimp3-2.0.10.tar.gz",
"has_sig": false,
"md5_digest": "1ab3336641ef12047b9e226a94a66875",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 36056,
"upload_time": "2017-03-31T17:24:28",
"url": "https://files.pythonhosted.org/packages/22/70/e21a4324f0082feac8d2ee19b183d867968928058116c207364da8d18aae/mailchimp3-2.0.10.tar.gz"
}
],
"2.0.11": [
{
"comment_text": "",
"digests": {
"md5": "b15e70202059ff90c039fae0a2effb9a",
"sha256": "4186d08fa5608b4c6446c5496e70abf2d688823f6fa4d4576d5afde858509f3a"
},
"downloads": -1,
"filename": "mailchimp3-2.0.11-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "b15e70202059ff90c039fae0a2effb9a",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 82487,
"upload_time": "2017-04-17T18:44:38",
"url": "https://files.pythonhosted.org/packages/dd/03/687597cd1a19a57c0707b23d2dd496c978d60bb35df770059f797c8fa964/mailchimp3-2.0.11-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "259faa79c708f5263dfc061c1e195343",
"sha256": "da64dcbc0b43e82da032da9593344e5ebbf166b2b43b8af8c08ec86ca8051002"
},
"downloads": -1,
"filename": "mailchimp3-2.0.11.tar.gz",
"has_sig": false,
"md5_digest": "259faa79c708f5263dfc061c1e195343",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 36080,
"upload_time": "2017-04-17T18:44:41",
"url": "https://files.pythonhosted.org/packages/78/ac/a27a6e1772626b9ae573710000d9d8bee74b0ea0bfecc8da2dcfd4671172/mailchimp3-2.0.11.tar.gz"
}
],
"2.0.12": [
{
"comment_text": "",
"digests": {
"md5": "93d5a65928e32068a59b75580780962d",
"sha256": "5b798eaaa4ad778155f572363f257e7fb025f3e9c2443323501ee4845b535743"
},
"downloads": -1,
"filename": "mailchimp3-2.0.12-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "93d5a65928e32068a59b75580780962d",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 82786,
"upload_time": "2017-05-30T08:12:04",
"url": "https://files.pythonhosted.org/packages/a0/d4/43d336cb966e488cdc48ee17dc3c47bcda75eb36e21ab43359dcd0b24b19/mailchimp3-2.0.12-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "e25ecedf1d0d0a495154365113866f65",
"sha256": "e001a748fac55fa8caf9dcd2febcd036accae775a2dba866d9cdf14848c882e9"
},
"downloads": -1,
"filename": "mailchimp3-2.0.12.tar.gz",
"has_sig": false,
"md5_digest": "e25ecedf1d0d0a495154365113866f65",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 36422,
"upload_time": "2017-05-30T08:12:06",
"url": "https://files.pythonhosted.org/packages/c0/7a/eb1ebe305dd1f0356d750de9904f57f465ebef1316fd4202fec86b53e773/mailchimp3-2.0.12.tar.gz"
}
],
"2.0.13": [
{
"comment_text": "",
"digests": {
"md5": "0a983ffee46df6371b96971496d49b5f",
"sha256": "1d8dd8a188ad3a32289dd9f155a7ea6bf52e33bd93914414256ce0ca90953b3c"
},
"downloads": -1,
"filename": "mailchimp3-2.0.13-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "0a983ffee46df6371b96971496d49b5f",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 82782,
"upload_time": "2017-06-18T18:02:33",
"url": "https://files.pythonhosted.org/packages/dd/33/a12fbdb93331abcc0970b84e38c9678d5fc1420dd42d0eddaaf9901b2eb4/mailchimp3-2.0.13-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "2533c3cf6badc4f27e4f311ee8188034",
"sha256": "7830875caca6563be0f2fa726c500279d586f84a795054c97ead5cbb3eadc732"
},
"downloads": -1,
"filename": "mailchimp3-2.0.13.tar.gz",
"has_sig": false,
"md5_digest": "2533c3cf6badc4f27e4f311ee8188034",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 36445,
"upload_time": "2017-06-18T18:02:36",
"url": "https://files.pythonhosted.org/packages/c3/e9/a5a31ace548670384547bf102bca61e8d74b0facc928f0f7ab9a9d998dc6/mailchimp3-2.0.13.tar.gz"
}
],
"2.0.14": [
{
"comment_text": "",
"digests": {
"md5": "06aac68ba9cace7c62f8b23fd2317343",
"sha256": "47a8e89e682f9b284a26efd3ee7b609b458b8f00ae2957b23634df4094da020b"
},
"downloads": -1,
"filename": "mailchimp3-2.0.14-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "06aac68ba9cace7c62f8b23fd2317343",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 82790,
"upload_time": "2017-06-28T23:48:24",
"url": "https://files.pythonhosted.org/packages/8b/f2/66e8ab9d1b5092537a0101747edc339468642cd6525612caf37176e7377f/mailchimp3-2.0.14-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "d31c41e59f4c98aab311f76d0d9e808e",
"sha256": "62876bfe1be38cc96928eab2a2d8195db4af58a6adf535e580e3b3186f76172c"
},
"downloads": -1,
"filename": "mailchimp3-2.0.14.tar.gz",
"has_sig": false,
"md5_digest": "d31c41e59f4c98aab311f76d0d9e808e",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 36453,
"upload_time": "2017-06-28T23:48:27",
"url": "https://files.pythonhosted.org/packages/e0/85/ffba061301ac734a720c1427f9356d6934b677580b1336b865feaa4b1459/mailchimp3-2.0.14.tar.gz"
}
],
"2.0.15": [
{
"comment_text": "",
"digests": {
"md5": "a059cf8f8f9220d414b44668d711139c",
"sha256": "4426ed41284751003e0315ebfed5583c9b4f2dfe1da37bcef6b48e8bbdaeb3b5"
},
"downloads": -1,
"filename": "mailchimp3-2.0.15-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "a059cf8f8f9220d414b44668d711139c",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 82905,
"upload_time": "2017-07-17T16:22:59",
"url": "https://files.pythonhosted.org/packages/00/80/d488abee6b60fc66ae7a51cae95901fd0b9508187739a853ba27ad2a6633/mailchimp3-2.0.15-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "e25ca55cc8103b569bff1083f5230253",
"sha256": "b7976c9f9224c34c8c11b3ca1ce14978b465d83d9238fc4e8cf6052e906ee5a6"
},
"downloads": -1,
"filename": "mailchimp3-2.0.15.tar.gz",
"has_sig": false,
"md5_digest": "e25ca55cc8103b569bff1083f5230253",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 36465,
"upload_time": "2017-07-17T16:23:00",
"url": "https://files.pythonhosted.org/packages/b7/87/7fa2675b5700f6ff1ff9256b90631358c02ecc72c27ca9004a4d4fe8c625/mailchimp3-2.0.15.tar.gz"
}
],
"2.0.17": [
{
"comment_text": "",
"digests": {
"md5": "06aa0e304a580b76f316270c7887303e",
"sha256": "05727759e17dd398613b0300024844f9436bcd29bfcab3f427298a1d6fa9ac95"
},
"downloads": -1,
"filename": "mailchimp3-2.0.17-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "06aa0e304a580b76f316270c7887303e",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 83994,
"upload_time": "2017-09-06T12:45:38",
"url": "https://files.pythonhosted.org/packages/c1/b3/9c3befbbd65511ad8de69d34edb88071ad5965eb91fa3f8740aa7c58e0a8/mailchimp3-2.0.17-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "869a7cc5c37e495a333b75fe8fbcd481",
"sha256": "db65a9636364e94e9c1cbf602679d604f000babcefdccd16017bfe693f58cc98"
},
"downloads": -1,
"filename": "mailchimp3-2.0.17.tar.gz",
"has_sig": false,
"md5_digest": "869a7cc5c37e495a333b75fe8fbcd481",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 37649,
"upload_time": "2017-09-06T12:45:40",
"url": "https://files.pythonhosted.org/packages/df/61/d457a7d542f40b977df23ce07c6963a8b8c165d027b13ab9f00c322439cd/mailchimp3-2.0.17.tar.gz"
}
],
"2.0.18": [
{
"comment_text": "",
"digests": {
"md5": "e4f857318904c8c09ee6b6c8d647782f",
"sha256": "0a03b9982dd0f07893d8d26091696fcf4af885a050eeb4d524e80b21104f63ba"
},
"downloads": -1,
"filename": "mailchimp3-2.0.18-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "e4f857318904c8c09ee6b6c8d647782f",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 84285,
"upload_time": "2017-10-05T14:54:38",
"url": "https://files.pythonhosted.org/packages/81/90/7b4c8e0c800aad444c2ae00c7c33e99d8d095046a0bb5bf08627cc547b44/mailchimp3-2.0.18-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "2060ee3ba49b675696619207adc4ced6",
"sha256": "6b33b3004bc28fc5e4b89f41dab3f17707ac97400a56bc514e90f50c6dd01eec"
},
"downloads": -1,
"filename": "mailchimp3-2.0.18.tar.gz",
"has_sig": false,
"md5_digest": "2060ee3ba49b675696619207adc4ced6",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 37948,
"upload_time": "2017-10-05T14:54:42",
"url": "https://files.pythonhosted.org/packages/36/1a/d760dc939aa506b41ad3f0edfe370e52915e10dfbff550e7dccd13caac9f/mailchimp3-2.0.18.tar.gz"
}
],
"2.0.2": [
{
"comment_text": "",
"digests": {
"md5": "636ad64d17f64a5dfd6258b6306feb70",
"sha256": "caa72bbb4e061e3439ebd2a515eac051d8789878ef381ea4068bfa8a8b167bfc"
},
"downloads": -1,
"filename": "mailchimp3-2.0.2-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "636ad64d17f64a5dfd6258b6306feb70",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 83479,
"upload_time": "2016-11-12T16:51:05",
"url": "https://files.pythonhosted.org/packages/38/2a/ebd84353fddd60418776210f85b55f66dd9bea9cbe95bad9404180bc4408/mailchimp3-2.0.2-py2.py3-none-any.whl"
}
],
"2.0.3": [
{
"comment_text": "",
"digests": {
"md5": "b864d5015e50a350336848314a3f30bb",
"sha256": "936695a67cf200376d98d4d60949eec4e40bb562d9df4b9c9197209eb52bf425"
},
"downloads": -1,
"filename": "mailchimp3-2.0.3-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "b864d5015e50a350336848314a3f30bb",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 83523,
"upload_time": "2016-12-13T23:05:16",
"url": "https://files.pythonhosted.org/packages/f3/03/a6002db1eb860c50575a980dc9cddca131385f82fef0fab2b5614fc80bc3/mailchimp3-2.0.3-py2.py3-none-any.whl"
}
],
"2.0.5": [
{
"comment_text": "",
"digests": {
"md5": "0f43ca28cbbaf7a9f7d7163403c3d5a1",
"sha256": "76bf24dc70f69d6254390b020948075d2f7af8b56638bbc35eb12a3a12dc142c"
},
"downloads": -1,
"filename": "mailchimp3-2.0.5-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "0f43ca28cbbaf7a9f7d7163403c3d5a1",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 83370,
"upload_time": "2017-01-17T23:44:20",
"url": "https://files.pythonhosted.org/packages/fc/74/e7510fbf894e16dd6ca86d89b822c872ce8762e640bf815bf350a1a37e54/mailchimp3-2.0.5-py2.py3-none-any.whl"
}
],
"2.0.6": [
{
"comment_text": "",
"digests": {
"md5": "72e447c7d20ebd5057eb3f8d66371288",
"sha256": "d177d6b53291f8c83e3c8314c031e4a89f15706556c5e54c27edd028374a0bd6"
},
"downloads": -1,
"filename": "mailchimp3-2.0.6-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "72e447c7d20ebd5057eb3f8d66371288",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 83455,
"upload_time": "2017-01-23T17:51:48",
"url": "https://files.pythonhosted.org/packages/5c/e1/e4d8c1d199a9a003aeba5ba6a84e03dd24686ce500142746e428e6acdec0/mailchimp3-2.0.6-py2.py3-none-any.whl"
}
],
"2.0.7": [
{
"comment_text": "",
"digests": {
"md5": "c8845d8499dc9191849c265034d96675",
"sha256": "965246d28e3ae289cd35f228f82bd6b0031e6103f04906ad1d1999e03ea1bdc8"
},
"downloads": -1,
"filename": "mailchimp3-2.0.7-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "c8845d8499dc9191849c265034d96675",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 83453,
"upload_time": "2017-02-02T16:33:31",
"url": "https://files.pythonhosted.org/packages/91/f9/f07d71021f2333b53eb29776a0c8dcd743dd38d7bdcffa366d7120630245/mailchimp3-2.0.7-py2.py3-none-any.whl"
}
],
"2.0.8": [
{
"comment_text": "",
"digests": {
"md5": "6b28927f4da4b74a6acfe93c615e49f2",
"sha256": "f93115e40d463e719b53f429a50afbbf5ea4df0b7138e48f3d3b85efb18b49e3"
},
"downloads": -1,
"filename": "mailchimp3-2.0.8-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "6b28927f4da4b74a6acfe93c615e49f2",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 83580,
"upload_time": "2017-03-06T23:54:25",
"url": "https://files.pythonhosted.org/packages/29/c3/60d094adc9c5ef68d8bbf30f96d464c15d11155265529aeaedb24dad5d75/mailchimp3-2.0.8-py2.py3-none-any.whl"
}
],
"2.0.9": [
{
"comment_text": "",
"digests": {
"md5": "a42803f5439d40034d5a5096301d3418",
"sha256": "bdd5d97fcae5d1b853cf38b13f8b6a26110fc922d06233c6aac33386ca846520"
},
"downloads": -1,
"filename": "mailchimp3-2.0.9-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "a42803f5439d40034d5a5096301d3418",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 82474,
"upload_time": "2017-03-20T13:31:17",
"url": "https://files.pythonhosted.org/packages/7e/41/f3b04980fc74ddda9881284b41ab3412d8fe1b7de5aa6ff953eee9cf6716/mailchimp3-2.0.9-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "9f355f42108b25b543af78c9838e68d0",
"sha256": "b8160b3d5a47e2b47f4791764e9045abefad54367c9b0cfbded85f11a7cbcd82"
},
"downloads": -1,
"filename": "mailchimp3-2.0.9.tar.gz",
"has_sig": false,
"md5_digest": "9f355f42108b25b543af78c9838e68d0",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 36067,
"upload_time": "2017-03-20T13:31:20",
"url": "https://files.pythonhosted.org/packages/a8/2d/46098d113851a503d20a798ea9b4bca66995b2845a631088a86247da92fc/mailchimp3-2.0.9.tar.gz"
}
],
"2.1.0": [
{
"comment_text": "",
"digests": {
"md5": "5e15774cded3e2ffc1851d0f07b56c13",
"sha256": "b86387172f46757cc77710129c7107f34c2e5ea9dc40a6d0190e404284eb509f"
},
"downloads": -1,
"filename": "mailchimp3-2.1.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "5e15774cded3e2ffc1851d0f07b56c13",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 88611,
"upload_time": "2018-02-22T13:57:11",
"url": "https://files.pythonhosted.org/packages/1e/2e/9504d3d8b7b6dfa8d8ccb6358c5b62f5e2dd41a1ab50e2097fac150730eb/mailchimp3-2.1.0-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "cf25a785ade65d3e6e34875da17eec69",
"sha256": "485f4f375aa788779ed5347fb899b0b8a1f492c69999848723599c8011e7f704"
},
"downloads": -1,
"filename": "mailchimp3-2.1.0.tar.gz",
"has_sig": false,
"md5_digest": "cf25a785ade65d3e6e34875da17eec69",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 46102,
"upload_time": "2018-02-22T13:57:13",
"url": "https://files.pythonhosted.org/packages/3f/4f/ed1dc690a0147c4d3317e9d4a8392e4d209b39479091f9bfeeba23f223f0/mailchimp3-2.1.0.tar.gz"
}
],
"3.0.0": [
{
"comment_text": "",
"digests": {
"md5": "cce3b086b21a3d1014ef70feb2b90c3d",
"sha256": "90638235262d56f40fccf6857d64705e3838a593391eb6a5a91287431f3a8ebc"
},
"downloads": -1,
"filename": "mailchimp3-3.0.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "cce3b086b21a3d1014ef70feb2b90c3d",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 88958,
"upload_time": "2018-03-26T22:10:46",
"url": "https://files.pythonhosted.org/packages/e0/fa/40b51089ea453100a0473a0a21d47138286a761685cf86724fd93068d8e7/mailchimp3-3.0.0-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "f07e1758cde99c7c2a73ae18bc897826",
"sha256": "44cd3d855b87cd2b7321a96dbe40a1ce5158308cca9e48e9aaf0a8d9ed6a4d26"
},
"downloads": -1,
"filename": "mailchimp3-3.0.0.tar.gz",
"has_sig": false,
"md5_digest": "f07e1758cde99c7c2a73ae18bc897826",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 46977,
"upload_time": "2018-03-26T22:10:48",
"url": "https://files.pythonhosted.org/packages/db/af/60c5271f148400aee8bcd9c552b1666e4aa74ae1ca8b0bbdbbd38e2958d6/mailchimp3-3.0.0.tar.gz"
}
],
"3.0.1": [
{
"comment_text": "",
"digests": {
"md5": "729447d43c51e19ad5999875f6a4168b",
"sha256": "47ee58832afccbcf67d99e5b23aa6af6343a3cd1fbe964cd6135ad8f2b6e18ab"
},
"downloads": -1,
"filename": "mailchimp3-3.0.1-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "729447d43c51e19ad5999875f6a4168b",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 88967,
"upload_time": "2018-04-01T23:20:00",
"url": "https://files.pythonhosted.org/packages/ae/3c/fd3ef3079e7a6133b536077bebfb5f3cf7913511f818dd8750c0c14d7f2b/mailchimp3-3.0.1-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "321bbe7b8bac65e3aa918f8908367ccc",
"sha256": "45829efac819ce32df5b99c6083050dd9bf6e47fd0abed1b41a4c51b34d82fe0"
},
"downloads": -1,
"filename": "mailchimp3-3.0.1.tar.gz",
"has_sig": false,
"md5_digest": "321bbe7b8bac65e3aa918f8908367ccc",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 46989,
"upload_time": "2018-04-01T23:20:02",
"url": "https://files.pythonhosted.org/packages/00/52/a0681d7e6247e1b42bad9d912faf23b851b7bd48fe6dcde108ea384392cd/mailchimp3-3.0.1.tar.gz"
}
],
"3.0.2": [
{
"comment_text": "",
"digests": {
"md5": "a74ea7c0b639624883e18d6328228179",
"sha256": "3ba88a1acfac879a252111adb681cb5d2fd2d70de0d388bb0b083122faaded9c"
},
"downloads": -1,
"filename": "mailchimp3-3.0.2-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "a74ea7c0b639624883e18d6328228179",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 87853,
"upload_time": "2018-05-23T15:05:48",
"url": "https://files.pythonhosted.org/packages/55/4f/6aa8bcf3009ddede293d7ae05b85becb8f839b43170973b9a79814c1032d/mailchimp3-3.0.2-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "811a4808f04a3e8165cf8954bcf072d9",
"sha256": "1da12e48fad5bbe7649287e93041c1218cbca7115863b7d6c321b558c2eebf58"
},
"downloads": -1,
"filename": "mailchimp3-3.0.2.tar.gz",
"has_sig": false,
"md5_digest": "811a4808f04a3e8165cf8954bcf072d9",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 49360,
"upload_time": "2018-05-23T15:05:49",
"url": "https://files.pythonhosted.org/packages/29/28/787b8b68f74a496a69eb8a8f083ddec2a85f68d65ca96a4e3ee8d0937a46/mailchimp3-3.0.2.tar.gz"
}
],
"3.0.3": [
{
"comment_text": "",
"digests": {
"md5": "ac89100cc57fd6ea519b9eacb6587522",
"sha256": "c6a3577e87a4df56ecbff389b401796ce67c29457c9dfc28478451a33289ba8c"
},
"downloads": -1,
"filename": "mailchimp3-3.0.3-py2.7.egg",
"has_sig": false,
"md5_digest": "ac89100cc57fd6ea519b9eacb6587522",
"packagetype": "bdist_egg",
"python_version": "2.7",
"requires_python": null,
"size": 201580,
"upload_time": "2018-06-13T18:38:01",
"url": "https://files.pythonhosted.org/packages/74/45/f6f41db9ded7e528517f0b5a243e3db152ecded2bfbb2b496905b953d181/mailchimp3-3.0.3-py2.7.egg"
},
{
"comment_text": "",
"digests": {
"md5": "68cf82b1f2d8b591bb455721c02655ae",
"sha256": "f4b41373498bc4bfc03ac568925858d5130b996c52c68be9a9123e235031a414"
},
"downloads": -1,
"filename": "mailchimp3-3.0.3-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "68cf82b1f2d8b591bb455721c02655ae",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 88015,
"upload_time": "2018-06-13T14:10:27",
"url": "https://files.pythonhosted.org/packages/fb/60/9d3e6be25a5639f2b28854a4a3d84820289f2b787eb7cfd376c32a047276/mailchimp3-3.0.3-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "b53e61c7f48fa90cdb7a8da4c450e17c",
"sha256": "25edbfe95a8ea7022fc8e75fd091fae8165ec27af75f514774f8f3f63231804f"
},
"downloads": -1,
"filename": "mailchimp3-3.0.3.tar.gz",
"has_sig": false,
"md5_digest": "b53e61c7f48fa90cdb7a8da4c450e17c",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 49529,
"upload_time": "2018-06-13T14:10:29",
"url": "https://files.pythonhosted.org/packages/f7/61/056869de3f8b44290fc807a96264f88e915211143bd204223e9a4453b6a8/mailchimp3-3.0.3.tar.gz"
}
],
"3.0.4": [
{
"comment_text": "",
"digests": {
"md5": "eb86239e9aac5a23b2212f0e10d5887a",
"sha256": "ed1ae55ca1f1e9c129b3b3a5b7c7bbd7d587e69347560ad2f1d94a22e5d656e8"
},
"downloads": -1,
"filename": "mailchimp3-3.0.4-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "eb86239e9aac5a23b2212f0e10d5887a",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 88094,
"upload_time": "2018-06-13T18:38:00",
"url": "https://files.pythonhosted.org/packages/29/96/76b2e0b988d81fbebc95f44b30fdb675c8b094304c5360002db5e7d8f2f9/mailchimp3-3.0.4-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "1354bc894881fdd90849dec83097016a",
"sha256": "d7f610724a641c8bffe52a4bc42531b9a52e2e1feca0a516c25a91a38cfe686b"
},
"downloads": -1,
"filename": "mailchimp3-3.0.4.tar.gz",
"has_sig": false,
"md5_digest": "1354bc894881fdd90849dec83097016a",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 49593,
"upload_time": "2018-06-13T18:38:03",
"url": "https://files.pythonhosted.org/packages/7f/e4/524e871e73b921ef53a4fd75018678d4de8103ddc025fa533a30e9546a42/mailchimp3-3.0.4.tar.gz"
}
],
"3.0.5": [
{
"comment_text": "",
"digests": {
"md5": "4e42edb144a08b630ff568ef1a9f85b2",
"sha256": "7308bca8a0e6c2dbf9b70c50cd16fca85968273f75020206339b642e5ac3a8b3"
},
"downloads": -1,
"filename": "mailchimp3-3.0.5-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "4e42edb144a08b630ff568ef1a9f85b2",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 88145,
"upload_time": "2018-09-12T19:19:54",
"url": "https://files.pythonhosted.org/packages/9f/f4/d934f0dea9826d910103cfa1adbe54b1458963a4f33aadb20a468041ad79/mailchimp3-3.0.5-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "8472a306eef64e6bd673a060a6e2e450",
"sha256": "0f3e7b1c5d7594c2d4f7b45786a972629488d1764c951adaf1add71268034c37"
},
"downloads": -1,
"filename": "mailchimp3-3.0.5.tar.gz",
"has_sig": false,
"md5_digest": "8472a306eef64e6bd673a060a6e2e450",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 49654,
"upload_time": "2018-09-12T19:19:57",
"url": "https://files.pythonhosted.org/packages/f0/ef/756d07b6aaa78c8d2cf29c69e9bcc57b6322f87bcd13d9b895d4126db2c6/mailchimp3-3.0.5.tar.gz"
}
],
"3.0.6": [
{
"comment_text": "",
"digests": {
"md5": "4f64d3947d30985743107664cae0ca0e",
"sha256": "77fa4e8587abfc145394a53f844822c5660d0b4dffbcc162700e02be275183c2"
},
"downloads": -1,
"filename": "mailchimp3-3.0.6-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "4f64d3947d30985743107664cae0ca0e",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 89274,
"upload_time": "2018-10-09T21:35:28",
"url": "https://files.pythonhosted.org/packages/ff/5a/18ae2a84034a9ecb6281432d0c0c2a1919d02e41a6211e0a5d79c13e09bf/mailchimp3-3.0.6-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "5baf0e7a1a91cf3814873e23770f9e73",
"sha256": "12dcb25e9243a11404d34c91256ba0fc5aff3dc54ec9c5e2af077bd43d4dd5fb"
},
"downloads": -1,
"filename": "mailchimp3-3.0.6.tar.gz",
"has_sig": false,
"md5_digest": "5baf0e7a1a91cf3814873e23770f9e73",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 49907,
"upload_time": "2018-10-09T21:35:30",
"url": "https://files.pythonhosted.org/packages/bb/f4/e04029ca36a0e11d6a894fd5c81905e52092f0b74074ab4e27b1a6f68631/mailchimp3-3.0.6.tar.gz"
}
],
"3.0.7": [
{
"comment_text": "",
"digests": {
"md5": "d779659ea7e0238fcd77285c6545751f",
"sha256": "d1fc0de0e4e1f0b5a00b567a8b99385e38280d16f942c29d4e8fe3b920da7a20"
},
"downloads": -1,
"filename": "mailchimp3-3.0.7-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "d779659ea7e0238fcd77285c6545751f",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 90092,
"upload_time": "2019-03-28T11:33:38",
"url": "https://files.pythonhosted.org/packages/04/f9/9bbfa857ba44cfd364d788efa941065b7e9bdfd52ec615f68ea629bc6c74/mailchimp3-3.0.7-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "2a7bb5d30fdb6025647dfbe809f5ed7c",
"sha256": "8ba4fd1c913a71ee895a4087cd3a8e25721547fa0b7e637f87dee82c3b3e9848"
},
"downloads": -1,
"filename": "mailchimp3-3.0.7.tar.gz",
"has_sig": false,
"md5_digest": "2a7bb5d30fdb6025647dfbe809f5ed7c",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 49618,
"upload_time": "2019-03-28T11:33:40",
"url": "https://files.pythonhosted.org/packages/16/47/23bd82e39c8873868d0e1e2e7ec6cea6e3955fee563a0fa2a2bf9166032e/mailchimp3-3.0.7.tar.gz"
}
],
"3.0.9": [
{
"comment_text": "",
"digests": {
"md5": "cb0186cb831bf5645759f629296b6abb",
"sha256": "65ff8b7d662fd437c8d0578cfef6b4d6775256005161dce4c4d852cf09903e20"
},
"downloads": -1,
"filename": "mailchimp3-3.0.9-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "cb0186cb831bf5645759f629296b6abb",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 90284,
"upload_time": "2019-09-10T06:35:52",
"url": "https://files.pythonhosted.org/packages/38/52/7ec13207a8a44787d39528c0d6bc7d35293aacbc5190f9e69fa1803e269b/mailchimp3-3.0.9-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "854317e36e7900724c6ab14f29dd38c1",
"sha256": "3b16ef4b2db020019672dd06c76e2f3392978b134e98399cf246871b5ba30755"
},
"downloads": -1,
"filename": "mailchimp3-3.0.9.tar.gz",
"has_sig": false,
"md5_digest": "854317e36e7900724c6ab14f29dd38c1",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 49829,
"upload_time": "2019-09-10T06:35:54",
"url": "https://files.pythonhosted.org/packages/f7/c5/2936a2005b3fbe5ba6fb30697a22a4caa1fcbf8781c5ec2842535a4914c0/mailchimp3-3.0.9.tar.gz"
}
]
},
"urls": [
{
"comment_text": "",
"digests": {
"md5": "cb0186cb831bf5645759f629296b6abb",
"sha256": "65ff8b7d662fd437c8d0578cfef6b4d6775256005161dce4c4d852cf09903e20"
},
"downloads": -1,
"filename": "mailchimp3-3.0.9-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "cb0186cb831bf5645759f629296b6abb",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 90284,
"upload_time": "2019-09-10T06:35:52",
"url": "https://files.pythonhosted.org/packages/38/52/7ec13207a8a44787d39528c0d6bc7d35293aacbc5190f9e69fa1803e269b/mailchimp3-3.0.9-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "854317e36e7900724c6ab14f29dd38c1",
"sha256": "3b16ef4b2db020019672dd06c76e2f3392978b134e98399cf246871b5ba30755"
},
"downloads": -1,
"filename": "mailchimp3-3.0.9.tar.gz",
"has_sig": false,
"md5_digest": "854317e36e7900724c6ab14f29dd38c1",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 49829,
"upload_time": "2019-09-10T06:35:54",
"url": "https://files.pythonhosted.org/packages/f7/c5/2936a2005b3fbe5ba6fb30697a22a4caa1fcbf8781c5ec2842535a4914c0/mailchimp3-3.0.9.tar.gz"
}
]
}