JPMorgan’s Athena is 35M lines of Python; not updated to Python 3 in time

With 35 million lines of Python code, the Athena trading platform is at the core of JPMorgan’s business operations. A late start to migrating to Python 3 could create a security risk. Read more

Similar

How to pick a web framework in Python

Do you need a web framework? If you need to draw a graph, you can return JSON and draw on the client with JavaScript, an approach known as JAMStack. If the graph is static, you can return a PNG image. Which web framework is right for me? I have used every... (more…)

Read more »

Python -m

python -m lets you run modules as scripts. If your module is just one .py file it'll be executed (which usually means code under if __name_...

Read more »