Quick StartΒΆ

Installation:

pip install browser-history

Get started:

from browser_history.browsers import Firefox

f = Firefox()

his = f.history()
  • Firefox in the above snippet can be replaced with any of the Supported Browsers.

  • his is a list of (datetime.datetime, url) tuples.