Trying to install mysqlclient using pip3 on Python 3.6.0
$ pip3 install mysqlclient Collecting mysqlclient Using cached mysqlclient-1.3.10.tar.gz Comp
Personally I recommend using pymysql instead of using mysqlclient. You can install pymysql with:
pymysql
mysqlclient
pip install pymysql
And you might edit your SQLAlchemy URL to:
mysql+pymysql://username:passwd@hostname/database