Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Multi file support/branches #58

Merged
merged 13 commits into from
Sep 24, 2023
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,15 @@ def setup(rpc, system, stop):
```
You can check what advanced functions found so far [here](ADVANCED-FEATURES.md).

### Preprocessor

To support multi files before the compilation (or upload if not compiled) imported files will be inserted in the current python script.
At the moment only
```python
from file_name import *
```
is supported. Files not found are skipped (in the hope they exist on the hub). Nevertheless an error will inform you.

## Automatic upload/start of a python file

During active development you will be uploading a program over and over again so going through all the prompts for type and slot is not very convenient. You can skip those prompts and automatically start the program after uploading by adding a specific comment line as first in your program.
Expand Down
Loading
Loading