A set of Python bindings to control cash registers
Project description
Python bindings for generic cash registers, using the XON/XOFF protocol for serial communication.
Support
If you need support, please use the GitHub issue tracker.
Contributing
We love contributions, so please feel free to fix bugs, improve things, provide documentation. Just follow the guidelines and submit a PR.
Requirements
Python 2.7, 3.3, 3.4 and 3.5
Overview
Coming soon.
Getting started
This example could be outdated and you should not use it until a stable version of the library is out:
from serial import Serial
from cash_register.models.xditron import SaremaX1
# defines the serial communication
conn = Serial()
conn.port = '/dev/ttyUSB0'
conn.baudrate = 9600
conn.xonxoff = True
conn.timeout = 1
# create a cash register with a serial connection handler
register = SaremaX1('Shop center', connection=conn)
# write a list of products
products = [
{
'description': 'Potatoes',
'price': '2.0',
'quantity': '3.0',
},
{
'description': 'Water',
'price': '0.50',
},
]
# prepare and send cash register commands
register.sell_products(products)
register.send()
Documentation
Coming soon.
License
python-cash-register is released under the terms of the BSD license. Full details in LICENSE file.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file python-cash-register-0.1.1.tar.gz
.
File metadata
- Download URL: python-cash-register-0.1.1.tar.gz
- Upload date:
- Size: 8.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f176ea2c3485d846e1163db15252df6c256590ed72b79dcacc8259eba31da512 |
|
MD5 | 538241ba2eca7c7c524f804ca762b372 |
|
BLAKE2b-256 | 45a3c7aa3d522e4ec1fbdbe7504a39ec55b251ba5565229b1fc8614dba2a219e |