Cat Feeder  1.0.0
The Cat feeder project
Loading...
Searching...
No Matches
__init__.py
Go to the documentation of this file.
1r"""
2# +==== BEGIN CatFeeder =================+
3# LOGO:
4# ..............(..../\
5# ...............)..(.')
6# ..............(../..)
7# ...............\‍(__)|
8# Inspired by Joan Stark
9# source https://www.asciiart.eu/
10# animals/cats
11# /STOP
12# PROJECT: CatFeeder
13# FILE: __init__.py
14# CREATION DATE: 11-10-2025
15# LAST Modified: 14:51:55 19-12-2025
16# DESCRIPTION:
17# This is the backend server in charge of making the actual website work.
18# /STOP
19# COPYRIGHT: (c) Cat Feeder
20# PURPOSE: The file allowing the code for the sql management files to be imported seamlessly.
21# // AR
22# +==== END CatFeeder =================+
23"""
24
25from .sql_injection import SQLInjection
26from .sql_constants import TARGET
27from .sql_manager import SQL
28
29__all__ = [
30 # SQL API
31 "TARGET",
32 "SQLInjection",
33 "SQL"
34]
35
36"""
37Module: __init__.py
38
39This module initializes the SQL management package, allowing seamless imports of key components such as:
40- `SQLInjection`: Provides SQL injection protection utilities.
41- `TARGET`: Constants for SQL operations.
42- `SQL`: Core SQL management class.
43
44Exports:
45 TARGET, SQLInjection, SQL
46"""