I hate to re-hash this subject but I'm not making progress on it by reading and implementing solutions in the other posts:
Here is the error message: mysql_exceptions.OperationalError: (1044, "Access denied for user 'premierbdevelope'@'%' to database 'help'")
Here is the code:
import requests
import MySQLdb
from bs4 import BeautifulSoup
import json
import pprint
conn = MySQLdb.connect("premierbdeveloper.mysql.pythonanywhere-services.com", "premierbdevelope", "mypassword01", "premierbdevelope$help")
cur = conn.cursor()
cur.execute("USE help")
When I try to execute this portion of the code I get the error message above: