Metadata-Version: 2.1
Name: geeeks
Version: 0.0.3
Summary: A package to make your life easy.
Author: yashpra1010 (Yash Prajapati)
Author-email: yashpra1010@gmail.com
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
License-File: LICENSE

# Geeeks - A simple and helpful package
Install our package using
```
pip install geeeks
```

## String Functions
1. Reverse String
```
import geeeks
strFunc = geeeks.StringFunctions()

my_string = "AnyRandomString"
rev = strFunc.reverse_str(my_string)

print(rev)
# Output: gnirtSmodnaRynA
```
