An open API service indexing awesome lists of open source software.

https://github.com/flyabledev/flyable

Python compiler that massively increases Python's code performance without code changes.
https://github.com/flyabledev/flyable

compiler efficiency optimization perfomance python speed

Last synced: 26 days ago
JSON representation

Python compiler that massively increases Python's code performance without code changes.

Awesome Lists containing this project

README

          

![Flyable](https://www.flyabledev.com/images/logo_flyable.svg)




License: AGPL v3



LLVM version



Python version



Discord



Twitter Follow

A Python compiler for highly performant code.


Check the website for more information.

## Introduction
Welcome to the official Flyable GitHub repository! πŸ˜ŠπŸŽ‰πŸ₯³

Flyable is a Python just-in-time compiler that generates optimized native code to decrease Python workloads.

Flyable works hand in hand with the interpreter in the sense that when Flyable can compile a function
or method it does so and the interpreter executes that compiled function at runtime and otherwise Flyable lets the interpreter
interpret this function or method.

## Benchmarks
Detailed benchmarks to come soon! You can see previous benchmarks [here](https://www.flyabledev.com/benchmarks.html).

## Supported platforms
Flyable currently supports the following OS and architectures:

πŸͺŸ x86 instructions that run on Windows 64 bits.

🍎 ARM instructions that run on MacOS 64 bits.

🐧 x86 instructions that run on Linux 64 bits.

32 bits support isn’t planned in the near future.

## Getting Started
All you will need is a working CPython installation (do not run Flyable inside a venv) and some Python code to compile.
Simply install Flyable on your computer using the pip command:
pip install flyable
and you will be ready to start using Flyable!
Once this is done add these two lines in your python code:

import flyable

flyable.run(email="your.email@domain")

Now if you run your code, Flyable will compile it and execute it. Since we are still working on the beta version, we collect emails in order to ask for feedback. We will only use your email for this purpose and will not share it with anybody else.

## How does it get faster ?
Flyable does multiple things to generate efficient code but most of the performance gains come from the following:
- Native execution of the code
- Static function dispatch (enabling direct call and efficient inlining)
- Type tracking (When possible)
- Function specialization depending on the signature but also on the usage

## Roadmap
Our work is currently focused on integrating new optimizations and getting the compiler to support more syntactic features in order to increase the proportion of functions and methods that are compiled. πŸ›£οΈπŸš—

## Contributions

If you want to participate and/or support the active development of Flyable:

- Let us know what is your use case for Flyable.
- [Add a GitHub star](https://github.com/FlyableDev/Flyable/stargazers) to the project. ⭐
- Tweet about the project on [your Twitter](https://twitter.com/intent/tweet?text=%40FlyableDev%20makes%20a%20Python%20ahead-of-time%20compiler%20that%20uses%20LLVM%20to%20generate%20efficient%20native%20code.%20It%27s%20fully%20compatible%20with%20the%20Python%20syntax.%20Take%20a%20look%20at%20the%20GitHub%20repo%3A%20https%3A%2F%2Fbit.ly%2F35XN7Tc).
- [Submit bugs and feature requests](https://github.com/FlyableDev/Flyable/issues). 🐞

## Keep in touch
- If you have any technical question, you can write a question on Stack Overflow.
- Follow us on [Twitter](https://twitter.com/intent/follow?screen_name=FlyableDev) or [LinkedIn](https://www.linkedin.com/company/flyable).
- Feel free to contact us on [Discord](https://discord.gg/tquHUe9Q89) or at contact@flyable.dev if you have any other concerns.

## Licence
Flyable is licensed under the GNU Affero General Public License v3.0 .

## Acknowledgments
πŸ‰ LLVM is one of the powerful optimizing machines running under the hood.

🐍 CPython is ubiquitous in this project.