https://github.com/domdfcoding/greppy
Recursively grep over Python files in the files in the given directory.
https://github.com/domdfcoding/greppy
python
Last synced: 2 months ago
JSON representation
Recursively grep over Python files in the files in the given directory.
- Host: GitHub
- URL: https://github.com/domdfcoding/greppy
- Owner: domdfcoding
- License: mit
- Created: 2020-11-12T08:49:04.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2025-01-06T17:32:12.000Z (5 months ago)
- Last Synced: 2025-02-01T20:45:02.679Z (4 months ago)
- Topics: python
- Language: Python
- Homepage: https://greppy.readthedocs.io/en/latest
- Size: 237 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.rst
- Contributing: CONTRIBUTING.rst
- License: LICENSE
Awesome Lists containing this project
README
#######
greppy
#######.. start short_desc
**Recursively grep over Python files in the files in the given directory.**
.. end short_desc
.. start shields
.. list-table::
:stub-columns: 1
:widths: 10 90* - Docs
- |docs| |docs_check|
* - Tests
- |actions_linux| |actions_macos| |coveralls|
* - Activity
- |commits-latest| |commits-since| |maintained|
* - QA
- |codefactor| |actions_flake8| |actions_mypy|
* - Other
- |license| |language| |requires|.. |docs| image:: https://img.shields.io/readthedocs/greppy/latest?logo=read-the-docs
:target: https://greppy.readthedocs.io/en/latest
:alt: Documentation Build Status.. |docs_check| image:: https://github.com/domdfcoding/greppy/workflows/Docs%20Check/badge.svg
:target: https://github.com/domdfcoding/greppy/actions?query=workflow%3A%22Docs+Check%22
:alt: Docs Check Status.. |actions_linux| image:: https://github.com/domdfcoding/greppy/workflows/Linux/badge.svg
:target: https://github.com/domdfcoding/greppy/actions?query=workflow%3A%22Linux%22
:alt: Linux Test Status.. |actions_macos| image:: https://github.com/domdfcoding/greppy/workflows/macOS/badge.svg
:target: https://github.com/domdfcoding/greppy/actions?query=workflow%3A%22macOS%22
:alt: macOS Test Status.. |actions_flake8| image:: https://github.com/domdfcoding/greppy/workflows/Flake8/badge.svg
:target: https://github.com/domdfcoding/greppy/actions?query=workflow%3A%22Flake8%22
:alt: Flake8 Status.. |actions_mypy| image:: https://github.com/domdfcoding/greppy/workflows/mypy/badge.svg
:target: https://github.com/domdfcoding/greppy/actions?query=workflow%3A%22mypy%22
:alt: mypy status.. |requires| image:: https://dependency-dash.repo-helper.uk/github/domdfcoding/greppy/badge.svg
:target: https://dependency-dash.repo-helper.uk/github/domdfcoding/greppy/
:alt: Requirements Status.. |coveralls| image:: https://img.shields.io/coveralls/github/domdfcoding/greppy/master?logo=coveralls
:target: https://coveralls.io/github/domdfcoding/greppy?branch=master
:alt: Coverage.. |codefactor| image:: https://img.shields.io/codefactor/grade/github/domdfcoding/greppy?logo=codefactor
:target: https://www.codefactor.io/repository/github/domdfcoding/greppy
:alt: CodeFactor Grade.. |license| image:: https://img.shields.io/github/license/domdfcoding/greppy
:target: https://github.com/domdfcoding/greppy/blob/master/LICENSE
:alt: License.. |language| image:: https://img.shields.io/github/languages/top/domdfcoding/greppy
:alt: GitHub top language.. |commits-since| image:: https://img.shields.io/github/commits-since/domdfcoding/greppy/v0.0.0
:target: https://github.com/domdfcoding/greppy/pulse
:alt: GitHub commits since tagged version.. |commits-latest| image:: https://img.shields.io/github/last-commit/domdfcoding/greppy
:target: https://github.com/domdfcoding/greppy/commit/master
:alt: GitHub last commit.. |maintained| image:: https://img.shields.io/maintenance/yes/2025
:alt: Maintenance.. end shields
Installation
--------------.. start installation
``greppy`` can be installed from GitHub.
To install with ``pip``:
.. code-block:: bash
$ python -m pip install git+https://github.com/domdfcoding/greppy
.. end installation