{ "info": { "author": "Arvind Chembarpu", "author_email": "achembarpu@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Environment :: Console", "Intended Audience :: Developers", "License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)", "Natural Language :: English", "Operating System :: Microsoft :: Windows", "Operating System :: POSIX :: Linux", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Topic :: Utilities" ], "description": "======\npockyt\n======\n\nA usable, customizable commandline client to automate and manage your pocket collection.\n\n.. image:: http://img.shields.io/pypi/v/pockyt.svg?style=flat\n :target: https://pypi.python.org/pypi/pockyt\n\n.. image:: http://img.shields.io/pypi/l/pockyt.svg?style=flat\n :target: https://pypi.python.org/pypi/pockyt\n\nLinks\n-----\n\n* `PyPi `_\n* `GitHub `_\n\nAbout\n-----\n\n`Pocket `_ is an application for managing a reading list of articles from the Internet.\n\nThis commandline client interfaces the pocket API and provides a way to interact with your pocket collection.\n\nUsing simple command sequences, routine tasks can be automated and reusable scripts can be created.\n\nQuick Start\n-----------\n\n``pockyt`` supports Python ``2.7+`` and ``3.4+`` on ``Windows``, ``macOS``, & ``GNU/Linux`` platforms.\n\n1. ``pip install pockyt --upgrade``\n2. ``pockyt reg``\n3. Follow the prompts to connect your pocket account to pockyt.\n4. Refer the Documentation and Examples for usage info and ideas.\n\nExamples\n--------\n\n* Get the latest 5 items' links & excerpts and save them to a file.\n ::\n pockyt get -n 5 -f '{link} - {excerpt}' -o readlater.txt\n\n* Get the oldest 10 items and delete them from Pocket.\n ::\n pockyt get -n 10 -r oldest -f '{id}' | pockyt mod -d -i redirect\n\n* Get all the items about 'python' and open them in a browser.\n ::\n pockyt get -q 'python' -o browser\n\n* Get all the links from a 'links.txt' and add them to Pocket.\n ::\n pockyt put -i links.txt\n\n* Get all favorited items and archive them.\n ::\n pockyt get -v 1 | pockyt mod -a 1 -i redirect\n\n\nDocumentation\n-------------\n\n**pockyt -h** :\n\n -h, --help show this help message and exit\n reg\n connect a pocket account\n get\n get pocket collection, with useful item_info\n put\n add to pocket collection, using links\n mod\n modify pocket collection, using item_ids\n\n**pockyt get -h** :\n\n -h, --help show this help message and exit\n -c , --content \n content type : : {all, [article, video, image]}\n -s , --state \n collection state : : {all, [unread, archive]}\n -r , --sort \n item sorting : : {newest, [oldest, title,\n site]}\n -n , --count \n number of items : : {-1: all, [n: amount]}\n -q , --query \n search query : : {None}\n -t