1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
|
---
home: true
heroImage: logo.png
heroText:
actionText: Get Started →
actionLink: /guide/
footer: BSD Licensed | Copyright © 2014–present Roman Sirokov
---
<div class='center version'>
Current version: <strong>5.0.5</strong><br/>
<a href='/changelog.html'>What's new</a>
</div>
<br/>
# Getting Started
### Install:
``` bash
pip install pywebview
```
_On Linux you need additional libraries. Refer to the [installation](/guide/installation.html) page for details._
### Hello world:
``` python
import webview
webview.create_window('Hello world', 'https://pywebview.flowrl.com/')
webview.start()
```
Explore [documentation](/guide) or [examples](/examples). If React is your thing, get started right away with [React boilerplate](https://github.com/r0x0r/pywebview-react-boilerplate).
<br/>
# Support the project
If you find _pywebview_ useful, please support it.
<div class="center spc-m spc-bottom">
<a href="https://github.com/sponsors/r0x0r" target="_blank">
<img src="/github-sponsors.png" alt="Become a sponsor"></img>
</a>
</div>
<div class="center spc-m spc-bottom">
<a href="https://www.patreon.com/bePatron?u=13226105" data-patreon-widget-type="become-patron-button">
<img src='https://c5.patreon.com/external/logo/become_a_patron_button.png' alt='Become a Patron!'/>
</a>
</div>
<div class="center spc-l spc-vertical">
<a href="https://opencollective.com/pywebview/donate" target="_blank">
<img src="https://opencollective.com/pywebview/donate/button@2x.png?color=blue" width=300 />
</a>
</div>
|