bunch
Pyjion
bunch | Pyjion | |
---|---|---|
1 | 23 | |
482 | 1,425 | |
- | - | |
4.6 | 5.0 | |
about 2 months ago | 8 months ago | |
Python | C++ | |
MIT License | MIT License |
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
bunch
Pyjion
-
Python 3.13 Gets a JIT
It exists, was created by microsoft employees, and is referenced in the article: https://www.trypyjion.com/
-
Is anyone using PyPy for real work?
I've actually come across and started using Pyjion recently (https://github.com/tonybaloney/pyjion); how does Pypy compare, both in terms of performance and purpose? There seems to be a lot of overlap...
-
funAndEasyToUse
Python is capable of doing things at runtime that are really hard to statically compile around, such as monkeypatching methods onto existing objects. You can compile it, but it's complicated. One strategy is to use a JIT that can observe application state at runtime and then invalidate code as it becomes obsoleted by changes, but it's complicated. See pyjion for an example.
-
Javascript has Typescript. WHY WE DONT HAVE TYPY !
When I say "Python" I am referring to the standard CPython interpreter which most people use. But there is also PyPy, which includes a Just In Time compile that compiles selected code into machine language on the fly, as needed. pyjion is another JIT compiler that generates machine language on the fly, and you can install it with pip. Or you could work for Facebook and use Cinder. Cython, Nuitka and Pyston are other alternatives.
-
How is Golang websocket better than FastAPI websocket?
and if you need more speed you can try https://www.pypy.org/ or https://github.com/tonybaloney/Pyjion or https://www.pyston.org/
-
CPython vs PyPy
Finally, there is also Pyjion which based on its website is “A drop-in JIT Compiler for Python 3.10” (https://www.trypyjion.com/). We will be covering it on a separate writeup. See you next time ;-).
- Accelerate Python code 100x by import taichi as ti
- Create CPython extensions in .NET?
-
Instant upvotes
Though some exciting stuff happening over the next few years, Python is getting faster, has been for awhile, and stuff like Pyjion https://www.trypyjion.com/, a drop in C# powered JIT compiler is starting to approach usable. Rust and Python seem to be best buds right now, so more extension libraries in rust, a newer more approachable language than say C/C++ but with a similar speed. Sign me up!
-
You think python is slow ?
Pyjion Easy to use, small compiler. Increase performance of our 🐌 CPython.
What are some alternatives?
python-builddsl - A superset of the Python programming language with support for closures and multi-line lambdas
Numba - NumPy aware dynamic Python compiler using LLVM
Nuitka - Nuitka is a Python compiler written in Python. It's fully compatible with Python 2.6, 2.7, 3.4-3.13. You feed it your Python app, it does a lot of clever things, and spits out an executable or extension module.
Box - Python dictionaries with advanced dot notation access
cinder - Cinder is Meta's internal performance-oriented production version of CPython.
Nim - Nim is a statically typed compiled systems programming language. It combines successful concepts from mature languages like Python, Ada and Modula. Its design focuses on efficiency, expressiveness, and elegance (in that order of priority).
graalpython - GraalPy – A high-performance embeddable Python 3 runtime for Java
hpy - HPy: a better API for Python
ideas
Cython - The most widely used Python to C compiler