Roadmap to becoming a developer in 2022
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Partho c1e5862f17
Add Flask official tutorial (#1674)
3 years ago
..
100-django.md Adds JavaScript roadmap (#1537) 3 years ago
101-flask.md Add Flask official tutorial (#1674) 3 years ago
102-pyramid.md Adds JavaScript roadmap (#1537) 3 years ago
readme.md Adds JavaScript roadmap (#1537) 3 years ago

readme.md

Synchronous Frameworks

Synchronous frameworks in python handle the flow of data in a synchronous manner. On a s̲y̲n̲c̲h̲r̲o̲n̲o̲u̲s̲ request, you make the request and stop executing your program until you get a response from the HTTP server (or an error if the server can't be reached, or a timeout if the sever is taking way, way too long to reply) The interpreter is blocked until the request is completed (until you got a definitive answer of what happened with the request: did it go well? was there an error? a timeout?... ).

Free Content Sync vs. Async Python: What is the Difference?