Code Monkey home page Code Monkey logo

pockyt's Introduction

pockyt

A simple, yet powerful, commandline client for your Pocket collection.

http://img.shields.io/pypi/v/pockyt.svg?style=flat http://img.shields.io/pypi/l/pockyt.svg?style=flat

Links

About

Pocket is an application for managing a reading list of articles from the Internet.

pockyt is a commandline client that interfaces the pocket API and provides a way to interact with your Pocket collection. Using simple command sequences, routine tasks can be automated and reusable scripts can be created.

Privacy

pockyt does NOT track, store, or monitor your usage and/or data. Moreover, pockyt interacts with the pocket API using local credentials and does not attempt to communicate with any other services.

Installation

pockyt supports Python 2.7+ & 3.4+ on Windows, macOS, & GNU/Linux platforms.

  1. Install pockyt: pip install -U pockyt
  2. Connect Pocket account: pockyt reg
  3. Refer the Examples & Documentation below.

Examples

  • Get the latest 5 items' links & excerpts and save them to a file.

    pockyt get -n 5 -f '{link} - {excerpt}' -o readlater.txt
    
  • Get the oldest 10 items and delete them from Pocket.

    pockyt get -n 10 -r oldest -f '{id}' | pockyt mod -d -i redirect
    
  • Get all the items about 'python' and open them in a browser.

    pockyt get -q 'python' -o browser
    
  • Get all the links from a 'links.txt' and add them to Pocket.

    pockyt put -i links.txt
    
  • Get all favorited items and archive them.

    pockyt get -v 1 | pockyt mod -a 1 -i redirect
    
  • Get all favorited items and save offline copies of them.

    pockyt get -v 1 -a ./pocket
    

Contribute

Feel free to contribute features, bugfixes, improvements, and usage ideas.

  1. Fork pockyt.

  2. Work on the source code.

    git clone [email protected]:<username>/pockyt.git
    cd pockyt
    
    # runtime dependencies
    pip install -e .
    # devel dependencies
    pip install -r requirements.txt
    
    # do stuff
    git checkout -b new-feature
    
    # format files
    yapf -i -r .
    
    git add .
    git commit -am 'commit msg'
    git push origin new-feature
    
  3. Submit a pull request.

License

This project uses the GNU GPLv3 License.

Documentation

pockyt help/-h/--help :

help
show pockyt usage help
reg
connect a pocket account
get
get pocket collection, with useful item info
put
add to pocket collection, using links
mod
modify pocket collection, using item ids

pockyt reg -h :

-h, --help show this help message and exit
--no-browser use without browser i.e. print to console

pockyt get -h :

-h, --help show this help message and exit
-c <type>, --content <type>
 content type : <type> : {all, [article, video, image]}
-s <state>, --state <state>
 collection state : <state> : {all, [unread, archive]}
-r <order>, --sort <order>
 item sorting : <order> : {newest, [oldest, title, site]}
-n <amount>, --count <amount>
 number of items : <amount> : {-1: all, [n: amount]}
-q <query>, --query <query>
 search query : <query> : {None}
-t <option>, --tag <option>
 filter tag : {-1: nofilter, [tagname: tagged, 0: untagged}
-v <option>, --favorite <option>
 filter favorites : <option> : {-1: No Filter, [1: favorited, 0: un-favorited]}
-d <domain>, --domain <domain>
 restrict items to domain : <domain> : {None}
-f <specifier>, --format <specifier>
 format output : <specifier> : {'{id} | {title} | {link}', [id, title, link, excerpt, tags]}
-o <option>, --output <option>
 redirect output : <option> : {None, [browser, filename]}
-a <path>, --archive <path>
 save offline copies : <path> : path/to/archive/folder
--since <YYYY-MM-DD>
 only return items modified since : <YYYY-MM-DD>

pockyt put -h :

-h, --help show this help message and exit
-f <specifier>, --format <specifier>
 unformat input : <specifier> : {'{link}', [id, title, link, excerpt, tags]}
-i <option>, --input <option>
 obtain input : <option> : {console, [redirect, link, filename]}

pockyt mod -h :

-h, --help show this help message and exit
-f <specifier>, --format <specifier>
 unformat input : <specifier> : {'{id}', [id, title, link, excerpt, tags]}
-i <option>, --input <option>
 obtain input : <option> : {console, [redirect, filename]}
-d, --delete delete items
-a <option>, --archive <option>
 archive items : <option> : {-1: None, [1: archive, 0: unarchive]}
-v <option>, --favorite <option>
 favorite items : <option> : {-1: None, [1: favorite, 0: unfavorite]}

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.