Skip to main content

A cython compiler for compiling source code in string form.

Project description

https://img.shields.io/pypi/v/cypyler.svg https://img.shields.io/travis/gpkc/Cypyler.svg

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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

cypyler-0.2.0.tar.gz (4.2 kB view hashes)

Uploaded Source

Built Distribution

cypyler-0.2.0-py2.py3-none-any.whl (5.1 kB view hashes)

Uploaded Python 2 Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page