Skip to content

Commit 708c689

Browse files
committed
Remove reference to flask-router
1 parent f50394c commit 708c689

File tree

4 files changed

+100
-18
lines changed

4 files changed

+100
-18
lines changed

Pipfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ verify_ssl = true
44
name = "pypi"
55

66
[packages]
7+
flask = "*"
78

89
[dev-packages]
910
nose = "*"
10-
flask = "*"
1111
flask-sqlalchemy = "*"
1212
marshmallow = "*"
1313
sqlalchemy = "*"
14-
flask-router = {editable = true, path = "."}
14+
mypy = "*"
1515

1616
[requires]
1717
python_version = "3.6"

Pipfile.lock

+94-11
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,18 @@
1-
## Flask Router
1+
## Flask Compose
22

33
A simple router that promotes component driven endpoint design.
44

55
#### Installation
66

77
```bash
8-
$ cd flask_router
9-
$ pip install .
8+
$ pip install flask-compose
109
```
1110

1211
#### Getting Started
1312

1413
Please explore the "examples" directory for more detailed samples.
1514

16-
`flask-router` can be applied to any `flask` application without consideration for any existing routing libraries. `flask-router`, at its core, is a glorified call to `Flask.add_url_rule`.
15+
`flask-compose` can be applied to any `flask` application without consideration for any existing routing libraries. `flask-compose`, at its core, is a glorified call to `Flask.add_url_rule`.
1716

1817
Creating a route is as simple as defining a few types:
1918

examples/app/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ $ curl localhost:5000/v2/users/1/emails
1919

2020
#### How To Read This Module
2121

22-
Those aspects of this application unrelated to `flask-router` were put together with little care. A selection of files which should be considered when introducing yourself to the library have been listed below:
22+
Those aspects of this application unrelated to `flask-compose` were put together with little care. A selection of files which should be considered when introducing yourself to the library have been listed below:
2323

2424
1. components.py
2525
2. controllers.py

0 commit comments

Comments
 (0)