#inspector #finder #search #python-doc

app jones

CLI project for searching and inspecting Python classes

5 releases

0.2.0 Aug 7, 2023
0.1.4 Sep 30, 2021
0.1.3 Sep 24, 2021
0.1.1 Jul 13, 2021
0.1.0 Jul 13, 2021

#1611 in Command line utilities

MIT license

27KB
618 lines

Jones CLI

pipeline-jones Crates.io

Context

Note: 🌶 This is a first attempt to Rust programming.

This project is a pathfinder/inspector for Python classes. A very minimal implementation of a CLI tool that helps you find Python classes. It aims to help you find classes without changing files or view to understand classes and it shows you the methods and arguments of it very beautiful in the terminal

Usage

Obviously for better understanding of jones capabilities you can always type:

$ jones --help

This will show you all the flags and arguments that jones has

Search/grep for classes

The --grep flag will find all the Python classes containing a keyword given for search. The keyword should be used in cased format as Python classes are usually written in camel case. For example:

$ jones -g Tool

This would return all classes that contain the Tool word and would show you in which files are found exactly as the usual grep.

> [FOUND MATCHES]
:: class Tool: -> ~/project/src/band.py
:: class ToolMind: -> ~/project/src/golden_ratio.py

Note: This is still in development as it should be renamed to smart search. The smart search will be used to find classes based on a keyword and the context in which the keyword is used

Showing classes features

To display the class methods and arguments just use jones without any flag. For example:

$ jones Tool

This will search for the class tool in the current directory on which you called jones (if the directory path is not specified). If the directory path is specified jones will search there. For example:

$ jones Tool ~/band_project

Output:

# Class [Board]
-------
*docstring: Tic Tac Toe board
* inherit -> Tool

# Methods
-------
:: [__init__] -> None
  * self: None
:: [__getitem__] -> ndarray
  * self: None
  * x: int
:: [display] -> None
  * self: None
:: [mark] -> None
  * self: None
  * tag: Markers
  * x: int
  * y: int

Dependencies

~4.5–6MB
~104K SLoC