Production ready Python implementations besides CPython? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T12:37:28Z http://stackoverflow.com/feeds/question/852049 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/852049/production-ready-python-implementations-besides-cpython 4 Production ready Python implementations besides CPython? wr 2009-05-12T10:04:34Z 2009-05-15T22:31:04Z <p>Except for CPython, which other Python implementations are currently usable for production systems?</p> <p>The questions </p> <ul> <li><a href="http://stackoverflow.com/questions/86134/what-are-the-pros-and-cons-of-the-various-python-implementations">What are the pros and cons of the various Python implementations?</a></li> <li><a href="http://stackoverflow.com/questions/619437/i-have-been-trying-to-wrap-my-head-around-the-pypy-project-so-fast-foward-5-10">I have been trying to wrap my head around the PyPy project. So, fast-foward 5-10 years in the future what will PyPy have to offer over CPython, Jython, and IronPython?</a> and</li> <li><a href="http://stackoverflow.com/questions/420792/migrating-from-cpython-to-jython/847629#847629">Migrating from CPython to Jython</a></li> </ul> <p>already shed some light on the pros/cons on the topic. I am wondering now, if those more exotic implementations are actually used in systems that have to run reliably. (possible examples? open-source?)</p> <p><strong>EDIT:</strong> I'm asking for code that needs the Python version >= 2.5</p> http://stackoverflow.com/questions/852049/production-ready-python-implementations-besides-cpython/852121#852121 2 Answer by gimel for Production ready Python implementations besides CPython? gimel 2009-05-12T10:25:28Z 2009-05-12T10:25:28Z <p>At least one product, <a href="http://www.resolversystems.com/" rel="nofollow">Resolver One</a>, is said to be production-level and is totally based on <a href="http://www.codeplex.com/IronPython/" rel="nofollow">IronPython</a>.</p> <blockquote> <p>Resolver One is a program that blends a familiar spreadsheet-like interface with the powerful Python programming language, giving you a tool with which to better analyse and present your data.</p> </blockquote> http://stackoverflow.com/questions/852049/production-ready-python-implementations-besides-cpython/852203#852203 0 Answer by Barakando for Production ready Python implementations besides CPython? Barakando 2009-05-12T10:59:25Z 2009-05-12T10:59:25Z <p>I know that <a href="http://www.jython.org/Project/" rel="nofollow">Jython</a> is pretty mature and has been around for a long time.</p> <p>Also, I'd take a look at <a href="http://www.stackless.com/" rel="nofollow">Stackless python</a> </p> http://stackoverflow.com/questions/852049/production-ready-python-implementations-besides-cpython/852293#852293 7 Answer by ConcernedOfTunbridgeWells for Production ready Python implementations besides CPython? ConcernedOfTunbridgeWells 2009-05-12T11:33:45Z 2009-05-12T11:33:45Z <p><strong>CPython</strong></p> <p>Used in many, many products and production systems</p> <p><strong>Jython</strong></p> <p>I am aware of production systems and products (a transactional integration engine) based on Jython. In the latter case the product has been on the market since the early 2000's. Jython is a bit stagnant (although it seems to have picked up a bit lately) but it is mature and stable.</p> <p><strong>IronPython</strong></p> <p>This is the new kid on the block, although it does have some track record in products. It (particularly version 1.x) can be viewed as stable and ready for production use, and development is officially funded by Microsoft, who appear to have an interest in dynamic languages on top of the CLR. It is the greenest of the major python implementations, but appears to be reasonably stable.</p> <p><strong>Stackless Python</strong></p> <p>This is used extensively in <a href="http://eve-online.com" rel="nofollow">EVE Online</a>, and they seem to view it as production ready. Bear in mind that Stackless Python has been around for something like 10 years.</p> http://stackoverflow.com/questions/852049/production-ready-python-implementations-besides-cpython/871125#871125 0 Answer by Caglar Toklu for Production ready Python implementations besides CPython? Caglar Toklu 2009-05-15T22:31:04Z 2009-05-15T22:31:04Z <p>You can check <a href="http://www.portablepython.com/" rel="nofollow">http://www.portablepython.com/</a> which is the portable version of CPython. It is also bundled with very common and useful libraries and even an IDE, all portable.</p> <p>There was Pyrex, which can be found at <a href="http://www.cosc.canterbury.ac.nz/greg.ewing/python/Pyrex/" rel="nofollow">http://www.cosc.canterbury.ac.nz/greg.ewing/python/Pyrex/</a>. It is not Python, but very close. The Cython (not CPython) is based on Pyrex and can be found at <a href="http://www.cython.org/" rel="nofollow">http://www.cython.org/</a>. They are both useful for creating C extensions for Python. Their languages are so Pythonic.</p>