-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
55 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
# Pycom: A Python Compiler | ||
|
||
## Usage | ||
|
||
> ./pycom (flags) [source file] | ||
### Flags | ||
* -i (bool):\ | ||
Print additional information about compilation (such as time taken). Defaults to off. | ||
|
||
* -r (bool):\ | ||
Run the generated executable automatically after compilation. Defaults to off. | ||
|
||
* -rd (bool):\ | ||
Run the generated executable automatically after compilation, and then delete it. Defaults to off. | ||
|
||
* -o [output] (string):\ | ||
The string specified after the flag will be the name of the generated executable. Defaults to the name of the Python file that was passed in. | ||
|
||
## What is Pycom? | ||
|
||
Pycom is effectively a compiler for Python code, bringing it down to a native executable with C++ as 'intermediate representation'. It supports all of the BASIC-like syntax of Python along with a lot of the standard library and inbuilt functions. To see what is currently supported and not supported, check the 'Examples' section below. | ||
|
||
## Why and when use Pycom? | ||
|
||
Python is slow. While many optimisations and new implementations of it have vastly improved its speed, generating native code that can run as a standalone executable from Python code has never really been done. As a result, no matter what, Python code has never hit levels of speed and portability that C/C++. Pycom aims to tackle this. | ||
|
||
Due to Pycom (currenly) not supporting all Python features from all versions, you should only really use it if you want to run simple applications that require high speed (again, check 'Examples') | ||
|
||
## Examples | ||
|
||
What Pycom supports and is good at: | ||
|
||
High iteration loops: | ||
|
||
``` | ||
def main(): | ||
for i in range(1, 1000001): | ||
if i % 3 == 0: | ||
print(i) | ||
return 0 | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
def main(): | ||
print("Hello, World!") | ||
print("h") | ||
print("df") | ||
for i in range(1, 1000001): | ||
if i % 3 == 0: | ||
print(i) | ||
|
||
return 0 |