Skip to content

Alpha 0.1.4

Compare
Choose a tag to compare
@zabbix-byte zabbix-byte released this 16 Sep 13:46
· 47 commits to main since this release

(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)