Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

## Overview

A collection of Python utility modules for common tasks including file operations, data format conversions, database interactions, AWS services, and more.
A collection of Python utility modules for common tasks including file operations, data format conversions, database interactions, and more.

Feedback welcome via [GitHub issues](https://github.com/brian-ruf/ruf-common-python/issues). While I will try to address issues in a timely manner, I only intend to invest in feature requests that align with my project work. Feel free to contribute backward compatible enhancements.

Expand Down
1 change: 0 additions & 1 deletion docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ pip install ruf-common

| Module | Description |
|--------|-------------|
| [aws](aws.md) | AWS S3 bucket operations (connect, read, write, check) |
| [country_code_converter](country_code_converter.md) | Convert country names to ISO 3166-1 alpha-2 codes |
| [data](data.md) | XML, JSON, YAML parsing, XPath queries, format detection |
| [database](database.md) | Database class with SQLite3 support, file caching |
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "ruf-common"
version = "2.0.0"
version = "2.0.1"
description = "Functions common to several of Brian's Python projects."
requires-python = ">=3.9"
license = "MIT"
Expand Down
1 change: 0 additions & 1 deletion ruf_common/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
"lfs",
"helper",
"network",
"aws",
"logging",
"stats",
"country_code_converter",
Expand Down
Loading