Skip to main content

A collection of fundamental Python utilities for common tasks

Project description

PyFundamentals

PyFundamentals banner

A collection of fundamental Python utilities for common tasks such as string manipulation, date/time formatting, extended enumerations, threading with return values, bash-like operations, and exception handling.

Features

  • Basic Functions: Utility functions for checking empty strings and generating formatted date/time strings.
  • String Utilities: Comprehensive string manipulation including case conversion (CamelCase, snake_case), regex matching, Roman numeral conversion, random string generation, and text normalization.
  • Extended Enums: Enhanced Enum and Flag classes with additional methods like list and from_string for more flexible enumeration handling.
  • Overrides: Decorator-based method override checking for better code reliability in class hierarchies.
  • Threading: ReturningThread class that extends Python's Thread to allow capturing return values from threaded functions.
  • Bash Utilities: Functions to interact with system information like user details, hostname, IP addresses, and tool availability checks.
  • Exceptions: Custom exception classes for handling errors in the library.

Installation

Install from PyPI:

pip install PyFundamentals

Or clone the repository and install locally:

git clone https://github.com/PyFundamentals.git
cd PyFundamentals
pip install .

Usage

Basic Functions

from fundamentals import is_empty_string, now_string

some_value = "test"
if not is_empty_string(some_value):
    timestamp = now_string()  # e.g., "20260309-11:46:00.123456"

String Utilities

from fundamentals import make_cpp_id, IdentifierStringCase

cpp_id = make_cpp_id("some mixed case", IdentifierStringCase.SNAKE)  # "some_mixed_case"

Extended Enums

from enum import auto
from fundamentals import ExtendedEnum

class Color(ExtendedEnum):
    RED = auto()
    GREEN = auto()
    BLUE = auto()

# List all values
colors = Color.list()  # [<Color.RED: 1>, <Color.GREEN: 2>, <Color.BLUE: 3>]

# Parse from string (case-insensitive)
color = Color.from_string("green")  # Color.GREEN

Returning Thread

from fundamentals import ReturningThread

def worker(x, y):
    return x + y

thread = ReturningThread(target=worker, args=(5, 10))
thread.start()
result = thread.join()  # Returns 15

Exceptions

from fundamentals import StringUtilError

raise StringUtilError("An error occurred during string processing")

Testing

Run the test suite:

python -m unittest discover test/

For coverage (requires coverage.py):

coverage run --source=fundamentals -m unittest discover test/
coverage report

Contributing

Contributions are welcome! Please follow these steps:

  1. Fork the repository
  2. Create a feature branch
  3. Add tests for new functionality
  4. Ensure all tests pass and code is linted
  5. Submit a pull request

License

This project is licensed under the GNU General Public License version 2 (GPLv2). See the LICENSE file for details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

kingkybel_pyfundamentals-0.4.5.tar.gz (46.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

kingkybel_pyfundamentals-0.4.5-py3-none-any.whl (32.0 kB view details)

Uploaded Python 3

File details

Details for the file kingkybel_pyfundamentals-0.4.5.tar.gz.

File metadata

File hashes

Hashes for kingkybel_pyfundamentals-0.4.5.tar.gz
Algorithm Hash digest
SHA256 8fd0ff9e03689bcb4e50dcc55b40b66582ec680cb00e3070f48c3f1f344d6ffa
MD5 e7626617a4d089b52992d96090423109
BLAKE2b-256 56a1995d202af1c4f3e4b9a57d82efec18bdb5f306d6a84b70a57b853a3ecea4

See more details on using hashes here.

File details

Details for the file kingkybel_pyfundamentals-0.4.5-py3-none-any.whl.

File metadata

File hashes

Hashes for kingkybel_pyfundamentals-0.4.5-py3-none-any.whl
Algorithm Hash digest
SHA256 a2d6f4aba19f839a545fbc6c0d0c6082f5b97dada08e2fa2f69c2e07640af00e
MD5 89d7eaff48a0bba37eeb7dc54ed3773f
BLAKE2b-256 47f4513779fbf936e751177275c26c08a68324cee5ce668e78f7ad05ffdf4417

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page