Has anyone here tried using the iSeries Python port? - Stack Overflow most recent 30 from stackoverflow.com2009-12-02T15:40:07Zhttp://stackoverflow.com/feeds/question/752349http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/752349/has-anyone-here-tried-using-the-iseries-python-port4Has anyone here tried using the iSeries Python port?nearly_lunchtime2009-04-15T15:52:06Z2009-04-25T05:35:36Z
<p>I found <a href="http://www.iseriespython.com/" rel="nofollow">http://www.iseriespython.com/</a>, 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:</p>
<p>Does the port work well, or are there limits to what the interpreter can handle compared with standard Python implementations?</p>
<p>Does the iSeries database access layer work well, creating usable objects from table definitions?</p>
http://stackoverflow.com/questions/752349/has-anyone-here-tried-using-the-iseries-python-port/753006#7530062Answer by coonj for Has anyone here tried using the iSeries Python port?coonj2009-04-15T18:13:31Z2009-04-15T18:13:31Z<p>It sounds like it is would work as expected. Support for other libraries might be pretty limited, though.</p>
<p>Timothy Prickett talks about some Python ports for the iSeries in this article:</p>
<p><a href="http://www.itjungle.com/tfh/tfh041706-story02.html" rel="nofollow">http://www.itjungle.com/tfh/tfh041706-story02.html</a></p>
<p>Also, some discussion popped up in the Python mailing archives:</p>
<p><a href="http://mail.python.org/pipermail/python-list/2004-January/245276.html" rel="nofollow">http://mail.python.org/pipermail/python-list/2004-January/245276.html</a></p>
http://stackoverflow.com/questions/752349/has-anyone-here-tried-using-the-iseries-python-port/753731#7537310Answer by Mike Wills for Has anyone here tried using the iSeries Python port?Mike Wills2009-04-15T21:08:52Z2009-04-15T21:08:52Z<p>Another place to look is on the mailing list <a href="http://lists.midrange.com/listinfo/midrange-l" rel="nofollow">MIDRANGE-L</a> or search the archives for the list at <a href="http://archive.midrange.com/midrange-l/index.htm" rel="nofollow">midrange.com</a>. I know they have talked about this a while back.</p>
http://stackoverflow.com/questions/752349/has-anyone-here-tried-using-the-iseries-python-port/788298#7882982Answer by John Y for Has anyone here tried using the iSeries Python port?John Y2009-04-25T05:35:36Z2009-04-25T05:35:36Z<p>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.</p>
<p>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.</p>
<p>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.</p>