This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import json | |
from os import path | |
from os import walk | |
from os import mkdir | |
class Folder_gen(object): | |
def __init__(self): | |
self.config_name = 'config.cfg' | |
self.config = {} |
NewerOlder