I am using MySQL 5.7 and pymysql and when I am trying to store some data into the database I am getting the following error:
Warning: (1366, "Incorrect string value: '\xF0\x9F\x92\x8A' for column 'description' at row 1") result = self._query(query)
My connection is set as follows:
self.__conn = pymysql.connect(host='localhost', port=3306, user=user, passwd=pass,db = 'twitter',
charset='utf8mb4')
self.__cur = self.__conn.cursor()
thanks in advance