Created by @Almas-Ali
Learn from the official Documentation
- What is Fronty?
- Installation
- Example Projects
- How to run the example projects
- How to create a new project
- Contributing
Fronty is a frontend web framework. It is a Python library that allows you to create web pages using only Python. No HTML, CSS, or JavaScript required. But you can still use them if you want. Basic knowledge of HTML, CSS, and JavaScript is required to use Fronty.
Easy to install with pip.
pip install fronty
- Clone the repository
git clone https://github.com/Almas-Ali/fronty.git
- Go to the example project directory
cd fronty/examples/starter\ project
- Run the project
python app.py
Note: You have to install a backend server to run the project. Fronty does not provide a backend server. You can use any backend server you want. For example, you can use Flask. You can also use Fronty with Django. But you have to install Django first. For simplicity, we have used Flask in the example projects. We are woring on a backend server for Fronty. It will be available soon.
- Create a new directory
mkdir my_project
- Go to the directory
cd my_project
- Create a new file named
app.py
touch app.py
-
Open the file with your favorite text editor
-
Copy the following code and paste it in the file
from flask import Flask, request
from fronty.html import *
app = Flask(__name__)
def home(request) -> Html:
'''This is the home page view function'''
return Html(
Head(
Title('Home'),
Meta(charset='utf-8'),
Meta(name='viewport', content='width=device-width, initial-scale=1'),
),
Body(
Element(
'center',
Element(
'h1',
'Welcome to Fronty!'
),
Element(
'p',
'Fronty is a frontend web framework.'
),
)
)
)
@app.route('/')
def index() -> str:
'''This is the home page view function'''
return home(
request=request,
).render()
if __name__ == '__main__':
app.run(debug=True)
- Run the project
python app.py
- Open the browser and go to
http://127.0.0.1:5000/
Pull requests are welcome. For any changes, please open an issue first to discuss what you would like to change.
Thanks for using Fronty!