(princ (concat
(format "Emacs version: %s\n"
(emacs-version))
(format "org version: %s\n"
(org-version))))
Emacs version: GNU Emacs 27.1 (build 1, x86_64-pc-linux-gnu, GTK+ Version 3.24.24, cairo version 1.16.0) of 2023-02-23, modified by Debian org version: 9.6.11
python --version 2>&1
Python 3.9.2Hosted at GitHub as a detached Repository
More about structure
tree -I '*.pyc|*.*#|*.org~|__pycache__' 2>&1
. ├── docs │ ├── conf.py │ ├── index.rst │ ├── make.bat │ └── Makefile ├── LICENSE ├── Makefile ├── MANIFEST.in ├── README.org ├── requirements.txt ├── sample │ ├── core.py │ ├── helpers.py │ └── __init__.py ├── setup.py └── tests ├── context.py ├── __init__.py ├── test_advanced.py └── test_basic.py 3 directories, 17 files
for all following further Python projects
and all projects will derive out from there
check out this repository.
Link