1
0
mirror of https://gitlab.com/animath/si/plateforme-corres2math.git synced 2025-01-09 17:02:21 +00:00
plateforme-corres2math/corres2math/lists.py
2020-10-09 14:06:07 +02:00

25 lines
626 B
Python

import os
from sympasoap import Client
_client = None
def get_sympa_client() -> Client:
global _client
if _client is None:
if os.getenv("SYMPA_PASSWORD", None) is not None:
_client = Client("https://" + os.getenv("SYMPA_URL"))
_client.login(os.getenv("SYMPA_EMAIL"), os.getenv("SYMPA_PASSWORD"))
else:
_client = FakeSympaSoapClient()
return _client
class FakeSympaSoapClient:
"""
Simulate a Sympa Soap client to run tests, if no Sympa instance is connected.
"""
def __getattribute__(self, item):
return lambda *args, **kwargs: None