Skip to content

PGIT allows you to put a progress bar in your Python program.

License

Notifications You must be signed in to change notification settings

mokira3d48/pgit

Repository files navigation

Progress Iterator (PgIt)

Installation

Run the following command line to install this package into your virtual environment.

pip install "git+https://github.com/mokira3d48/pgit"

Dev usage

  1. sudo apt install cmake python3-venv Install Cmake and Virtual env;
  2. make venv create a virtual env into directory named env;
  3. ssource env/bin/activate activate the virtual environment named env;
  4. make install install the requirements of this package;
  5. make dev install the package in dev mode in virtual environment;
  6. make test run the unit test scripts located at tests directory;
  7. mkae run run script located at src/pgit/__main__.py.

Makefile content

venv:
	python3 -m venv env

install:
	pip install -r requirements.txt

dev:
	pip install -e .

test:
	pytest tests  # Run the test cases;

run:
	python3 -m pgit

About

PGIT allows you to put a progress bar in your Python program.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published