Introduction

Installation

Limitations of the "file" protocol

Frequently asked questions

Syntax, keywords and built-in functions

Standard distribution

import implementation

Brython packages

Browser interface

Introduction - DOM API
Creating a document
Accessing elements
Attributes, properties and methods

Events
Mouse events
Keyboard events
Focus events
Drag events

Query string

Interactions with Javascript

Brython-specific built-in modules

browser
browser.aio
browser.ajax
browser.html
browser.local_storage
browser.markdown
browser.object_storage
browser.session_storage
browser.svg
browser.template
browser.timer
browser.webcomponent
browser.websocket
browser.worker

Widgets
browser.widgets.dialog
browser.widgets.menu

interpreter
javascript

Working with Brython

Execution options
Testing and debugging
Deploying an application

Cookbook

Hello world !
Insert content in an element
HTML markup (bold,italic...)
HTML table
Bind and unbind events
Handle options in a SELECT
Drag and drop
Get the content of an element
Read the content of a file
Store objects locally
Example of onmouseover
 

Problem

Get the content of an element of a web page

Solution

Show text

from browser import alert, document

# document['zone'] is the colored cell
alert(document['zone'].text)

Show HTML code

from browser import alert, document
alert(document['zone'].html)

Show value in entry field

from browser import alert, document
# document['entry'] is the input field
alert(document['entry'].value)

Cell content

Each element in the page has an attribute text, a string with the text shown in the element

It also has an attribute html, a string with the HTML code inside the element

Input fields have an attribute value, a string with the current field value

alert() is a function defined in module browser that shows its argument in a popup window