Skip to main content

Newland scanners library

Project description

trimarlib-newland

Python library for interfacing Newland scanners.

Getting started

These instructions will get you a copy of the project on your local machine for development and testing purposes. See Deployment for notes on how to deploy the project on a live system.

Prerequisites

The build process requires some basic development tools:

  • make - GNU Make program, either for *nix or Windows system, used to execute build and test targets
  • git - used not only to clone the repository, but also in auto-versioning (see Versioning)
  • python3

Two standard Python packages are used for build and installation steps:

  • setuptools
  • wheel

The library depends on pyserial package as well - it is used as a transport layer with the devices. This dependecy is defined in setup.py and is satisfied automatically at installation time.

Building and releasing

Invoking make all (default target) prepares archives for distribution. It is done in two steps:

  1. query Git repository for tags (git describe command) to determine current version and generate version.py file,
  2. invoke Python interpreter passing setup.py script to prepare source and wheel distributions.

The Python interpreter invoked by the Makefile defaults to python - it is possible to override it passing a PYTHON variable to the command, e.g. make all PYTHON=python3.

The release process is automated and based on GitLab CI/CD environment - each commit triggers a build job which attempts to make and install built packages (no testing implemented yet, requires an available hardware platform). If the commit is tagged the built wheel distribution is passed to the deployment stage and the runner attempts to upload the package to the repository specified in project settings.

Testing

Test source files are located in newlandlib/tests directory, they are named after the device and functionality being tested. Testing is based on unittest Python built-in package.
The Makefile defines three test targets: unit-tests, integration-tests and tests (invokes both unit and integration tests).

Unit tests

unit-tests are fairly fast and do not require any device to be attached to the machine, they test utility methods. They may be invoked manually one-by-one (e.g. python -m newlandlib.tests.test_fm100_utils) or by the Makefile (i.e. make unit-tests).

Integration tests

integration-tests are very slow due to number of tests involved (full testing of FM100 device takes ca. 3 hours) and they require the device to be attached to the machine running the code. They may be invoked one-by-one (similarly to unit tests, e.g. python -m newlandlib.tests.test_fm100_commands) or in batch by the Makefile (i.e. make integration-tests).

Deployment

The library is not intended to be used in a standalone configuration - the primary purpose is to be used by higher-level applications, which should define it as a dependency. However it is perfectly correct to install it manually using pip.

Versioning

The project is versioned using a simple pattern based on repository tagging feature. See Makefile for implementation details, for versions available see tags on this repository.

Usage

See docstrings for API documentation.

Example of device initialization using auto-discovery feature:

from newlandlib import FM100


ports = FM100.discover()
dev = FM100(ports[0])
dev.configure()


def callback(sender, *, data, codeid=None, aimid=None):
    print('sender={}, data={}, codeid={}, aimid={}'.format(sender, data, codeid, aimid))


dev.callback = callback
dev.start()

The callback method will be invoked with each scanned barcode.

License

This software is licensed under the MIT License - see LICENSE.


Related documents

This software is based upon the following documents from Newland:

  • FM100 Integration Guide (v1.2.1, 22/02/2017)
  • FM420 Integration Guide (v1.1.4, 07/08/2014)
  • FM430 User Guide (v1.2.1, 19/07/2018)
  • Programming Guide Based on Newland Unified Commands Set (v1.0.0, 12/02/2018)
  • Serial Programming Command Manual (v1.3.0, 15/11/2016)

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

trimarlib_newland-0.1.0rc4-py3-none-any.whl (29.7 kB view hashes)

Uploaded Python 3

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