File: PKG-INFO

package info (click to toggle)
portio 0.6.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 376 kB
  • sloc: javascript: 788; python: 93; sh: 63; makefile: 61
file content (279 lines) | stat: -rw-r--r-- 8,460 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
Metadata-Version: 2.1
Name: portio
Version: 0.6.2
Summary: PortIO, python low level port I/O for Linux x86
Home-page: http://portio.inrim.it
Author: Fabrizio Pollastri
Author-email: Fabrizio Pollastri <mxgbot@gmail.com>
License: LGPL
Project-URL: Documentation, https://github.com/fabriziop/portio#readme
Project-URL: Issues, https://github.com/fabriziop/portio/issues
Project-URL: Source, https://github.com/fabriziop/portio
Platform: Linux
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Python: >=2.8
Description-Content-Type: text/x-rst


================================================
 PortIO, python low level port I/O for Linux x86
================================================


What is
=======

PortIO is a Python wrapper for the port I/O macros like **outb, inb**, etc. 
provided by the C library on Linux x86 platforms. Both python 2 and 3 are
supported. This module is useful when a general pourpose port I/O at the low
level is needed. Programmers that want to perform I/O on the parallel port
at an higher level, will be better satisfied by the
`pyParallel <https://github.com/pyparallel/pyparallel>`_ module.
A similar module Ioport has inspired the writing of PortIO.

.. now is broken `Ioport <http://www.hare.demon.co.uk/ioport/ioport.html>`_

PortIO is released under the `GNU General Public License
<http://www.gnu.org/licenses/gpl.txt>`_.

*At present, version 0.6.2, PortIO is in beta status. Any debugging aid is
welcome.*

For any question, suggestion, contribution contact the author
`Fabrizio Pollastri` <mxgbot_a_t_gmail.com>.

The PortIO web site is hosted at http://portio.inrim.it/.


Usage example
=============

This sample program toggle on and off all the data lines of the parallel port
lp0 with a 6 seconds period. Note the check for root privileges before
the call to **ioperm** to acquire the proper I/O permissions for the involved
ports.

Download the sample program `toggle.py <./toggle.py>`_


Module reference
================

PortIO is a Python front end to the low level functions provided by the
C library on Linux 386 platforms for the hardware input and output ports:
**outb, outw, outl, outsb, outsw, outsl, outb_p, outw_p, outl_p, inb, inw,
inl, insb, insw, insl, inb_p, inw_p, inl_p, ioperm, iopl**.

Before doing port I/O, it is mandatory to acquire proper privileges by
calling **ioperm** or **iopl**. Otherwise you will get a segmentation fault.

**outb (data,port)**
  Output the byte **data** to the I/O address **port**.

**outb_p (data,port)**
  The same as **outb**, but waits for I/O completion.

**outw (data,port)**
  Output the 16 bit word **data** to the I/O address **port**.

**outw_p (data,port)**
  The same as **outw**, but waits for I/O completion.

**outl (data,port)**
  Output the 32 bit word **data** to the I/O address **port**.

**outl_p (data,port)**
  The same as **outl**, but waits for I/O completion.

**outsb (port,data,count)**
  Repeat **count** times the output of a byte to the I/O address **port**,
  reading it from buffer of bytes starting at **data** and with length
  **count**.

**outsw (port,data,count)**
  Repeat **count** times the output of a 16 bit word to the I/O address
  **port**, reading it from buffer of 16 bit words starting at **data** and
  with length **count** x 2.

**outsl (port,data,count)**
  Repeat **count** times the output of a 32 bit word to the I/O address
  **port**, reading it from buffer of 32 bit words starting at **data** and
  with length **count** x 4.

**inb (port)**
  Input a byte from the I/O address **port** and return it as integer.

**inb_p (port)**
  The same as **inb**, but waits for I/O completion.

**inw (port)**
  Input a 16 bit word from the I/O address **port** and return it as integer.

**inw_p (port)**
  The same as **inw**, but waits for I/O completion.

**inl (port)**
  Input a 32 bit word from the I/O address **port** and return it as integer.

**inl_p (port)**
  The same as **inl**, but waits for I/O completion.

**insb (port,data,count)**
  Repeat **count** times the input of a byte from the I/O address **port**
  and write it to a buffer of bytes starting at **data** and with length
  **count** bytes.

**insw (port,data,count)**
  Repeat **count** times the input of a 16 bit word from the I/O address
  **port** and write it to a buffer of 16 bit words starting at **data**
  and with length **count** x 2 bytes.

**insl (port,data,count)**
  Repeat **count** times the input of a 32 bit word from the I/O address
  **port** and write it to a buffer of 32 bit words starting at **data**
  and with length **count** x 4 bytes.

**ioperm (from,extent,enable)**
  Set port access permission starting from address **from** for **extent**
  bytes. If the **enable** is True, access is enabled, otherwise is disabled.
  On success, zero is returned. On error, the errno code is returned.
  The use of ioperm requires root privileges.

  Only the first 0x3ff I/O ports can be specified in this manner. To gain
  access to any I/O port in the whole (0x0000-0xffff) address range, use
  the iopl function. 

**iopl (level)**
  Set the I/O privilege level of the current process. When **level** is 3
  access is granted to any I/O port.
  On success, zero is returned. On error, the errno code is returned.
  The use of iopl requires root privileges.


Requirements
============

A **linux on an X86 architecture**.

To run the code, **Python 2.6 or later** or **Python 3.0 or later** must
already be installed.  The latest release is recommended.  Python is
available from http://www.python.org/.


Installation
============

With easy_install
-----------------

1. Open a shell.

2. Get root privileges and install the package. Command: ::

        easy_install portio


From tarball
------------

Download PortIO tarball from http://portio.inrim.it/portio-0.6.2.tar.gz .

The first step is to expand the ``.tgz`` archive in a temporary
directory (**not** directly in Python's ``site-packages``).  It
contains a distutils setup file "setup.py". 

1. Open a shell.

2. Unpack the tarball in a temporary directory (**not** directly in
   Python's ``site-packages``). Command: ::

        tar zxf portio-X.Y.Z.tar.gz

   X and Y are the major and minor version numbers of the tarball.

2. Go to the directory created by expanding the tarball. Command: ::

       cd portio-X.Y.Z

3. Get root privileges and install the package. Command: ::

       su
       (enter root password)
       python -m build

   If the python executable isn't on your path, you'll have to specify
   the complete path, such as /usr/local/bin/python.


Changelog
=========

**Portio 0.6.2 released 19-Oct-2024**

* Remove absolute paths and cleanup build, contributed by James Hilliard
  <james.hilliard1_a_t_gmail.com>

**Portio 0.6.0 released 14-Jul-2024**

* Use Py_buffer instead of C strings, contributed by Stephen Horvath
  <me_a_t_stevetech.au>

* Add pyproject.toml file

**Portio 0.5 released 25-Oct-2012**

* Porting to python 3 also contributed by Stjepan Henc <sthenc_a_t_gmail.com>.

**Portio 0.4 released 25-Aug-2009**

* Fixed some argument type mismatch in I/O macros.

* Upgraded PyArg_ParseTuple format strings with the new "unsigned" formats
  available from python 2.3 . So portio now requires python version => 2.3 .

**Portio 0.3 released 21-May-2009**

* Fixed missing documentation files.

**Portio 0.2 released 11-Nov-2008**

* Added return of status code for **ioperm** and **iopl**.

* Fixed invalid argument type for **ioperm**.

* Updated **toggle.py** example with **ioperm** error check.

* Generated documentation with Sphinx.

**Portio 0.1 released 23-Feb-2006**

* First release.


Credits
=======

* Thanks to Stjepan Henc <sthenc_a_t_gmail.com> for his contribution to python 3 porting.


----

Copyright 2006-2024 by `Fabrizio Pollastri` <mxgbot_a_t_gmail.com>


..
   Local Variables:
   mode: indented-text
   indent-tabs-mode: nil
   sentence-end-double-space: t
   fill-column: 70
   End: