Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

api_key_auth_base.py 238B

12345678910
  1. from abc import ABC, abstractmethod
  2. class ApiKeyAuthBase(ABC):
  3. def __init__(self, credentials: dict):
  4. self.credentials = credentials
  5. @abstractmethod
  6. def validate_credentials(self):
  7. raise NotImplementedError