Skip to content
This repository was archived by the owner on Jan 31, 2019. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,15 @@ Installation:

3. Add ``mailchimp`` to your project's list of INSTALLED_APPS

4. To start using the API, you should start by using utils.get_connection(). This will use the API_KEY you
4. Add mailchimp urls to admin space::

from mailchimp import urls as mailchimp_urls

urlpatterns += (
url(r'^admin/mailchimp', include(mailchimp_urls)),
)

5. To start using the API, you should start by using utils.get_connection(). This will use the API_KEY you
just defined in settings.py


Expand Down