Metadata-Version: 2.1
Name: simple-file-ops
Version: 0.0.3
Summary: Do simple operations for files easier
Home-page: UNKNOWN
Author: Cube Riser
Author-email: cuberiser@gmail.com
License: MIT
Keywords: python,file operations,files,fileops,file-operations
Platform: UNKNOWN
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: Unix
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Description-Content-Type: text/markdown
License-File: LICENSE

# Super simple file operations

Are you tired of doing this each time to just modify a part of a json file?
```python
with open(filepath, 'r') as file:
    fd = json.load(file)
fd[key] = 'new value'
with open(filepath, 'w') as file:
    json.dump(fd, file)
```
Don't worry! Now you can do it just like this
```python
fd = fileops.read_json(filepath)
fd[key] = 'new value'
fileops.write_json(filepath, fd)
```


