Merge pull request 'main' (#10) from main into 0.0.5

Reviewed-on: https://gitea.com/Lerking/XtendR/pulls/10
This commit is contained in:
Lerking
2025-02-24 07:24:30 +00:00
+14 -1
View File
@@ -1,6 +1,19 @@
# XtendR
A very basic python 3 extension system to ease the use of plugins.
A very basic Python >= 3.12 extension system based on the K.I.S.S principle.
I was in need of a new plugin system, which should meet these requirements:
- Simple to use
- Work well with Python 3.12
- Maintainable - Don't expect to see new releases every month. __If it ain't broken, don't fix it!!!__
I previously used yapsy, but it doesn't meet the requirements anymore.
:x: No longer simple, and simple to use (Simplicity in use has been sacrificed for more complexity. It has become bloated)
:x: Not workink with Python 3.12
:x: No longer maintained (Hasn't been maintained for a few years)
I didn't find anything that suited my needs, so I decided to make my own.
It simply contains 2 classes, one for the plugin system and one abstraction base class for the plugins themselves.
At the moment only 4 functions are available:
- Attach