A Python tool to convert bookmark export files in Netscape bookmark format into JSON.
- Clone this repository and
cd netscape-bookmark-converter
. - Create a Python 3 virtual environment in the project directory:
python3 -m venv venv
. - Activate virtual environment using script in the venv's script directory. See Python documentation page.
- Install dependencies:
pip install -r requirements.txt
. - Get usage instructions:
./convert-bookmarks.py -h
$ ./convert-bookmarks.py -h
usage: convert-bookmarks.py [-h] [-t tag] [filename [filename ...]]
Convert Netscape bookmarks to JSON
positional arguments:
filename
optional arguments:
-h, --help show this help message and exit
-t tag, --tag tag add tag to bookmarks
See the LICENSE file for license rights and limitations (MIT).