Metadata-Version: 2.1
Name: PyHFCF
Version: 0.0.2
Home-page: https://github.com/DevHollo/pyhfcf
Author: Hollo
Author-email: hollo1234567890e@gmail.com
Description-Content-Type: text/markdown

# Hollo's Fun Config File
Hollo's Fun Config File is a config file that I made because I was bored and it was fun to do!<br/>

.hfcf file example:
```properties
;; this is a comment
a=Hello World!
```

Python Module Usage:
```py
from hfcf import HFCF

conf = HFCF("DAT")

a = conf.get('a;1', "str")

print(a) # output: Hello World!
```

> Expaination 1:<br/>
`conf.get('attributeName;lineItsOn', "str")`<br/>
Say you want to get the `g` attribute on line 4. You would do:<br/>
`conf.get('g;4', "str")`<br/>

> Expaination 2:<br/>
`conf = HFCF("path/to/fileNameWithNoFileExtexsion")`<br/>
Say you want to use `assets/conf/geo.hfcf`. You would do:<br/>
`conf = HFCF("assets/conf/geo")`
