Hi all! Just ran into the task of working with time in a different time zone. I had to figure out the solution, so I’m sharing it – it might come in handy for someone 🙂 Continue reading Python – time in another time zone
Category Archives: Python
Python – how to work with time without headache?
Hi all! Working with time in Python is a different story (and headache). And today we will deal with the problem: how to work with time without a headache (yes, this is quite real)? Continue reading Python – how to work with time without headache?
Fake Email List + Generator
As part of the post dedicated to the ability to extract links and email addresses, it was necessary to make a list of fake email addresses, which would allow not only to generate fake addresses, but also to do it in a form ready for use in the html code. Actually, the Python generator code itself is available below (suddenly it will come in handy for someone) (and the PHP generator is at the very bottom of the page 😉 ): Continue reading Fake Email List + Generator
Python – sorting a list in ascending and descending order
Hi everyone! Sometimes you need to sort the list in ascending and descending order. There is a very simple solution to this issue;) Continue reading Python – sorting a list in ascending and descending order
How do I install a library of a specific version in Python?
Hi everyone! I’m making a bot here for Instagram (by the way, subscribe to mine :)) – which will like posts by the specified tags, subscribe by the specified parameters (and unsubscribe too) and so on. It is based on the InstaPy library (more on it later). In the meantime, I ran into a question that sounds like: “How to install a library of a specific version in Python?”. Let’s deal with this problem! Continue reading How do I install a library of a specific version in Python?