diff --git a/__init__.py b/__init__.py index 5b32b3a..1ca960a 100644 --- a/__init__.py +++ b/__init__.py @@ -68,7 +68,7 @@ __DEPENDENCIES__ = [] __DESCRIPTION__ = """The Module {\\tt %s} is designed to help on all issues with media files, like tags (e.g. exif, id3) and transformations. -For more Information read the documentation.""" % __name__.replace('_', '\_') +For more Information read the documentation.""" % __name__.replace('_', '\\_') """The Module Description""" __INTERPRETER__ = (3, ) """The Tested Interpreter-Versions""" diff --git a/_examples_/Makefile b/_examples_/Makefile new file mode 100644 index 0000000..f1b262b --- /dev/null +++ b/_examples_/Makefile @@ -0,0 +1,29 @@ +# pylibs examples Makefile: Version 1.0 (2025-08-15) + +.ONESHELL: +SHELL = /usr/bin/bash +MAKEFLAGS += --no-print-directory +.SILENT: + +INTERPRETER = python3 + +.PHONY: all +EXAMPLES := $(wildcard *.py) +EXAMPLES := $(filter-out config.py, $(EXAMPLES)) +LOGFILES := ${EXAMPLES:.py=.log} +LOGFILES_1st := ${EXAMPLES:.py=.log_1st} + +all: $(LOGFILES) + +-include __make.d__/*.mk + +%.log: %.py + $(MAKE) $@_1st 2> /dev/null + echo -e "\e[1m * Running example $<\e[0m" + $(INTERPRETER) $< > $@ + +localclean: +clean: localclean + echo -e "\e[1m * Example logs...\e[0m" + rm -f $(LOGFILES) + rm -f $(LOGFILES_1st) diff --git a/_requirements_/specification.pdf b/_requirements_/specification.pdf index 23ded80..603e01c 100644 Binary files a/_requirements_/specification.pdf and b/_requirements_/specification.pdf differ