Name | gdaps JSON |
Version |
0.10.0
JSON |
| download |
home_page | None |
Summary | Generic plugin environment, perfectly fitting into the Django ecosystem |
upload_time | 2025-07-16 21:39:59 |
maintainer | None |
docs_url | None |
author | None |
requires_python | >=3.11 |
license | Copyright 2022 Christian González
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
keywords |
django
plugins
|
VCS |
|
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
The GDAPS library allows Django to make real "pluggable" apps.
A standard Django "app" is *reusable* (if done correctly), but is not *pluggable*,
like being distributed and "plugged" into a Django main application without modifications. GDAPS is filling this gap.
The reason you want to use GDAPS is: **you want to create an application that should be extended via plugins**. GDAPS consists of a few bells and twistles where Django lacks "automagic":
* Apps are automatically found using setuptools' entry points
* Apps can provide their own URLs (they are included and merged into urlpatterns automatically)
* Apps can define ``Interfaces``, that other GDAPS apps then can implement
* Apps can provide template hooks that can be filled with plugins' content
## Limitations
* GDAPS interfaces cannot inherit classes that import models (like `PermissionRequiredMixin`), as the declaration is too early in the Django setup process, and apps aren't loaded at that time.
## Contribute
You can support me in various ways.
* Test the code and write bug reports.
* Write code
* Suggest ideas (as bug report)
## Credits
I was majorly influenced by other plugin systems when writing this code, big thanks to them:
* Marty Alchin's [Simple plugin framework](http://martyalchin.com/2008/jan/10/simple-plugin-framework/)
* The [PyUtilib](https://github.com/PyUtilib/pyutilib) library
* [The Pretix ecosystem](https://pretix.eu/)
* [Yapsy](http://yapsy.sourceforge.net/)
* [Django-Rest-Framework](https://www.django-rest-framework.org/)
* [Graphene-Django](http://docs.graphene-python.org/projects/django/en/latest/)
## License
GDAPS is licensed under the **BSD License**, see [License](LICENSE.md).
Raw data
{
"_id": null,
"home_page": null,
"name": "gdaps",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.11",
"maintainer_email": null,
"keywords": "django, plugins",
"author": null,
"author_email": "Christian Gonz\u00e1lez <office@nerdocs.at>",
"download_url": "https://files.pythonhosted.org/packages/df/c4/ba8ee851145243b3eb6f8218b7d081866809f74379361e52fec231ef00bc/gdaps-0.10.0.tar.gz",
"platform": null,
"description": "\nThe GDAPS library allows Django to make real \"pluggable\" apps.\n\nA standard Django \"app\" is *reusable* (if done correctly), but is not *pluggable*,\nlike being distributed and \"plugged\" into a Django main application without modifications. GDAPS is filling this gap.\n\nThe reason you want to use GDAPS is: **you want to create an application that should be extended via plugins**. GDAPS consists of a few bells and twistles where Django lacks \"automagic\":\n\n* Apps are automatically found using setuptools' entry points\n* Apps can provide their own URLs (they are included and merged into urlpatterns automatically)\n* Apps can define ``Interfaces``, that other GDAPS apps then can implement\n* Apps can provide template hooks that can be filled with plugins' content\n\n\n## Limitations\n\n* GDAPS interfaces cannot inherit classes that import models (like `PermissionRequiredMixin`), as the declaration is too early in the Django setup process, and apps aren't loaded at that time.\n\n\n## Contribute\n\nYou can support me in various ways.\n\n* Test the code and write bug reports.\n* Write code\n* Suggest ideas (as bug report)\n\n\n## Credits\n\nI was majorly influenced by other plugin systems when writing this code, big thanks to them:\n\n* Marty Alchin's [Simple plugin framework](http://martyalchin.com/2008/jan/10/simple-plugin-framework/)\n* The [PyUtilib](https://github.com/PyUtilib/pyutilib) library\n* [The Pretix ecosystem](https://pretix.eu/)\n* [Yapsy](http://yapsy.sourceforge.net/)\n* [Django-Rest-Framework](https://www.django-rest-framework.org/)\n* [Graphene-Django](http://docs.graphene-python.org/projects/django/en/latest/)\n\n## License\n\nGDAPS is licensed under the **BSD License**, see [License](LICENSE.md).\n\n",
"bugtrack_url": null,
"license": "Copyright 2022 Christian Gonz\u00e1lez\n \n Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\n \n 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.\n \n 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.\n \n 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.\n \n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.",
"summary": "Generic plugin environment, perfectly fitting into the Django ecosystem",
"version": "0.10.0",
"project_urls": {
"Documentation": "https://gdaps.readthedocs.org",
"Home": "https://gdaps.readthedocs.org",
"Source": "https://gitlab.com/nerdocs/gdaps",
"Tracker": "https://gitlab.com/nerdocs/gdaps/issues"
},
"split_keywords": [
"django",
" plugins"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "42c3784b0f86dfda1f6a9f5b349b071867b128557b4878e27aba5c12eba17ab6",
"md5": "c2812d047bbfe2ad45e74694ffdaab44",
"sha256": "a1b8d730fe5d9d5dc80866fe215bab3938eb9db8e1deda55f881fb5105ec5e8d"
},
"downloads": -1,
"filename": "gdaps-0.10.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "c2812d047bbfe2ad45e74694ffdaab44",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.11",
"size": 35099,
"upload_time": "2025-07-16T21:39:57",
"upload_time_iso_8601": "2025-07-16T21:39:57.746197Z",
"url": "https://files.pythonhosted.org/packages/42/c3/784b0f86dfda1f6a9f5b349b071867b128557b4878e27aba5c12eba17ab6/gdaps-0.10.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "dfc4ba8ee851145243b3eb6f8218b7d081866809f74379361e52fec231ef00bc",
"md5": "d16c2c4f8ad7d17d961378999bca1a60",
"sha256": "0e4135eb2b66f06fc77ca1a3ad5679aeef492e984fee9678e5a13611b97b733c"
},
"downloads": -1,
"filename": "gdaps-0.10.0.tar.gz",
"has_sig": false,
"md5_digest": "d16c2c4f8ad7d17d961378999bca1a60",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.11",
"size": 34353,
"upload_time": "2025-07-16T21:39:59",
"upload_time_iso_8601": "2025-07-16T21:39:59.448135Z",
"url": "https://files.pythonhosted.org/packages/df/c4/ba8ee851145243b3eb6f8218b7d081866809f74379361e52fec231ef00bc/gdaps-0.10.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-07-16 21:39:59",
"github": false,
"gitlab": true,
"bitbucket": false,
"codeberg": false,
"gitlab_user": "nerdocs",
"gitlab_project": "gdaps",
"lcname": "gdaps"
}