Skip to content

Latest commit

 

History

History
71 lines (43 loc) · 1.49 KB

lecture_04.md

File metadata and controls

71 lines (43 loc) · 1.49 KB

Lecture 4


🤪


Will troubleshooting


Browser Developer Tools

Showing Chrome, but it's similar in other browsers.


HTTP


Remember when we were working with APIs?

requests.get(url)


Visit http://127.0.0.1:5000/echo.


curl -I http://127.0.0.1:5000/echo
curl -X POST http://127.0.0.1:5000/echo
curl -X POST -d "hello" http://127.0.0.1:5000/echo
curl -i http://127.0.0.1:5000/echo > response.txt

Like cURL, but for downloading files.



Readings will be updated