New Version of README Profile

This commit is contained in:
LucasVbr
2022-06-04 22:27:37 +02:00
parent ccb040e856
commit 3c2c333359
17 changed files with 191 additions and 438 deletions
+22
View File
@@ -0,0 +1,22 @@
# -*- coding: utf-8 -*-
"""
04/06/2022
"""
import json
__file__ = 'FileUtils.py'
__author__ = 'Lucas Vbr'
__version__ = '0.1'
def getJsonData(fileName: str) -> str:
with open(fileName) as file:
data = json.load(file)
return data
def setFileData(fileName: str, content: str):
with open(fileName, "w", encoding="utf8") as file:
file.write(content)