mirror of
https://github.com/Code-For-Groningen/temmies.git
synced 2025-03-15 15:10:15 +01:00
9 lines
177 B
Python
9 lines
177 B
Python
"""
|
|
Entry point for the temmies package.
|
|
"""
|
|
import urllib3
|
|
from .themis import Themis
|
|
|
|
__all__ = ["Themis"]
|
|
urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning)
|