Category Python

Python Modules

This post explains what are modules in Python and summarizes some popular libraries. Explaining Python Modules Python modules allow to add to your computer libraries, functionalities and tools already done, tested and provided by others. This enables reusability of code,…

Python Development

This post introduces to some aspects of Python development. Python Programming Language Python applications are developed using Python programming language. You can find more information about Python programming language on this post. Integrated Development Environments (IDEs) for Python It is…

Introduction to Django

Django is a back-end web framework written in Python. It follows the model-template-view (MTV) architectural pattern. The Model-Template-View Architecture The Model-Template-View (MTV) architecture separates logically the definitions of a project in the following components: Django apps follows the MTV architecture.…

PyCharm

PyCharm is an IDE exclusive for Python development, and one of the most popular among Python developers. It is developed by Czech company JetBrains, that released the first version in 2010. Take into account that PyCharm uses virtualized environments. Contents…

Introduction to Python

This post is an introduction to the programming language Python. Understanding Python What is Python? Python is a high-level, object-oriented, dynamically typed and interpreted programming language. Its first version was released on 1991, but it has received major updates over…