Alpha 0.1.4
(Alpha 0.1.4) PyPulse: Desktop Applications with Chromium-Based Ease
🌟Overview
PyPulse is an open-source project designed to revolutionize desktop application development by seamlessly integrating the power of the Chromium web engine into Python-based applications. It employs a versatile template-based architecture to simplify the creation of web-based desktop applications, custom browsers, or embedding web content within your Python projects. With PyPulse, you'll embark on a journey to crafting dynamic, cross-platform applications with ease and efficiency.
✨ New Features
- Redirect in views
@view(name='home', path_trigger='/')
def home(request):
user = User(type='Programmmer')
if request.get('method') == 'POST':
return Redirect('/hacker')
return RenderTemplate('home.html', {'user_type': user.type, 'path': '/'})
- Solving some Bugs (Post no body error and multiple one line imports bug)