Nikhil Akkinikhilakki.in·Jun 10, 2023Python for web backend - Requests vs Urllib3Both Requests and urllib3 are Python libraries that provide easy-to-use interfaces for sending HTTP requests and handling responses. However, there are some differences between the two: Requests is a higher-level library that provides a more intuiti...1.2K readsPython DevelopmentRequests
Daniel Muyshond (Dan)danielmuyshond.hashnode.dev·May 19, 2023Converting a URL to an HTML File with PythonIn the vast world of the internet, the necessity to process and save webpage data is quite common. Whether it's for data analysis or for offline reading, being able to convert a URL into an HTML file can be incredibly useful. Python, with its vast ar...Python 3