Learning NodeJS is a great opportunity for every web developer. With this tutorial, you will create your first NodeJS server in less than 10 minutes.
Continue Readingtutorial
6 + 1 Free Django tutorials for beginners
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 ReadingCreating 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 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 ReadingPython Scrapy tutorial for beginners – 04 – Crawler, Rules and LinkExtractor
In our last lesson we scraped the whole website. Today we are going to learn a tool that is going to make our Web Scraping tasks even easier: Crawler Spider
Continue ReadingPython Scrapy tutorial for beginners – 03 – How to go to the next page
On our last lesson we managed to extracted all the data from each book on the main page. Now, it is time to learn how to go to the next page with Scrapy.
Continue ReadingPython Scrapy tutorial for beginners – 02 – Extract all the data!
In our last lesson, we created our first Scrapy spider. Let’s see how we can extract all the data in different ways from the item detail page.
Continue Reading