Skip to main content

Cython project management like npm in nodejs

Project description

Cython project management like npm in nodejs. This project is inspired by npm in nodejs.

Installation

You can easily install by:

pip install cython-npm

What problems does it solve ?

When using cython, we face the problem of compile cython file. We can do it easily by:

import pyximport; pyximport.install()

But that it is not recommended to let pyximport build code on end user side as it hooks into their import system. The best way to cater for end users is to provide pre-built binary packages. So this project compiles .pyx file and provides pre-built binary packages for easy of use.

Quickstart:

Basic use to Complie file or folder

from cython_npm.cythoncompile import export
export('examplefile.pyx')
export('./examplefolder')
# then import them to use
import examplefile
from examplefolder import *

You should do this code once time only.

Create install file like package.json

You can also compile many files or folders at once time. Create a file name install.py in the root of your project/package and write the code below:

from cython_npm.cythoncompile import install
Manymodules = [
    # put your modules list here
    examplefile.pyx,
    ./examplefolder
]
install(Manymodules)

Run the file before start your project

python install.py

Or add first line import install in startup file of your project ### Using require(‘path’) as nodejs You can also relative or fullpath import in python by require function. For example:

from cython_npm.cythoncompile import require

# import .pyx file. Will cause error if it is not compiled by export() yet.
# Default value of recompile is True, only apply for .py file. To import .pyx, change recompile=False
examplefile = require('../parentpackage', recompile=False) # import cython package from parent folder
examplefile.somefunction()

# it also support relative import .py file
examplefile = require('../parentpackage')
examplefile.somefunction()

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

cython_npm-0.1.5.tar.gz (4.2 kB view hashes)

Uploaded Source

Built Distribution

cython_npm-0.1.5-py3-none-any.whl (6.1 kB view hashes)

Uploaded 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