Differences between revisions 4 and 18 (spanning 14 versions)
Revision 4 as of 2005-09-14 06:41:01
Size: 4005
Editor: limodou
Comment:
Revision 18 as of 2005-12-09 15:16:43
Size: 7555
Editor: limodou
Comment:
Deletions are marked like this. Additions are marked like this.
Line 27: Line 27:
 * can save config items order
 * support multi data types: string, unicode, int, float, list/tuple, dict, etc, you can save them to or regain them from config file
 * can convert to dict '''new'''
Line 29: Line 32:
== Where can I download it? ==  == Where can I download it? ==
Line 31: Line 35:
 * Download it from here  * Download it from here attachment:dict4ini.py

== What's new? ==
 * 2005/12/09 Version 0.3
  * Adding dict() method, then you can change the DictIni object to dict type, so you can really use it as a dict alternative
 * 2005/10/16 Version 0.2
  * Saving config items order
  * Support float format
Line 35: Line 46:
=== Examples 1 Create a ini file === === Example 1 Create a ini file ===
Line 42: Line 53:
    x.common.list = [3, 'Hello', 'have spaces']     x.common.list = [3, 1.2, 'Hello', 'have spaces']
Line 48: Line 59:
list = 3,Hello,"have spaces", list = 3,1.2,Hello,"have spaces",
Line 54: Line 65:
In this time, the Dict4Ini support number, list, string, unicode data type, for others you should convert yourself. In this time, the Dict4Ini support int, float, list/tuple, string, unicode data type, for others you should convert yourself.
Line 69: Line 80:
[3, 'Hello', 'have spaces'] [3, 1.2, 'Hello', 'have spaces']
Line 72: Line 83:
The data is auto converted to its original type. Then you also can see, the order of options don't be holding. In many cases, it's not very seriously. The data is auto converted to its original type.
Line 101: Line 112:
=== Example 4 Saving comments in ini file ===

{{{#!python
    import dict4ini
    x = dict4ini.DictIni('test.ini')

    x.common._comment = 'This is a comment test.\nThis is the second line.'
    x.common.name = 'limodou'
    x.common.comment('name', 'Input your name')
    x.common.bool = 1
    x.common.comment('bool', 'Boot type')
    x.common.list = ['3', 'Hello', 'have spaces']
    x.common.comment('list', 'list testing')
    x.save()}}}

You can save comments in configuration also. Adding comments to section, you should using x.section._comment = 'comments'. Comments could be multi lines. Or you could use more commonly method, x.comment(). Just like x.comment('common', 'comments'). Add comments to options, you can only using comment() method, just like x.common.comment('list', 'comments').

The result of the ini file will be:

{{{# This is a comment test.
# This is the second line.
[common]
# Boot type
bool = 1
# list testing
list = "3",Hello,"have spaces",
# Input your name
name = limodou}}}

=== Example 5 Using unicode in ini file ===
==== Using default encoding ====
{{{#!python
#coding=utf-8
import dict4ini
x = dict4ini.DictIni('test.ini')
x.common.name = u'中文名'
x.save()}}}

Note: You should specify the coding used in the .py file. In this case is utf-8. Then I assign x.common.name with a unicode string. If you don't specify the encoding in create instance of the DictIni, the Dict4Ini will auto find the default encoding in the system in turns of:

 * local.getdefaultlocale()[1]
 * sys.getfilesystemencoding()
 * utf-8

The result of the ini file will be:

{{{[common]
name = u"中文名"
}}}

You should notice the file encoding will be utf-8, and the name's value is like python unicode syntax. For easiness, it doesn't support using unicode in comments.

==== Specifying encoding name ====
You can also specify the encoding of ini file, just like:

{{{#!python
#coding=utf-8
import dict4ini
x = dict4ini.DictIni('test.ini', encoding='gbk')
x.common.name = u'中文名'
x.save()}}}

It's easy to set an encoding of ini file.

=== Example 6 Using multi section ===

{{{#!python
import dict4ini
x = dict4ini.DictIni('test.ini')
x.common.settings.a = 1
x.common.settings.b = ["3", "hello"]
x.special.name = 'limodou'
x.special.homepage = 'http://www.donews.net/limodou'
x.save()}}}

You don't need to care if subsection is created, you need to just use it.

The result of the ini file will be:

{{{ [common/settings]
    a = 1
    b = "3",hello,


    [special]
    homepage = http://www.donews.net/limodou
    name = limodou}}}
Line 102: Line 201:

== FAQ ==

=== 1. Can I delete an option? ===

A: Yes. For example:
{{{#!python
import dict4ini
x = dict4ini.DictIni('test.ini')
del x.a
x.save()}}}

=== 2. How to use 'xxx.xxx' style option key? ===

A: Easy. Just using dict syntax, for example:

{{{#!python
x['common']['xxx.xxx'] = 'a'}}}

or

{{{#!python
x.common['xxx.xxx'] = 'a'}}}
Line 105: Line 227:

 * This is a neat piece of software, but why is it GPL licenced? -- cmkl.
 * Because I like GPL :) -- limodou

::-- limodou [DateTime(2005-09-14T06:31:19Z)] TableOfContents

1. Dict4Ini

This module is used to process ini format configuration file. It acts just like a dict, but you can also access it's sections and options with attribute syntax, just like x.test.

1.1. Why reinvent this module?

I used Config4Obj module for GoogleTalkBot software (confbot) to deal with configuration file. But I found its lacks on:

  • Only can access options as x['name']['o'], but not as x.name.o
  • You must create section first, then you can access its options. So if you didn't create x['name']={} section, so you cann't do x['name']['o'] = 3
  • The option's data can be saved as string format, but as read out again, Config4Obj cann't convert it to their original value type, so you must conver it yourself. I didn't tried validate module ships with Config4Obj.

  • Didn't support unicode

Above is only my opinions, so they may be not right.

So I decide to reinvent a new module to solve these lacks, I named it as Dict4Ini, it means you can access the config object just like a dict.

1.2. What's it features

  • as simple as others
  • you can access options according to dict syntax, just like x['name']['o'] = 1, x['name'].keys(), x['name'].values(), etc.
  • you also can access options according to attr syntax, just like x.name.o = 1, x.name.keys(), x.name.values(), etc. So the name must be Identifier or single word.
  • you can save comments in it(but this feature is not tested so much)
  • support multi level section, subsection name will just like: [firsub/secsub]
  • can save config items order
  • support multi data types: string, unicode, int, float, list/tuple, dict, etc, you can save them to or regain them from config file
  • can convert to dict new

  • It's a little module, just for my mind, so if you like, you could try it, but if you don't like, just skip it, that's ok

1.3. Where can I download it?

1.4. What's new?

  • 2005/12/09 Version 0.3
    • Adding dict() method, then you can change the DictIni object to dict type, so you can really use it as a dict alternative

  • 2005/10/16 Version 0.2
    • Saving config items order
    • Support float format

1.5. Examples

1.5.1. Example 1 Create a ini file

   1     import dict4ini
   2 
   3     x = dict4ini.DictIni('test.ini')
   4     x.common.name = 'limodou'
   5     x.common.bool = 1
   6     x.common.list = [3, 1.2, 'Hello', 'have spaces']
   7     x.save()

This example will save option to test.ini. As you can see, you needn't create section "common" at first, just think it's there, it's ok. The result of test.ini is:

{{{[common] list = 3,1.2,Hello,"have spaces", bool = 1 name = limodou}}}

And you can see, once the value has special chars, just like ' ', ',', '\"', etc, the string will be quoted by double quoter. But "Hello" is a single word, and it has not the special chars, so it won't be quoted. If the value is number, it'll be just like number literal, but if the value is number string, it'll be quoted by double quoter.

In this time, the Dict4Ini support int, float, list/tuple, string, unicode data type, for others you should convert yourself.

1.5.2. Example 2 Open an existed ini file

   1     import dict4ini
   2 
   3     x = dict4ini.DictIni('test.ini')
   4     print x.common.bool
   5     print x.common.list
   6     print x.common.name

So it's easy. The result will be:

Dict4Ini (last edited 2009-12-25 07:13:47 by localhost)