ABC Python
from abc import ABC, abstractmethod # Built in. No install needed.
class myclass(ABC):
@abstractmethod
def mymethod
pass
Matthew Edelen
from abc import ABC, abstractmethod # Built in. No install needed.
class myclass(ABC):
@abstractmethod
def mymethod
pass
from abc import ABC