A list of 6+1 Django tutorials for beginners to improve your Django skills. From basic Django projects to ecommerces with payment or a Django Chat app.
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 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 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 ReadingBeautiful Soup – 02 – How to get the next page
It is easy to scrape a simple page, but how do we get the next page on Beautiful Soup? What can we do to crawl all the pages until we reach the end?
Continue ReadingReview: Python Crash Course
If you need to learn Python as fast as possible, look no further. Python Crash Course is written so newcomers in Python can start writing their own programs in no time.
Continue Reading