# pyllo-kickstart
## What is pyllo-kickstart?
pyllo-kickstart is a kick-start plugin template generator for Pyllo extension.
## What is Pyllo?
Pyllo is a plugin based meta-IDE platform create by Pyllo project team owned
by SHCONNET INFO COMPANY.
## What is plugin?
A plugin is a software add-on that is installed on a program, enhancing its
capabilities. Usually plugin is consisted of self-consistent functionalities, and provide API to other plugins.
## What kind of plugins Pyllo supports?
Pyllo supports two kinds of plugins. One is PylloPlugin which is plain and
non-window plugin. PylloPlugin can has other plugins to give user buttons or
actions to interact(such as add actions to MainMenu or add actions even
widgets to Toolbar). Another one is PylloDockablePlugin which has one dockable
window can be shown in MainWindow.
## How to create an PylloPlugin?
```commandline
pip install pyllo-kickstart
```
Enter `pyllo-kickstart` in command line, select `New Container Plugin` at
beginning and follow the instructions.
```commandline
% pyllo-kickstart
________ ___ ___ ___ ___ ________
|\ __ \|\ \ / /|\ \ |\ \ |\ __ \
\ \ \|\ \ \ \/ / | \ \ \ \ \ \ \ \|\ \
\ \ ____\ \ / / \ \ \ \ \ \ \ \ \\\ \
\ \ \___|\/ / / \ \ \____\ \ \____\ \ \\\ \
\ \__\ __/ / / \ \_______\ \_______\ \_______\
\|__||\___/ / \|_______|\|_______|\|_______|
\|___|/
╭──────────────────────────╮
│ Welcome to the Pyllo │
│ Plugin Generator! │
╰──────────────────────────╯
? What type of plugin do you want to create? [1-5]
1) New Container Plugin
2) New Dockable Plugin
3) New Language Support
4) New Custom Editor
5) New Code Editor Extension
> 1
project_name [helloworld]:
plugin_class_name [HelloWorld]:
plugin_description [Hello world plugin which doesn't contain dockable window.]:
author [pyllo]:
company [my awesome company]:
? Do you want to open project in Pyllo now? (Pyllo is needed) [Y/n]
> Y
%
```
Open the newly created project with your favorite code editor and navigate to the root directory.
```commandline
% cd helloworld
% tree .
.
├── __init__.py
├── helloworld
│ ├── __init__.py
│ ├── api.py
│ ├── confpage.py
│ ├── container.py
│ └── plugin.py
├── setup.py
└── startup.py
```
Notice: maybe you will see some __pycache__ files, it is ok to ignore them.
`startup.py` is a convenience script to instantly bring up Pyllo IDE with
`helloworld` plugin loaded.
Now you can see the toolbar action `test` on the Pyllo main toolbar. Click it,
you will get a new message box shows that the `helloworld` plugin working like
a charm!
![messagebox](data/1686626799664.jpg)
## How to create an PylloDockablePlugin?
```commandline
pip install pyllo-kickstart
```
Enter `pyllo-kickstart` in command line, select `New Dockable Plugin` at
beginning and follow the instructions.
```commandline
% pyllo-kickstart
________ ___ ___ ___ ___ ________
|\ __ \|\ \ / /|\ \ |\ \ |\ __ \
\ \ \|\ \ \ \/ / | \ \ \ \ \ \ \ \|\ \
\ \ ____\ \ / / \ \ \ \ \ \ \ \ \\\ \
\ \ \___|\/ / / \ \ \____\ \ \____\ \ \\\ \
\ \__\ __/ / / \ \_______\ \_______\ \_______\
\|__||\___/ / \|_______|\|_______|\|_______|
\|___|/
╭──────────────────────────╮
│ Welcome to the Pyllo │
│ Plugin Generator! │
╰──────────────────────────╯
? What type of plugin do you want to create? [1-5]
1) New Container Plugin
2) New Dockable Plugin
3) New Language Support
4) New Custom Editor
5) New Code Editor Extension
> 2
project_name [hellodock]:
plugin_class_name [HelloDock]:
plugin_description [Hello world dockable plugin which contains dockable window.]:
author [pyllo]:
company [my awesome company]:
? Do you want to open project in Pyllo now? (Pyllo is needed) [Y/n]
> Y
%
```
Notice: maybe you will see some __pycache__ files, it is ok to ignore them.
`startup.py` is a convenience script to instantly bring up Pyllo IDE with
`hellodock` plugin loaded.
Now you can see a new dock pane docked in main window. Click it out!
![messagebox](data/1686630107639.jpg)
## Check the plugins installed
Open the `Register plugins...` window in the `Help` menu and you will see all
registered plugins. You can also disable these plugins and restart without
them.
![plugin tools](data/1686631106584.jpg)
Raw data
{
"_id": null,
"home_page": "",
"name": "pyllo-kickstart",
"maintainer": "",
"docs_url": null,
"requires_python": "",
"maintainer_email": "",
"keywords": "pyllo plugin template generator",
"author": "Shanghai Connet Information Technology Company Ltd.",
"author_email": "tech_support@shconnet.com.cn",
"download_url": "https://files.pythonhosted.org/packages/e3/23/3020aff3e27f054afb7e1f4cab55ce5ea3ec54b10c2c49e543b0eb61d2d4/pyllo-kickstart-1.0.3.tar.gz",
"platform": null,
"description": "# pyllo-kickstart\n\n## What is pyllo-kickstart?\npyllo-kickstart is a kick-start plugin template generator for Pyllo extension.\n\n## What is Pyllo?\nPyllo is a plugin based meta-IDE platform create by Pyllo project team owned \nby SHCONNET INFO COMPANY.\n\n## What is plugin?\nA plugin is a software add-on that is installed on a program, enhancing its \ncapabilities. Usually plugin is consisted of self-consistent functionalities, and provide API to other plugins.\n\n## What kind of plugins Pyllo supports?\nPyllo supports two kinds of plugins. One is PylloPlugin which is plain and \nnon-window plugin. PylloPlugin can has other plugins to give user buttons or \nactions to interact(such as add actions to MainMenu or add actions even \nwidgets to Toolbar). Another one is PylloDockablePlugin which has one dockable \nwindow can be shown in MainWindow.\n\n## How to create an PylloPlugin? \n```commandline\npip install pyllo-kickstart\n```\n\nEnter `pyllo-kickstart` in command line, select `New Container Plugin` at \nbeginning and follow the instructions.\n\n```commandline\n% pyllo-kickstart\n\n ________ ___ ___ ___ ___ ________ \n|\\ __ \\|\\ \\ / /|\\ \\ |\\ \\ |\\ __ \\ \n\\ \\ \\|\\ \\ \\ \\/ / | \\ \\ \\ \\ \\ \\ \\ \\|\\ \\ \n \\ \\ ____\\ \\ / / \\ \\ \\ \\ \\ \\ \\ \\ \\\\\\ \\ \n \\ \\ \\___|\\/ / / \\ \\ \\____\\ \\ \\____\\ \\ \\\\\\ \\ \n \\ \\__\\ __/ / / \\ \\_______\\ \\_______\\ \\_______\\\n \\|__||\\___/ / \\|_______|\\|_______|\\|_______|\n \\|___|/ \n \u256d\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u256e\n \u2502 Welcome to the Pyllo \u2502\n \u2502 Plugin Generator! \u2502\n \u2570\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u256f\n \n\n? What type of plugin do you want to create? [1-5]\n1) New Container Plugin\n2) New Dockable Plugin\n3) New Language Support\n4) New Custom Editor\n5) New Code Editor Extension\n> 1\nproject_name [helloworld]: \nplugin_class_name [HelloWorld]: \nplugin_description [Hello world plugin which doesn't contain dockable window.]: \nauthor [pyllo]: \ncompany [my awesome company]: \n? Do you want to open project in Pyllo now? (Pyllo is needed) [Y/n] \n> Y\n%\n```\n\nOpen the newly created project with your favorite code editor and navigate to the root directory.\n```commandline\n% cd helloworld\n% tree .\n.\n\u251c\u2500\u2500 __init__.py\n\u251c\u2500\u2500 helloworld\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 __init__.py\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 api.py\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 confpage.py\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 container.py\n\u2502\u00a0\u00a0 \u2514\u2500\u2500 plugin.py\n\u251c\u2500\u2500 setup.py\n\u2514\u2500\u2500 startup.py\n```\nNotice: maybe you will see some __pycache__ files, it is ok to ignore them.\n \n`startup.py` is a convenience script to instantly bring up Pyllo IDE with \n`helloworld` plugin loaded.\n\nNow you can see the toolbar action `test` on the Pyllo main toolbar. Click it,\nyou will get a new message box shows that the `helloworld` plugin working like \na charm!\n\n![messagebox](data/1686626799664.jpg)\n\n## How to create an PylloDockablePlugin?\n```commandline\npip install pyllo-kickstart\n```\n\nEnter `pyllo-kickstart` in command line, select `New Dockable Plugin` at \nbeginning and follow the instructions.\n\n```commandline\n% pyllo-kickstart\n\n ________ ___ ___ ___ ___ ________ \n|\\ __ \\|\\ \\ / /|\\ \\ |\\ \\ |\\ __ \\ \n\\ \\ \\|\\ \\ \\ \\/ / | \\ \\ \\ \\ \\ \\ \\ \\|\\ \\ \n \\ \\ ____\\ \\ / / \\ \\ \\ \\ \\ \\ \\ \\ \\\\\\ \\ \n \\ \\ \\___|\\/ / / \\ \\ \\____\\ \\ \\____\\ \\ \\\\\\ \\ \n \\ \\__\\ __/ / / \\ \\_______\\ \\_______\\ \\_______\\\n \\|__||\\___/ / \\|_______|\\|_______|\\|_______|\n \\|___|/ \n \u256d\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u256e\n \u2502 Welcome to the Pyllo \u2502\n \u2502 Plugin Generator! \u2502\n \u2570\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u256f\n \n\n? What type of plugin do you want to create? [1-5]\n1) New Container Plugin\n2) New Dockable Plugin\n3) New Language Support\n4) New Custom Editor\n5) New Code Editor Extension\n> 2\nproject_name [hellodock]: \nplugin_class_name [HelloDock]: \nplugin_description [Hello world dockable plugin which contains dockable window.]: \nauthor [pyllo]: \ncompany [my awesome company]: \n? Do you want to open project in Pyllo now? (Pyllo is needed) [Y/n] \n> Y\n%\n```\nNotice: maybe you will see some __pycache__ files, it is ok to ignore them.\n \n`startup.py` is a convenience script to instantly bring up Pyllo IDE with \n`hellodock` plugin loaded.\n\nNow you can see a new dock pane docked in main window. Click it out!\n\n![messagebox](data/1686630107639.jpg)\n\n## Check the plugins installed\n\nOpen the `Register plugins...` window in the `Help` menu and you will see all \nregistered plugins. You can also disable these plugins and restart without\nthem.\n\n![plugin tools](data/1686631106584.jpg)\n\n\n\n\n",
"bugtrack_url": null,
"license": "",
"summary": "Pyllo plugin generator",
"version": "1.0.3",
"project_urls": null,
"split_keywords": [
"pyllo",
"plugin",
"template",
"generator"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "94ab1dd6464458e42a46067db62ef4b426274005224f451887df01c5c899420f",
"md5": "bf1678d79bee4d9715147763e7998cf3",
"sha256": "36e1c42db0eeba317a90c9722bc472bbf36293a07559fd5c2a0e74d8bf9acb7e"
},
"downloads": -1,
"filename": "pyllo_kickstart-1.0.3-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "bf1678d79bee4d9715147763e7998cf3",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 22702,
"upload_time": "2023-06-22T06:51:06",
"upload_time_iso_8601": "2023-06-22T06:51:06.348016Z",
"url": "https://files.pythonhosted.org/packages/94/ab/1dd6464458e42a46067db62ef4b426274005224f451887df01c5c899420f/pyllo_kickstart-1.0.3-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e3233020aff3e27f054afb7e1f4cab55ce5ea3ec54b10c2c49e543b0eb61d2d4",
"md5": "bb726ee09ea6f7668e2407c3832e7b60",
"sha256": "4c7be919d11aef92004983c5e0959019719ac0e47ab7ce1cc6403a7848e028cc"
},
"downloads": -1,
"filename": "pyllo-kickstart-1.0.3.tar.gz",
"has_sig": false,
"md5_digest": "bb726ee09ea6f7668e2407c3832e7b60",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 17845,
"upload_time": "2023-06-22T06:51:08",
"upload_time_iso_8601": "2023-06-22T06:51:08.129721Z",
"url": "https://files.pythonhosted.org/packages/e3/23/3020aff3e27f054afb7e1f4cab55ce5ea3ec54b10c2c49e543b0eb61d2d4/pyllo-kickstart-1.0.3.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2023-06-22 06:51:08",
"github": false,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"lcname": "pyllo-kickstart"
}