Are most functions for http requests synchronous by default?
I came from Javascript and usage of AJAX and just started working with http requests in Python. To my surprise, it seems as though http request functions by default are synchronous, so I do not need to deal with any asynchronous behavior. For example, I'm working with the Requests http library, and although the docs don't explicitly say whether http requests are synchronous or not, by my own testing the calls seem to be synchronous.
So is it that most http requests are by default synchronous in nature, or most functions are designed that way? And my first experience with http requests (JS AJAX) just happened to be of an asynchronous nature?