Metadata-Version: 2.1
Name: EasyFileHandling
Version: 1.4.3
Summary: A simple and useful package for File Handling
Home-page: https://github.com/ProjectsWithPython/FileHandling
Author: Haider Ali
Author-email: ali075398@gmail.com
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/ProjectsWithPython/ProjectsIssues
Platform: UNKNOWN
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

### Package for File Handling

**Getting started**
```py
from EasyFileHandling.main import FileHandler

x = FileHandler('test.py', 'py')

print(x.get_file_content()) # This will print file content.

```
**Whats so special about package**


*This lets you use `os` module easily not all features but some of them.


**Whats New?**

*Howdy, new version `1.4.0` just dropped. You all be thinking whats new `byte` and `json` support added. We have also added `type` hints. Let me show you a example how json handler works*


**JsonHandler**


```py
from EasyFileHandling.main import JsonHandler
my_obj = [
    {'Sad': 100}
]
x = JsonHandler('sad.json')
x.write_to_json(obj)
```


*If you are having any issues let us know [Here](https://github.com/ProjectsWithPython/FileHandling/issues).*





