Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/scivision/pyfindfiles
Concurrently find files containing text, or project language with codemeta.json
https://github.com/scivision/pyfindfiles
asyncio codemeta find-files find-text-in-files
Last synced: 2 months ago
JSON representation
Concurrently find files containing text, or project language with codemeta.json
- Host: GitHub
- URL: https://github.com/scivision/pyfindfiles
- Owner: scivision
- License: mit
- Created: 2019-03-19T14:50:38.000Z (almost 6 years ago)
- Default Branch: main
- Last Pushed: 2024-05-06T23:19:46.000Z (8 months ago)
- Last Synced: 2024-09-15T23:05:45.788Z (4 months ago)
- Topics: asyncio, codemeta, find-files, find-text-in-files
- Language: Python
- Homepage:
- Size: 101 KB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# PyFindFiles
![ci](https://github.com/scivision/pyfindfiles/workflows/ci/badge.svg)
[![PyPi Download stats](http://pepy.tech/badge/pyfindfiles)](http://pepy.tech/project/pyfindfiles)Find files (text or binary) containing text or patterns efficiently with Python, cross-platform.
Default is to only search files smaller than 10 MBytes.
Uses pipelining and asyncio to speed up operations.## Install
Normally install by
```sh
pip install pyfindfiles
```for latest development code
```sh
git clone https://github.com/scivision/pyfindfilespip install -e pyfindfiles
```## Usage
`findtext` looks for strings inside text or binary files, and reports filename text is found in.
* `-v`: filename, line number, and text found
* `-t`: search for files newer than date, or between dates if two dates given.```sh
python -m pyfindfiles.text Pattern "*.ext" root
```Pattern
: text to search for"*.ext"
: file extension(s) to search forroot
: top-level directory to search under---
```sh
python -m pyfindfiles.video top
```looks under top-level directory "top" for video files (by common file extensions)