mirror of
https://github.com/Benexl/FastAnime.git
synced 2025-12-20 14:22:44 -08:00
9 lines
144 B
Python
9 lines
144 B
Python
import requests
|
|
|
|
|
|
class AnimeProvider:
|
|
session: requests.Session
|
|
|
|
def __init__(self) -> None:
|
|
self.session = requests.session()
|