Tag: python3
MySQLclient Installation Errors in Python while running pip install mysqlclient
The Problem: mysql_config not found When you try to install mysqlclient using pip, the installation…
Resetting Django Migrations Without Losing Data
This shows how to reset django migrations without losing any data. If you’ve deleted an…
Show all properties of a variable in python (like PHPs var_dump, but better)
“but better” because types are also exposed from inspect import getmembers from pprint import pprint…