WebLab-Deusto library for creating unmanaged laboratories
Project description
weblablib
weblablib is a library for creating WebLab-Deusto remote laboratories.
A remote laboratory is a software and hardware system that enables students to access real laboratories through the Internet. For example, a student can be learning how to program a robot by writing code in a computer at home and sending it to a remote laboratory, where the student can see how the program behaves in a real environment.
Creating a remote laboratory may imply many layers, such as authentication, authorization, scheduling, etc., so Remote Laboratory Management Systems (RLMS) were created to make the common layers of remote laboatories. WebLab-Deusto is an Open Source RLMS, and it has multiple ways (see the docs) to create a remote laboratory (in different programming languages, etc.).
In the case of Python, with the popular Flask microframework, weblablib is the wrapper used to create unmanaged labs. Unmanaged labs is a term used in WebLab-Deusto to refer laboratories where the authors develop the full stack (server, client, deployment), as opposed to managed labs.
If you are familiar with Flask and with Web development, and want to be able to customize everything but not need to implement all the layers of authentication, administration, etc., this library would be very useful. Furthermore, this library allows you to develop remote laboratories for many environments (from regular computers with Linux to systems such as Raspberry Pi). And it integrates very well with other Flask components such as Flask-SocketIO, Flask-SQLAlchemy for databases or Flask-Assets.
Documentation
Read the documentation: https://docs.labsland.com/weblablib/
Installation
Simply use pip:
pip install weblablib
Simple usage
from flask import Flask, url_for
from weblablib import WebLab, weblab_user, requires_active
app = Flask(__name__)
app.config.update({
'SECRET_KEY': 'secret', # MUST CHANGE
'WEBLAB_USERNAME': 'weblabdeusto',
'WEBLAB_PASSWORD': 'password',
})
weblab = WebLab(app)
@weblab.on_start
def on_start(client_data, server_data):
# ...
print("Starting user")
@weblab.on_dispose
def on_dispose():
# ...
print("Ending user")
@weblab.initial_url
def initial_url():
return url_for('index')
@app.route('/')
@requires_active
def index():
return "Hello, {}".format(weblab_user.username)
if __name__ == '__main__':
app.run(debug=True)
Advance examples
You may find here the following examples:
- simple: basic usage, all in one file.
- advanced: more advanced usage, with separation of files, tasks, more complex session management
- complete: based on advanced, but using WebSockets with Flask-SocketIO, internationalization with Flask-Babel and minimified static files with Flask-Assets.
There is another example called quickstart
, which is the one used in the documentation, which is something in between simple
and advanced
.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Hashes for weblablib-0.5.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 58336090d036bc8afe6d5d7fce5b91ec31c9fe5c21042bf78c3f02c8b1b1852f |
|
MD5 | 6aa93cdddca03ed55d66a6871cb46b65 |
|
BLAKE2b-256 | fcad5b5047b5dc41142db56d67254bf2724f61a647fdc50070327688befeb712 |
Hashes for weblablib-0.5.1-py2-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0d13710d4f9eeae4056c9f9c8f3ecb5a6880ca394a846625899a5a870a3e3c4a |
|
MD5 | 1169e75c969fdd03bdd5e2deb043e980 |
|
BLAKE2b-256 | 5f64f60da17a8fae12311dda09b8ae29eb8fdc294b65858591edbf024e6c5eaf |