First load the data of the file using load_txt method you need to load data every time you make changes to it as it is using txt as its main source json_txt.load_txt(filename)
extract_keys method helps you extract all the keys from the txt file , and returns them all in the list json_txt.extract_keys(data).
extract_values method helps you extract all the values from the specific keys in sequence from the txt file , and returns them in the list. json_txt.extract_keys(data).
extract_data method helps you extract all the key value pairs from the txt file to dict json_txt.extract_data(filename)
edit_data method helps you edit key's value pair, it takes filename,key, and a value to change. jason_txt.edit_data(filename,key,value_to_change)
Helps you detect weather the var is int or not returns bool json_txt.number_detect(letter)
Helps you convert text array to the real array eg - "[23,23,353]"-> [23,23,353]. json_txt.generate_array(data)