幻想の狂気が始まる

Signed-off-by: Izuru Yakumo <yakumo.izuru@chaotic.ninja>

git-svn-id: file:///srv/svn/repo/ecgi/trunk@1 aac7edbf-1187-474f-a1ff-725cae958fdc
This commit is contained in:
yakumo.izuru 2024-07-21 16:02:14 +00:00
commit 43b67bbe52
5 changed files with 1104 additions and 0 deletions

61
.gitignore vendored Normal file
View File

@ -0,0 +1,61 @@
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class
# C extensions
*.so
# Distribution / packaging
.Python
env/
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
*.egg-info/
.installed.cfg
*.egg
*/*.egg-info/
# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec
# Installer logs
pip-log.txt
pip-delete-this-directory.txt
# Unit test / coverage reports
htmlcov/
.tox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*,cover
# Translations
*.mo
*.pot
# Django stuff:
*.log
# Sphinx documentation
docs/_build/
# PyBuilder
target/

14
COPYING Normal file
View File

@ -0,0 +1,14 @@
Copyright (c) 2001-2024 Python Software Foundation
Copyright (c) 2024-present Izuru Yakumo <yakumo.izuru@chaotic.ninja>
Permission to use, copy, modify, and distribute this software for any
purpose with or without fee is hereby granted, provided that the above
copyright notice and this permission notice appear in all copies.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

2
README.md Normal file
View File

@ -0,0 +1,2 @@
# ecgi
The 'cgi' module, extracted from Python 3.11

20
pyproject.toml Normal file
View File

@ -0,0 +1,20 @@
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "ecgi"
version = "2024.07"
description = "The 'cgi' module, extracted from Python 3.11"
readme = "README.md"
authors = [{ name = "Izuru Yakumo", email = "yakumo.izuru@chaotic.ninja" }]
license = { file = "COPYING" }
classifiers = [
"License :: OSI Approved :: ISC License",
"Programming Language :: Python :: 3",
]
keywords = [ "cgi" ]
requires-python = ">=3.9"
[project.urls]
Source = "https://git.chaotic.ninja/yakumo.izuru/ecgi"

1007
src/ecgi.py Normal file

File diff suppressed because it is too large Load Diff