8 unstable releases (3 breaking)
0.5.0 | Sep 6, 2024 |
---|---|
0.4.0 | Mar 3, 2024 |
0.3.11 | Jan 23, 2024 |
0.1.7 | Sep 29, 2023 |
#2317 in Development tools
92 downloads per month
Used in 11 crates
(5 directly)
7KB
pt / libpt
pt
stands for either one of "personal tool", "plex tool", "pete" or something among those lines.
It is a collection of tools that i might or might not use. The intended purpose of this repo is that
I program whatever i feel is worth having in a personal thing into it, then use it as either a lib,
crate, python module or executable.
Let's see if I make it a bloated mess or stop committing after 30 hello worlds.
Dependencies
- See
cargo.toml
- openssl bindings for rust
- Python
maturin
-pip install maturin
Compiling & Installing from source
If you only want the rust library, you can simply build it with cargo build
. Add it to your
project like any other local dependency.
If you want to use the python variant too, you need to compile with maturing.
- Install in
venv
:maturin develop --release
- Install in system:
maturin build --release && pip install target/wheels/libpt-x.x.x-*
Installing from pypi
The Python interface of libpt
is currently not implemented, but it is planned
to eventually re add it. Meanwhile, you can use a much older version if you
really want.
⚠️ This will install a very old version
libpt
has been packaged for pypi.org.You can install it with
pip install libpt
Installing from crates.io
libpt
has been packaged for crates.io.
You can add the library to your project with cargo add libpt
.
Installing from my personal package registry
libpt
has been packaged for git.cscherr.de.
You can add the registry to your config.toml
and then cargo add libpt
Testing
Testing needs to be done separately for the rust and python parts:
- Rust testing with
cargo test
- Python testing with
./scripts/pytests.sh
orpython -m unittest discover -fs tests/python
Documentation
The documentation can be automatically generated with cargo doc --open
.
An up to date version of the Documentation can be found here
License
Pt is MIT Licensed
Dependencies
~135KB