Metadata-Version: 2.1
Name: general-utils
Version: 0.1.4
Summary: A general package that has useful functionalities
Home-page: https://github.com/kashy750/python_package
Author: Kashyap Madariyil
Author-email: kashyapmadariyil@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.7
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Description-Content-Type: text/markdown
Requires-Dist: pika (>=1.1.0)
Requires-Dist: minio (>=5.0.10)
Requires-Dist: redis (>=3.4.1)
Requires-Dist: pandas (>=1.0.1)
Requires-Dist: pyarrow (>=0.17.0)
Requires-Dist: grequests (>=0.6.0)
Requires-Dist: requests (>=2.23.0)

# General Utilities

A General Utilities Library that provides a Python interface to many technologies

Available **Objects**:
1. RabbitMQ for queueing purpose
2. Redis as a secondary storage
3. MinIO for storing and retrieving files
4. API requests module

Available **Methods**:
1. Logging module

Kindly reffer the docstrings for further details reagriding the objects and methods :

```python
from general_utils import utils

help(utils)
##-- OR --##
print(utils.__doc__)
```



