Skip to main content

Wrapper to ConfigParser

Project description

# pywrapper-config
Wrapper to ConfigParser

tests.conf file:
```
[time]
pidfile_timeout = 5

[server]
ip = "127.0.0.1"
port = "8080"
```

tests2.conf file:
```
[time]
sleep = 3

[paths]
null = /dev/null
stdout = /dev/tty
stderr = /dev/tty

[conex]
port = 9080
```



How to use pywraper-config:
```
import pywrapper_config


config = pywrapper_config.Config("./tests.conf")
#Show sections
print("Sections: {0} ".format(config.show_sections()))
#Show server section
print("Items server section: {0} ".format(config.show_item_section("server")))
#Show ip server
print("IP: {0}".format(config.show_value_item("server","ip")))
#Show config file
print("Config file: {0}".format(config.cnffile))
#Change config file
config.cnffile = "./conf/tests2.py"
print("Config file: {0}".format(config.cnffile))
#Show sections from new config file
print("Secciones: {0}".format(config.show_sections()))

```

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

pywrapper_config-0.3.2.zip (15.5 kB view hashes)

Uploaded Source

pywrapper_config-0.3.2.tar.gz (14.2 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page