One of the most important features that have been introduced in Python3 is that the string type is now Unicode and there is a significant difference between text and binary data. When a computer...
How To Create HTML Forms using Jinja2
Jinja2 is a templating engine designed for Python which can also be used with the famous Python web frameworks i.e Django and Flask. Jinja is inspired by the Django Templating Language (DTL) and it...
How to use weather API to get weather data in python 3
In this article we will cover how you can get current weather data using a weather API in python 3. For this task we can use various types of weather APIs that are available based on either...
How To Split And Organise Your Source Code Into Multiple Files in Python 3
Splitting your code into separate files is really important as your code becomes larger, when you work with multiple developers, when your code becomes more complex. In python programming, we’ve...
How To Use ConfigParser For Configuration Files In Python 3
Putting parameters in configuration files can take some extra effort at the start, but then can save you a lot of time and heartache in the future. We are all tempted to simply hardcode parameters...