This commit is contained in:
Correl Roush 2023-10-25 10:27:21 -04:00
parent 2336b249dd
commit 4ccc6c71fe
2 changed files with 12 additions and 1 deletions

View File

@ -56,7 +56,7 @@ program correctness.
| [[https://www.python.org/dev/peps/pep-0640/][640]] | Unused variable syntax | 3.10 |
| [[https://www.python.org/dev/peps/pep-0646/][646]] | Variadic Generics | 3.11 |
| [[https://www.python.org/dev/peps/pep-0647/][647]] | User-Defined Type Guards | 3.10 |
| [[https://peps.python.org/pep-0649/][649]] | https://peps.python.org/pep-0649/ | 3.13 |
| [[https://peps.python.org/pep-0649/][649]] | Deferred Evaluation Of Annotations Using Descriptors | 3.13 |
| [[https://www.python.org/dev/peps/pep-0654/][654]] | Exception Groups and except* | 3.11 |
| [[https://peps.python.org/pep-0655/][655]] | Marking individual TypedDict items as required or potentially-missing | 3.11 |
| [[https://peps.python.org/pep-0673/][673]] | Self Type | 3.11 |

11
daily/2023-10-25.org Normal file
View File

@ -0,0 +1,11 @@
:PROPERTIES:
:ID: 1babafcd-e2e4-4e6c-990d-50f99ca7916d
:END:
#+title: 2023-10-25
* FastAPI and Typer
- [[https://fastapi.tiangolo.com/][FastAPI]] is a [[id:cda9c620-fec5-4549-b979-22fc06819d77][Python]] web framework library that makes use of [[id:5cb1f706-0162-4e6d-9cd8-dc6af3ae68cc][Python Typing]] to
quickly construct HTTP APIs with OpenAPI and JSONSchema documentation.
- [[https://typer.tiangolo.com/][Typer]] is a [[id:cda9c620-fec5-4549-b979-22fc06819d77][Python]] CLI application framework that makes use of [[id:5cb1f706-0162-4e6d-9cd8-dc6af3ae68cc][Python Typing]] to
build command line tools with auto-generated argument interfaces with included
help and shell completion.