https://github.com/matmoore/bookmarks-organiser
A command line tool to quickly sort bookmarks into categories
https://github.com/matmoore/bookmarks-organiser
Last synced: about 1 year ago
JSON representation
A command line tool to quickly sort bookmarks into categories
- Host: GitHub
- URL: https://github.com/matmoore/bookmarks-organiser
- Owner: MatMoore
- Created: 2021-02-07T00:37:50.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2021-02-09T22:29:54.000Z (over 5 years ago)
- Last Synced: 2025-02-08T13:09:44.422Z (over 1 year ago)
- Language: Python
- Homepage:
- Size: 6.84 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Bookmark organiser
A command line tool to quickly sort bookmarks into categories.
The goal is to turn a long list of unsorted bookmarks (exported from Pocket) into some kind of browseable knowledge base.
This tool handles the first step of grouping bookmarks into high level categories. It prompts you to choose the most appropriate category using an interactive command line interface.
Currently it stores all the data in a SQLite database.
## Design goals
- Enable quick data collection. Completing a task should take seconds.
- Have minimal external dependencies.
- Produce data in a consumable format.
- Be easy to extend to any simple data gathering tasks.
## Non-goals
- Crowdsourcing
- Requiring tasks to be completed more than once
## Setup
Requires python 3.9.
```
pip install -r requirements.txt
```
(TODO: CLI to import bookmarks to categorise)
To start categorising:
```
python bookmark_organiser.py
```
The categories are currently hardcoded in `work.py`.
## Licence
MIT