Tag 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 Pygame

Pygame , frequently typed as pygame, is a cross-module set of Python module to create video games. This post reviews some aspects of Pygame. What is Pygame? Pygame is a Python implementation of the SDL library which is written in…