Metadata-Version: 2.1
Name: rebound-cli
Version: 1.1.7a1
Summary: Automatically displays Stack Overflow results when you get a compiler error
Home-page: https://github.com/shobrook/rebound
Author: shobrook
Author-email: shobrookj@gmail.com
License: MIT
Description: # rebound
        
        [![Downloads](http://pepy.tech/badge/rebound-cli)](http://pepy.tech/count/rebound-cli)
        
        Rebound is a command-line tool that instantly fetches Stack Overflow results when you get a compiler error. Just use the `rebound` command to execute your file.
        
        ![Placeholder Demo](demo.gif)
        
        Featured on: [awesome-cli-apps](https://github.com/agarrharr/awesome-cli-apps), [awesome-shell](https://github.com/alebcay/awesome-shell), [awesome-mac](https://github.com/jaywcjlove/awesome-mac), and the top of [/r/Python](https://www.reddit.com/r/Python/comments/8cwq72/i_made_a_commandline_tool_that_instantly_fetches/).
        
        ## Installation
        
        Rebound works on MacOS, Linux, and Windows, with binary downloads available for [every release.](https://github.com/shobrook/rebound/releases) You can also install it with pip:
        
        `$ pip install rebound-cli`
        
        Requires Python 3.0 or higher.
        
        ## Usage
        
        Running a file with `rebound` is just as easy as compiling it normally:
        
        `$ rebound [file_path]`
        
        This will execute the file, pull the error message, and let you browse related Stack Overflow questions and answers without leaving the terminal.
        
        __Supported file types:__ Python and Node.js (Ruby and Java coming soon!).
        
        ## Contributing
        
        To make a contribution, fork the repo, make your changes and then submit a pull request. If you've discovered a bug or have a feature request, create an [issue](https://github.com/shobrook/rebound/issues/new) and tag it appropriately :)
        
        ## Technologies
        
        Rebound is written in Python and built on Urwid. Beautiful Soup is used to scrape Stack Overflow content and subprocess for catching compiler errors.
        
        ## Acknowledgements
        
        Special thanks to [@rndusr](https://github.com/rndusr) for helping with the scrollbar.
        
Keywords: stackoverflow stack overflow debug debugging error-handling compile errors error message cli
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Debuggers
Classifier: Natural Language :: English
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Requires: BeautifulSoup4
Requires: requests
Requires: urllib3
Requires: urwid
Requires-Python: >=3
Description-Content-Type: text/markdown
