Howdy all, we have decided to add AsyncFileHandler for asynchronous python codes. Now you can do all those append, write and read asynchronouly. REMEMBER THIS IS A BETA
How do I use it?
Simply import this and get started
from EasyFileHandling.beta.main import AsyncFileHandler
Howdy, new version 1.5.0 just dropped. You all be thinking whats new?
We haved added ImageHandler
which writes on image and applies filters using PIL
package. Lets see how it works
ImageHandler
from EasyFileHandling import ImageHandler
x = ImageHandler('nice.jpg')
x.filter_image('blur')
x.draw_text(100, 50, "Hello World",50, rgb=(0, 0, 0), font="arial.ttf") # rgb and font are default params.
# it will make a imagehandlerimages folder with this file in it.
We made custom errors so you get a better explaination of the exception. Like Python package we have made JsonHandler which will only work for JSON files.