"""Constants.""" class Http: OK = 200 NOT_FOUND = 404 TOO_MANY_REQUESTS = 429 SQL_INSERT_VISITS = """ INSERT INTO tblApolloLogTrackVisit(UserId, AppleId, SpotifyId, CreatedAt) VALUES(%s, NULL, %s, %s) """ SQL_MAX_VISIT_ID = """SELECT MAX(Id) FROM tblApolloLogTrackVisit"""