You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
[MINOR] Add full path to examples on README (pyscript#148)
* Add full path to examples on README* Update relative path to show examples and readme* Remove /, add link to pyscriptjs/examplesCo-authored-by: Peter W <34256109+pww217@users.noreply.github.com>
Copy file name to clipboardExpand all lines: README.md
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ PyScript is a Pythonic alternative to Scratch, JSFiddle or other "easy to use" p
7
7
8
8
To get started see[GETTING-STARTED](GETTING-STARTED.md).
9
9
10
-
For examples see[the pyscript folder](pyscriptjs/README.md).
10
+
For examples see[the pyscript folder](pyscriptjs).
11
11
12
12
###Longer Version
13
13
PyScript is a meta project that aims to combine multiple open technologies to create a framework for users to use Python (and other languages) to create sophisticated applications in the browser. It highly integrates with the way the DOM works in the browser and allows users to add logic, in Python, in a way that feels natural to web as well as Python developers.
@@ -24,7 +24,7 @@ At that point, you can then use PyScript components in your html page. PyScript
24
24
*`<py-script>`: that can be used to define python code that is executable within the web page. The element itself is not rendered to the page and only used to add logic
25
25
*`<py-repl>`: creates a REPL component that is rendered to the page as a code editor and allows users to write code that can be executed
26
26
27
-
Check out the`/examples` folder for more examples on how to use it, all you need to do is open them in Chrome.
27
+
Check out the[pyscriptjs/examples](pyscriptjs/examples) folder for more examples on how to use it, all you need to do is open them in Chrome.