Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/alella/browserhist
A CLI tool to fetch local browser data
https://github.com/alella/browserhist
browser python quantified-self quantifiedself
Last synced: 3 months ago
JSON representation
A CLI tool to fetch local browser data
- Host: GitHub
- URL: https://github.com/alella/browserhist
- Owner: alella
- License: mit
- Created: 2020-11-22T03:12:00.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2020-11-24T02:43:19.000Z (almost 4 years ago)
- Last Synced: 2024-05-17T23:33:01.326Z (6 months ago)
- Topics: browser, python, quantified-self, quantifiedself
- Language: Python
- Homepage:
- Size: 20.5 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-starred - alella/browserhist - A CLI tool to fetch local browser data (python)
README
# browserhist
> A CLI tool to fetch local browser data
History can either be dumped to a JSON file are uploaded to elasticsearch.
Currently supports:
- Firefox on MacOS and Linux
- Chromiumm on Linux
- Google Chrome on MacOSResults are of the format
```json
[
{
"url": "https://www.mozilla.org/en-US/firefox/59.0.1/firstrun/",
"title": "Welcome to Firefox",
"node": "machine01",
"timestamp": "2018-03-17 21:01:30+00:00",
"domain": "mozilla.org",
"profile": "diacp6z2.default",
"browser": "firefox",
"local": {
"timestamp": "2018-03-17 17:01:30-04:00",
"hour": 17,
"weekday": 5,
"month": "Mar",
"year": 2018
}
}
]
```## Usage:
```sh
pip install "git+https://github.com/alella/browserhist.git"
browserhist --help
```## Development
```sh
pipenv install
pipenv shell
pip install --editable .
browserhist --help
```