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: 26-11-2025
15# LAST Modified: 14:43:47 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: Common utilities and constants for documentation providers.
21# // AR
22# +==== END CatFeeder =================+
23"""
24
25from .common_constants import (
26 CDN_UNPKG_BASE,
27 CDN_JSDELIVR_BASE,
28 CDN_CDNJS_BASE,
29 HTML_DOCTYPE,
30 HTML_META_CHARSET,
31 HTML_META_VIEWPORT,
32 create_html_page,
33 create_cdn_script_tag,
34 create_cdn_link_tag
35)
36
37__all__ = [
38 "CDN_UNPKG_BASE",
39 "CDN_JSDELIVR_BASE",
40 "CDN_CDNJS_BASE",
41 "HTML_DOCTYPE",
42 "HTML_META_CHARSET",
43 "HTML_META_VIEWPORT",
44 "create_html_page",
45 "create_cdn_script_tag",
46 "create_cdn_link_tag"
47]