Skip to main content

CloudLink Python

This is the original, Python-based codebase for CloudLink server.

💡 Features 💡

🪶 Fast and lightweight

CloudLink can run on minimal resources. At least 25MB of RAM and any reasonably capable CPU can run a CloudLink server.

🌐 Essential networking tools

  • Unicast and multicast packets across clients
  • Expandable functionality with a built-in method loader

📦 Minimal dependencies

All dependencies below can be installed using pip install -r requirements.txt.

🔋Batteries included

The CloudLink Python server comes with full support for the CL4 protocol and the Scratch cloud variable protocol. Just download, setup, and start!

🧱 Plug-and-play modularity

You can easily extend the functionality of the server using classes and decorators. Here's an example of a simple plugin that displays "Foobar!" in the console when a client sends the message { "cmd": "foo" } to the server.

# Import the server
from cloudlink import server

# Import default protocol
from cloudlink.server.protocols import clpv4

# Instantiate the server object
server = server()

# Set logging level
server.logging.basicConfig(
    level=server.logging.DEBUG
)

# Load default CL protocol
clpv4 = clpv4(server)

# Define the functions your plugin executes
class myplugin:
    def __init__(self, server, protocol):
        
        # Example command - client sends { "cmd": "foo" } to the server, this function will execute
        @server.on_command(cmd="foo", schema=protocol.schema)
        async def foobar(client, message):
            print("Foobar!")

# Load the plugin!
myplugin(server, clpv4)

# Start the server!
server.run()

Release files for cloudlink 0.2.0.1

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for cloudlink 0.2.0.1
File Size Uploaded
cloudlink-0.2.0.1.tar.gz 25.3 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for cloudlink 0.2.0.1
File Interpreter ABI Platform
cloudlink-0.2.0.1-py3-none-any.whl Python 3 none any Details

Total release size: 53.9 kB

Release history Release notifications | RSS feed

This release

0.2.0.1 This release

2 release files

0.2.0

2 release files

0.1.7

2 release files

0.1.5

2 release files

0.1.4

2 release files

0.1.3

2 release files

0.1.2

2 release files

0.1.1

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page