Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

A simple web page inside kivy app as a widget

I want to have a web view in my kivy application that is running on ubuntu 64bit. I looked on the web, went through kivy's documentation and searched for answers on StackOverflow but I couldn't find anything that can do my job. A simple web page needs to be rendered inside kivy app as widget. Please help me out.

like image 812
Akash Tomar Avatar asked Nov 02 '16 10:11

Akash Tomar


People also ask

Can I use Kivy to make website?

You could. The webdebugger tool in kivy uses flask to serve a web interface for debugging. So it's certainly possible, but whether it's the best choice is another question. Kivy is really built for native, hardware accelerated GUI apps, not being a web server...

How do you make a simple Kivy app?

Creating a kivy application is as simple as: sub-classing the App class. implementing its build() method so it returns a Widget instance (the root of your widget tree) instantiating this class, and calling its run() method.

Does Kivy have a GUI?

Build and distribute beautiful Python cross-platform GUI apps with ease. Kivy runs on Android, iOS, Linux, macOS and Windows. Get started! Kivy has been built to be easy to use, cross-platform and fast.


1 Answers

There isn't native support for this. Try checking out this and this.

like image 188
Daniel Avatar answered Sep 18 '22 14:09

Daniel