A cython compiler for compiling source code in string form.
Project description
A cython compiler for compiling source code in string form.
Example:
from cypyler import TMPCypyler
code = """
def add(x, y):
return x + y
"""
cp = TMPCypyler()
built_module = cp.build(code)
built_module.add(2, 3)
Usage
Cypyler
Instantiation
from cypyler import Cypyler
cp = Cypyler('<build_dir>', '<libraries>', '<include_dirs>')
Where build_dir is the desired directory (path) for the module to be built on. The arguments libraries and include_dirs are lists containing libraries and include directories that should be passed to Cython when compiling.
Building
cp.build('<code>', '<suffix>')
Where code is the code in string form. The suffix argument defaults to .pyx.
TMPCypyler
Instantiation
from cypyler import TMPCypyler
cp = Cypyler('<build_dir_prefix>', '<libraries>', '<include_dirs>')
Where build_dir_prefix is a prefix for the temporary build directory. The build directory is created using the tempfile.mkdtemp function from the Python standard library.
Building
cp.build('<code>', '<suffix>')
Where code is the code in string form. The suffix argument defaults to .pyx.
Free software: 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 cypyler-0.2.0.tar.gz
.
File metadata
- Download URL: cypyler-0.2.0.tar.gz
- Upload date:
- Size: 4.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 94d99b853d83089b7690eb1b52ede9bcad3f98210e09e2611e2499f7722f45fb |
|
MD5 | a26d4aaddbc82608338f1d99d49ded72 |
|
BLAKE2b-256 | 999c2a9d0151fe4301a7e77fc74caa6b68bcda57b318348a49434db7435db926 |
File details
Details for the file cypyler-0.2.0-py2.py3-none-any.whl
.
File metadata
- Download URL: cypyler-0.2.0-py2.py3-none-any.whl
- Upload date:
- Size: 5.1 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3872c8e17ed5958f303c26bbdeb3f9c072ca3eb4e99345fb94a8a0dc995d400f |
|
MD5 | b697bb9d5dd1bb1f3e2862b4332554c9 |
|
BLAKE2b-256 | bfc5ed8b7d08407a29f68183c30d907895ed9ed7765ca7dacc02c273e9f97d9e |