personal-tool or plex-tool or pete: A collection of things I use. Available as rust executable, library, or python module. Let's see how much stuff i can cramp in here.
Go to file
Christoph J. Scherr ab47ce18bc
cargo devel CI / cargo CI (push) Has been cancelled Details
script manualisation
2024-01-18 17:44:21 +01:00
.gitea/workflows remove CD 2024-01-17 18:13:56 +01:00
data more configs 2024-01-16 18:13:39 +01:00
members automatic cargo CI changes 2024-01-18 12:25:51 +00:00
scripts script manualisation 2024-01-18 17:44:21 +01:00
src hedu to struct 2024-01-18 13:23:44 +01:00
.gitignore Initial commit 2023-07-06 22:05:34 +02:00
Cargo.toml change in workspace deps to crates.io registry 2024-01-18 17:28:19 +01:00
LICENSE add MIT License 2023-07-31 17:06:01 +02:00
README.md make things hopefully ready for v0.1.7 2023-09-29 17:50:47 +02:00

README.md

pt / libpt

pt-logo

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

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

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

Package

Testing

Testing needs to be done separately for the rust and python parts:

  • Rust testing with cargo test
  • Python testing with ./scripts/pytests.sh or python -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

Mirrored

The origin of this repository is git.cscherr.de

It is mirrored to:

License

Pt is MIT Licensed