Skip to content

Allaway11/pyreka

Folders and files

NameName
Last commit message
Last commit date

Latest commit

de074eb Β· Dec 16, 2022

History

12 Commits
Dec 13, 2022
Dec 16, 2022
Dec 16, 2022
Dec 13, 2022
Dec 1, 2022
Dec 13, 2022
Dec 16, 2022
Dec 16, 2022
Dec 13, 2022
Dec 13, 2022
Dec 16, 2022
Dec 13, 2022
Dec 1, 2022
Dec 13, 2022

Repository files navigation

logo

πŸš§πŸ”§ Installation

pip install pyreka

πŸ“ƒ Usage

pyreka can be used to search functions using function names and docstrings in packages and directories.

For example to search in numpy the following commands could be issued from the command line.

Firstly, install numpy

pip install numpy

and then from the same environment search the numpy package for keywords:

pyreka numpy "sort array indices"

First you will be asked if you are searching a local directory or for a package in your environment, then you should see a number of functions returned, along with the file that they live in and the line number for each returned function you can also scroll their docstrings.

🎊