Questions tagged [python-webbrowser]

Python module that allows the user to load web content with available browsers.

The webbrowser module provides a high-level interface to allow displaying web-based documents to users. Under most circumstances, simply calling the open() function from this module will do the right thing.

More info: https://docs.python.org/3/library/webbrowser.html

406 questions
-3
votes
1 answer

Error: TypeError: can only concatenate str (not "NoneType") to str

I'm doing a vocal assistant in Python 3.8 and I use a maps url to create an itinerary. The problem is that I have an error and I have no idea how to fix it: this is my code def RecordAudio(ask = False): print("micro on") voice_data = '' …
RomainLB
  • 53
  • 1
  • 10
1 2 3
27
28