Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/simsys/lxpapi
Library and Command Line Interface for the LxpApi (www.letterxpress.de)
https://github.com/simsys/lxpapi
command-line-tool online-printing python python-3 rest-api
Last synced: about 1 month ago
JSON representation
Library and Command Line Interface for the LxpApi (www.letterxpress.de)
- Host: GitHub
- URL: https://github.com/simsys/lxpapi
- Owner: Simsys
- License: lgpl-3.0
- Created: 2019-01-22T11:05:30.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-01-18T15:41:48.000Z (almost 5 years ago)
- Last Synced: 2024-10-12T14:39:45.497Z (about 1 month ago)
- Topics: command-line-tool, online-printing, python, python-3, rest-api
- Language: Python
- Homepage:
- Size: 63.5 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# LxpApi
Library and Command-Line Interface for the LxpApi (www.letterxpress.de)The package consists of two building blocks:
- Python library LxpApi to integrate the interface into Python applications.
- Command line tool lxpservice, which is [explained here](https://github.com/Simsys/LxpApi/blob/master/lxpservice.md).Installing LxpApi
-----------------As usual, LxpApi is installed with pip (or pip3). This will install both the library and the command line tool.
```
$pip install lxpservice
```
Using LxpApi
------------First import the LxpAPi library and pprint for nice view on complex python types.
```python
>>> from LxpApi import LxpApi
>>> from pprint import pprint
```
Create an instance of LxpApi with the credentials
```python
>>> url = "https://sandbox.letterxpress.de/v1/"
>>> user =
>>> api_key =
>>> lxp_api = LxpApi(url, user, api_key)
```
Now we can work with the API and execute various commands. The library always returns an answer from which it can be seen if the function could be executed successfully.Let's first look at the current credit balance.
```python
>>> response = lxp_api.get_balance()
>>> pprint(response)
{'auth': {'id': '46', 'status': 'active', 'user': },
'balance': {'currency': 'EUR', 'value': '91.59'},
'message': 'OK',
'status': 200}
```
Now we upload a PDF file to the server
```python
>>> response=lxp_api.set_job('one-page.pdf')
>>> pprint(response)
{'auth': {'id': '46', 'status': 'active', 'user': },
'letter': {'job_id': '3422',
'price': 0.74,
'specification': {'color': 1,
'mode': 'simplex',
'page': 1,
'ship': 'national'},
'status': 'queue'},
'message': 'OK',
'status': 200}
```
In response, we receive some information such as the price or other attributes of the order. These attributes can be influenced during upload. How todo this and other information can be found in the [library documentation](https://github.com/Simsys/LxpApi/blob/master/LxpApi/lxpapi.py). Alternatively they can be retrieved with help(LxpApi). All available methods and possible parameters are described here.