skillfed

fpyutils

A collection of useful non-standard Python functions which aim to be simple to use, highly readable but not efficient.

fpyutils v4.0.1 92.1K downloads/30d#13,475 on PyPI
Copyleft license GPLv3+ DORMANT released

What it is and what it does

fpyutils is a lightweight library of utility functions for Python that emphasizes clarity and simplicity rather than performance. It provides helpers for common tasks like searching for patterns in text files and processing command-line operations. The package has no external runtime dependencies, making it easy to add to any project.

The library is marked as Production/Stable and was first released in 2017-12-06, but has not seen a release since 2023-11-08. It is distributed under GPLv3+, a copyleft license that requires any derivative work to remain open source. It is best suited for scripts, utilities, and educational code where readability matters more than raw speed.

Use it for:

  • Search for matching lines in text files and retrieve their positions for log analysis or text mining.
  • Build command-line utilities that need simple, readable helper functions without external dependencies.
  • Write educational or prototype code where code clarity is more important than performance optimization.
  • Process text data in small-to-medium projects where the overhead of heavier libraries is not justified.

Worth the install?

AI-flagged interpretation of the facts on this page — verify before relying

fpyutils provides a collection of utility functions for common Python tasks like file line matching and text processing, prioritizing readability and simplicity over performance.

Yes, if you need simple, readable utility functions and accept the copyleft license. The zero-dependency install is clean and the API is straightforward. However, be aware that the package is dormant—no releases since 2023-11-08—so do not expect bug fixes or compatibility updates. Suitable for stable, self-contained utilities; risky for projects requiring ongoing maintenance.

Install

fpyutils on PyPI

pip

pip install fpyutils

uv

uv add fpyutils

poetry

poetry add fpyutils

Installing fpyutils

Before you install

Installation is frictionless with no runtime dependencies. However, the package is dormant—no releases since 2023-11-08—so bug fixes and compatibility updates are unlikely.

License in practice

fpyutils is licensed under GPLv3+, a copyleft license. Any derivative work or distribution must also be open source under compatible terms; proprietary or closed-source projects cannot use it without legal review.

Quickstart

pip install fpyutils

import fpyutils
matches = fpyutils.filelines.get_line_matches('foo.txt', 'foo', 5)

Requires Python 3.7 or later, up to but not including Python 4.

Verify before relying

  • What specific utility functions are included beyond file line matching—the fact sheet does not enumerate the full API.
  • Whether the package's stated prioritization of readability over efficiency makes it unsuitable for performance-sensitive code paths.
  • Current compatibility with modern Python versions given the dormant maintenance status.

Package facts

License GPLv3+ (copyleft)
Python support supports the current Python release (<4,>=3.7)
Install friction low — pure-Python wheel
Runtime dependencies none
Maintenance dormant — 1,010 days since the last release
First released
Downloads 92,138/month — #13,475 on PyPI (30-day window, as of 2026-08-14)
Known vulnerabilities none known (OSV.dev, checked 2026-08-14)

Evidence: fpyutils-4.0.1-py3-none-any.whl

Keywords: utilities, text, command

Development Status :: 5 - Production/StableIntended Audience :: DevelopersLicense :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)Programming Language :: Python :: 3Topic :: Software Development :: Libraries

Tags

python utility functionsfile line matchingtext processing helperssimple python utilitiesreadable code utilitiescommand utilitiesnon-standard functions
no-dependenciestext-processingcopyleft

More Libraries packages