TTY OV  1
A cross platform python terminal
Loading...
Searching...
No Matches
__init__.py
Go to the documentation of this file.
1"""
2# +==== BEGIN polyguard =================+
3# LOGO:
4# input
5#
6# @#$%! hello
7# | |
8# +--+--+
9# |
10# v
11# +------------+
12# | POLY GUARD |
13# +------------+
14# | |
15# v v
16# BLOCKED PASSED
17# KO OK
18# /STOP
19# PROJECT: polyguard
20# FILE: __init__.py
21# CREATION DATE: 13-03-2026
22# LAST Modified: 20:8:17 21-03-2026
23# DESCRIPTION:
24# A module that provides a set of swearwords to listen to when filtering while allowing to toggle on and off different languages.
25# /STOP
26# COPYRIGHT: (c) Henry Letellier
27# PURPOSE: File in charge of easing the import of the program
28# // AR
29# +==== END polyguard =================+
30"""
31
32from .src.polyguard import PolyGuard
33from .src.constants import LangConfig
34
35__all__ = [
36 "PolyGuard",
37 "LangConfig"
38]