So I\'m learning Django (1, 3, 1, \'final\', 0) through this resource: http://www.djangobook.com/en/2.0/chapter05/
I installed \'mysql-server\' and \'python-mysqldb\
Just gonna leave my answer here because I lost few good minutes (almost hour) on this matter.
Watch Your copy-paste :) Unfortunately, mysql return success while granting priviliges for not existing user to not existing database...
Both queries:
GRANT ALL PRIVILEGES ON python_user.* TO 'python_db'@'%' WITH GRANT OPTION;
and:
GRANT ALL PRIVILEGES ON python_db.* TO 'python_user'@'%' WITH GRANT OPTION
will return success. Aldo I don't have such a user called python_db and db named python_user. :) That's sad. My mistake but also MySql was not helpful enough with output. :)