Python is an incredible tool for Pentesters. From creating scripts to creating our own security tools, Python is an easy to learn language.
Continue ReadingPython
Creating a Python virtual environment
Many people use Anaconda to write Python code. But it is cumbersome for small scripts and hard to manage. Let’s learn how to create a Python environment.
Continue ReadingReview: Django for Professionals
There is a lot of books for learning Django for beginners, but what about for those that want to level up?
Thanks to William Vincent and its “Django for Professionals”, we can.
Continue ReadingPython Scrapy tutorial for beginners – 05 – How to use Scrapy Items
The goal of scraping is to extract data from websites. Without Scrapy Items, we return unstructured data in the form of Python dictionaries.
Luckily, Scrapy provides us with the Item class: A class we can inherit to make our data more structured and stronger, yielding a Python object.
Continue ReadingAutomating with Python | Creating and classifying files
Learn how Python can help us with mundane tasks by automating repetitive tasks.
Continue ReadingHow to send emails with just a few lines of code with Yagmail in Python
Learn how to send emails from a Gmail account in just a few lines of code with Yagmail.
Continue ReadingHow to send beautiful emails with attachments (yes, cat pics too) using only Python
Learn how to send emails using Python. We will learn how to send beautiful HTML-based emails with attached files using just Python.
Continue Reading#100DaysOfCode, 3rd round | Python, Flask, Django and more
Time to start a new good old #100DaysOfCode. And now, it is time to Python and its frameworks: Flask, Django, DRF and more!
Continue ReadingHow to add a progress bar to Python with tqdm
Learn how to add a cool progress bar to your Python process and iterations just in seconds! How often are you doing Machine Learning iterations, long calculations or process that take a lot of time, with Python, and you have…
Continue ReadingCreating Text-To-Speech with Python and gTTS
Creating Text-to-speech mp3’s with Python is fun. And easy! Learn how to do it with the gTTS library and just a few lines of code.
Continue Reading