Skip to main content

A set of Python bindings to control cash registers

Project description

https://badge.fury.io/py/python-cash-register.svg https://travis-ci.org/palazzem/python-cash-register.svg?branch=master https://codecov.io/gh/palazzem/python-cash-register/branch/master/graph/badge.svg

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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

python-cash-register-0.1.1.tar.gz (8.1 kB view details)

Uploaded Source

File details

Details for the file python-cash-register-0.1.1.tar.gz.

File metadata

File hashes

Hashes for python-cash-register-0.1.1.tar.gz
Algorithm Hash digest
SHA256 f176ea2c3485d846e1163db15252df6c256590ed72b79dcacc8259eba31da512
MD5 538241ba2eca7c7c524f804ca762b372
BLAKE2b-256 45a3c7aa3d522e4ec1fbdbe7504a39ec55b251ba5565229b1fc8614dba2a219e

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page