}

Articles tagged "python"

Page 11 of 13

1 min read

Ubuntu: libxml/xpath.h Not Found Error Fix

Installing lxml for python requires system libs to install it successfully. Here we explain how to fix this issue.

1 min read

SOLVED: pip: command not found

Clean ubuntu installation does not provide pip command. To install pip follow this steps

1 min read

SOLVED: Error: pg_config executable not found.

Usually when installing psycopg2 the error of pg_config command not found is returned when using a clean Linux installation.

5 min readIntermediate

Create an application with websockets and flask

In this tutorial we are going to explain how to create a webscokets application with python using flask.

5 min readIntermediate

Start a flask project from zero: Building a REST API

In this tutorial we explain how to build a REST API using flask. We try to create an environment similar to django (with management commands to migrate the database using flask).

1 min readBeginner

How to pass a variable as reference in python

How are arguments passed in python? In this tutorial we explain more details on how parameters are passed.

2 min readIntermediate

Python slice notation explained

In this tutorial we explain what the slice notation means with some examples.

2 min readBeginner

How to copy or clone a list in Python3

In this tutorial we explain how to do a proper clone or copy of a list in Python3.

3 min readIntermediate

Python class the concepts you need to know

Learn importante concepts of python programming in this tutorial, like python class, objects, modules, duck typing, etc

2 min readBeginner

How to calculate the hash of big files with python

We break the file in parts to be able to process very big files with python to calculate any hash function.