Metadata-Version: 2.1
Name: desktop_wrapper
Version: 0.0.10
Summary: A small example package
Author-email: Daniel Rodriguez <danrodcastillo1994@gmail.com>
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: Flask==3.0.0
Requires-Dist: Flask-Cors==4.0.0
Requires-Dist: pywebview==4.4.1
Requires-Dist: requests==2.31.0

# Desktop Wrapper Tool

Build Python + React desktop applications in seconds

### Installation

```
$ pip install desktop-wrapper==0.0.1
```


### Create a new app

```
# Use the cli tool
$ dw-create-app your_app_name

# Use the python module

from desktop_wrapper import create_new_app

create_new_app("your_app_name")

```


### Use __BaseApp__ to control the app

### Add your custom functions with the __@bind__ decorator

### Start the app and you are ready to go
