Skip to content

gengo/memsource-wrap

Repository files navigation

https://travis-ci.org/gengo/memsource-wrap.svg?branch=master

memsource-wrap

Memsource API Wrap Library for Python

This library require Python 3.5. If Python 3.5 is not installed on your system, I recommened to use Pythonz

Note

This library still uses the Memsource Legacy API which will be deprecated in September 2020.

We are currently adding support for the new Memsource REST API.

Install

pip install -e 'git+https://github.com/gengo/memsource-wrap.git@master#egg=Package'

Uninstall

pip uninstall memsource-wrap

Examples

import memsource.memsource

m = memsource.memsource.Memsource(user_name='your user name', password='your password')
print(m.client.create('test client'))
# will return id of the client

If you already have token, you can omit user_name and password. In this case, this SDK can skip authentication, so it's bit faster.

import memsource.memsource

m = memsource.memsource.Memsource(token='your token')
print(m.client.create('test client'))
# will return id of the client

About

Memosource API Wrap Library

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published