Skip to content

Latest commit

 

History

History
48 lines (33 loc) · 1.37 KB

README.md

File metadata and controls

48 lines (33 loc) · 1.37 KB

Newsman Python API Client - version 1.2

This is the Newsman App Python API client for API version 1.2.

Newsman - Smart Email Service Provider

Newsman is a Smart Email Service Provider. We send newsletters on behalf of our customers.

NEW:

  • Code is Python 3 compatible.
  • API works only over SSL (secure connection)

About Newsman API - version 1.2

Our current API version is 1.2. API documentation can be found here:

Our API requires an API KEY which you can generate in your Account and your Newsman user id. The API exposes XML RPC and REST interfaces.

This Python Client will use only xmlrpclib python module on Python 2 and xmlrpc.client on Python 3.

Install

easy_install https://github.com/Newsman/newsman-api-python/zipball/master

Example Code

import newsman

# you can get your api_key and user_id from My Account -> API
client = newsman.Newsman(user_id, api_key)
print(client.API_VERSION)
print(client.list.all())

# calling client.import.csv is not allowed in Python since import is a reserved keyword
# thus the hack below is required
list_id = 1234
i = getattr(client, "import.csv")
i(list_id, None, "email\n[email protected]")