Platzi Ventas CLI is a project from the course "Curso Práctico de Python: Creación de un CRUD" of Platzi.
This application allows to create, update, list, and delete clients from a csv file.
- Python >= 3.6
-
Clone or download de repository:
$ git clone https://github.com/JoseNoriegaa/platzi-ventas-cli
-
Open the console inside the project directory and create a virtual environment.
$ python3 -m venv venv $ source venv/bin/activate
-
Install the app
(venv) $ pip install .
-
List clients
(venv) $ pv clients list
-
Create client
(venv) $ pv clients create
-
Update client
(venv) $ pv clients update -u {CLIENT_UID}
-
Delete client
(venv) $ pv clients delete -u {CLIENT_UID}