Skip to content

Commit

Permalink
updloading to PyPi
Browse files Browse the repository at this point in the history
  • Loading branch information
Charles TISSIER committed Jul 28, 2016
1 parent e4e47ca commit 283fbe5
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 9 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[![mailchimp3 v1.0.23 on PyPi](https://img.shields.io/badge/pypi-1.0.23-green.svg)](https://pypi.python.org/pypi/mailchimp3)
[![mailchimp3 v1.0.24 on PyPi](https://img.shields.io/badge/pypi-1.0.24-green.svg)](https://pypi.python.org/pypi/mailchimp3)
![MIT license](https://img.shields.io/badge/licence-MIT-blue.svg)
![Stable](https://img.shields.io/badge/status-stable-green.svg)

Expand Down Expand Up @@ -26,8 +26,8 @@ Grab `YOUR SECRET KEY` from your mailchimp account (Account > Extra > Api Keys).

### Examples

# returns all the lists
client.list.all()
# returns all the lists (only name and id)
client.list.all(fields="lists.name,lists.id")

# returns all members inside list '123456'
client.member.all('123456')
Expand Down
6 changes: 3 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
|mailchimp3 v1.0.17 on PyPi| |MIT license| |Stable|
|mailchimp3 v1.0.24 on PyPi| |MIT license| |Stable|

python-mailchimp-api
====================
Expand Down Expand Up @@ -34,8 +34,8 @@ Examples

::

# returns all the lists
client.list.all()
# returns all the lists (only name and id)
client.list.all(fields="lists.name,lists.id")

# returns all members inside list '123456'
client.member.all('123456')
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

setup(
name='mailchimp3',
version='1.0.23',
version='1.0.24',
description='A python client for v3 of MailChimp API',
long_description=long_description,
url='https://github.com/charlesthk/python-mailchimp',
Expand Down
6 changes: 4 additions & 2 deletions test.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@

client = MailChimp('MAILCHIMP_USER', 'MAILCHIMP_SECRET')

# print client.authorized_app.all()
print client.list.all(fields="lists.name,lists.id")

# print client.automation.all()
print client.authorized_app.all()

print client.automation.all()

0 comments on commit 283fbe5

Please sign in to comment.