IPython magic command interface for interactive work with mypyc.
Project description
mypyc_ipython
IPython magic command interface for interactive work with mypyc, a compiler from type-annotated Python to C extensions.
Installation
Supported Python versions are 3.6 or later.
$ pip install mypyc-ipython
Usage
You can use this library like %%cython
magic command.
- Execute
%load_ext mypyc_ipython
to enable the magic. - Write the code in
%%mypyc
code cell.
In [1]: %load_ext mypyc_ipython
In [2]: %%mypyc
...: def my_fibonacci(n: int) -> int:
...: if n <= 2:
...: return 1
...: else:
...: return my_fibonacci(n-1) + my_fibonacci(n-2)
...:
In [3]: my_fibonacci(10)
Out[3]: 55
In [4]: def py_fibonacci(n: int) -> int:
...: if n <= 2:
...: return 1
...: else:
...: return py_fibonacci(n-1) + py_fibonacci(n-2)
...:
In [5]: py_fibonacci(10)
Out[5]: 55
In [6]: %load_ext cython
In [7]: %%cython
...: cpdef int cy_fibonacci(int n):
...: if n <= 2:
...: return 1
...: else:
...: return cy_fibonacci(n-1) + cy_fibonacci(n-2)
...:
In [8]: cy_fibonacci(10)
Out[8]: 55
In [9]: %timeit py_fibonacci(10)
10.3 µs ± 30.2 ns per loop (mean ± std. dev. of 7 runs, 100000 loops each)
In [10]: %timeit my_fibonacci(10)
848 ns ± 5.82 ns per loop (mean ± std. dev. of 7 runs, 1000000 loops each)
In [11]: %timeit cy_fibonacci(10)
142 ns ± 1.18 ns per loop (mean ± std. dev. of 7 runs, 10000000 loops each)
In [12]:
The contents of the cell are written to a .py
file in the directory IPYTHONDIR/mypyc
using a filename with the hash of the code. This file is then mypycified and compiled.
The resulting module is imported and all of its symbols are injected into the user's namespace.
If you want to disable the cache, you can use --force
option like this:
In [2]: %%mypyc --force
...: def my_fibonacci(n: int) -> int:
...: if n <= 2:
...: return 1
...: else:
...: return my_fibonacci(n-1) + my_fibonacci(n-2)
Author
Masashi Shibata (@c-bata)
License
MIT License
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file mypyc_ipython-0.0.2.tar.gz
.
File metadata
- Download URL: mypyc_ipython-0.0.2.tar.gz
- Upload date:
- Size: 4.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e265704ac98c3c42df404d7066f8c122a6fcb4ef6d88410ed84d60979d1b6bea |
|
MD5 | 8b48eefaab94fcba630feabb1872a2bc |
|
BLAKE2b-256 | 9806fccbcdee7ef78f7481754ed83356d8e8049b7e48dd12a2b5a34c5dde6425 |
Provenance
File details
Details for the file mypyc_ipython-0.0.2-py3-none-any.whl
.
File metadata
- Download URL: mypyc_ipython-0.0.2-py3-none-any.whl
- Upload date:
- Size: 5.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | eb8057908781a01cebf564b753be56cec17247d6f10a5ed0cba5d93636de6a00 |
|
MD5 | 4567e179a7a879b6ce4c0bd664f2d9ad |
|
BLAKE2b-256 | 532e18dbcbb6223f752f929c9f69a02037eaf1e262cefbded02640f0dcd49800 |