Skip to main content

Python configuration library

Project description

lynx
====

Simple python configuration library and format. The format is very similar to YAML with the enhancment of sections.

##Installation

Install the ``lynx`` package with [pip](<https://pypi.python.org/pypi/lynx>):

pip install lynx





##Example use

Configuration example:
```
# section example
section {
# fields
field1: myfield1 value
field2: Another field value

# lists
mylist: [5, mystr, value, 8]
}


# Another section
section2 {

# sub section example
my_section {
name: lynx
}

# sections can have same name.
my_section {
# multiline fields
Library description:|
Lynx is a python
Configuration library
supporting many features
including multiline fields!$%$!%#@
Yay!

myfloat: 5.3
}
}

```

Load the configuration:
```
>>> import lynx

# Load file
>>> with open("config.conf", "r") as fp:
... config = lynx.load(fp)

# Get the first section
>>> config[0].name()
'section'
>>> config[0].fields()
{'field2': 'Another field value', 'field1': 'myfield1 value', 'mylist': [5, 'mystr', 'value', 8]}

# Get sub sections
>>> config[1].sub_sections()
[<lynx.Section object at 0x7f4ab28dfdd0>, <lynx.Section object at 0x7f4ab28dfe10>]
>>> config[1].sub_sections()[0].name()
'my_section'
```



## Features

Features include:
* Sections
* Sub sections
* Lists
* Multiline fields
* Load & dump
* Types:
* Strings
* Integers
* Floats

Project details


Download files

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

Source Distribution

lynx-0.3.tar.gz (5.4 kB view details)

Uploaded Source

File details

Details for the file lynx-0.3.tar.gz.

File metadata

  • Download URL: lynx-0.3.tar.gz
  • Upload date:
  • Size: 5.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for lynx-0.3.tar.gz
Algorithm Hash digest
SHA256 43b15698c2103dbc324df39c7ad34cc3a398e6f4116a9fdbd9b8428e803a3bc1
MD5 8900bf9197303f50ccd0ea60a02902ba
BLAKE2b-256 3ac3fbf68180f37747415c7469e84f9f608d9c3aaeeac5427d3d4ef7e79000a7

See more details on using hashes here.

Supported by

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