Metadata-Version: 2.1
Name: PyFastConfig
Version: 1.0
Summary: Fast creation and reading of files on Python with configurations.
Home-page: https://github.com/SuperZombi/PyFastConfig
Author: Super_Zombi
Author-email: super.zombi.yt@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# PyFastConfig
Fast creation and reading of files on Python with configurations.
Usage example:

<ul>
  <li><a href="#save">Save file</a></li>
  <li><a href="#load">Load file</a></li>
</ul>

```Python
import PyFastConfig as fc
```

## Save
```Python
#Declare any values
min_t = 25
max_t = 35
arr = [45, 'hello', 81.5]
```
Quick save:
```Python
array = [min_t, max_t, arr]
fc.save(array)
```
Result file (Config.txt):
```
min_t = int(25)
max_t = int(35)
arr = list([45, 'hello', 81.5])
```

### Optional options:

file: File name can be specified <br/>
mode: "w" - write, "a" - append <br/>
save_types: default - True <br/>
save_names: default - True <br/>

```Python
fc.save(array, file="config.txt", mode="w", save_types=True, save_names=True)
```

<br/>
<br/>

## Load
Quick load:
```Python
#import values (only if run_mode is not False)
#With copy namespace
exec(fc.load("config.txt"))
```
### Optional options:
run_mode: default - True <br/> Allows you to run (copy namespace) values from the library and continue working with them in the executable. <br/><br/>
return_only_names: default - False <br/>
return_only_values: default - False <br/>

```Python
fc.load(file, run_mode=True, return_only_names=False, return_only_values=False)
```

If you changed the parameters for saving additional information (save_types and save_names) in the SAVE function, you must disable run_mode when reading such a file.

```Python
#Returns an array (use if you have disabled any of the following options: save_types or save_names)
print(fc.load("config.txt", run_mode=False))
```


