Metadata-Version: 2.4
Name: shining_pebbles
Version: 0.5.2
Summary: A collection of utility functions that enable treating a file system of multiple files as a pseudo-database, facilitating maintenance and operations across the large-scale file system. My shining pebbles.
Home-page: https://github.com/nailen1/shining_pebbles
Author: June Young Park
Author-email: juneyoungpaak@gmail.com
Project-URL: Source, https://github.com/nailen1/shining_pebbles
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: numpy>=1.21.0
Requires-Dist: pandas
Requires-Dist: python-dateutil
Requires-Dist: pybind11>=2.12
Requires-Dist: aws-s3-controller>=0.7.3
Requires-Dist: openpyxl>=3.1.5
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: project-url
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# Shining Pebbles

## Description

A collection of utility functions that enable treating a file system of multiple files as a pseudo-database, facilitating maintenance and operations across the large-scale file system.

## Installation

```bash
pip install shining_pebbles
```

## Use Cases

- RPA projects @ LIFE Asset Management

## Contact

- **June Young Park**, AI Management Dev Team Lead at LIFE Asset Management
- Email: [juneyoungpaak@gmail.com](mailto:juneyoungpaak@gmail.com)
- **Life Asset Management**, A hedge fund and private equity management firm headquartered in the International Finance Center, Yeouido, South Korea, dedicated to enhancing corporate value and shareholder value.

## Version History

### v0.5.2
- Fixed import path bug in `date_extracting_utils.py`

### v0.5.1
- Restructured project layout for better organization
  - Moved file management utilities to `pseudo_database` package
  - Added new `load_utils.py` for DataFrame loading operations
  - Split file utilities into specialized modules

### v0.5.0
- Added new module `delete_utils.py` for file deletion operations
  - `delete_file`: Delete a single file
  - `delete_old_files`: Delete old files while keeping N newest files
  - `delete_old_files_in_file_folder_by_regex`: Delete old files in a folder matching regex pattern
