Public access to the API not currently supported.
The API supports:
- GET
- POST
Parameters
- title - name of the list to be created (or updated)
- words - List of words, where each word is a list of character, pinyin and definition.
For example:
import requests
payload = {'title': 'Script List',
'words': [[u'大', 'dà', 'big'], ]}
r = requests.post('http://localhost:5000/api/list',
data=json.dumps(payload),
auth=('user', 'secret'))