Metadata-Version: 2.1
Name: gateoverflow
Version: 0.2.0
Summary: A command line interface for gate links
Home-page: https://github.com/toxdes/opengate
Author: Vaibhav Mali
Author-email: malivp3494@gmail.com
License: UNKNOWN
Description: # Python project to manage gateoverflow links.
        
        # Requirements
        
        - `python3`
        - `sqlite3`
        - `dateutil`
        - `tabulate`
        
        # Changelog
        
        ### v0.2.0
        
        1. updated makefile to have a `build` target
        2. changed behaviour of `ls` command. Now it only lists recents
        3. refactor, and removing unnecessary code
        
        Read [full changelog](./changelog.md)
        
        # Todo
        
        - Create a CLI that opens a link in the browser, when question id is provided.
        - SQL queries are all over the place, they should be organized better.
        - Creating lists for questions, categorizing them.
        - Modes: i.e. in open mode, on number input, the link is automatically opened. **Edit:** way too trivial so added as default. Cannot think of any other mode for now so...
        - usage of arrow keys to select, make UX amazing.
        - fetch all question from lists
        - a "sync" mechanism that will be used to upload the db file to web, and will be shared across somehow.
        - create a gui maybe a web app that starts a http browser locally and opens a link in browser, like expo does?
        - maybe firebase
        - add gifs of usage
        
        # Done
        
        - CLI (check status of individual commands below)
        - crawler routine for scraping metadata of each question, which will be important later on.
        
        # CLI Commands
        
        | Command        | Description                                                          | Status             |
        | -------------- | -------------------------------------------------------------------- | ------------------ |
        | `q`            | Alias to quit. Exit the program normally.                            | :heavy_check_mark: |
        | `h`            | Alias to help. Shows available commands.                             | :heavy_check_mark: |
        | `ls`           | Alias to list.                                                       | :x:                |
        | `r`            | Alias to Recents. Recently opened questions.                         | :x:                |
        | `o`            | Alias to open-mode. Go into open mode.                               | :heavy_check_mark: |
        | `quit`         | Exit the program normally.                                           | :heavy_check_mark: |
        | `debug-toggle` | Toggle debug output.                                                 | :heavy_check_mark: |
        | `crawler`      | Update question data(title and description).                         | :heavy_check_mark: |
        | `help`         | Shows available commands.                                            | :heavy_check_mark: |
        | `clear`        | Clear output screen.                                                 | :heavy_check_mark: |
        | `list`         | List things. Usage: `ls [recent(r),tags(t),questions(q)] [how_many]` | :x:                |
        | `open-mode`    | Go into open-mode.                                                   | :heavy_check_mark: |
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
