ScorpiUI
is a Python-based UI library designed to simplify frontend development for Python backend developers. With ScorpiUI, you can create dynamic and interactive web applications using Python alone, reducing the need for traditional frontend technologies such as HTML, CSS, and JavaScript.
-
Pythonic Development: ScorpiUI allows you to define UI components, handle events, and execute JavaScript code entirely in Python, making frontend development more accessible to Python developers.
-
Customizable Components: ScorpiUI provides a range of customizable UI components, including buttons, forms, modals, and more, allowing you to create rich user interfaces tailored to your application's needs.
-
Event Handling: Easily handle user interactions and events with Python functions, making it straightforward to implement dynamic behavior in your web applications.
-
CSS Styling: Customize the appearance of your UI components using custom CSS styles directly within your Python code, ensuring consistent and visually appealing designs.
-
JavaScript Execution: Execute client-side JavaScript code in response to user actions, enabling real-time interactivity and enhancing the user experience.
You can install ScorpiUI using pip:
pip install scorpiui
Here's a simple example of how to create a page with single button with ScorpiUI:
1 Create your new project folder and open it. 2 Create file called
app.py
in your project root directory. Here's sampleapp.py
code to get started:
from scorpiui.app import app, run_app
from scorpiui.components.button import Button
from scorpiui.components.text_input import TextInput
from flask import render_template
# Store input values
input_values = {}
def on_text_change(value):
input_values['text_input'] = value
print("Text input changed:", value)
def on_button_click():
text = input_values.get('text_input', '')
print("Button clicked", text)
# Create a TextInput instance
my_text_input = TextInput(
placeholder="Enter text here...",
height=30,
width=200,
background_color="#ffffff",
text_color="#000000",
border_radius="5px",
text_align="left",
read_only=False,
on_change=on_text_change,
js_code='console.log("Input changed");',
css_code='border: 1px solid #ccc; padding: 5px;'
)
# Create a button instance with the desired properties, JS code, and CSS code
my_button = Button(
label="Click Me",
height=50,
width=150,
background_color="#3498db",
text_color="#ffffff",
border_radius="12px",
onclick=on_button_click,
js_code='alert("Button successfully clicked!");',
css_code='border: 5px solid red; color: yellow; text-align: center; font-size: 16px; cursor: pointer;'
)
@app.route('/')
def home():
button_html = my_button.render()
input_html = my_text_input.render()
HTMLcontent = button_html + input_html
return render_template('base.html', content=HTMLcontent, title="ScorpiUI Test")
if __name__ == '__main__':
run_app()
3 Now, open terminal in your project's root directory run your web app:
python3 app.py
Contributions are welcome! If you have any ideas, bug fixes, or enhancements, feel free to open an issue or submit a pull request on the GitHub repository.
ScorpiUI is licensed under the MIT License.