Creating and writing to files is simple with the ChiPY module. its just 1 line of code!
The syntax for creating files:
chipy.cfile("name.txt")
This will create a file.
chipy.wfile("name.txt", "text")
this will add text to the file.
Reading and deleting files with ChiPY.
chipy.rfile("name.txt")
This will read the contents of a file.
chipy.dfile("name.txt")
This will delete the file specified
Heres some demo code to run in Python:
import chipy-chipy as chipy
chipy.dfile("demo.txt") # just in case theres already a file named demo.txt
chipy.cfile("demo.txt")
chipy.wfile("demo.txt", Hi! this is some demo code of ChiPY!")
chipy.rfile("demo.txt")