2
Jak zdefiniować właściwości Python Enum, jeśli wartości MySQL ENUM mają spację w swoich nazwach?
Mam Enumtaką klasę Python : from enum import Enum class Seniority(Enum): Intern = "Intern" Junior_Engineer = "Junior Engineer" Medior_Engineer = "Medior Engineer" Senior_Engineer = "Senior Engineer" W bazie danych MYSQL kolumna ENUM starszeństwa ma wartości „Intern”, „Junior Engineer”, „Medior Engineer”, „Senior Engineer”. Problem polega na tym, że pojawia się błąd: …