No project description provided
Project description
Stitch Bindings
This repo provides Python bindings to stitch compatible with python >= 3.7
Installing the bindings
pip install stitch-core
Opening a new python
session and running import stitch_core
should succeed.
Using the bindings
Dec 15 Note: Tutorial coming shortly
For more usage examples, see tests/test.py
in this repo.
Using a specific version of stitch
To build the bindings for a specific commit, modify the line beginning with stitch_core =
in Cargo.toml
to have the SHA of the desired commit, for example:
Locally building the bindings
Adjust the rev
value in Cargo.toml
to the desired commit SHA:
stitch_core = { git = "https://github.com/mlb2251/stitch", rev = "058890ecc3c3137c5105d673979304edfb0ab333"}
To build, install, and test the bindings run:
make
which install the bindings for python3
by default. To use a specific interpreter pass it in like so:
make PYTHON=python3.10
Note on testing bindings: simply executing python3 tests/test.py
may fail for strange PYTHONPATH-related reasons so use make test
or cd tests && python3 test.py
instead.
Publishing the bindings to PyPI
Automated method
Whenever a tag is pushed to the repo, a GitHub Action will build wheels on many common distributions of Windows / OS X / Linux and upload them all to PyPI. This is better than the manual method below in that it uploads wheels for many versions, while in the manual method there are fewer precompiled wheels so pip
must build the wheels during pip install stitch_core
on most distributions.
Manual method
To upload the bindings to PyPI, ensure that the version number in Cargo.toml
is incremented (or you'll get an error when uploading), and run:
maturin publish
This will upload any wheels that were built during make
, along with a more generic stitch_core-*.*.*.tar.gz
archive from which can be used by any platform that doesn't have a pre-built wheel.
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
Hashes for stitch_core-0.1.6-cp310-cp310-macosx_11_0_arm64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9c2c880f792b9c48d0f4dc180c7ff6a6392fc2644566d548256980e2652c14f4 |
|
MD5 | a59935d75066af0e798cc0d521c4b08e |
|
BLAKE2b-256 | c71b64af721a26cdb5edaf3448c065b5ea390b269a4f50c236210f181e95780f |