Cythonize modelx models.
Project description
modelx-cython: Cythonize modelx models
Important: modelx-cython is currently highly experimental and is released only for early adopters with advanced software engineering skills to explore its capability.
What is modelx-cython?
modelx-cython is a Python package for cythonizing exported modelx models.
Usage
Suppose model
in the code below is a modelx Model.
The code creates a pure-Python model of model
as a Python package named "Model_nomx" in the current directory.
>>> model.export("Model_nomx")
You need a config file and a sample file to translate the model to a Cythonized model and compile it.
Create and name them config.py
and sample.py
respectively, and place them in the directory where Model_nomx is located.
Upon installing modelx-cython, the mx2cy
command becomes available as an executable command.
In a Python-enabled command prompt or shell, change the current directory with cd
to where Model_nomx is located, and run:
mx2cy Model_nomx
This will create a Python package named "Model_nomx_cy", next to the original "Model_nomx".
Command
usage: mx2cy [-h] [--sample SAMPLE] [--spec SPEC] [--setup SETUP] [--translate-only | --compile-only] model_path
Translate an exported modelx model into Cython and compile it.
positional arguments:
model_path Path to an exported modelx model to translate into Cython
options:
-h, --help show this help message and exit
--sample SAMPLE Path to a sample file to run for collecting type information (default: sample.py)
--spec SPEC Path to a spec file for setting parameters (default: spec.py)
--setup SETUP Path to a setup file for Cython (default: setup.py)
--translate-only Perform translation only (default: False)
--compile-only Perform compilation only (default: False)
See Also
How to Install
To install modelx-cython, run the following command from your command prompt:
pip install modelx-cython
If you're on Anaconda, modelx-cython will be available on conda-forge soon.
For now, you can install it using pip.
To avoid having modelx-cython install dependent packages from PyPI, install the dependent packages separately, and install modelx-cython with pip
using the --no-deps
option.
Among the dependent packages, aside from modelx, only MonkeyType is not installed by default in most conda environments.
So, install it from conda-forge:
conda install -c conda-forge monkeytype
pip install --no-deps modelx-cython
Requirements
modelx-cython requires Python 3.7+.
- modelx v0.23.0+
- Cython v3.0.0+
- setuptools
- libcst
- MonkeyType
License
Copyright 2023, Fumito Hamamura
modelx is free software; you can redistribute it and/or modify it under the terms of GNU Lesser General Public License v3 (LGPLv3).
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
Built Distribution
File details
Details for the file modelx-cython-0.0.4.tar.gz
.
File metadata
- Download URL: modelx-cython-0.0.4.tar.gz
- Upload date:
- Size: 29.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f016c441a26a741734ac53b3a642b819260f4160686f6a8567aeadb13a8d520a |
|
MD5 | 55931adccc35dce4e32cc20019b8ad95 |
|
BLAKE2b-256 | 3347409888c49469c255935c23ceb377dcfaf35a42112fb324d3cdda9766f5ad |
File details
Details for the file modelx_cython-0.0.4-py3-none-any.whl
.
File metadata
- Download URL: modelx_cython-0.0.4-py3-none-any.whl
- Upload date:
- Size: 32.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9f675e5f78c86ae0f7debd4bba7b1889649ab307523000ec8c64cc9ff56034ff |
|
MD5 | a47e8771b453036bdeb20519cb709602 |
|
BLAKE2b-256 | 0cda883782e1fe5dccfdd784213702240c6bd8878b2c06ad6d76515dc510bf80 |