Skip to content

Commit

Permalink
Merge pull request #87 from oscarmari/fix-sqlalchemy-links
Browse files Browse the repository at this point in the history
Update SQLAlchemy documentation links
  • Loading branch information
jeffknupp committed Mar 8, 2019
2 parents b587c85 + 9420214 commit c437804
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ should be soon. Getting there is currently the top priority.
## Quickstart

Install `sandman2` using `pip`: `$ pip install sandman2`. This provides the script
`sandman2ctl`, which just takes the database URI string, described [here](http://docs.sqlalchemy.org/en/rel_0_9/core/engines.html). For example, to connect to a SQLite database in the same directory you're running the script, you would run:
`sandman2ctl`, which just takes the database URI string, described [here](https://docs.sqlalchemy.org/en/latest/core/engines.html). For example, to connect to a SQLite database in the same directory you're running the script, you would run:

```bash
$ sandman2ctl sqlite+pysqlite:///database_file_name
Expand All @@ -59,7 +59,7 @@ To connect to a PostgreSQL database, make sure you install a driver like
$ sandman2ctl postgresql+psycopg2://scott:tiger@localhost/mydatabase
```

Again, see [the SQLAlchemy documentation](http://docs.sqlalchemy.org/en/rel_0_9/core/engines.html)
Again, see [the SQLAlchemy documentation](https://docs.sqlalchemy.org/en/latest/core/engines.html)
for a more comprehensive discussion of connection strings.

## Supported Databases
Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ Quickstart
Install ``sandman2`` using ``pip``: ``$ pip install sandman2``. This
provides the script ``sandman2ctl``, which just takes the database URI
string, described
`here <http://docs.sqlalchemy.org/en/rel_0_9/core/engines.html>`__. For
`here <https://docs.sqlalchemy.org/en/latest/core/engines.html>`__. For
example, to connect to a SQLite database in the same directory you’re
running the script, you would run:

Expand All @@ -75,7 +75,7 @@ To connect to a PostgreSQL database, make sure you install a driver like
$ sandman2ctl postgresql+psycopg2://scott:tiger@localhost/mydatabase
Again, see `the SQLAlchemy
documentation <http://docs.sqlalchemy.org/en/rel_0_9/core/engines.html>`__
documentation <https://docs.sqlalchemy.org/en/latest/core/engines.html>`__
for a more comprehensive discussion of connection strings.

Supported Databases
Expand Down

0 comments on commit c437804

Please sign in to comment.