mirror of
https://github.com/pyscript/pyscript.git
synced 2026-04-04 20:00:24 -04:00
* add HTTP request how to First draft. Proof read http-requests.md Formatting Reword intro modify fetch API docs links Conclusion * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * add http-request howto into toctree, index * implement review By @madhur-tandon Implement review and fix formatting mistake in request function docstring. * add # HTTP requests section, add fetch_kwargs to helper function Add a section in the explanation discussing HTTP Requests * add API reference * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * specify docs for `pyodide.http` members * address review By @marimeireles * Change code [Python] to Python Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: mariana <marianameireles@protonmail.com>
58 lines
1.3 KiB
Markdown
58 lines
1.3 KiB
Markdown
# PyScript
|
|
|
|
```{warning}
|
|
Please note, this documentation is just a placeholder and **should not be used
|
|
in reference material**. Thank you!
|
|
```
|
|
|
|
Welcome to the PyScript documentation!
|
|
|
|
PyScript provides a way for you to run Python code directly in your browser, giving
|
|
anyone the ability to program without infrastructure barriers. Add an interactive
|
|
Python REPL directly to your website, share an interactive dashboard with a colleague
|
|
as an HTML file, or create a client-side Python-powered web application. This documentation
|
|
will show you how.
|
|
|
|
::::{grid} 2
|
|
:gutter: 3
|
|
|
|
:::{grid-item-card} [Tutorials](tutorials/index.md)
|
|
|
|
Just getting started with PyScript?
|
|
|
|
Check out our [getting started guide](tutorials/getting-started.md)!
|
|
:::
|
|
:::{grid-item-card} [How-to guides](howtos/index.md)
|
|
|
|
You already know the basics and want to learn specifics!
|
|
|
|
[Passing Objects between JavaScript and Python](howtos/passing-objects.md)
|
|
[Making async HTTP requests in pure Python](howtos/http-requests.md)
|
|
|
|
:::
|
|
:::{grid-item-card} [Concepts](concepts/index.md)
|
|
|
|
[What is PyScript?](concepts/what-is-pyscript.md)
|
|
|
|
:::
|
|
:::{grid-item-card} [Reference](reference/index.md)
|
|
|
|
[Frequently asked questions](reference/faq.md)
|
|
|
|
:::{toctree}
|
|
:maxdepth: 1
|
|
|
|
:::
|
|
::::
|
|
|
|
```{toctree}
|
|
---
|
|
maxdepth: 1
|
|
hidden:
|
|
---
|
|
tutorials/index
|
|
howtos/index
|
|
concepts/index
|
|
reference/index
|
|
```
|