PythonExtension icon indicating copy to clipboard operation
PythonExtension copied to clipboard

Python extension for NetLogo

Results 7 PythonExtension issues
Sort by recently updated
recently updated
newest added

Hi, several passages was not very clear to me, anyway I quite solved the issues. Last error appears while typing the following command: > py:setup py:python I solved opening NetLogo...

Currently, every `py:set` sends a message to the python process and waits for a result. However, we could instead batch `py:set`s with `py:run`s and `py:runresult`s to reduce the amount of...

enhancement

Bash on Ubuntu on Windows (AKA Windows Subsystem Linux, AKA WSL) is really cool. However, because it is a *sub* system, Windows cannot access the Python binaries in WSL. And...

idea

I think they should be represented as dict-like objects, where keys are agent variables. For a first pass, they should be read-only. One tricky thing is keeping them in sync...

idea

Some examples: ``` observer> show py:runresult "{1: 2}" observer: [["1" 2]] observer> show py:runresult "{(1,2): 3}" Extension exception: keys must be a string ``` While JSON is restricted to string...

bug

Dealing with matplotlib can be kind of tricky. The docs should discuss how to do both blocking and non-blocking plots.