All checks were successful
continuous-integration/drone/push Build is passing
21 lines
462 B
Python
21 lines
462 B
Python
"""
|
|
Сервисы приложения
|
|
"""
|
|
from .proxy_manager import (
|
|
download_proxies,
|
|
get_shuffled_proxies,
|
|
fetch_with_proxy,
|
|
fetch_with_proxy_retry
|
|
)
|
|
from .gpt_client import gpt_response_message
|
|
from .document_builder import update_bd_and_create_document
|
|
|
|
__all__ = [
|
|
'download_proxies',
|
|
'get_shuffled_proxies',
|
|
'fetch_with_proxy',
|
|
'fetch_with_proxy_retry',
|
|
'gpt_response_message',
|
|
'update_bd_and_create_document'
|
|
]
|