Skip to content

Commit afbe588

Browse files
committed
Rename FastAPI-REST-JSONAPI -> FastAPI-JSONAPI
1 parent 3375951 commit afbe588

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
# FastAPI-REST-JSONAPI
1+
# FastAPI-JSONAPI
22

3-
FastAPI-REST-JSONAPI is a FastAPI extension for building REST APIs.
3+
FastAPI-JSONAPI is a FastAPI extension for building REST APIs.
44
Implementation of a strong specification [JSONAPI 1.0](http://jsonapi.org/).
55
This framework is designed to quickly build REST APIs and fit the complexity
66
of real life projects with legacy data and multiple data storages.
77

88

99
## Install
1010
```bash
11-
pip install FastAPI-REST-JSONAPI
11+
pip install FastAPI-JSONAPI
1212
```
1313

1414
## A minimal API

examples/api_for_sqlalchemy/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
### Start app
44
```shell
5-
# in dir fastapi-rest-jsonapi
5+
# in dir fastapi-jsonapi
66

77
export PYTHOPATH="${PYTHONPATH}:./"
88
python examples/api_for_tortoise_orm/main.py

fastapi_rest_jsonapi/openapi.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def openapi() -> Dict[Any, Any]:
1818
if app.openapi_schema:
1919
return app.openapi_schema
2020
openapi_schema = get_openapi(
21-
title=title or "FastAPI-REST-JSONAPI",
21+
title=title or "FastAPI-JSONAPI",
2222
version="2.5.0",
2323
description="",
2424
routes=app.routes,

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
EXTRAS_REQUIRE.update(extra_packages)
2525

2626
setup(
27-
name="FastAPI-REST-JSONAPI",
27+
name="FastAPI-JSONAPI",
2828
version=__version__,
2929
description="FastAPI extension to create REST web api according to JSON:API 1.0 specification "
3030
"with FastAPI, Pydantic and data provider of your choice (SQLAlchemy, Tortoise ORM)",

0 commit comments

Comments
 (0)