hashsigs-py
No description available.
File Explorer
Download Latest Version (.zip)- ci.yml
- publish.yml
- __init__.py
- _rust.pyi
- core.py
- py.typed
- lib.rs
- Cargo.lock
- Cargo.toml
- wotsplus_keccak256.json
- test_pure_python_basic.py
- test_vectors_test.py
- .flake8
- .gitignore
- .gitlab-ci.yml
- COPYING
- MANIFEST.in
- mypy.ini
- pyproject.toml
- pytest.ini
- README.md
- setup.cfg
- setup.py
- test-wheel-build.sh
- tox.ini
# Installation Guide
git clone https://github.com/QuipNetwork/hashsigs-py
Downloads the entire project code from GitHub to your computer.
cd hashsigs-py
Moves into the project folder you just downloaded.
2. Official Install Script
Easy Recommended- Python 3 Python is required to use pip.
pip install hashsigs
Installs the package published on PyPI directly โ no need to clone the source.
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
Downloads and runs the official install script in one line โ this handles the full setup automatically.
pip install -v -e '.[rust,dev]'
Installs the package published on PyPI directly โ no need to clone the source.
pip install pycryptodome
Installs the package published on PyPI directly โ no need to clone the source.
Pulled directly from this repo's README.
3. Python
Easypip install hashsigs
Installs the package published on PyPI directly โ no need to clone the source.
python3 -m venv .hashsigs
Runs the Python script (or module).
python -m pip install -U pip pytest pytest-cov
Installs the Python libraries listed in requirements.txt (or similar).
pip install -v -e '.[rust,dev]'
Installs the package published on PyPI directly โ no need to clone the source.
pip install pycryptodome
Installs the package published on PyPI directly โ no need to clone the source.
Pulled directly from this repo's README.
4. Rust
Medium- Git Needed to download the project code from GitHub.
- Rust (rustup) Installing via rustup also installs cargo.
cargo --version
Type this command into your terminal and run it.
Pulled directly from this repo's README.
