Skip to main content

An event-based asynchronous wrapper for scratch.mit.edu cloud variables.

Project description

scratchcloud

An asynchronous Pythonic wrapper for scratch.mit.edu cloud websockets.

PyPi Package Version PyPi Package Python Versions PyPi Downloads / Month Discord server invite

Features

  • Efficient asynchronous connection with Scratch.
  • Event-based handling of cloud variables.
  • Built-in reconnecting.
  • Encoding and decoding support.

Extensions

  • Fetching data from the Scratch API.
  • Easily customizable codecs for encoding and decoding variables.
  • Sending and parsing large cloud payloads.
  • Validating the cloud by finding who changed a cloud variable.

Example

from scratchcloud import CloudClient, CloudChange

client = CloudClient('yuwe', '588579111')

@client.event
async def on_connect():
    print('Connected!')

@client.event
async def on_disconnect():
    print('Disconnected!')

@client.event
async def on_message(cloud: CloudChange):
    print(f"{cloud.name} was set to {cloud.value}!")
    await client.set_cloud(cloud.name, "123")

client.run("SuperSecretPassword22")

Links

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

scratchcloud-1.2.0.tar.gz (16.6 kB view hashes)

Uploaded Source

Built Distribution

scratchcloud-1.2.0-py3-none-any.whl (17.5 kB view hashes)

Uploaded Python 3

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