Skip to main content

A comprehensive Python utility library for general-purpose and specialised tasks

Project description

pygenutils

Python Version License PyPI Version

pygenutils is a comprehensive Python utilities package designed to provide a wide range of general-purpose tools for data manipulation, string handling, time operations, and system interactions. It serves as a collection of commonly needed utilities for Python development.

Features

  • String Operations:
    • Advanced string manipulation
    • Text formatting and parsing
    • String pattern matching
    • Text transformation utilities
  • Time Handling:
    • Date and time calculations
    • Calendar operations
    • Time formatting
    • Program execution timing
    • Countdown functionality
  • Data Structures:
    • Array and list manipulation
    • Data pattern matching
    • Mathematical operations
    • Data conversion utilities
  • System Operations:
    • Operating system interactions
    • Process management
    • System information retrieval
  • Audio and Video:
    • Advanced media file processing with full encoding control
    • Audio/video file merging and concatenation
    • Media file cutting and trimming
    • Comprehensive codec selection (libx264, libx265, aac, mp3, etc.)
    • Encoding preset and bitrate control
    • Format conversion utilities
  • Number Systems:
    • Base conversion utilities
    • Number system operations
  • Set Operations:
    • Interval handling
    • Set manipulation
  • Dictionary Operations:
    • Dictionary manipulation
    • Key-value operations

Installation Guide

Dependency Notice

This package has minimal external dependencies and is designed to be lightweight. Most functionality works with Python's standard library.

Installation Instructions

For regular users who want to use the package in their projects:

pip install pygenutils                    # Core functionality
pip install pygenutils[arrow]             # With arrow support (optional)

This automatically installs pygenutils and all its dependencies with version constraints.

How It Works Now:

  • pip install pygenutils - Core functionality without arrow dependency
  • pip install pygenutils[arrow] - With arrow support for enhanced time handling features

Package Updates

To stay up-to-date with the latest version of this package, simply run:

pip install --upgrade pygenutils

Development Setup

For Contributors and Developers

If you're planning to contribute to the project or work with the source code, follow these setup instructions:

Quick Setup (Recommended)

# Clone the repository
git clone https://github.com/EusDancerDev/pygenutils.git
cd pygenutils

# Install with development dependencies (includes latest Git versions)
pip install -e .[dev]

Note: The -e flag installs the package in "editable" mode, meaning changes to the source code are immediately reflected without reinstalling. The [dev] flag includes the latest Git versions of interdependent packages.

Alternative Setup (Explicit Git Dependencies)

If you prefer to use the explicit development requirements file:

# Clone the repository
git clone https://github.com/EusDancerDev/pygenutils.git
cd pygenutils

# Install development dependencies from requirements-dev.txt
pip install -r requirements-dev.txt

# Install in editable mode
pip install -e .

This approach gives you the latest development versions of all interdependent packages for testing and development.

Development with Optional Dependencies

For full development capabilities, including testing and linting:

# Install with development dependencies
pip install -e ".[dev]"

# Or install specific optional dependencies
pip install -e ".[xarray]"  # For xarray support

For Multiple Package Development

If you're working on multiple interdependent packages simultaneously:

# Clone all repositories
git clone https://github.com/EusDancerDev/pygenutils.git
git clone https://github.com/EusDancerDev/filewise.git
git clone https://github.com/EusDancerDev/paramlib.git

# Install each in editable mode
pip install -e ./filewise
pip install -e ./paramlib
pip install -e ./pygenutils

Troubleshooting

If you encounter import errors after cloning:

  1. For regular users: Run pip install pygenutils (all dependencies included)
  2. For developers: Run pip install -e .[dev] to include development dependencies
  3. Verify Python environment: Make sure you're using a compatible Python version (3.10+)

Verify Installation

To verify that your installation is working correctly, you can run this quick test:

# Test script to verify installation
try:
    import pygenutils
    from filewise.general.introspection_utils import get_type_str
    from paramlib.global_parameters import BASIC_ARITHMETIC_OPERATORS
    
    print("✅ All imports successful!")
    print(f"✅ pygenutils version: {pygenutils.__version__}")
    print("✅ Installation is working correctly.")
    
except ImportError as e:
    print(f"❌ Import error: {e}")
    print("💡 For regular users: pip install pygenutils")
    print("💡 For developers: pip install -e .[dev]")

Implementation Notes

This project implements a dual-approach dependency management system:

  • Production Dependencies: Version-constrained dependencies for PyPI compatibility
  • Development Dependencies: Git-based dependencies for latest development versions
  • Installation Methods:
    • Regular users: Simple pip install pygenutils with all dependencies included
    • Developers: pip install -e .[dev] for latest Git versions and development tools
  • PyPI Compatibility: All packages can be published without Git dependency issues
  • Development Flexibility: Contributors get access to latest versions for testing and development

Package Structure

The package is organised into several specialised modules:

  • strings/: String manipulation utilities

    • string_handler.py: Core string operations
    • text_formatters.py: Text formatting utilities
  • time_handling/: Time and date operations

    • date_and_time_utils.py: Date/time calculations
    • time_formatters.py: Time formatting
    • calendar_utils.py: Calendar operations
    • program_snippet_exec_timers.py: Execution timing
    • countdown.py: Countdown functionality
  • arrays_and_lists/: Data structure operations

    • data_manipulation.py: Data handling
    • patterns.py: Pattern matching
    • conversions.py: Data conversion
    • maths.py: Mathematical operations
  • operative_systems/: System operations

    • System interaction utilities
    • Process management tools
  • audio_and_video/: Media handling

    • Media file operations
    • Format conversion
  • number_bases/: Number system operations

    • Base conversion utilities
  • sets_and_intervals/: Set operations

    • Interval handling
    • Set manipulation
  • dictionaries/: Dictionary operations

    • Dictionary manipulation tools

For detailed version history and changes, please refer to:

  • CHANGELOG.md: Comprehensive list of changes for each version
  • VERSIONING.md: Versioning policy and guidelines

Usage Examples

String Operations

from pygenutils.strings import string_handler, text_formatters

# String manipulation
modified_str = string_handler.modify_obj_specs("example.txt", "new")
formatted_text = text_formatters.print_format_string("Hello, {name}!", name="World")

Time Operations

from pygenutils.time_handling import date_and_time_utils, time_formatters

# Date calculations
next_week = date_and_time_utils.add_days_to_date("2024-03-20", 7)
formatted_time = time_formatters.format_time_string("14:30:00", "HH:MM")

Array Operations

from pygenutils.arrays_and_lists import data_manipulation, patterns

# Data manipulation
processed_data = data_manipulation.process_array([1, 2, 3, 4, 5])
matched_pattern = patterns.find_pattern([1, 2, 3, 1, 2, 3], [1, 2, 3])

Audio and Video Operations

from pygenutils.audio_and_video import audio_and_video_manipulation

# Merge audio and video files with custom encoding
audio_and_video_manipulation.merge_media_files(
    audio_files=["audio1.mp3", "audio2.mp3"],
    video_files=["video1.mp4", "video2.mp4"],
    video_codec="libx265",  # High-efficiency codec
    audio_codec="aac",      # Modern audio codec
    preset="slow",          # Better quality
    video_bitrate=2000      # 2000 kbps video bitrate
)

# Cut media files with encoding control
audio_and_video_manipulation.cut_media_files(
    media_inputs=["input.mp4"],
    start_time_list=["00:01:30"],
    end_time_list=["00:05:45"],
    video_codec="copy",     # No re-encoding for speed
    audio_codec="copy"      # Preserve original quality
)

Contributing

Contributions are welcome! Please feel free to submit a Pull Request. For major changes, please open an issue first to discuss what you would like to change.

License

This project is licensed under the MIT License - 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

pygenutils-16.2.4.tar.gz (85.4 kB view details)

Uploaded Source

Built Distribution

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

pygenutils-16.2.4-py3-none-any.whl (99.8 kB view details)

Uploaded Python 3

File details

Details for the file pygenutils-16.2.4.tar.gz.

File metadata

  • Download URL: pygenutils-16.2.4.tar.gz
  • Upload date:
  • Size: 85.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.11

File hashes

Hashes for pygenutils-16.2.4.tar.gz
Algorithm Hash digest
SHA256 588353bb15a90ddcc658f2a17f4f1c197b2a8704d54fca81c7c09f3162bcb255
MD5 3218ce51e8d104a25469a2b04202bef3
BLAKE2b-256 6eb551d1f0711e8f75a0ec7df1a67ac252fac40799e503ef24eef2848953feb2

See more details on using hashes here.

File details

Details for the file pygenutils-16.2.4-py3-none-any.whl.

File metadata

  • Download URL: pygenutils-16.2.4-py3-none-any.whl
  • Upload date:
  • Size: 99.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.11

File hashes

Hashes for pygenutils-16.2.4-py3-none-any.whl
Algorithm Hash digest
SHA256 9310c5e43b4630d4ec202931fa114ea79d57e3abd46192484387336cad325df0
MD5 be7dbcf8ed3d3bed8bfcb7930cde7ee6
BLAKE2b-256 f21a488c904d117069169a029484c1af487cef640a2a532ab21016e14c3a83c8

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