Programming

Parse XML file with Python

Introduction We’ll focus in this post on how to parse some data structures in Python. We’ll start with XML, but in next posts we will also handle JSON and YAML.

Python Virtual Environments

What is a virtual environment The main purpose of virtual environments is to create isolated environments for Python projects. As such, each project can have its own dependencies, regardless of the dependencies in other projects or on your ‘main’ PC.