Skip to main content

Interface Python with MIT Scratch 1.3+ (not 2.x)

Project description

This package enables communication between Python and Scratch 1.3+ (not 2.x) using the remote sensors feature of Scratch.

Remember to enable remote sensors in Scratch! To do this:

  1. Go to Sensing

  2. Right-click on a ‘sensor value’

  3. Select ‘enable remote sensor connections’

Example usage:

import scratch
s = scratch.Scratch()

# to make a broadcast to scratch
s.broadcast("from python")

# to receive an update from scratch
message = s.receive()
# blocks until an update is received
# message returned as  {'broadcast': [], 'sensor-update': {'scratchvar': '64'}}
#                  or  {'broadcast': ['from scratch'], 'sensor-update': {}}
# where scratchvar is the name of a variable in scratch
# and 'from scratch' is the name of a scratch broadcast

# send sensor updates to scratch
data = {}
data['pyvar'] = 123
for data['pycounter'] in range(60):
    s.sensorupdate(data)

0.0.1a

Initial version

1.0.0

First release - module unchanged from 0.0.1a

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

scratch-1.0.0.tar.gz (4.3 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page