Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion blog/build-python-admin-panels-internal-tools-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ faq: [
```python exec
import reflex as rx
from pcweb.constants import REFLEX_ASSETS_CDN
from reflex_image_zoom import image_zoom
from pcweb.components.image_zoom import image_zoom
```

Most Python developers hit the same wall when [building internal tools](https://blog.tooljet.com/build-internal-apps-without-frontend-developers/). You finish the backend logic, then face rebuilding the interface in a JavaScript framework you'd rather avoid. Now you can [build approval workflows in Python](https://reflex.dev/) and skip the context switching. We'll show you how to create complete admin panels with forms, tables, authentication, and business process automation using Python alone.
Expand Down
2 changes: 1 addition & 1 deletion blog/custom-components.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ And use it right away like any other Reflex component.
```python demo exec
import reflex as rx
from pcweb.constants import REFLEX_ASSETS_CDN
from reflex_image_zoom import image_zoom
from pcweb.components.image_zoom import image_zoom

def zoom():
src = f"{REFLEX_ASSETS_CDN}blog/custom_components.webp"
Expand Down
2 changes: 1 addition & 1 deletion blog/enterprise-ready-ai-app-builder.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ faq: [

```python exec
import reflex as rx
from reflex_image_zoom import image_zoom
from pcweb.components.image_zoom import image_zoom
from pcweb.constants import REFLEX_ASSETS_CDN
```

Expand Down
2 changes: 1 addition & 1 deletion blog/how-to-build-python-web-app-complete-tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ faq: [

```python exec
import reflex as rx
from reflex_image_zoom import image_zoom
from pcweb.components.image_zoom import image_zoom
from pcweb.constants import REFLEX_ASSETS_CDN
```

Expand Down
2 changes: 1 addition & 1 deletion blog/internal-tool-builders.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ faq: [
```python exec
import reflex as rx
from pcweb.constants import REFLEX_ASSETS_CDN
from reflex_image_zoom import image_zoom
from pcweb.components.image_zoom import image_zoom
```


Expand Down
2 changes: 1 addition & 1 deletion blog/on-premises-deployment.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ faq: [
import reflex as rx
import reflex_ui as ui
from pcweb import pages, constants
from reflex_image_zoom import image_zoom
from pcweb.components.image_zoom import image_zoom
from reflex_ui.blocks.demo_form import demo_form_dialog
```

Expand Down
2 changes: 1 addition & 1 deletion blog/python-comparison.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ faq: [
```python exec
import reflex as rx
from pcweb.constants import REFLEX_ASSETS_CDN
from reflex_image_zoom import image_zoom
from pcweb.components.image_zoom import image_zoom
```


Expand Down
2 changes: 1 addition & 1 deletion blog/reflex-architecture.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ Under the hood, Reflex apps compile down to a [React](https://react.dev) fronten
The diagram below provides a detailed overview of how a Reflex app works. We'll go through each part in more detail in the following sections.

```python exec
from reflex_image_zoom import image_zoom
from pcweb.components.image_zoom import image_zoom
```

```python eval
Expand Down
2 changes: 1 addition & 1 deletion blog/reflex-dash.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ meta: [
```python exec
import reflex as rx
from pcweb.constants import REFLEX_ASSETS_CDN
from reflex_image_zoom import image_zoom
from pcweb.components.image_zoom import image_zoom
```


Expand Down
2 changes: 1 addition & 1 deletion blog/reflex-jupyter.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ for feature, importance in zip(features, rf.feature_importances_):
```python exec
import reflex as rx
from pcweb.constants import REFLEX_ASSETS_CDN
from reflex_image_zoom import image_zoom
from pcweb.components.image_zoom import image_zoom

def render_image():
return rx.el.div(
Expand Down
2 changes: 1 addition & 1 deletion blog/reflex-streamlit.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ faq: [

```python exec
import reflex as rx
from reflex_image_zoom import image_zoom
from pcweb.components.image_zoom import image_zoom
```


Expand Down
2 changes: 1 addition & 1 deletion blog/top-10-data-visualization-libraries.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ faq: [

```python exec
import reflex as rx
from reflex_image_zoom import image_zoom
from pcweb.components.image_zoom import image_zoom
```


Expand Down
2 changes: 1 addition & 1 deletion blog/top-5-ai-app-builders.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ faq: [

```python exec
import reflex as rx
from reflex_image_zoom import image_zoom
from pcweb.components.image_zoom import image_zoom
```


Expand Down
2 changes: 1 addition & 1 deletion blog/top-python-web-frameworks.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ faq: [
```python exec
import reflex as rx
from pcweb.constants import REFLEX_ASSETS_CDN
from reflex_image_zoom import image_zoom
from pcweb.components.image_zoom import image_zoom
```


Expand Down
2 changes: 1 addition & 1 deletion case-studies/bayesline.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ meta: [
```python exec
import reflex as rx
from pcweb.constants import REFLEX_ASSETS_CDN
from reflex_image_zoom import image_zoom
from pcweb.components.image_zoom import image_zoom
from pcweb.pages.docs import enterprise
from pcweb.pages.customers.views.app_preview_card import app_preview_card
```
Expand Down
2 changes: 1 addition & 1 deletion docs/ai_builder/app_lifecycle/copy_app.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ This is useful when you want to experiment with changes without affecting the or
```python exec
import reflex as rx
from pcweb.constants import REFLEX_ASSETS_CDN
from reflex_image_zoom import image_zoom
from pcweb.components.image_zoom import image_zoom

def render_image():
return rx.el.div(
Expand Down
2 changes: 1 addition & 1 deletion docs/ai_builder/app_lifecycle/deploy_app.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Simply click the `Deploy` button in the top right corner of Reflex Build, as sho
```python exec
import reflex as rx
from pcweb.constants import REFLEX_ASSETS_CDN
from reflex_image_zoom import image_zoom
from pcweb.components.image_zoom import image_zoom

def render_image():
return rx.el.div(
Expand Down
2 changes: 1 addition & 1 deletion docs/ai_builder/app_lifecycle/download_app.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ You can download your Reflex Build project if you want to work on it locally or
```python exec
import reflex as rx
from pcweb.constants import REFLEX_ASSETS_CDN
from reflex_image_zoom import image_zoom
from pcweb.components.image_zoom import image_zoom

def render_image():
return rx.el.div(
Expand Down
2 changes: 1 addition & 1 deletion docs/ai_builder/app_lifecycle/fork_app.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ The **Fork App** feature lets you take an existing app and create your own versi
```python exec
import reflex as rx
from pcweb.constants import REFLEX_ASSETS_CDN
from reflex_image_zoom import image_zoom
from pcweb.components.image_zoom import image_zoom
```

```python eval
Expand Down
2 changes: 1 addition & 1 deletion docs/ai_builder/app_lifecycle/general.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ The **General App Settings** section lets you manage key aspects of your app, in
```python exec
import reflex as rx
from pcweb.constants import REFLEX_ASSETS_CDN
from reflex_image_zoom import image_zoom
from pcweb.components.image_zoom import image_zoom

def render_image():
return rx.el.div(
Expand Down
2 changes: 1 addition & 1 deletion docs/ai_builder/app_lifecycle/share_app.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ When you share, Reflex Build generates a unique link that points to the current
```python exec
import reflex as rx
from pcweb.constants import REFLEX_ASSETS_CDN
from reflex_image_zoom import image_zoom
from pcweb.components.image_zoom import image_zoom

def render_image():
return rx.el.div(
Expand Down
2 changes: 1 addition & 1 deletion docs/ai_builder/features/automated_testing.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ The Testing feature allows you to automatically test your generated applications
```python exec
import reflex as rx
from pcweb.constants import REFLEX_ASSETS_CDN
from reflex_image_zoom import image_zoom
from pcweb.components.image_zoom import image_zoom
```

```python eval
Expand Down
2 changes: 1 addition & 1 deletion docs/ai_builder/features/connect_to_github.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ description: Integrate with GitHub to automate workflows and interact with your
```python exec
import reflex as rx
from pcweb.constants import REFLEX_ASSETS_CDN
from reflex_image_zoom import image_zoom
from pcweb.components.image_zoom import image_zoom
```

The Github integration is important to make sure that you don't lose your progress. It also allows you to revert to previous versions of your app.
Expand Down
2 changes: 1 addition & 1 deletion docs/ai_builder/features/customization.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ The App Style feature allows you to customize the visual appearance of your AI-g
```python exec
import reflex as rx
from pcweb.constants import REFLEX_ASSETS_CDN
from reflex_image_zoom import image_zoom
from pcweb.components.image_zoom import image_zoom
```

```python eval
Expand Down
2 changes: 1 addition & 1 deletion docs/ai_builder/features/editor_modes.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ The AI Builder includes a powerful dual-mode editor that lets you view and edit
```python exec
import reflex as rx
from pcweb.constants import REFLEX_ASSETS_CDN
from reflex_image_zoom import image_zoom
from pcweb.components.image_zoom import image_zoom

def render_image():
return rx.el.div(
Expand Down
2 changes: 1 addition & 1 deletion docs/ai_builder/features/image_as_prompt.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
```python exec
import reflex as rx
from pcweb.constants import REFLEX_ASSETS_CDN
from reflex_image_zoom import image_zoom
from pcweb.components.image_zoom import image_zoom
```

Uploading an image (screenshot) of a website (web) app of what you are looking to build gives the AI really good context.
Expand Down
2 changes: 1 addition & 1 deletion docs/ai_builder/features/installing_external_packages.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
```python exec
import reflex as rx
from pcweb.constants import REFLEX_ASSETS_CDN
from reflex_image_zoom import image_zoom
from pcweb.components.image_zoom import image_zoom
```

Reflex Build allows you to install external python packages to use in your app. This is useful if you want to use a package that is not included in the default Reflex Build environment. Examples might include `openai`, `langsmith`, `requests`, etc.
Expand Down
2 changes: 1 addition & 1 deletion docs/ai_builder/features/integration_shortcut.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Once in your app, you can access your integrations by clicking the flow or cog i
```python exec
import reflex as rx
from pcweb.constants import REFLEX_ASSETS_CDN
from reflex_image_zoom import image_zoom
from pcweb.components.image_zoom import image_zoom
```

```python eval
Expand Down
2 changes: 1 addition & 1 deletion docs/ai_builder/features/knowledge.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ The **Knowledge** feature lets you add context or rules that the AI Builder can
```python exec
import reflex as rx
from pcweb.constants import REFLEX_ASSETS_CDN
from reflex_image_zoom import image_zoom
from pcweb.components.image_zoom import image_zoom

def render_image():
return rx.el.div(
Expand Down
2 changes: 1 addition & 1 deletion docs/ai_builder/features/restore_checkpoint.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ The **Restore Checkpoint** feature allows you to roll back your app to any previ
```python exec
import reflex as rx
from pcweb.constants import REFLEX_ASSETS_CDN
from reflex_image_zoom import image_zoom
from pcweb.components.image_zoom import image_zoom
```

```python eval
Expand Down
4 changes: 2 additions & 2 deletions docs/ai_builder/features/secrets.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ The **Secrets** feature allows you to securely store environment-specific values
```python exec
import reflex as rx
from pcweb.constants import REFLEX_ASSETS_CDN
from reflex_image_zoom import image_zoom
from pcweb.components.image_zoom import image_zoom

def render_image():
return rx.el.div(
Expand Down Expand Up @@ -50,7 +50,7 @@ OPENAI_API_KEY=sk-xxxxxx
```python exec
import reflex as rx
from pcweb.constants import REFLEX_ASSETS_CDN
from reflex_image_zoom import image_zoom
from pcweb.components.image_zoom import image_zoom
```

```python eval
Expand Down
2 changes: 1 addition & 1 deletion docs/ai_builder/images.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ If you want to upload an image to be used within the app, such as a company logo
```python exec
import reflex as rx
from pcweb.constants import REFLEX_ASSETS_CDN
from reflex_image_zoom import image_zoom
from pcweb.components.image_zoom import image_zoom
```

```python eval
Expand Down
2 changes: 1 addition & 1 deletion docs/ai_builder/overview/templates.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Reflex has many certified templates, seen on the `Trending` tab of the Reflex Bu
```python exec
import reflex as rx
from pcweb.constants import REFLEX_ASSETS_CDN
from reflex_image_zoom import image_zoom
from pcweb.components.image_zoom import image_zoom
```

```python eval
Expand Down
2 changes: 1 addition & 1 deletion docs/ai_builder/overview/tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ This will create your main dashboard page with both tabular and visual represent
```python exec
import reflex as rx
from pcweb.constants import REFLEX_ASSETS_CDN
from reflex_image_zoom import image_zoom
from pcweb.components.image_zoom import image_zoom
```

```python eval
Expand Down
2 changes: 1 addition & 1 deletion docs/ai_builder/overview/what_is_reflex_build.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Reflex Build is an AI-powered platform that lets anyone create full-stack web ap

```python exec
import reflex as rx
from reflex_image_zoom import image_zoom
from pcweb.components.image_zoom import image_zoom

from pcweb.constants import REFLEX_ASSETS_CDN

Expand Down
2 changes: 1 addition & 1 deletion docs/hosting/adding-members.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
```python exec
import reflex as rx
from pcweb.constants import REFLEX_ASSETS_CDN
from reflex_image_zoom import image_zoom
from pcweb.components.image_zoom import image_zoom
```

# Project
Expand Down
2 changes: 1 addition & 1 deletion docs/hosting/app-management.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
```python exec
import reflex as rx
from pcweb.constants import REFLEX_ASSETS_CDN
from reflex_image_zoom import image_zoom
from pcweb.components.image_zoom import image_zoom
from pcweb.pages.docs import hosting
from pcweb.pages import docs
from pcweb.styles.styles import get_code_style, cell_style
Expand Down
2 changes: 1 addition & 1 deletion docs/hosting/billing.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
```python exec
import reflex as rx
from reflex_image_zoom import image_zoom
from pcweb.components.image_zoom import image_zoom
from pcweb.pages.pricing.calculator import compute_table_base
from pcweb.pages.docs import hosting
```
Expand Down
2 changes: 1 addition & 1 deletion docs/hosting/compute.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
```python exec
import reflex as rx
from reflex_image_zoom import image_zoom
from pcweb.components.image_zoom import image_zoom
from pcweb.pages.pricing.calculator import compute_table_base
```

Expand Down
2 changes: 1 addition & 1 deletion docs/hosting/config_file.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
```python exec
import reflex as rx
from reflex_image_zoom import image_zoom
from pcweb.components.image_zoom import image_zoom
from pcweb import constants
from pcweb.pages.docs import hosting
from pcweb.pages import docs
Expand Down
2 changes: 1 addition & 1 deletion docs/hosting/custom-domains.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
```python exec
import reflex as rx
from pcweb.constants import REFLEX_ASSETS_CDN
from reflex_image_zoom import image_zoom
from pcweb.components.image_zoom import image_zoom
```

# Custom Domains
Expand Down
2 changes: 1 addition & 1 deletion docs/hosting/deploy-quick-start.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
```python exec
import reflex as rx
from pcweb.constants import REFLEX_ASSETS_CDN
from reflex_image_zoom import image_zoom
from pcweb.components.image_zoom import image_zoom
from pcweb.pages import docs
```

Expand Down
2 changes: 1 addition & 1 deletion docs/hosting/logs.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
```python exec
import reflex as rx
from pcweb.constants import REFLEX_ASSETS_CDN
from reflex_image_zoom import image_zoom
from pcweb.components.image_zoom import image_zoom
from pcweb.pages.docs import hosting
from pcweb.pages import docs
from pcweb.styles.styles import get_code_style, cell_style
Expand Down
Loading
Loading