Skip to content

sjwarner/pyparallel

This branch is 2 commits ahead of pyserial/pyparallel:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

0d8ae39 · Oct 16, 2019
Aug 2, 2015
Oct 16, 2019
Aug 2, 2015
Jan 7, 2016
Oct 16, 2019
Jan 4, 2016
Jan 4, 2016
Feb 8, 2019
Jan 12, 2016
Aug 2, 2015
Dec 31, 2018
Jan 9, 2016

Repository files navigation

pyParallel [in development]

Build Status PyPI Downloads Latest PyPI version License

Overview

This module encapsulates the access for the parallel port. It provides backends for Python running on Windows and Linux. Other platforms are possible too but not yet integrated.

This module is still under development. But it may be useful for developers. The Windows version needs a compiled extension and the giveio.sys driver for Windows NT/2k/XP. It uses ctypes to access functions in a prebuilt DLL.

It is released under a free software license, see LICENSE.rst for more details.

Copyright (C) 2001-2016 Chris Liechti [email protected]

Homepage: https://github.com/pyserial/pyparallel

Features

  • same class based interface on all supported platforms
  • port numbering starts at zero, no need to know the port name in the user program
  • port string (device name) can be specified if access through numbering is inappropriate

Requirements

  • Python 2.2 or newer
  • "Java Communications" (JavaComm) extension for Java/Jython

Installation

Extract files from the archive, open a shell/console in that directory and let Distutils do the rest:

$ python setup.py install

Short introduction

>>> import parallel
>>> p = parallel.Parallel()  # open LPT1 or /dev/parport0
>>> p.setData(0x55)

Examples

Please look in the GIT Repository. There is an example directory where you can find a simple terminal and more. https://github.com/pyserial/pyparallel/tree/master/examples

References

About

Python parallel port access library

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 54.9%
  • C 43.5%
  • Other 1.6%