Category Archives: Python

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

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?