Skip to content

Commit 126d9d6

Browse files
authored
Merge pull request #133 from pyscript/europython-2024-edits
Europython 2024 edits
2 parents f7457be + ec6e332 commit 126d9d6

File tree

5 files changed

+17
-9
lines changed

5 files changed

+17
-9
lines changed

docs/beginning-pyscript.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,11 @@ refresh the page (`CTRL-R`) to see any updates you may have made.
5959
[Live Server extension](https://marketplace.visualstudio.com/items?itemName=ritwickdey.LiveServer)
6060
can be used to reload the page as you edit your files.
6161

62+
Alternatively, if you have an account on [GitHub](https://github.com) you
63+
could use VSCode in your browser as a
64+
[PyScript aware "CodeSpace"](https://github.com/ntoll/codespaces-project-template-pyscript/)
65+
(just follow the instructions in the README file).
66+
6267
If you decide to use [pyscript.com](https://pyscript.com) (recommended for
6368
first steps), once signed in, create a new project by pressing the "+" button
6469
on the left hand side below the site's logo. You'll be presented with a page

docs/index.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
![PyScript Logo](assets/images/pyscript.svg)
22

3-
<h1 style="text-align: center; font-weight: bold;">PyScript is a platform for Python in the browser.</h1>
3+
<h1 style="text-align: center; font-weight: bold;">PyScript is an <u>open source</u> platform for Python in the browser.</h1>
44

55
## PyScript is...
66

@@ -22,18 +22,19 @@
2222
<dl>
2323
<dt><strong>I'm a beginner...</strong></dt>
2424
<dd>Welcome! PyScript is designed to be friendly for beginner coders. The
25-
best place to start is by reading our
25+
best way to start is to read our
2626
<a href="beginning-pyscript">beginning PyScript guide</a>
27-
and then using
27+
and then use
2828
<a href="https://pyscript.com/" target="_blank">pyscript.com</a>
29-
to create your first apps. Having problems? Check out our
29+
to create your first apps. Problems? Check out our
3030
<a href="faq">frequently asked questions</a>.</dd>
3131
<dt><strong>I'm already technical...</strong></dt>
3232
<dd>The beginner docs will set you up with a simple coding environment. For
3333
more in-depth technical coverage of PyScript, consult the
3434
<a href="user-guide">user guide</a>. The
3535
<a href="examples">example applications</a> demonstrate many of the features
36-
of PyScript. The <a href="faq">FAQ</a> contains lots of technical detail.</dd>
36+
of PyScript. The <a href="api">API docs</a> and <a href="faq">FAQ</a>
37+
contain lots of technical detail.</dd>
3738
<dt><strong>I want to contribute...</strong></dt>
3839
<dd>
3940
<p>Welcome, friend!

docs/user-guide/architecture.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,8 @@ PolyScript's capabilities, upon which PyScript is built, can be summarised as:
7373
defined moments in the page lifecycle, provide a means of calling user
7474
defined functions to modify and enhance PolyScript's default behaviour.
7575
* [Multiple interpreters](https://pyscript.github.io/polyscript/#interpreter-features)
76-
(in addition to Pyodide and MicroPython, PolyScript works with Lua and Ruby -
77-
although these are beyond the scope of this project).
76+
(in addition to Pyodide and MicroPython, PolyScript works with R, Lua and
77+
Ruby - although these are beyond the scope of this project).
7878

7979
PolyScript may become important if you encounter problems with PyScript. You
8080
should investigate PolyScript if any of the following is true about your

docs/user-guide/first-steps.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ attributes:
123123
The browser's tab displaying the website running PyScript is an isolated
124124
computing sandbox. Define the Python environment in which your code will
125125
run with [configuration options](configuration.md) (discussed later in this
126-
document).
126+
user guide).
127127

128128
!!! tip
129129

docs/user-guide/what.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# What is PyScript?
22

3-
[PyScript](https://pyscript.net) is a platform for [Python](https://python.org) in the
3+
[PyScript](https://pyscript.net) is an
4+
[open source](../../license/) platform for
5+
[Python](https://python.org) in the
46
[browser](https://en.wikipedia.org/wiki/Web_browser).
57

68
PyScript brings together two of the most vibrant technical ecosystems on the

0 commit comments

Comments
 (0)