Fuzzy Search documentation from the CLI
Project description
Doc-FZF: Modular CLI Documentation Fuzzy Finder
Fuzzy Search documentation from the CLI and open them in the browser.
See it in action here https://terminalizer.com/view/2c3935cf1418
Disclaimer This tool was built to learn FZF
capabilities. Feel free to use it or extend it.
Usage
doc-fzf ansible
doc-fzf ansible -q yum
Installation
pip3 install doc-fzf
Verify your installation:
doc-fzf -h
usage: doc-fzf.py [-h] [-q QUERY] module_name
doc-fzf.
positional arguments:
module_name Name of the module to search
optional arguments:
-h, --help show this help message and exit
-q QUERY Query the docs
Extending Doc-FZF
doc-fzf
is a modular application. It can load modules at runtime that scrap websites in any way you like.
Any module should always contain:
- class name must always be
Scrapper(FZFDoc)
self.documentation_url
attributedef get_documentation(self):
function that must always return a tuple ("url", "description")
from doc_fzf.pyfzf import FZFDoc
class Scrapper(FZFDoc):
def __init__(self):
self.base_url = "https://docs.python.org/3"
self.documentation_url = "{0}/py-modindex.html".format(self.base_url)
FZFDoc.__init__(self, self.documentation_url)
def get_documentation(self):
""" Return a tuple of (url, description)
"""
docs = get_online_documentation()
for doc in docs:
yield (doc.url, doc.description)
Here is the ansible documentation example
Road Map
- Module definition
- FZFDoc base class
- File system cache layer
- Load modules at runtime
References
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
doc-fzf-0.0.7.tar.gz
(5.3 kB
view details)
File details
Details for the file doc-fzf-0.0.7.tar.gz
.
File metadata
- Download URL: doc-fzf-0.0.7.tar.gz
- Upload date:
- Size: 5.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 43508d044f9981ffa49285f76eae6563215d026dfac3afd7b3d1c812c2bd41f0 |
|
MD5 | f55f1a7a9ab880154afa5dec04895165 |
|
BLAKE2b-256 | d0b997d2a4401496594ef7c84329df7876afae3ba1de7b126b15f5ed2a4f1979 |