8 Commits
Author SHA1 Message Date
Lerking f711cdcf06 Update README.md 2025-02-24 07:26:47 +00:00
Lerking 2199d18c79 Update README.md 2025-02-24 07:26:27 +00:00
Lerking 13858e433f Update README.md 2025-02-24 07:23:58 +00:00
Lerking 37cad62835 Update README.md 2025-02-24 07:19:43 +00:00
Lerking b4ad8fee0c Update README.md 2025-02-24 07:19:01 +00:00
Lerking 4e51fd06f0 Update README.md 2025-02-24 07:17:57 +00:00
Lerking dd780864a6 Update README.md 2025-02-24 07:03:53 +00:00
Lerking 83db451e1b Update README.md 2025-02-24 07:03:28 +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 plugin 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 plugin system.
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