You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
General idea is that you create your plugin in a file called _plugin.py in a certain directory. That directory can then hold other files such as specific helpers. The plugin path/name is then derived from the directory path up until the module name, instead of including it.
For example:
apps/something/myapp
- _plugin.py
- helpers.py
The plugin will register under the apps.something.myapp path.
The text was updated successfully, but these errors were encountered:
General idea is that you create your plugin in a file called
_plugin.py
in a certain directory. That directory can then hold other files such as specific helpers. The plugin path/name is then derived from the directory path up until the module name, instead of including it.For example:
The plugin will register under the
apps.something.myapp
path.The text was updated successfully, but these errors were encountered: