Simple game application.
Project description
Introduction
Readit is command line bookmark manager. It is a command line utility to add, delete, update and display the bookmarks. It is a powerful bookmark manager written in Python. It uses SQLite3 database to store the bookmarks.
Features
Bookmark multiple URLs at a time
Bookmark URL with respective Tags
Search and display Bookmarks by TAG
Display all Bookmarks in table format
Remove a Bookmarked URL
Remove all Bookmarked URLs
Update a Bookmarked URL with specific ID
URL validation
Open URL in browser
Dependencies
Features |
Dependancy |
---|---|
Scripting Language |
Python 2.7+ |
HTTP(S) |
requests |
Command-Line Option and argument parsing |
click |
Database Used |
SQLite3 |
Display Bookmarks in Table |
beautifultable |
Installation
readit is available on PyPi and can be installed with pip3:
pip3 install --user readit
Command line options
Usage: readit [OPTIONS] [INSERT]...
Readit - Command-line bookmark manager tool.
Options:
-a, --add TEXT... Add URLs with space-separated
-t, --tag TEXT... Add Tag with space-separated URL
-d, --delete TEXT Remove a URL of particular ID
-c, --clear TEXT... Clear bookmarks
-u, --update TEXT... Update a URL for specific ID
-s, --search TEXT Search all bookmarks by Tag
-v, --view TEXT... Show bookmarks
-o, --openurl TEXT Open URL in Browser
-V, --version Check latest version
--help Show this message and exit.
Examples
Bookmark multiple URLs:
$ readit url1 url2 ...
or
$ readit --add url1 url2 ...
or
$ readit -a url1 url2 ...
View all available bookmarks:
$ readit -v
or
$ readit --view
Update a bookmark using it’s ID:
$ readit -u url_id url
or
$ readit --update url_id url
Delete a bookmarked URL using it’s ID:
$ readit -d url_id
or
$ readit --delete url_id
Clear all the bookmarks:
$ readit -c
or
$ readit --clear
Bookmark URL with TAG:
$ readit -t tag_name url
or
$ readit --tag tag_name url
Search and Display all bookmarks using TAG:
$ readit -s tag_name
or
$ readit --search tag_name
Open URL in Browser using specific ID:
$ readit -o urlid
or
$ readit --openurl urlid
How to install source code for development
Clone project from github:
$ git clone https://github.com/projectreadit/readit.git
We recommend to create and activate a virtualenv first:
$ cd readit/
$ virtualenv venv
$ source venv/bin/activate
(venv) $
To install using setup.py file:
(venv) $ python setup.py install
To make build of project:
(venv) $ python setup.py build
Licence
Readit - Command line tool is licensed under GNU General Public License v3.0.
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 sticks-0.0.10.tar.gz
.
File metadata
- Download URL: sticks-0.0.10.tar.gz
- Upload date:
- Size: 3.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 02dd054449693a63b1031a3ba7c0efcedeb701759537b1467e6b64366228dbe4 |
|
MD5 | c431f498d65490ad06078dd4dacb920c |
|
BLAKE2b-256 | 3f408dd74476ec40679b552228ce7225a12e25544ed2c402542019b367ff9bea |