Metadata-Version: 2.1
Name: pycorelib
Version: 0.1.0
Summary: A lightweight Python utility library with CSV, JSON, config, async, string, dict, and numeric helpers.
Home-page: https://github.com/sumit333/pycorelib
Author: Sumit Kumar Sharma
Author-email: Sumit Kumar Sharma <sharmasumitk877@gmail.com>
Project-URL: Homepage, https://github.com/sumit333/pycorelib
Project-URL: Issues, https://github.com/sumit333/pycorelib/issues
Keywords: utilities,helpers,csv,json,config,python
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# pycorelib

A lightweight Python utility library 🚀 for everyday tasks:
- CSV parsing
- JSON safe load/dump
- Config loader (YAML)
- Async helpers
- String case converters
- File system utils
- Dictionary deep ops
- Numeric utilities
- Timer context manager

## Install
```bash
pip install pycorelib

from pycorelib import CSVReader, JSONX

print(CSVReader.read("sample.csv"))
print(JSONX.safe_load('{"a":1}'))


---

## **5. Add a License**
MIT is most common. Create a `LICENSE` file:

```txt
MIT License

Copyright (c) 2025 Sumit kumar sharma

Permission is hereby granted, free of charge, to any person obtaining a copy.
