Skip to content

Commit f8e7072

Browse files
committed
Leave the hello.py example in ...
As I'm struggling to get `uv run file` to work in any of the subfolders. Update README too.
1 parent bb06f17 commit f8e7072

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

building-with-fast-api/README.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,18 @@
11
# README
22

3+
## Chapters
4+
5+
1. Hello World
6+
2. Routing
7+
8+
39
## Paradigms
410

511
> I really don't understand Python's OOP style very much.
612
713
Whereas Elm has a central `Model` (generally) to work from and uses modules and functions, Python has instances of classes which (I think) are stateful.
814

15+
916
## Problems
1017

1118
> These are annoying and compared to Elm (where everything just works), not particularly user-friendly. You'd think you could just run commands once you're set up with a `venv` (virtual environment).
@@ -18,6 +25,7 @@ Whereas Elm has a central `Model` (generally) to work from and uses modules and
1825
3. Using Thonny as an IDE
1926
- I can get the version of Python running but the other stuff is harder
2027

28+
2129
## Tools
2230

2331
You're going to need the following:

building-with-fast-api/hello.py

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
def main():
2+
print("Hello from building-with-fast-api!")
3+
4+
5+
if __name__ == "__main__":
6+
main()

0 commit comments

Comments
 (0)