Metadata-Version: 2.4
Name: fastfingertips
Version: 0.1.2
Summary: Personal Python utility library
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# fastfingertips
python utility library

[![PyPI version](https://img.shields.io/pypi/v/fastfingertips?color=blue)](https://pypi.org/project/fastfingertips/)
[![License](https://img.shields.io/pypi/l/fastfingertips?color=blue)](https://pypi.org/project/fastfingertips/)
[![Build Status](https://github.com/fastfingertips/fastfingertips-pypi/actions/workflows/pypi-publish.yml/badge.svg)](https://github.com/fastfingertips/fastfingertips-pypi/actions)

A collection of personal Python utility functions to reduce code repetition.

## Installation

```bash
pip install fastfingertips
```

## Modules

- string_utils: Text processing, extraction and validation.
- url_utils: URL parsing and path manipulation.
- datetime_utils: Date and time handling.
- terminal_utils: Command-line input and terminal helpers.

## Usage

```python
from fastfingertips.string_utils import extract_number_from_text
from fastfingertips.terminal_utils import get_input
```
