mirror of
https://github.com/Code-For-Groningen/temmies.git
synced 2025-06-30 19:24:58 +02: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)
|