Implemented methods for api.py & updated notes.md

1. I use my phone daily. I assume every time I access a website and put in my username/password, I am sending out HTPP post requests to the server and it is sending me information back to be decoded by my phone.
2. It made me realize just how complicated everything is. All of these features that we take as commonplace had to be tediously tested and created by people before we want use them the way we do now.
This commit is contained in:
zoeyande2
2026-02-12 13:01:24 -05:00
parent 81cb2b132d
commit 417f87fde0
5 changed files with 237 additions and 6 deletions

4
printer.py Normal file
View File

@@ -0,0 +1,4 @@
import requests
r = requests.get("https://riddles.makingwithcode.org/get")
print(dir(r))