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: 0:1:14 15-01-2026
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:
21# File in charge of containing a human readable functions that will return the code corresponding to the HTTP status code.
22# This is used to avoid having to remember the codes and their meanings.
23# This binder also contains a function to ease the wrapping of the fastapi responses when one whishes to return a response with a status code.
24# /STOP
25# // AR
26# +==== END CatFeeder =================+
27"""
28
29
30from .http_codes import HttpCodes, HCI
31from .converter import Converter as HttpConverter
32from .http_constants import DataTypes as HttpDataTypes, DEFAULT_MESSAGE_TYPE as HTTP_DEFAULT_TYPE, MEDIA_TYPES as HTTP_MEDIA_TYPES
33
34__all__ = [
35 "HttpCodes",
36 "HCI",
37 "HttpDataTypes",
38 "HTTP_DEFAULT_TYPE",
39 "HTTP_MEDIA_TYPES",
40 "HttpConverter",
41]