Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

https://github.com/mthmontes/project-bd-python


https://github.com/mthmontes/project-bd-python

Last synced: 16 days ago
JSON representation

Lists

README

        

# Project with SQLite3 and Python

A simple simulation of a CRUD with Python

## First steps

Create a virtual environment for application development and then install the necessary dependencies.

**Install dependencies**

```
pip install virtualenv

virtualenv {nome_do_ambiente}
```

**Activate the virtual environment**

```
{nome_do_ambiente}/Scrips/Activate
```

With the virtual environment active, install the required dependency

```
pip install db-sqlite3
```

Bônus

If you want to see your database as a .db file in VS Code, install this extension.

For this project, you must have Python installed.