Python Python: the id() function and object equality: a word of caution January 7, 2023 In Python the id() function should never be used to check the equality of two objects. Read more
Python Python: how to encode a string in MD5 format January 7, 2023 In this article we will see how to encode a string in MD5 with Python. Read more
Python Python: how to use the urllib module to make HTTP requests January 7, 2023 In this article we will discover the basics of HTTP requests in Python using the urllib core module. Read more
Python Python: learning to work with dates using the zodiac signs January 7, 2023 In this article we will see a practical example of operations on dates in Python. Read more
Python Python: how to extract all the URLs from a web page January 7, 2023 In this article we will see how to extract all the URLs of the links present in a web page with Python using the BeautifulSoup module. Read more
Python Python: how to get the rows of a MySQL query in dictionary format using MySQL Connector January 7, 2023 In this article we will see how to get the rows of a MySQL query in dictionary format using MySQL Connector with Python. Read more
Python Python: how to extract the file name from a URL January 7, 2023 In this article we will see how to extract the file name from a URL in Python. Read more
Python Python: how to validate a URL January 7, 2023 In this article we will see how to validate a URL with Python. Read more
Python Python: of to get the HTML contents of an element with BeautifulSoup January 7, 2023 In this article we will see how to get the HTML contents of an element with BeautifulSoup in Python. Read more
Python Python: generate a dummy PayPal transaction ID for testing January 7, 2023 In this article we will see how to generate fake PayPal transaction IDs with Python for testing purposes. Read more