Curvv is an open-minded python package which focuses on deployability of a program on devices which do not have required packages installed along with other functionality.
To install curvv run:
pip install curvv
The best function of curvv is the packageSafety(*args).
For example, suppose you are making a program that requires you to import the numpy package however you are not sure if the device where the program shall run has numpy installed. This is where the packageSafety(*args) function becomes useful.
Just write:
import curvv
from curvv import packageSafety as pS
pS("numpy")
This shall check if the numpy package is installed and if it does not find the package it will automatically install the package(s).
Other funx include:
- wait( *time )
- end( *time )
- clearCache()
Curvv has CLI commands for various tasks.
Simply run the following in the command prompt:
cvv gh-new --token TOKEN --name NAME --type TYPE
Simply run the following in the command prompt:
cvv async --launch TSV
05/10/2024

