Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions integrations/brython/ReadMe.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,11 @@
* Brython was designed for replacing JavaScript with Python.
* This tutorial will show you how to get started quickly.

### 0. Install ``brython``:
### Here's the web app you'll be creating:

<img src="https://seleniumbase.io/cdn/img/brython_demo.png" alt="Brython Demo" title="Brython Demo" width="410" />

<i>(Note: SeleniumBase no longer includes ``brython`` as part of installed dependencies.)</i>
### 0. Install ``brython``:

```bash
pip install brython
Expand All @@ -18,6 +20,7 @@ pip install brython
```bash
python -m http.server
```

You can always stop the server by using ``CTRL+C``.

### 2. Navigate to [http://localhost:8000/](http://localhost:8000/)
Expand Down
2 changes: 1 addition & 1 deletion integrations/brython/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
padding: 8px;
}
</style>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/brython/3.9.2/brython.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/brython/3.10.4/brython.js"></script>
</head>
<body onload="brython()">
<table>
Expand Down
2 changes: 1 addition & 1 deletion integrations/brython/library.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
padding: 4px;
}
</style>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/brython/3.9.2/brython.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/brython/3.10.4/brython.js"></script>
</head>
<body onload="brython(1)">
<script id="ascript" type="text/python">
Expand Down