vote up 4 vote down star

I found http://www.iseriespython.com/, which is a version of Python for the iSeries apparently including some system specific data access classes. I am keen to try this out, but will have to get approval at work to do so. My questions are:

Does the port work well, or are there limits to what the interpreter can handle compared with standard Python implementations?

Does the iSeries database access layer work well, creating usable objects from table definitions?

flag

1  
This is a poor question. Please be more specific to why you are asking, and also it would be helpful to include a sentence explaining what this is. -1 until this is updated – coonj Apr 15 at 15:58
Fair enough - re-written – nearly_lunchtime Apr 15 at 16:04

3 Answers

vote up 2 vote down check

From what I have seen so far, it works pretty well. Note that I'm using iSeries Python 2.3.3. The fact that strings are natively EBCDIC can be a problem; it's definitely one of the reasons many third-party packages won't work as-is, even if they are pure Python. (In some cases they can be tweaked and massaged into working with judicious use of encoding and decoding.) Supposedly 2.5 uses ASCII natively, which would in principle improve compatibility, but I have no way to test this because I'm on a too-old version of OS/400.

Partly because of EBCDIC and partly because OS/400 and the QSYS file system are neither Unix-like nor Windows-like, there are some pieces of the standard library that are not implemented or are imperfectly implemented. How badly this would affect you depends on what you're trying to do.

On the plus side, the iSeries-specific features work quite well. It's very easy to work with physical files as well as stream files. Calling CL or RPG programs from Python is fairly painless. On balance, I find iSeries Python to be highly usable and very worthwhile.

link|flag
vote up 0 vote down

Another place to look is on the mailing list MIDRANGE-L or search the archives for the list at midrange.com. I know they have talked about this a while back.

link|flag
vote up 2 vote down

It sounds like it is would work as expected. Support for other libraries might be pretty limited, though.

Timothy Prickett talks about some Python ports for the iSeries in this article:

http://www.itjungle.com/tfh/tfh041706-story02.html

Also, some discussion popped up in the Python mailing archives:

http://mail.python.org/pipermail/python-list/2004-January/245276.html

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.