{ "info": { "author": "Yuya Chiba", "author_email": "cy.blue.9@gmail.com", "bugtrack_url": null, "classifiers": [ "Intended Audience :: Developers", "Intended Audience :: System Administrators", "License :: OSI Approved :: Apache Software License", "Natural Language :: English", "Programming Language :: Python", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Topic :: Software Development", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": "![Imgur](https://i.imgur.com/dwxZr8T.gif)\n\n[![PyPI](https://img.shields.io/pypi/pyversions/github-trending-cli.svg)](https://pypi.python.org/pypi/github-trending-cli/) [![License](http://img.shields.io/:license-apache-blue.svg)](http://www.apache.org/licenses/LICENSE-2.0.html)\n\ngithub-trending\n================\n\n`github-trending` brings Github Trending to the terminal, allowing you to **view** the following without leaving your command line:\n\n* Github Trending\n* Repository README\n\nCombine `github-trending` with pipes, redirects, and other command line utilities. Output to pagers, write to files, automate with cron, etc.\n\n`github-trending` comes with a handy **optional auto-completer with interactive help**:\n\n![Imgur](https://i.imgur.com/fwHg07X.png)\n\n## Index\n\n### General\n\n* [Syntax](#syntax)\n* [Auto-Completer and Interactive Help](#auto-completer-and-interactive-help)\n* [Customizable Highlighting](#customizable-highlighting)\n* [Commands](#commands)\n\n### Features\n\n* [View Trending](#view-trending)\n* [View Repository README](#view-repository-readme)\n* [Combine With Pipes and Redirects](#combine-with-pipes-and-redirects)\n* [View Results in a Browser](#view-in-a-browser)\n\n### Installation\n\n* [Installation](#installation)\n * [Pip Installation](#pip-installation)\n * [Virtual Environment Installation](#virtual-environment-installation)\n * [Supported Python Versions](#supported-python-versions)\n * [Supported Platforms](#supported-platforms)\n* [Developer Installation](#developer-installation)\n\n### Misc\n\n* [Contributing](#contributing)\n* [Credits](#credits)\n* [Contact Info](#contact-info)\n* [License](#license)\n\n## Syntax\n\nUsage:\n\n $ gt [params] [options]\n\n## Auto-Completer and Interactive Help\n\nOptionally, you can enable fish-style completions and an auto-completion menu with interactive help:\n\n $ github-trending\n\nWithin the auto-completer, the same syntax applies:\n\n github> gt [params] [options]\n\n![Imgur](https://i.imgur.com/fwHg07X.png)\n\n## Customizable Highlighting\n\nYou can control the ansi colors used for highlighting by updating your `~/.githubtrendingconfig` file.\n\nColor options include:\n\n```\n'black', 'red', 'green', 'yellow',\n'blue', 'magenta', 'cyan', 'white'\n```\n\nFor no color, set the value(s) to `None`.\n\n## Commands\n\n![Imgur](https://i.imgur.com/eer1XsJ.png)\n\n## View Trending\n\nView the Github Trending.\n\nUsage:\n\n $ gt trend [option] [limit]\n\nExamples:\n\n $ gt trend\n $ gt trend --language python\n $ gt trend --dev\n $ gt trend --monthly\n $ gt trend --limit 10\n\n![Imgur](https://i.imgur.com/5Bxmdld.png)\n\n## View Repository README\n\nView the Repository README\n\nUsage:\n\n $ gt view [user/repository]\n\n![Imgur](https://i.imgur.com/Liq7Wvq.png)\n![Imgur](https://i.imgur.com/VYLklBq.png)\n\n## Combine With Pipes and Redirects\n\nOutput to pagers, write to files, automate with cron, etc.\n\nExamples:\n\n $ gt trend -la Python -d | less\n $ gt view blue-9/github-trending > README.md\n\n![Imgur](https://i.imgur.com/tKjJwEU.png)\n\n## View in a Browser\n\nView the linked web content in your default browser instead of your terminal.\n\nUsage:\n\n $ gt [params] [options] -b\n $ gt [params] [options] --browser\n\n## Installation\n\n### Pip Intallation\n\n[![PyPI version](https://badge.fury.io/py/github-trending-cli.svg)](http://badge.fury.io/py/github-trending-cli) [![PyPI](https://img.shields.io/pypi/pyversions/github-trending-cli.svg)](https://pypi.python.org/pypi/github-trending-cli/)\n\n`github-trending` is hosted on [PyPI](https://pypi.python.org/pypi/github-trending-cli). The following command will install `github-trending`:\n\n $ pip install github-trending-cli\n\nYou can also install the latest `github-trending` from GitHub source which can contain changes not yet pushed to PyPI:\n\n $ pip install git+https://github.com/blue-9/github-trending.git\n\nIf you are not installing in a virtualenv, run with `sudo`:\n\n $ sudo pip install github-trending-cli\n\nOnce installed, run the optional `github-trending` auto-completer with interactive help:\n\n $ github-trending\n\nRun commands:\n\n $ gt [param] [optional]\n\n### Mac OS X 10.11 El Capitan Users\n\nThere is a known issue with Apple and its included python package dependencies (more info at https://github.com/pypa/pip/issues/3165). We are investigating ways to fix this issue but in the meantime, to install github-trending, you can run:\n\n $ sudo pip install github-trending --upgrade --ignore-installed six\n\n### Supported Python Versions\n\n* Python 2.6\n* Python 2.7\n* Python 3.3\n* Python 3.4\n* Python 3.5\n\n### Supported Platforms\n\n* Mac OS X\n * Tested on OS X 10.12\n\n## Developer Installation\n\nIf you're interested in contributing to `github-trending-cli`, run the following commands:\n\n $ git clone https://github.com/blue-9/github-trending.git\n $ pip install -e .\n $ github-trending\n $ gt [params] [options]\n\n## Contributing\n\nContributions are welcome!\n\nReview the [Contributing Guidelines](https://github.com/blue-9/github-trending/blob/master/CONTRIBUTING.md) for details on how to:\n\n* Submit issues\n* Submit pull requests\n\n## Credits\n\n* [haxor-news](https://github.com/donnemartin/haxor-news) by [donnemartin](https://github.com/donnemartin)\n* [mdv](https://github.com/axiros/terminal_markdown_viewer) by [axiros](https://github.com/axiros)\n* [github-ternding](https://github.com/evyatarmeged/github-trending) by [evyatarmeged](https://github.com/evyatarmeged)\n* [click](https://github.com/pallets/click) by [mitsuhiko](https://github.com/mitsuhiko)\n* [python-prompt-toolkit](https://github.com/jonathanslenders/python-prompt-toolkit) by [jonathanslenders](https://github.com/jonathanslenders)\n* [requests](https://github.com/kennethreitz/requests) by [kennethreitz](https://github.com/kennethreitz)\n\n## Contact Info\n\nFeel free to contact me to discuss any issues, questions, or comments.\n\nMy contact info can be found on my [GitHub page](https://github.com/blue-9).\n\n## License\n\n[![License](http://img.shields.io/:license-apache-blue.svg)](http://www.apache.org/licenses/LICENSE-2.0.html)\n\n Copyright 2018 Yuya Chiba\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.", "description_content_type": "", "docs_url": null, "download_url": "https://pypi.python.org/pypi/github-trending-cli", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/blue-9/github-trending", "keywords": "", "license": "Apache License 2.0", "maintainer": "", "maintainer_email": "", "name": "github-trending-cli", "package_url": "https://pypi.org/project/github-trending-cli/", "platform": "", "project_url": "https://pypi.org/project/github-trending-cli/", "project_urls": { "Download": "https://pypi.python.org/pypi/github-trending-cli", "Homepage": "https://github.com/blue-9/github-trending" }, "release_url": "https://pypi.org/project/github-trending-cli/1.0.1/", "requires_dist": null, "requires_python": "", "summary": "View Github Trending and repository README from the command line", "version": "1.0.1" }, "last_serial": 4272893, "releases": { "1.0.0": [ { "comment_text": "", "digests": { "md5": "c13bdea1641efa5b413a6a1085cd5798", "sha256": "42553cde083f1caec1e643f483cc58d71080072adb49660a52e76f254c666203" }, "downloads": -1, "filename": "github-trending-cli-1.0.0.tar.gz", "has_sig": false, "md5_digest": "c13bdea1641efa5b413a6a1085cd5798", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 50525, "upload_time": "2018-09-14T06:48:17", "url": "https://files.pythonhosted.org/packages/59/f8/ce987eb3735be0d531ec2b01b302c296ae0febb9ead04f76bbfe2e4cb6e2/github-trending-cli-1.0.0.tar.gz" } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "3475894d1085c56a90a9f074c78984b0", "sha256": "1864fc14b1bec83ca1025d83c86e49f2d6566467ba5a2972236f05f5ef613401" }, "downloads": -1, "filename": "github-trending-cli-1.0.1.tar.gz", "has_sig": false, "md5_digest": "3475894d1085c56a90a9f074c78984b0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 51283, "upload_time": "2018-09-14T16:11:23", "url": "https://files.pythonhosted.org/packages/1a/5f/a22520e775cd95ae3dfee4f530c56393b590c8487406584d64850d04490a/github-trending-cli-1.0.1.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "3475894d1085c56a90a9f074c78984b0", "sha256": "1864fc14b1bec83ca1025d83c86e49f2d6566467ba5a2972236f05f5ef613401" }, "downloads": -1, "filename": "github-trending-cli-1.0.1.tar.gz", "has_sig": false, "md5_digest": "3475894d1085c56a90a9f074c78984b0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 51283, "upload_time": "2018-09-14T16:11:23", "url": "https://files.pythonhosted.org/packages/1a/5f/a22520e775cd95ae3dfee4f530c56393b590c8487406584d64850d04490a/github-trending-cli-1.0.1.tar.gz" } ] }