Plugin template for SC-REPL version 1.1.1.
- Each SC-REPL plugin has a form of python package.
- Each plugin consists of one __init__.py file and multiple application files.
- You can add your commands for REPL on __init__.py
- You can define your own apps with python codes.
- SC-REPL installation is required.
- Modify your euddraft project file (*.edd) as follows.
[prepl]
superuser: P1
plugins: OTHER_PLUGINS myplugin
- Place your plugin on
euddraft/lib
or the directory which contains euddraft project file,your_project.edd
.
euddraft0.*.*.*
├── lib
│ ├── screpl
│ │ ├── apps
│ │ ├── bridge_server
│ │ ...
│ └── myplugin
│ ├── __init__.py
│ ├── app1.py
│ ├── app2.py
│ ...
│ └── appN.py
├── plugins
│ └── prepl.py
└── euddraft.exe
or
YOUR_PROJECT
├── myplugin
│ ├── __init__.py
│ ├── app1.py
│ ├── app2.py
│ ...
│ └── appN.py
└── your_project.edd
- You may use many functionalities of
eudplib
. You can visit here to get some information.