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
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ from ruf_common import data, helper, lfs

The following modules are available:

- `aws`: Functions for interacting with AWS services
- `country_code_converter`: Functions for converting between country code formats
- `data`: Functions for managing and manipulating XML, JSON and YAML content
- `database`: Functions for interacting with a database. These functions operate the same for all supported databases
Expand Down
1 change: 0 additions & 1 deletion docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@ parsed = data.safe_load(content) # {'key': 'value'}

### File & Storage
- [lfs](lfs.md) - Local file system operations
- [aws](aws.md) - AWS S3 storage operations
- [database](database.md) - SQLite3 database with file caching

### Network
Expand Down
124 changes: 0 additions & 124 deletions docs/aws.md

This file was deleted.

3 changes: 1 addition & 2 deletions 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 = "1.1.0"
version = "2.0.0"
description = "Functions common to several of Brian's Python projects."
requires-python = ">=3.9"
license = "MIT"
Expand All @@ -25,7 +25,6 @@ dependencies = [
"geopy>=2.4.1",
"timezonefinder>=8.1.0",
"aiohttp>=3.12.15",
"boto3",
"requests>=2.31.0",
"pycountry>=22.3.5",
"html2text>=2020.1.16",
Expand Down
7 changes: 3 additions & 4 deletions ruf_common/__init__.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
from . import country_code_converter
from . import data
from . import database
from . import lfs
from . import helper
from . import html_to_markdown
from . import lfs
from . import network
from . import aws
from . import logging
from . import stats
from . import country_code_converter
from . import html_to_markdown
from . import timezone_lookup
from . import xml_formatter

Expand Down
206 changes: 0 additions & 206 deletions ruf_common/aws.py

This file was deleted.

5 changes: 0 additions & 5 deletions tests/test_imports.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,6 @@ def test_import_ruf_common(self):
import ruf_common
assert ruf_common is not None

def test_import_aws(self):
"""Test importing aws module."""
from ruf_common import aws
assert aws is not None

def test_import_country_code_converter(self):
"""Test importing country_code_converter module."""
from ruf_common import country_code_converter
Expand Down
Loading