panweitong f4db1a0f2f update | hace 3 años | |
---|---|---|
block | hace 4 años | |
blockly | hace 3 años | |
closure-library | hace 4 años | |
dist | hace 3 años | |
docs | hace 4 años | |
firmware | hace 3 años | |
fonts | hace 4 años | |
gif | hace 4 años | |
icons | hace 4 años | |
images | hace 4 años | |
js_libs | hace 4 años | |
libs | hace 3 años | |
materialize | hace 3 años | |
msg | hace 3 años | |
python | hace 3 años | |
skulpt | hace 3 años | |
src | hace 3 años | |
static | hace 4 años | |
tests | hace 4 años | |
.DS_Store | hace 4 años | |
.gitignore | hace 3 años | |
.gitmodules | hace 4 años | |
20190114_python-blockly_plotting-temp-data.py | hace 4 años | |
LICENSE | hace 4 años | |
README.md | hace 4 años | |
ardublockly.css | hace 4 años | |
ardublockly_blockly.js | hace 4 años | |
ardublockly_lang.js | hace 3 años | |
ardublockly_toolbox.js | hace 4 años | |
ardublocklyserver_ajax.js | hace 4 años | |
blockpy_new.html | hace 4 años | |
canvas_frame.html | hace 4 años | |
changelog.md | hace 4 años | |
cocoblockly.css | hace 3 años | |
data.json | hace 3 años | |
engine_test.html | hace 4 años | |
example_server.py | hace 4 años | |
favicon.ico | hace 4 años | |
iframe_test.html | hace 4 años | |
index.css | hace 3 años | |
index.html | hace 3 años | |
index.js | hace 3 años | |
index2.html | hace 4 años | |
index_1.html | hace 4 años | |
instructor_api_documentation.py | hace 4 años | |
makefile | hace 4 años | |
md.html | hace 4 años | |
merge.py | hace 4 años | |
modernizr.css | hace 4 años | |
package-lock.json | hace 4 años | |
package.json | hace 4 años | |
platform.js | hace 4 años | |
replay.html | hace 4 años | |
server.js | hace 4 años | |
toCNChecklist.md | hace 4 años | |
todo.txt | hace 4 años | |
toolbox_tree.css | hace 4 años | |
treeCompTest.html | hace 4 años | |
uform.js | hace 4 años | |
web.html | hace 4 años |
BlockPy is a web-based Python environment that lets you work with blocks, text, or both. Designed for Data Science and equipped with powerful tools like the State Explorer and Guided Feedback, the goal of BlockPy is to let you solve authentic, real-world problems.
The goal of BlockPy is to give you a gentle introduction to Python but eventually mature you into a more serious programming environment (such as Spyder or PyCharm). Long-term, we may support some game/animation design stuff that Scratch/Snap does, but that's not the real goal.
The BlockPy project is aimed at solving some hard technical problems: having a block-based environment for a dynamic language can be tricky - are a given pair of square brackets representing list indexing or dictionary indexing? Our goal is to use advanced program analysis techniques to provide excellent support to learners.
The core architecture of BlockPy is a synthesis of:
By combining these two technologies, we end up with a powerful system for writing Python code quickly. Everything is meant to run locally in the client, so there's no complexity of sandboxing students' code on the server.
The major innovations are:
First, clone it locally. This could take a little while.
> git clone https://github.com/RealTimeWeb/blockpy.git
You'll need to build Skulpt and Blockly. Both of these depend on the Closure Compiler, so you'll need to put that in the empty closure-library
folder. You can follow the Blockly instructions here , but the gist will be:
> wget https://github.com/google/closure-library/zipball/master -O closure.zip
> unzip closure.zip
CD into the new blockpy directory
> cd blockpy/
And add the relevant subtree information to your .git/config:
> vi .git/config
Replace the contents of that file with the information found here: http://pastebin.com/raw/QWpJjgU3 (TODO: show the actual commands used to set this)
Next, you'll need to build Blockly:
> cp blockly/msg/en.js en.js
> cd blockly
> python build.py
> cd ..
> mv en.js blockly/msg/en.js
And then you'll build Skulpt:
> cd skulpt
> python skulpt.py dist
> cd ..
If you are on windows, you may encounter the message "No gzip executable", you can safely ignore this.
And now you should be able to try out the example file!
> start blockpy_new.html
The server has its own requirements.txt and uses a python manage.py runserver
If you make edits to either Blockly or Skulpt, you'll need to rerun their build commands. Simiarly, if you edit src/interface.html
than you'll need to rebuild it:
> python build.py
Otherwise, you should be able to edit the src/*.js
files freely. To get a sense of the dependencies, check out the blockpy_new.html
file and then the src/main.js
file. These should be good starting points.
Both Blockly and Skulpt are subtrees.
Push changes to the subtrees' repos:
> git subtree push --prefix=skulpt/ --squash skulpt master
> git subtree push --prefix=blockly/ --squash blockly master
> git subtree push --prefix=server/ --squash server master
> git subtree push --prefix=server/static/blockly-games --squash blockly_games master
Pull changes from upstream repos (e.g., official Blockly and Skulpt, our production server):
> git subtree pull --prefix=skulpt --squash skulpt_upstream master
> git subtree pull --prefix=blockly --squash blockly_upstream master
> git subtree pull --prefix=server --squash server master
> git subtree pull --prefix=server/static/blockly-games --squash blockly_games master
Note: if you get an error about a "fatal entry", make sure you don't have a trailing slash on the prefix!