Metadata-Version: 2.1
Name: dotreact
Version: 0.1.1
Summary: Web apps in pure Python.
Home-page: https://dotagent.dev
License: Apache-2.0
Keywords: web,framework
Author: Team dotagent
Author-email: anurag@dotagent.dev
Requires-Python: >=3.7,<4.0
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: alembic (>=1.11.1,<2.0.0)
Requires-Dist: cloudpickle (>=2.2.1,<3.0.0)
Requires-Dist: distro (>=1.8.0,<2.0.0) ; sys_platform == "linux"
Requires-Dist: fastapi (>=0.96.0,<0.97.0)
Requires-Dist: gunicorn (>=20.1.0,<21.0.0)
Requires-Dist: httpx (>=0.24.0,<0.25.0)
Requires-Dist: importlib-metadata (>=6.7.0,<7.0.0) ; python_version >= "3.7" and python_version < "3.8"
Requires-Dist: jinja2 (>=3.1.2,<4.0.0)
Requires-Dist: packaging (>=23.1,<24.0)
Requires-Dist: platformdirs (>=3.10.0,<4.0.0)
Requires-Dist: psutil (>=5.9.4,<6.0.0)
Requires-Dist: pydantic (>=1.10.2,<2.0.0)
Requires-Dist: python-engineio (!=4.6.0)
Requires-Dist: python-multipart (>=0.0.5,<0.0.6)
Requires-Dist: python-socketio (>=5.7.0,<6.0.0)
Requires-Dist: redis (>=4.3.5,<5.0.0)
Requires-Dist: rich (>=13.0.0,<14.0.0)
Requires-Dist: sqlmodel (>=0.0.8,<0.0.9)
Requires-Dist: starlette-admin (>=0.9.0,<0.10.0)
Requires-Dist: typer (==0.4.2)
Requires-Dist: uvicorn (>=0.20.0,<0.21.0)
Requires-Dist: watchdog (>=2.3.1,<3.0.0)
Requires-Dist: watchfiles (>=0.19.0,<0.20.0)
Requires-Dist: websockets (>=10.4,<11.0)
Requires-Dist: wrapt (>=1.15.0,<2.0.0)
Project-URL: Documentation, https://dotagent.dev/docs/getting-started/introduction
Project-URL: Repository, https://github.com/dot-agent/dotreact
Description-Content-Type: text/markdown


## ⚙️ Installation

Open a terminal and run (Requires Python 3.7+):

```bash
pip install dotreact
```

## 🥳 Create your first app

Installing `dotreact` also installs the `dotreact` command line tool.

Test that the install was successful by creating a new project. (Replace `my_app_name` with your project name):

```bash
mkdir my_app_name
cd my_app_name
dotreact init
```

This command initializes a template app in your new directory. 

You can run this app in development mode:

```bash
dotreact run
```

You should see your app running at http://localhost:3000.

Now you can modify the source code in `my_app_name/my_app_name.py`. Dotreact has fast refreshes so you can see your changes instantly when you save your code.


## 🫧 Example App

Let's go over an example: creating an image generation UI around DALL·E. For simplicity, we just call the OpenAI API, but you could replace this with an ML model run locally.

&nbsp;

<div align="center">
<img src="https://raw.githubusercontent.com/dotreact/dotreact/main/docs/images/dalle.gif" alt="A frontend wrapper for DALL·E, shown in the process of generating an image." width="550" />
</div>

&nbsp;

Here is the complete code to create this. This is all done in one Python file!

```python
import dotreact as dr
import openai

openai.api_key = "YOUR_API_KEY"

class State(dr.State):
    """The app state."""
    prompt = ""
    image_url = ""
    processing = False
    complete = False

    def get_image(self):
        """Get the image from the prompt."""
        if self.prompt == "":
            return dr.window_alert("Prompt Empty")

        self.processing, self.complete = True, False
        yield
        response = openai.Image.create(prompt=self.prompt, n=1, size="1024x1024")
        self.image_url = response["data"][0]["url"]
        self.processing, self.complete = False, True
        

def index():
    return dr.center(
        dr.vstack(
            dr.heading("DALL·E"),
            dr.input(placeholder="Enter a prompt", on_blur=State.set_prompt),
            dr.button(
                "Generate Image",
                on_click=State.get_image,
                is_loading=State.processing,
                width="100%",
            ),
            dr.cond(
                State.complete,
                     dr.image(
                         src=State.image_url,
                         height="25em",
                         width="25em",
                    )
            ),
            padding="2em",
            shadow="lg",
            border_radius="lg",
        ),
        width="100%",
        height="100vh",
    )

# Add state and page to the app.
app = dr.App()
app.add_page(index, title="dotreact:DALL·E")
app.compile()
```

## Let's break this down.

### **Dotreact UI**

Let's start with the UI.

```python
def index():
    return dr.center(
        ...
    )
```

This `index` function defines the frontend of the app.

We use different components such as `center`, `vstack`, `input`, and `button` to build the frontend. Components can be nested within each other
to create complex layouts. And you can use keyword args to style them with the full power of CSS.

Dotreact comes with [60+ built-in components](https://dotagent.dev/docs/library) to help you get started. We are actively adding more components, and it's easy to [create your own components](https://dotagent.dev/docs/advanced-guide/wrapping-react).

### **State**

Dotreact represents your UI as a function of your state.

```python
class State(dr.State):
    """The app state."""
    prompt = ""
    image_url = ""
    processing = False
    complete = False
```

The state defines all the variables (called vars) in an app that can change and the functions that change them.

Here the state is comprised of a `prompt` and `image_url`. There are also the booleans `processing` and `complete` to indicate when to show the circular progress and image.

### **Event Handlers**

```python
def get_image(self):
    """Get the image from the prompt."""
    if self.prompt == "":
        return dr.window_alert("Prompt Empty")

    self.processing, self.complete = True, False
    yield
    response = openai.Image.create(prompt=self.prompt, n=1, size="1024x1024")
    self.image_url = response["data"][0]["url"]
    self.processing, self.complete = False, True
```

Within the state, we define functions called event handlers that change the state vars. Event handlers are the way that we can modify the state in Dotreact. They can be called in response to user actions, such as clicking a button or typing in a text box. These actions are called events.

Our DALL·E. app has an event handler, `get_image` to which get this image from the OpenAI API. Using `yield` in the middle of an event handler will cause the UI to update. Otherwise the UI will update at the end of the event handler.

### **Routing**

Finally, we define our app.

```python
app = dr.App()
```

We add a page from the root of the app to the index component. We also add a title that will show up in the page preview/browser tab.

```python
app.add_page(index, title="DALL-E")
app.compile()
```

You can create a multi-page app by adding more pages.

## 📑 Resources

<div align="center">

📑 [Docs](https://dotagent.dev/docs/getting-started/introduction) &nbsp; |  &nbsp; 🗞️ [Blog](https://dotagent.dev/blog) &nbsp; |  &nbsp; 📱 [Component Library](https://dotagent.dev/docs/library) &nbsp; |  &nbsp; 🖼️ [Gallery](https://dotagent.dev/docs/gallery) &nbsp; |  &nbsp; 🛸 [Deployment](https://dotagent.dev/docs/hosting/deploy)  &nbsp;   

</div>





## ✅ Status

Dotreact launched in December 2022 with the name Pynecone.

As of July 2023, we are in the **Public Beta** stage.

-   :white_check_mark: **Public Alpha**: Anyone can install and use Dotreact. There may be issues, but we are working to resolve them actively.
-   :large_orange_diamond: **Public Beta**: Stable enough for non-enterprise use-cases.
-   **Public Hosting Beta**: _Optionally_, deploy and host your apps on Dotreact!
-   **Public**: Dotreact is production ready.

Dotreact has new releases and features coming every week! Make sure to :star: star and :eyes: watch this repository to stay up to date.


We are actively looking for contributors, no matter your skill level or experience.

## License

Dotreact is open-source and licensed under the [Apache License 2.0](LICENSE).

