pyfindfiles

Concurrently find files containing text, or project language with codemeta.json

https://github.com/scivision/pyfindfiles

Science Score: 26.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
    Found .zenodo.json file
  • DOI references
  • Academic publication links
  • Academic email domains
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (6.7%) to scientific vocabulary

Keywords

asyncio codemeta find-files find-text-in-files
Last synced: 6 months ago · JSON representation

Repository

Concurrently find files containing text, or project language with codemeta.json

Basic Info
  • Host: GitHub
  • Owner: scivision
  • License: mit
  • Language: Python
  • Default Branch: main
  • Homepage:
  • Size: 105 KB
Statistics
  • Stars: 4
  • Watchers: 2
  • Forks: 0
  • Open Issues: 0
  • Releases: 12
Topics
asyncio codemeta find-files find-text-in-files
Created almost 7 years ago · Last pushed 12 months ago
Metadata Files
Readme License Codemeta

README.md

PyFindFiles

ci PyPi Download stats

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/pyfindfiles

pip 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 for

root : 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)

Owner

  • Login: scivision
  • Kind: user

CodeMeta (codemeta.json)

{
  "@context": "https://doi.org/10.5063/schema/codemeta-2.0",
  "@type": "SoftwareSourceCode",
  "license": "https://spdx.org/licenses/Apache-2.0",
  "codeRepository": "https://github.com/scivision/pyfindfiles",
  "contIntegration": "https://github.com/scivision/pyfindfiles/actions",
  "issueTracker": "https://github.com/scivision/pyfindfiles/issues",
  "name": "PyFindFiles",
  "description": "Concurrently find files containing text patterns with Python AsyncIO on any OS",
  "applicationCategory": "development",
  "developmentStatus": "active",
  "keywords": [
    "find",
    "grep"
  ],
  "programmingLanguage": [
    "Python"
  ],
  "author": [
    {
      "@type": "Person",
      "@id": "https://orcid.org/0000-0002-1637-6526",
      "givenName": "Michael",
      "familyName": "Hirsch"
    }
  ]
}

GitHub Events

Total
  • Watch event: 1
Last Year
  • Watch event: 1

Issues and Pull Requests

Last synced: 6 months ago

All Time
  • Total issues: 0
  • Total pull requests: 0
  • Average time to close issues: N/A
  • Average time to close pull requests: N/A
  • Total issue authors: 0
  • Total pull request authors: 0
  • Average comments per issue: 0
  • Average comments per pull request: 0
  • Merged pull requests: 0
  • Bot issues: 0
  • Bot pull requests: 0
Past Year
  • Issues: 0
  • Pull requests: 0
  • Average time to close issues: N/A
  • Average time to close pull requests: N/A
  • Issue authors: 0
  • Pull request authors: 0
  • Average comments per issue: 0
  • Average comments per pull request: 0
  • Merged pull requests: 0
  • Bot issues: 0
  • Bot pull requests: 0
Top Authors
Issue Authors
Pull Request Authors
Top Labels
Issue Labels
Pull Request Labels

Packages

  • Total packages: 1
  • Total downloads:
    • pypi 28 last-month
  • Total dependent packages: 0
  • Total dependent repositories: 2
  • Total versions: 14
  • Total maintainers: 1
pypi.org: pyfindfiles

Concurrent, pipelined text and binary file searching via pure Python, cross-platform.

  • Versions: 14
  • Dependent Packages: 0
  • Dependent Repositories: 2
  • Downloads: 28 Last month
Rankings
Dependent packages count: 10.1%
Dependent repos count: 11.6%
Average: 22.3%
Downloads: 45.2%
Maintainers (1)
Last synced: 6 months ago

Dependencies

.github/workflows/ci.yml actions
  • actions/checkout v3 composite
  • actions/setup-python v4 composite
.github/workflows/publish-python-package.yml actions
  • actions/checkout v4 composite
  • actions/setup-python v5 composite
  • pypa/gh-action-pypi-publish release/v1 composite
pyproject.toml pypi
  • python-dateutil *