Skip to content

Commit

Permalink
馃摑 Add notes about installing sqlalchemy
Browse files Browse the repository at this point in the history
Given its relative centrality to this topic of the tutorial, took
style cues from other tutorial docs with similar circumstances (e.g.,
`testing.md`, `static-files.md`, etc.) and added as a standalone
installation section.
  • Loading branch information
TeoZosa committed Oct 3, 2020
1 parent b8cc45b commit 8247ff6
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions docs/en/docs/tutorial/sql-databases.md
Expand Up @@ -80,6 +80,20 @@ The file `__init__.py` is just an empty file, but it tells Python that `sql_app`

Now let's see what each file/module does.

## Install `SQLAlchemy`

First you need to install `SQLAlchemy`:

<div class="termy">

```console
$ pip install sqlalchemy

---> 100%
```

</div>

## Create the SQLAlchemy parts

Let's refer to the file `sql_app/database.py`.
Expand Down

0 comments on commit 8247ff6

Please sign in to comment.