A simple module to extract browsers's history.
Project description
BrowserHistory Module
browserhistory is a simple Python module that extracts browser history from a user's local computer and writes the data to csv files.
Platforms: Linux, MacOS, and Windows. Suported Browsers: Firefox, Google Chrome, and Safari.
Installation
$ python3 -m pip install browserhistory
or
$ git clone https://github.com/kcp18/browserhistory
Overview
Functions:
- get_browserhistory() -> dict
- get_database_paths() -> dict
- get_username() -> str
- write_browserhistory_csv() -> None
Example:
Example
=======
>>> import browserhistory as bh
>>> dict_obj = bh.get_browserhistory()
>>> dict_obj.keys()
>>> dict_keys(['safari', 'chrome', 'firefox'])
>>> dict_obj['safari'][0]
>>> ('https://mail.google.com', 'Mail', '2018-08-14 08:27:26')
# Write the data to csv files in the current working directory.
# safari_browserhistory.csv, chrome_browserhistory.csv, and firefox_browerhistory.csv.
>>> bh.write_browserhistory_csv()
# Create csv files that contain broswer history
The Description of browserhistory
NAME
browserhistory
FUNCTIONS
get_browserhistory() -> dict
Get the user's browser history by using sqlite3 module to connect to the dabase.
It returns a dictionary: its key is a name of browser in str and its value is a list of
tuples, each tuple contains four elements, including url, title, and visited_time.
get_database_paths() -> dict
Get paths to the database of browsers and store them in a dictionary.
It returns a dictionary: its key is the name of browser in str and its value is the path to database in str.
get_username() -> str
Get username based on their local computers
write_browserhistory_csv() -> None
It writes csv files that contain the browser history in
the current working directory. It will writes csv files base on
the name of browsers the program detects.
Issue Report
If you have any questions or find bugs in the module,
please report the issues/questions at the follwing address.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
browserhistory-0.1.2.tar.gz
(3.7 kB
view details)
Built Distribution
File details
Details for the file browserhistory-0.1.2.tar.gz
.
File metadata
- Download URL: browserhistory-0.1.2.tar.gz
- Upload date:
- Size: 3.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/39.0.1 requests-toolbelt/0.9.1 tqdm/4.31.0 CPython/3.6.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 196cd4739787ce848ded276ef4ca1dde83c43a7004623a047f99d6e1c8bd20e7 |
|
MD5 | f4a767479d2780270a723b2b6cee9aab |
|
BLAKE2b-256 | 805b1d634fa9c8a290049da72de1d44121d6f4d2ae56b04bd6a778b3169580f1 |
File details
Details for the file browserhistory-0.1.2-py3-none-any.whl
.
File metadata
- Download URL: browserhistory-0.1.2-py3-none-any.whl
- Upload date:
- Size: 5.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/39.0.1 requests-toolbelt/0.9.1 tqdm/4.31.0 CPython/3.6.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4124637fae79a4e61c96d0d261bb6c22767e6eecf406dd97cee30737a4f93bc3 |
|
MD5 | 68166327f443e389657a1e1ca2ca7b34 |
|
BLAKE2b-256 | 510885a5334822b3bb458a996603a40b0c61c13d50db7d0daa47c417faaa7197 |