A Python interface to x3270, an IBM 3270 terminal emulator
Project description
Intro
py3270 is a Python interface to x3270, an IBM 3270 terminal emulator. It provides an API to a x3270 or s3270 subprocess.
Example
The x3270 executables need to be on your PATH!
A brief example of usage:
from py3270 import Emulator # use x3270 so you can see what is going on em = Emulator(visible=True) # or not (uses s3270) em = Emulator() em.connect('3270host.example.com') em.fill_field(17, 23, 'mylogin', 8) em.fill_field(18, 23, 'mypass', 8) em.send_enter() # if your host unlocks the keyboard before truly being ready you can use: em.wait_for_field() # maybe look for a status message if not em.string_found(1, 2, 'login succesful'): abort() # do something useful # disconnect from host and kill subprocess em.terminate()
Documentation
None, sorry. Read the code, its pretty simple & self-explanatory :)
More information on x3270/s3270 can be found at:
Upgrading from 0.1.x to 0.2.0
There are some backwards incompatable changes from 0.1.5 to 0.2.0. Namely:
x3270 executables now need to be on the PATH
Don’t use x3270.EmulatorBase, use x3270.Emulator instead. Its the same API exect that you no longer need to specify the paths to the x3270 executables.
the underlying Command object and some internal APIs have changed. If you were digging into the Emulator instance to change things, you may have problems. See the source, the changes weren’t major and shouldn’t be too hard to fix.
Questions & Comments
Please visit: http://groups.google.com/group/blazelibs
Current Status
The interface seems sound, but the Emulator class has only basic functionality. There are more x3270 commands that the Emulator could have methods for. That being said, I believe most x3270 functionality can be supported at a lower-level by the use of Emulator.exec_command().
The py3270 tip is installable via easy_install with easy_install py3270==dev.
Change Log
0.3.0 released 2015-07-29
Support Python 3
0.2.0 released 2014-03-28
Add Windows support, but not tested thoroughly. Consider Windows support Experimental.
use x3270 executables from PATH instead of requiring ExamBase to be subclassed
fix buffering problems when writing to x3270 subprocess
0.1.5 released 2013-06-17
changed default timeout to 30 seconds
added send_pf7(), send_pf8()
0.1.4 released 2012-03-17
added is_connected() method
0.1.3 released 2011-12-06
- had messed up a previous upload to pypi releasing a fixed 0.1.1 as 0.1.2, so
need to go to next version number
0.1.2 released 2011-12-06
fix data parsing on Windows
0.1.1 released 2011-12-05
renamed Emulator to EmulatorBase to make it clearer that a subclass is needed
adjusted readme
0.1.0 released 2011-12-01
initial release
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 py3270-0.3.0.tar.gz
.
File metadata
- Download URL: py3270-0.3.0.tar.gz
- Upload date:
- Size: 9.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2e4e941b37dbd847c6a15ad0e4080d8e1ad5080992392d01ae66db875204e52c |
|
MD5 | ec27e7115b26a6a7a1b20deedb4fb0ff |
|
BLAKE2b-256 | 3335e93013f2fbf6475bd7bb022ea8218d536c4b25d4432dafa2a75d16355f23 |