User-friendly, tiny source code searcher written by pure Python.
Project description
Installation
bor can be installed by running pip install bor
. It requires Python 3.8.0+ to run.
Usage
bor currently supports class
and def
keywords. Other Python keywords will be added
in the future releases.
bor {keyword} {pattern}
By default, bor runs in your current directory. You can run bor with the specific source file or directory:
bor {keyword} {pattern} {source_file_or_directory}
Configuration
By default, if bor encounters an error(syntax, indentation error etc.) while analyzing
files, it will stop working. If you want to the ignore errors, you can use
--ignore-error
or -i
argument. For example;
bor class Cat --ignore-error
Example Usages
Cat
is equivalent in the regular expression as ^Cat$
bor class Cat
Output:
Cat at examples/test.py:18
.Cat
is equivalent in the regular expression as Cat$
bor class .Cat
Output:
Cat at examples/test.py:18
BlueCat at examples/test.py:26
get.
is equivalent in the regular expression as ^get
bor def get. examples/test.py
Output:
get_value at examples/test.py:5
get_blue_value at examples/test.py:11
get_purple_value at examples/test.py:14
get_meow at examples/test.py:22
.cat.
is equivalent in the regular expression as cat+
bor def .cat.
Output:
catch_me_if_you_can at examples/test.py:8
am_i_blue_cat at examples/test.py:30
where_is_the_cat at examples/test.py:38
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file bor-0.2.0.tar.gz
.
File metadata
- Download URL: bor-0.2.0.tar.gz
- Upload date:
- Size: 5.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 944c058bd3304d34c47f52089fc62b9e8746d3420f3bea3a6dc020dcf351a8c1 |
|
MD5 | 098361c0d5de3635ff2f95b259cbd572 |
|
BLAKE2b-256 | f70601a7bd4832518f94c070e782bd550317bb1e6b7792c80dcf922f98a210d4 |
File details
Details for the file bor-0.2.0-py3-none-any.whl
.
File metadata
- Download URL: bor-0.2.0-py3-none-any.whl
- Upload date:
- Size: 5.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cd79998b0c11606271489e7881149dc52b08fec2c5f6dafc0e80bd1e5fee0caa |
|
MD5 | 4c2f65144e7bf05301ba166fb40a4b0e |
|
BLAKE2b-256 | 7b347a37c392df20628b2f15aaa4447e7718505cad1150e6c9a05cbf18e06e24 |