I'm trying to show a very simple Folium map inside a Qt GUI. The main code is:
import folium
m = folium.Map(location=[45.5236, -122.6750])
m
m.save('index.html')
folium.Map(
location=[45.5236, -122.6750],
tiles='Stamen Toner',
zoom_start=13
)
When I use the code with Jupyter it's fine but shows anything with Spyder. What I want is to show the map in a QGraphicsView or any other QClass on a simple Qt GUI?