CLI bookmark manager based on buku
Project description
twbm: Bookmarks via Commandline (CLI)
Inspired by https://github.com/jarun/buku.
Why not just use it directly?
- I am looking for better full-text search.
- I use tags extensively and want them to be checked during bookmark input for consistency.
- I struggle a bit with buku's user interface, getting the format right, remember the flags, ...
- I wanted some additional functionality, e.g. alphabetical ordering of
deep
results... - I do not need tools like bukuserver, after all it's about the command line.
If you are happy using buku, by all means stick with it. It is a great piece of OSS.
However, there is no risk in trying twbm. twbm is 100% buku compatible.
If you do not like it you can go back without loosing your bookmark database.
Why not contribute to buku? Because I do not agree with all design decisions (see also Architecture).
To harness twbm
's power, you need to use correct FTS search syntax (see: https://www.sqlite.org/fts5.html chapter 3).
If you find a bug, please open an issue.
Usage
There are two complementary commands:
- twbm: CLI tool with FTS for bookmark management
- twbuku: plain buku with small enhancements and usage of an enhanced database
This allows to use the battle-tested buku interface where applicable and benefit from additional features while using one enhanced bookmark database.
Getting help: twbm --help
Examples
# FTS examples (https://www.sqlite.org/fts5.htm)
twbm search 'security "single-page"'
twbm search '"https://securit" *'
twbm search '^security'
twbm search 'postgres OR sqlite'
twbm search 'security NOT keycloak'
# FTS combined with tag filtering
twbm search -t tag1,tag2 -n notag1 <searchquery>
# Search -> select interactively -> pipe bookmark id downstream for processing
twbm search xxxxx | twbm update -t x
Taglists must not have blanks and have comma separator.
Selection of multiple bookmarks for opening in browser is possible, of course:
After selecting you are straight back at the bash prompt.
Installation
pipx twbm
The database schema needs to be upgraded:
- To upgrade your existing buku db:
twbm-upgrade-db.sh buku.db twbm.db
. - To downgrade your existing twbm db:
twbm-downgrade-db.sh twbm.db buku.db
.
Your existing bookmark database (buku.db
) is not changed by the upgrade! Instead, a new database
with advanced features will be created.
Going back to buku
is easy: Take the FTS database (twbm.db
) and create a buku database
with reduced features (buku.db
). Again, existing databases are not affected.
Tested configuration:
- sqlite 3.28.0 (requires update on macOS)
- macOS 10.15.7
Configuration
Configure the location of your sqlite database:
# aliases which I use
alias b="twbuku --db $HOME/bm.db -n 1000 --deep" # using patched original buku
alias bb="TWBM_DB_URL=sqlite:////$HOME/bm.db twbm search" # using extended CLI tool
alias bbb="TWBM_DB_URL=sqlite:////$HOME/bm.db twbm"
Architecture
twbm uses certain buku
functions in the background, but is generally rebuilt on top of:
This should make it easy to extend and add functionality in an object-oriented manner.
Development
patch buku
- download
buku
and compare withbuku.py
- update
buku.py
:# tw: add title tagging
(customization: search for# tw
) - GOTCHA: Exclude
buku.py
fromblack
rm buku
wget https://raw.githubusercontent.com/jarun/buku/master/buku .
diff buku.py buku
Local installation from sources
- install twbm with pipx for local development:
pipx install ~/dev/py/twbm
, viamake install
- uninstall:
pipx uninstall twbm
# GOTCHA: NOT THE PATH !!!!
Testing
make test
Roadmap
- allow piping between twbm:
bb <word> | bb -t newtag
- full help
- database creation
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
File details
Details for the file twbm-0.3.2.tar.gz
.
File metadata
- Download URL: twbm-0.3.2.tar.gz
- Upload date:
- Size: 68.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4da507803f45975d692ef6fb6b51e45920699baffd2535d137c57a9941fe933b |
|
MD5 | 6aca2dd4ab3dd3f947dfaafb2b14726c |
|
BLAKE2b-256 | 00fc404653444014a280e41f69e35a866cd1a4340ece464c8d76a990d3a00ec0 |