1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004
|
.. _config_doc:
==================================
Reading and Writing Config Files
==================================
----------------------------------------
ConfigObj 5 Introduction and Reference
----------------------------------------
:Authors: Michael Foord, Nicola Larosa, Rob Dennis, Eli Courtwright
:Version: ConfigObj 5.0.7
:Date: 2023/01/17
:PyPI Entry: `ConfigObj on PyPI <http://pypi.python.org/pypi/configobj/>`_
:Homepage: `Github Page`_
:License: `BSD License`_
:Support: `Mailing List`_
.. _Mailing List: http://lists.sourceforge.net/lists/listinfo/configobj-develop
.. _Github Page: https://github.com/DiffSK/configobj
.. meta::
:description: ConfigObj - a Python module for easy reading and writing of
config files.
:keywords: python, script, module, config, configuration, data, persistence,
developer, configparser
.. contents:: ConfigObj Manual
.. note::
The best introduction to working with ConfigObj, including the powerful configuration validation system,
is the article:
* `An Introduction to ConfigObj <https://web.archive.org/web/20200503085339/http://www.voidspace.org.uk/python/articles/configobj.shtml>`_
Introduction
============
**ConfigObj** is a simple but powerful config file reader and writer: an *ini
file round tripper*. Its main feature is that it is very easy to use, with a
straightforward programmer's interface and a simple syntax for config files.
It has lots of other features though :
* Nested sections (subsections), to any level
* List values
* Multiple line values
* String interpolation (substitution)
* Integrated with a powerful validation system
- including automatic type checking/conversion
- repeated sections
- and allowing default values
* When writing out config files, ConfigObj preserves all comments and the order of members and sections
* Many useful methods and options for working with configuration files (like the 'reload' method)
* Full Unicode support
For support and bug reports please use the ConfigObj `Github Page`_.
Downloading
===========
The current version is **5.0.7**, dated January 2023. ConfigObj 5 is
stable and mature. We still expect to pick up a few bugs along the way though, particularly with respect to Python 3 compatibility [#]_.
We recommend downloading and installing using pip:
pip install configobj
Development Version
-------------------
It's possible to get the latest *development version* of ConfigObj
from the Git Repository maintained on the `Github Page`_.
ConfigObj in the Real World
===========================
**ConfigObj** is widely used. Projects using it include:
* `Bazaar <http://bazaar-ng.org>`_.
Bazaar is a Python distributed {acro;VCS;Version Control System}.
ConfigObj is used to read ``bazaar.conf`` and ``branches.conf``.
* `Chandler <http://chandler.osafoundation.org/>`_
A Python and `wxPython <http://www.wxpython.org>`_
Personal Information Manager, being developed by the
`OSAFoundation <http://www.osafoundation.org/>`_.
* `matplotlib <http://matplotlib.sourceforge.net/>`_
A 2D plotting library.
* `IPython <http://ipython.scipy.org/moin/>`_
IPython is an enhanced interactive Python shell. IPython uses ConfigObj in a module called 'TConfig' that combines it with enthought `Traits <http://code.enthought.com/traits/>`_: `tconfig <http://ipython.scipy.org/ipython/ipython/browser/ipython/branches/saw/sandbox/tconfig>`_.
* `Elisa - the Fluendo Mediacenter <http://elisa.fluendo.com/>`_
Elisa is an open source cross-platform media center solution designed to be simple for people not particularly familiar with computers.
Getting Started
===============
The outstanding feature of using ConfigObj is simplicity. Most functions can be
performed with single line commands.
Reading a Config File
---------------------
The normal way to read a config file, is to give ConfigObj the filename :
.. code-block:: python
from configobj import ConfigObj
config = ConfigObj(filename)
You can also pass the config file in as a list of lines, or a ``StringIO``
instance, so it doesn't matter where your config data comes from.
You can then access members of your config file as a dictionary. Subsections
will also be dictionaries.
.. code-block:: python
from configobj import ConfigObj
config = ConfigObj(filename)
#
value1 = config['keyword1']
value2 = config['keyword2']
#
section1 = config['section1']
value3 = section1['keyword3']
value4 = section1['keyword4']
#
# you could also write
value3 = config['section1']['keyword3']
value4 = config['section1']['keyword4']
Writing a Config File
---------------------
Creating a new config file is just as easy as reading one. You can specify a
filename when you create the ConfigObj, or do it later [#]_.
If you *don't* set a filename, then the ``write`` method will return a list of
lines instead of writing to file. See the write_ method for more details.
Here we show creating an empty ConfigObj, setting a filename and some values,
and then writing to file :
.. code-block:: python
from configobj import ConfigObj
config = ConfigObj()
config.filename = filename
#
config['keyword1'] = value1
config['keyword2'] = value2
#
config['section1'] = {}
config['section1']['keyword3'] = value3
config['section1']['keyword4'] = value4
#
section2 = {
'keyword5': value5,
'keyword6': value6,
'sub-section': {
'keyword7': value7
}
}
config['section2'] = section2
#
config['section3'] = {}
config['section3']['keyword 8'] = [value8, value9, value10]
config['section3']['keyword 9'] = [value11, value12, value13]
#
config.write()
.. caution::
Keywords and section names can only be strings [#]_. Attempting to set
anything else will raise a ``ValueError``.
See `String Interpolation and List Values`_ for an important note on
using lists in combination with `String Interpolation`_.
Config Files
------------
The config files that ConfigObj will read and write are based on the 'INI'
format. This means it will read and write files created for ``ConfigParser``
[#]_.
Keywords and values are separated by an ``'='``, and section markers are
between square brackets. Keywords, values, and section names can be surrounded
by single or double quotes. Indentation is not significant, but can be
preserved.
Subsections are indicated by repeating the square brackets in the section
marker. You nest levels by using more brackets.
You can have list values by separating items with a comma, and values spanning
multiple lines by using triple quotes (single or double).
For full details on all these see `the config file format`_. Here's an example
to illustrate::
# This is the 'initial_comment'
# Which may be several lines
keyword1 = value1
'keyword 2' = 'value 2'
[ "section 1" ]
# This comment goes with keyword 3
keyword 3 = value 3
'keyword 4' = value4, value 5, 'value 6'
[[ sub-section ]] # an inline comment
# sub-section is inside "section 1"
'keyword 5' = 'value 7'
'keyword 6' = '''A multiline value,
that spans more than one line :-)
The line breaks are included in the value.'''
[[[ sub-sub-section ]]]
# sub-sub-section is *in* 'sub-section'
# which is in 'section 1'
'keyword 7' = 'value 8'
[section 2] # an inline comment
keyword8 = "value 9"
keyword9 = value10 # an inline comment
# The 'final_comment'
# Which also may be several lines
ConfigObj specifications
========================
.. code-block:: python
config = ConfigObj(infile=None, options=None, configspec=None, encoding=None,
interpolation=True, raise_errors=False, list_values=True,
create_empty=False, file_error=False, stringify=True,
indent_type=None, default_encoding=None, unrepr=False,
write_empty_values=False, _inspec=False)
Many of the keyword arguments are available as attributes after the config file has been
parsed.
.. note::
New in ConfigObj 4.7.0: Instantiating ConfigObj with
an ``options`` dictionary is now deprecated. To modify code that used to
do this simply unpack the dictionary in the constructor call:
.. code-block:: python
config = ConfigObj(filename, **options)
ConfigObj takes the following arguments (with the default values shown) :
* infile: ``None``
You don't need to specify an infile. If you omit it, an empty ConfigObj will be
created. ``infile`` *can* be :
* Nothing. In which case the ``filename`` attribute of your ConfigObj will be
``None``. You can set a filename at any time.
* A filename. What happens if the file doesn't already exist is determined by
the options ``file_error`` and ``create_empty``. The filename will be
preserved as the ``filename`` attribute. This can be changed at any time.
* A list of lines. Any trailing newlines will be removed from the lines. The
``filename`` attribute of your ConfigObj will be ``None``.
* A ``StringIO`` instance or file object, or any object with a ``read`` method.
The ``filename`` attribute of your ConfigObj will be ``None`` [#]_.
* A dictionary. You can initialise a ConfigObj from a dictionary [#]_. The
``filename`` attribute of your ConfigObj will be ``None``. All keys must be
strings. In this case, the order of values and sections is arbitrary.
* 'raise_errors': ``False``
When parsing, it is possible that the config file will be badly formed. The
default is to parse the whole file and raise a single error at the end. You
can set ``raise_errors = True`` to have errors raised immediately. See the
exceptions_ section for more details.
Altering this value after initial parsing has no effect.
* 'list_values': ``True``
If ``True`` (the default) then list values are possible. If ``False``, the
values are not parsed for lists.
If ``list_values = False`` then single line values are not quoted or
unquoted when reading and writing.
Changing this value affects whether single line values will be quoted or
not when writing.
* 'create_empty': ``False``
If this value is ``True`` and the file specified by ``infile`` doesn't
exist, ConfigObj will create an empty file. This can be a useful test that
the filename makes sense: an impossible filename will cause an error.
Altering this value after initial parsing has no effect.
* 'file_error': ``False``
If this value is ``True`` and the file specified by ``infile`` doesn't
exist, ConfigObj will raise an ``IOError``. This error will be raised whenever
an attempt to load the ``infile`` occurs, either in the constructor or using
the reload method.
* 'interpolation': ``True``
Whether string interpolation is switched on or not. It is on (``True``) by
default.
You can set this attribute to change whether string interpolation is done
when values are fetched. See the `String Interpolation`_ section for more details.
New in ConfigObj 4.7.0: Interpolation will also be done in list values.
* 'configspec': ``None``
If you want to use the validation system, you supply a configspec. This is
effectively a type of config file that specifies a check for each member.
This check can be used to do type conversion as well as check that the
value is within your required parameters.
You provide a configspec in the same way as you do the initial file: a
filename, or list of lines, etc. See the validation_ section for full
details on how to use the system.
When parsed, every section has a ``configspec`` with a dictionary of
configspec checks for *that section*.
* 'stringify': ``True``
If you use the validation scheme, it can do type checking *and* conversion
for you. This means you may want to set members to integers, or other
non-string values.
If 'stringify' is set to ``True`` (default) then non-string values will
be converted to strings when you write the config file. The validation_
process converts values from strings to the required type.
If 'stringify' is set to ``False``, attempting to set a member to a
non-string value [#]_ will raise a ``TypeError`` (no type conversion is
done by validation).
* 'indent_type': ``' '``
Indentation is not significant; it can however be present in the input and
output config. Any combination of tabs and spaces may be used: the string
will be repeated for each level of indentation. Typical values are: ``''``
(no indentation), ``' '`` (indentation with four spaces, the default),
``'\t'`` (indentation with one tab).
If this option is not specified, and the ConfigObj is initialised with a
dictionary, the indentation used in the output is the default one, that is,
four spaces.
If this option is not specified, and the ConfigObj is initialised with a
list of lines or a file, the indentation used in the first indented line is
selected and used in all output lines. If no input line is indented, no
output line will be either.
If this option *is* specified, the option value is used in the output
config, overriding the type of indentation in the input config (if any).
* 'encoding': ``None``
By default **ConfigObj** does not decode the file/strings you pass it into
Unicode [#]_. If you want your config file as Unicode (keys and members)
you need to provide an encoding to decode the file with. This encoding will
also be used to encode the config file when writing.
You can change the encoding attribute at any time.
Any characters in your strings that can't be encoded with the specified
encoding will raise a ``UnicodeEncodeError``.
.. note::
``UTF16`` encoded files will automatically be detected and decoded,
even if ``encoding`` is ``None``.
This is because it is a 16-bit encoding, and ConfigObj will mangle it
(split characters on byte boundaries) if it parses it without decoding.
* 'default_encoding': ``None``
When using the ``write`` method, **ConfigObj** uses the ``encoding``
attribute to encode the Unicode strings. If any members (or keys) have
been set as byte strings instead of Unicode, these must first be decoded
to Unicode before outputting in the specified encoding.
``default_encoding``, if specified, is the encoding used to decode byte
strings in the **ConfigObj** before writing. If this is ``None``, then
the Python default encoding (``sys.defaultencoding`` - usually ASCII) is
used.
For most Western European users, a value of ``latin-1`` is sensible.
``default_encoding`` is *only* used if an ``encoding`` is specified.
Any characters in byte-strings that can't be decoded using the
``default_encoding`` will raise a ``UnicodeDecodeError``.
* 'unrepr': ``False``
The ``unrepr`` option reads and writes files in a different mode. This
allows you to store and retrieve the basic Python data-types using config
files.
This uses Python syntax for lists and quoting. See `unrepr mode`_ for the
full details.
* 'write_empty_values': ``False``
If ``write_empty_values`` is ``True``, empty strings are written as
empty values. See `Empty Values`_ for more details.
* '_inspec': ``False``
Used internally by ConfigObj when parsing configspec files. If you are
creating a ConfigObj instance from a configspec file you must pass True
for this argument as well as ``list_values=False``.
Methods
-------
The ConfigObj is a subclass of an object called ``Section``, which is itself a
subclass of ``dict``, the builtin dictionary type. This means it also has
**all** the normal dictionary methods.
In addition, the following `Section Methods`_ may be useful :
* 'restore_default'
* 'restore_defaults'
* 'walk'
* 'merge'
* 'dict'
* 'as_bool'
* 'as_float'
* 'as_int'
* 'as_list'
Read about Sections_ for details of all the methods.
.. hint::
The *merge* method of sections is a recursive update.
You can use this to merge sections, or even whole ConfigObjs, into each
other.
You would typically use this to create a default ConfigObj and then merge
in user settings. This way users only need to specify values that are
different from the default. You can use configspecs and validation to
achieve the same thing of course.
The public methods available on ConfigObj are :
* 'write'
* 'validate'
* 'reset'
* 'reload'
write
~~~~~
.. code-block:: python
write(file_object=None)
This method writes the current ConfigObj and takes a single, optional argument
[#]_.
If you pass in a file like object to the ``write`` method, the config file will
be written to this. (The only method of this object that is used is its
``write`` method, so a ``StringIO`` instance, or any other file like object
will work.)
Otherwise, the behaviour of this method depends on the ``filename`` attribute
of the ConfigObj.
``filename``
ConfigObj will write the configuration to the file specified.
``None``
``write`` returns a list of lines. (Not ``'\n'`` terminated)
First the 'initial_comment' is written, then the config file, followed by the
'final_comment'. Comment lines and inline comments are written with each
key/value.
validate
~~~~~~~~
.. code-block:: python
validate(validator, preserve_errors=False, copy=False)
.. code-block:: python
# filename is the config file
# filename2 is the configspec
# (which could also be hardcoded into your program)
config = ConfigObj(filename, configspec=filename2)
#
from validate import Validator
val = Validator()
test = config.validate(val)
if test == True:
print 'Succeeded.'
The validate method uses the :validate: module to do the
validation.
This method validates the ConfigObj against the configspec. By doing type
conversion as well it can abstract away the config file altogether and present
the config *data* to your application (in the types it expects it to be).
If the ``configspec`` attribute of the ConfigObj is ``None``, it raises a
``ValueError``.
If the stringify_ attribute is set, this process will convert values to the
type defined in the configspec.
The validate method uses checks specified in the configspec and defined in the
``Validator`` object. It is very easy to extend.
The configspec looks like the config file, but instead of the value, you
specify the check (and any default value). See the validation_ section for
details.
.. hint::
The system of configspecs can seem confusing at first, but is actually
quite simple and powerful. The best guide to them is this article on
ConfigObj:
* `An Introduction to ConfigObj`_
The ``copy`` parameter fills in missing values from the configspec (default
values), *without* marking the values as defaults. It also causes comments to
be copied from the configspec into the config file. This allows you to use a
configspec to create default config files. (Normally default values aren't
written out by the ``write`` method.)
As of ConfigObj 4.3.0 you can also pass in a ConfigObj instance as your
configspec. This is especially useful if you need to specify the encoding of
your configspec file. When you read your configspec file, you *must* specify
``list_values=False``. If you need to support hashes inside the configspec
values then you must also pass in ``_inspec=True``. This is because configspec
files actually use a different syntax to config files and inline comment support
must be switched off to correctly read configspec files with hashes in the values.
.. code-block:: python
from configobj import ConfigObj
configspec = ConfigObj(configspecfilename, encoding='UTF8',
list_values=False, _inspec=True)
config = ConfigObj(filename, configspec=configspec)
Return Value
############
By default, the validate method either returns ``True`` (everything passed)
or a dictionary of ``True`` / ``False`` representing pass/fail. The dictionary
follows the structure of the ConfigObj.
If a whole section passes then it is replaced with the value ``True``. If a
whole section fails, then it is replaced with the value ``False``.
If a value is missing, and there is no default in the check, then the check
automatically fails.
The ``validate`` method takes an optional keyword argument ``preserve_errors``.
If you set this to ``True``, instead of getting ``False`` for failed checks you
get the actual error object from the **validate** module. This usually contains
useful information about why the check failed.
See the `flatten_errors`_ function for how to turn your results dictionary into
a useful list of error messages.
Even if ``preserve_errors`` is ``True``, missing keys or sections will still be
represented by a ``False`` in the results dictionary.
Mentioning Default Values
#########################
In the check in your configspec, you can specify a default to be used - by
using the ``default`` keyword. E.g. ::
key1 = integer(0, 30, default=15)
key2 = integer(default=15)
key3 = boolean(default=True)
key4 = option('Hello', 'Goodbye', 'Not Today', default='Not Today')
If the configspec check supplies a default and the value is missing in the
config, then the default will be set in your ConfigObj. (It is still passed to
the ``Validator`` so that type conversion can be done: this means the default
value must still pass the check.)
ConfigObj keeps a record of which values come from defaults, using the
``defaults`` attribute of sections_. Any key in this list isn't written out by
the ``write`` method. If a key is set from outside (even to the same value)
then it is removed from the ``defaults`` list.
.. note:
Even if all the keys in a section are in the defaults list, the section
marker is still written out.
There is additionally a special case default value of ``None``. If you set the
default value to ``None`` and the value is missing, the value will always be
set to ``None``. As the other checks don't return ``None`` (unless you
implement your own that do), you can tell that this value came from a default
value (and was missing from the config file). It allows an easy way of
implementing optional values. Simply check (and ignore) members that are set
to ``None``.
.. note::
If stringify_ is ``False`` then ``default=None`` returns ``''`` instead of
``None``. This is because setting a value to a non-string raises an error
if stringify is unset.
The default value can be a list. See `List Values`_ for the way to do this.
Writing invalid default values is a *guaranteed* way of confusing your users.
Default values **must** pass the check.
Mentioning Repeated Sections and Values
#######################################
In the configspec it is possible to cause *every* sub-section in a section to
be validated using the same configspec. You do this with a section in the
configspec called ``__many__``. Every sub-section in that section has the
``__many__`` configspec applied to it (without you having to explicitly name
them in advance).
Your ``__many__`` section can have nested subsections, which can also include
``__many__`` type sections.
You can also specify that all values should be validated using the same configspec,
by having a member with the name ``__many__``. If you want to use repeated values
along with repeated sections then you can call one of them ``___many___`` (triple
underscores).
Sections with repeated sections or values can also have specifically named sub-sections
or values. The ``__many__`` configspec will only be used to validate entries that don't
have an explicit configspec.
See `Repeated Sections`_ for examples.
Mentioning SimpleVal
####################
If you just want to check if all members are present, then you can use the
``SimpleVal`` object that comes with ConfigObj. It only fails members if they
are missing.
Write a configspec that has all the members you want to check for, but set
every section to ``''``.
.. code-block:: python
val = SimpleVal()
test = config.validate(val)
if test is True:
print 'Succeeded.'
Mentioning copy Mode
####################
As discussed in `Mentioning Default Values`_, you can use a configspec to
supply default values. These are marked in the ConfigObj instance as defaults,
and *not* written out by the ``write`` mode. This means that your users only
need to supply values that are different from the defaults.
This can be inconvenient if you *do* want to write out the default values,
for example to write out a default config file.
If you set ``copy=True`` when you call validate, then no values are marked as
defaults. In addition, all comments from the configspec are copied into
your ConfigObj instance. You can then call ``write`` to create your config
file.
There is a limitation with this. In order to allow `String Interpolation`_ to work
within configspecs, ``DEFAULT`` sections are not processed by
validation; even in copy mode.
reload
~~~~~~
If a ConfigObj instance was loaded from the filesystem, then this method will reload it. It
will also reuse any configspec you supplied at instantiation (including reloading it from
the filesystem if you passed it in as a filename).
If the ConfigObj does not have a filename attribute pointing to a file, then a ``ReloadError``
will be raised.
reset
~~~~~
This method takes no arguments and doesn't return anything. It restores a ConfigObj
instance to a freshly created state.
Attributes
----------
A ConfigObj has the following attributes :
* indent_type
* interpolation
* stringify
* BOM
* initial_comment
* final_comment
* list_values
* encoding
* default_encoding
* unrepr
* write_empty_values
* newlines
.. note::
This doesn't include *comments*, *inline_comments*, *defaults*, or
*configspec*. These are actually attributes of Sections_.
It also has the following attributes as a result of parsing. They correspond to
options when the ConfigObj was created, but changing them has no effect.
* raise_errors
* create_empty
* file_error
interpolation
~~~~~~~~~~~~~
ConfigObj can perform string interpolation in a *similar* way to
``ConfigParser``. See the `String Interpolation`_ section for full details.
If ``interpolation`` is set to ``False``, then interpolation is *not* done when
you fetch values.
stringify
~~~~~~~~~
If this attribute is set (``True``) then the validate_ method changes the
values in the ConfigObj. These are turned back into strings when write_ is
called.
If stringify is unset (``False``) then attempting to set a value to a non
string (or a list of strings) will raise a ``TypeError``.
BOM
~~~
If the initial config file *started* with the UTF8 Unicode signature (known
slightly incorrectly as the BOM - Byte Order Mark), or the UTF16 BOM, then
this attribute is set to ``True``. Otherwise it is ``False``.
If it is set to ``True`` when ``write`` is called then, if ``encoding`` is set
to ``None`` *or* to ``utf_8`` (and variants) a UTF BOM will be written.
For UTF16 encodings, a BOM is *always* written.
initial_comment
~~~~~~~~~~~~~~~
This is a list of lines. If the ConfigObj is created from an existing file, it
will contain any lines of comments before the start of the members.
If you create a new ConfigObj, this will be an empty list.
The write method puts these lines before it starts writing out the members.
final_comment
~~~~~~~~~~~~~
This is a list of lines. If the ConfigObj is created from an existing file, it
will contain any lines of comments after the last member.
If you create a new ConfigObj, this will be an empty list.
The ``write`` method puts these lines after it finishes writing out the
members.
list_values
~~~~~~~~~~~
This attribute is ``True`` or ``False``. If set to ``False`` then values are
not parsed for list values. In addition single line values are not unquoted.
This allows you to do your own parsing of values. It exists primarily to
support the reading of the configspec_ - but has other use cases.
For example you could use the ``LineParser`` from the
`listquote module <http://www.voidspace.org.uk/python/listquote.html#lineparser>`_
to read values for nested lists.
Single line values aren't quoted when writing - but multiline values are
handled as normal.
.. caution::
Because values aren't quoted, leading or trailing whitespace can be lost. This behaviour was changed in version 4.0.1. Prior to this, single line values might have been quoted; even with ``list_values=False``. This means that files written by earlier versions of ConfigObj *could* now be incompatible and need the quotes removing by hand.
encoding
~~~~~~~~
This is the encoding used to encode the output, when you call ``write``. It
must be a valid encoding `recognised by Python <http://docs.python.org/lib/standard-encodings.html>`_.
If this value is ``None`` then no encoding is done when ``write`` is called.
default_encoding
~~~~~~~~~~~~~~~~
If encoding is set, any byte-strings in your ConfigObj instance (keys or
members) will first be decoded to Unicode using the encoding specified by the
``default_encoding`` attribute. This ensures that the output is in the encoding
specified.
If this value is ``None`` then ``sys.defaultencoding`` is used instead.
unrepr
~~~~~~
Another boolean value. If this is set, then ``repr(value)`` is used to write
values. This writes values in a slightly different way to the normal ConfigObj
file syntax.
This preserves basic Python data-types when read back in. See `unrepr mode`_
for more details.
write_empty_values
~~~~~~~~~~~~~~~~~~
Also boolean. If set, values that are an empty string (``''``) are written as
empty values. See `Empty Values`_ for more details.
newlines
~~~~~~~~
When a config file is read, ConfigObj records the type of newline separators in the
file and uses this separator when writing. It defaults to ``None``, and ConfigObj
uses the system default (``os.linesep``) if write is called without newlines having
been set.
The Config File Format
======================
You saw an example config file in the `Config Files`_ section. Here is a fuller
specification of the config files used and created by ConfigObj.
The basic pattern for keywords is::
# comment line
# comment line
keyword = value # inline comment
Both keyword and value can optionally be surrounded in quotes. The equals sign
is the only valid divider.
Values can have comments on the lines above them, and an inline comment after
them. This, of course, is optional. See the comments_ section for details.
If a keyword or value starts or ends with whitespace, or contains a quote mark
or comma, then it should be surrounded by quotes. Quotes are not necessary if
whitespace is surrounded by non-whitespace.
Values can also be lists. Lists are comma separated. You indicate a single
member list by a trailing comma. An empty list is shown by a single comma::
keyword1 = value1, value2, value3
keyword2 = value1, # a single member list
keyword3 = , # an empty list
Values that contain line breaks (multi-line values) can be surrounded by triple
quotes. These can also be used if a value contains both types of quotes. List
members cannot be surrounded by triple quotes::
keyword1 = ''' A multi line value
on several
lines''' # with a comment
keyword2 = '''I won't be "afraid".'''
#
keyword3 = """ A multi line value
on several
lines""" # with a comment
keyword4 = """I won't be "afraid"."""
.. warning::
There is no way of safely quoting values that contain both types of triple
quotes.
A line that starts with a '#', possibly preceded by whitespace, is a comment.
New sections are indicated by a section marker line. That is the section name
in square brackets. Whitespace around the section name is ignored. The name can
be quoted with single or double quotes. The marker can have comments before it
and an inline comment after it::
# The First Section
[ section name 1 ] # first section
keyword1 = value1
# The Second Section
[ "section name 2" ] # second section
keyword2 = value2
Any subsections (sections that are *inside* the current section) are
designated by repeating the square brackets before and after the section name.
The number of square brackets represents the nesting level of the sub-section.
Square brackets may be separated by whitespace; such whitespace, however, will
not be present in the output config written by the ``write`` method.
Indentation is not significant, but can be preserved. See the description of
the ``indent_type`` option, in the `ConfigObj specifications`_ chapter, for the
details.
A *NestingError* will be raised if the number of the opening and the closing
brackets in a section marker is not the same, or if a sub-section's nesting
level is greater than the nesting level of it parent plus one.
In the outer section, single values can only appear before any sub-section.
Otherwise they will belong to the sub-section immediately before them::
# initial comment
keyword1 = value1
keyword2 = value2
[section 1]
keyword1 = value1
keyword2 = value2
[[sub-section]]
# this is in section 1
keyword1 = value1
keyword2 = value2
[[[nested section]]]
# this is in sub section
keyword1 = value1
keyword2 = value2
[[sub-section2]]
# this is in section 1 again
keyword1 = value1
keyword2 = value2
[[sub-section3]]
# this is also in section 1, indentation is misleading here
keyword1 = value1
keyword2 = value2
# final comment
When parsed, the above config file produces the following data structure:
.. code-block:: python
ConfigObj({
'keyword1': 'value1',
'keyword2': 'value2',
'section 1': {
'keyword1': 'value1',
'keyword2': 'value2',
'sub-section': {
'keyword1': 'value1',
'keyword2': 'value2',
'nested section': {
'keyword1': 'value1',
'keyword2': 'value2',
},
},
'sub-section2': {
'keyword1': 'value1',
'keyword2': 'value2',
},
'sub-section3': {
'keyword1': 'value1',
'keyword2': 'value2',
},
},
})
Sections are ordered: note how the structure of the resulting ConfigObj is in
the same order as the original file.
.. note::
In ConfigObj 4.3.0 *empty values* became valid syntax. They are read as the
empty string. There is also an option/attribute (``write_empty_values``) to
allow the writing of these.
This is mainly to support 'legacy' config files, written from other
applications. This is documented under `Empty Values`_.
`unrepr mode`_ introduces *another* syntax variation, used for storing
basic Python datatypes in config files.
Sections
========
Every section in a ConfigObj has certain properties. The ConfigObj itself also
has these properties, because it too is a section (sometimes called the *root
section*).
``Section`` is a subclass of the standard new-class dictionary, therefore it
has **all** the methods of a normal dictionary. This means you can ``update``
and ``clear`` sections.
.. note::
You create a new section by assigning a member to be a dictionary.
The new ``Section`` is created *from* the dictionary, but isn't the same
thing as the dictionary. (So references to the dictionary you use to create
the section *aren't* references to the new section).
Note the following.
.. code-block:: python
config = ConfigObj()
vals = {'key1': 'value 1',
'key2': 'value 2'
}
config['vals'] = vals
config['vals'] == vals
True
config['vals'] is vals
False
If you now change ``vals``, the changes won't be reflected in ``config['vals']``.
A section is ordered, following its ``scalars`` and ``sections``
attributes documented below. This means that the following dictionary
attributes return their results in order.
* '__iter__'
More commonly known as ``for member in section:``.
* '__repr__' and '__str__'
Any time you print or display the ConfigObj.
* 'items'
* 'iteritems'
* 'iterkeys'
* 'itervalues'
* 'keys'
* 'popitem'
* 'values'
Section Attributes
------------------
* main
A reference to the main ConfigObj.
* parent
A reference to the 'parent' section, the section that this section is a
member of.
On the ConfigObj this attribute is a reference to itself. You can use this
to walk up the sections, stopping when ``section.parent is section``.
* depth
The nesting level of the current section.
If you create a new ConfigObj and add sections, 1 will be added to the
depth level between sections.
* defaults
This attribute is a list of scalars that came from default values. Values
that came from defaults aren't written out by the ``write`` method.
Setting any of these values in the section removes them from the defaults
list.
* default_values
This attribute is a dictionary mapping keys to the default values for the
keys. By default it is an empty dictionary and is populated when you
validate the ConfigObj.
* scalars, sections
These attributes are normal lists, representing the order that members,
single values and subsections appear in the section. The order will either
be the order of the original config file, *or* the order that you added
members.
The order of members in this lists is the order that ``write`` creates in
the config file. The ``scalars`` list is output before the ``sections``
list.
Adding or removing members also alters these lists. You can manipulate the
lists directly to alter the order of members.
.. warning::
If you alter the ``scalars``, ``sections``, or ``defaults`` attributes
so that they no longer reflect the contents of the section, you will
break your ConfigObj.
See also the ``rename`` method.
* comments
This is a dictionary of comments associated with each member. Each entry is
a list of lines. These lines are written out before the member.
* inline_comments
This is *another* dictionary of comments associated with each member. Each
entry is a string that is put inline with the member.
* configspec
The configspec attribute is a dictionary mapping scalars to *checks*. A
check defines the expected type and possibly the allowed values for a
member.
The configspec has the same format as a config file, but instead of values
it has a specification for the value (which may include a default value).
The validate_ method uses it to check the config file makes sense. If a
configspec is passed in when the ConfigObj is created, then it is parsed
and broken up to become the ``configspec`` attribute of each section.
If you didn't pass in a configspec, this attribute will be ``None`` on the
root section (the main ConfigObj).
You can set the configspec attribute directly on a section.
See the validation_ section for full details of how to write configspecs.
* extra_values
By default an empty list. After validation_ this is populated with any members
of the section that don't appear in the configspec (i.e. they are additional
values). Rather than accessing this directly it may be more convenient to get
all the extra values in a config file using the get_extra_values_ function.
New in ConfigObj 4.7.0.
Section Methods
---------------
* **dict**
This method takes no arguments. It returns a deep copy of the section as a
dictionary. All subsections will also be dictionaries, and list values will
be copies, rather than references to the original [#]_.
* **rename**
``rename(oldkey, newkey)``
This method renames a key, without affecting its position in the sequence.
* **merge**
``merge(indict)``
This method is a *recursive update* method. It allows you to merge two
config files together.
You would typically use this to create a default ConfigObj and then merge
in user settings. This way users only need to specify values that are
different from the default.
For example :
.. code-block:: python
# def_cfg contains your default config settings
# user_cfg contains the user settings
cfg = ConfigObj(def_cfg)
usr = ConfigObj(user_cfg)
#
cfg.merge(usr)
"""
cfg now contains a combination of the default settings and the user
settings.
The user settings will have overwritten any of the default ones.
"""
* **walk**
This method can be used to transform values and names. See `walking a
section`_ for examples and explanation.
* **as_bool**
``as_bool(key)``
Returns ``True`` if the key contains a string that represents ``True``, or
is the ``True`` object.
Returns ``False`` if the key contains a string that represents ``False``,
or is the ``False`` object.
Raises a ``ValueError`` if the key contains anything else.
Strings that represent ``True`` are (not case sensitive)::
true, yes, on, 1
Strings that represent ``False`` are::
false, no, off, 0
* **as_int**
``as_int(key)``
This returns the value contained in the specified key as an integer.
It raises a ``ValueError`` if the conversion can't be done.
* **as_float**
``as_float(key)``
This returns the value contained in the specified key as a float.
It raises a ``ValueError`` if the conversion can't be done.
* **as_list**
``as_list(key)``
This returns the value contained in the specified key as a list.
If it isn't a list it will be wrapped as a list so that you can
guarantee the returned value will be a list.
* **restore_default**
``restore_default(key)``
Restore (and return) the default value for the specified key.
This method will only work for a ConfigObj that was created
with a configspec and has been validated.
If there is no default value for this key, ``KeyError`` is raised.
* **restore_defaults**
``restore_defaults()``
Recursively restore default values to all members
that have them.
This method will only work for a ConfigObj that was created
with a configspec and has been validated.
It doesn't delete or modify entries without default values.
Walking a Section
-----------------
.. note::
The walk method allows you to call a function on every member/name.
.. code-block:: python
walk(function, raise_errors=True,
call_on_sections=False, **keywargs)
``walk`` is a method of the ``Section`` object. This means it is also a method
of ConfigObj.
It walks through every member and calls a function on the keyword and value. It
walks recursively through subsections.
It returns a dictionary of all the computed values.
If the function raises an exception, the default is to propagate the error, and
stop. If ``raise_errors=False`` then it sets the return value for that keyword
to ``False`` instead, and continues. This is similar to the way validation_
works.
Your function receives the arguments ``(section, key)``. The current value is
then ``section[key]`` [#]_. Any unrecognised keyword arguments you pass to
walk, are passed on to the function.
Normally ``walk`` just recurses into subsections. If you are transforming (or
checking) names as well as values, then you want to be able to change the names
of sections. In this case set ``call_on_sections`` to ``True``. Now, on
encountering a sub-section, *first* the function is called for the *whole*
sub-section, and *then* it recurses into it's members. This means your function
must be able to handle receiving dictionaries as well as strings and lists.
If you are using the return value from ``walk`` *and* ``call_on_sections``,
note that walk discards the return value when it calls your function.
.. caution::
You can use ``walk`` to transform the names of members of a section
but you mustn't add or delete members.
Examples
--------
You can use this for transforming all values in your ConfigObj. For example
you might like the nested lists from ConfigObj 3. This was provided by the
listquote_ module. You could switch off the parsing for list values
(``list_values=False``) and use listquote to parse every value.
Another thing you might want to do is use the Python escape codes in your
values. You might be *used* to using ``\n`` for line feed and ``\t`` for tab.
Obviously we'd need to decode strings that come from the config file (using the
escape codes). Before writing out we'll need to put the escape codes back in
encode.
As an example we'll write a function to use with walk, that encodes or decodes
values using the ``string-escape`` codec.
The function has to take each value and set the new value. As a bonus we'll
create one function that will do decode *or* encode depending on a keyword
argument.
We don't want to work with section names, we're only transforming values, so
we can leave ``call_on_sections`` as ``False``. This means the two datatypes we
have to handle are strings and lists, we can ignore everything else. (We'll
treat tuples as lists as well).
We're not using the return values, so it doesn't need to return anything, just
change the values if appropriate.
.. code-block:: python
def string_escape(section, key, encode=False):
"""
A function to encode or decode using the 'string-escape' codec.
To be passed to the walk method of a ConfigObj.
By default it decodes.
To encode, pass in the keyword argument ``encode=True``.
"""
val = section[key]
# is it a type we can work with
# NOTE: for platforms where Python > 2.2
# you can use basestring instead of (str, unicode)
if not isinstance(val, (str, unicode, list, tuple)):
# no !
return
elif isinstance(val, (str, unicode)):
# it's a string !
if not encode:
section[key] = val.decode('string-escape')
else:
section[key] = val.encode('string-escape')
else:
# it must be a list or tuple!
# we'll be lazy and create a new list
newval = []
# we'll check every member of the list
for entry in val:
if isinstance(entry, (str, unicode)):
if not encode:
newval.append(entry.decode('string-escape'))
else:
newval.append(entry.encode('string-escape'))
else:
newval.append(entry)
# done !
section[key] = newval
# assume we have a ConfigObj called ``config``
#
# To decode
config.walk(string_escape)
#
# To encode.
# Because ``walk`` doesn't recognise the ``encode`` argument
# it passes it to our function.
config.walk(string_escape, encode=True)
Here's a simple example of using ``walk`` to transform names and values. One
usecase of this would be to create a *standard* config file with placeholders
for section and keynames. You can then use walk to create new config files
and change values and member names :
.. code-block:: python
# We use 'XXXX' as a placeholder
config = '''
XXXXkey1 = XXXXvalue1
XXXXkey2 = XXXXvalue2
XXXXkey3 = XXXXvalue3
[XXXXsection1]
XXXXkey1 = XXXXvalue1
XXXXkey2 = XXXXvalue2
XXXXkey3 = XXXXvalue3
[XXXXsection2]
XXXXkey1 = XXXXvalue1
XXXXkey2 = XXXXvalue2
XXXXkey3 = XXXXvalue3
[[XXXXsection1]]
XXXXkey1 = XXXXvalue1
XXXXkey2 = XXXXvalue2
XXXXkey3 = XXXXvalue3
'''.splitlines()
cfg = ConfigObj(config)
#
def transform(section, key):
val = section[key]
newkey = key.replace('XXXX', 'CLIENT1')
section.rename(key, newkey)
if isinstance(val, (tuple, list, dict)):
pass
else:
val = val.replace('XXXX', 'CLIENT1')
section[newkey] = val
#
cfg.walk(transform, call_on_sections=True)
print cfg
ConfigObj({'CLIENT1key1': 'CLIENT1value1', 'CLIENT1key2': 'CLIENT1value2',
'CLIENT1key3': 'CLIENT1value3',
'CLIENT1section1': {'CLIENT1key1': 'CLIENT1value1',
'CLIENT1key2': 'CLIENT1value2', 'CLIENT1key3': 'CLIENT1value3'},
'CLIENT1section2': {'CLIENT1key1': 'CLIENT1value1',
'CLIENT1key2': 'CLIENT1value2', 'CLIENT1key3': 'CLIENT1value3',
'CLIENT1section1': {'CLIENT1key1': 'CLIENT1value1',
'CLIENT1key2': 'CLIENT1value2', 'CLIENT1key3': 'CLIENT1value3'}}})
Exceptions
==========
There are several places where ConfigObj may raise exceptions (other than
because of bugs).
1) If a configspec filename you pass in doesn't exist, or a config file
filename doesn't exist *and* ``file_error=True``, an ``IOError`` will be
raised.
2) If you try to set a non-string key, or a non string value when
``stringify=False``, a ``TypeError`` will be raised.
3) A badly built config file will cause parsing errors.
4) A parsing error can also occur when reading a configspec.
5) In string interpolation you can specify a value that doesn't exist, or
create circular references (recursion).
Number 5 (which is actually two different types of exceptions) is documented
in `String Interpolation`_.
*This* section is about errors raised during parsing.
The base error class is ``ConfigObjError``. This is a subclass of
``SyntaxError``, so you can trap for ``SyntaxError`` without needing to
directly import any of the ConfigObj exceptions.
The following other exceptions are defined (all deriving from
``ConfigObjError``) :
* ``NestingError``
This error indicates either a mismatch in the brackets in a section marker,
or an excessive level of nesting.
* ``ParseError``
This error indicates that a line is badly written. It is neither a valid
``key = value`` line, nor a valid section marker line, nor a comment line.
* ``DuplicateError``
The keyword or section specified already exists.
* ``ConfigspecError``
An error occurred whilst parsing a configspec.
* ``UnreprError``
An error occurred when parsing a value in `unrepr mode`_.
* ``ReloadError``
``reload`` was called on a ConfigObj instance that doesn't have a valid
filename attribute.
When parsing a configspec, ConfigObj will stop on the first error it
encounters. It will raise a ``ConfigspecError``. This will have an ``error``
attribute, which is the actual error that was raised.
Behaviour when parsing a config file depends on the option ``raise_errors``.
If ConfigObj encounters an error while parsing a config file:
If ``raise_errors=True`` then ConfigObj will raise the appropriate error
and parsing will stop.
If ``raise_errors=False`` (the default) then parsing will continue to the
end and *all* errors will be collected.
If ``raise_errors`` is False and multiple errors are found a ``ConfigObjError``
is raised. The error raised has a ``config`` attribute, which is the parts of
the ConfigObj that parsed successfully. It also has an attribute ``errors``,
which is a list of *all* the errors raised. Each entry in the list is an
instance of the appropriate error type. Each one has the following attributes
(useful for delivering a sensible error message to your user) :
* ``line``: the original line that caused the error.
* ``line_number``: its number in the config file.
* ``message``: the error message that accompanied the error.
If only one error is found, then that error is re-raised. The error still has
the ``config`` and ``errors`` attributes. This means that your error handling
code can be the same whether one error is raised in parsing , or several.
It also means that in the most common case (a single error) a useful error
message will be raised.
.. note::
One wrongly written line could break the basic structure of your config
file. This could cause every line after it to flag an error, so having a
list of all the lines that caused errors may not be as useful as it sounds.
Validation
==========
.. hint::
The system of configspecs can seem confusing at first, but is actually
quite simple and powerful. The best reference is my article on ConfigObj:
* `An Introduction to ConfigObj`_
Validation is done through a combination of the configspec_ and a ``Validator``
object. For this you need *validate.py* [#]_. See downloading_ if you don't
have a copy.
Validation can perform two different operations :
1) Check that a value meets a specification. For example, check that a value
is an integer between one and six, or is a choice from a specific set of
options.
2) It can convert the value into the type required. For example, if one of
your values is a port number, validation will turn it into an integer for
you.
So validation can act as a transparent layer between the datatypes of your
application configuration (boolean, integers, floats, etc) and the text format
of your config file.
configspec
----------
The ``validate`` method checks members against an entry in the configspec. Your
configspec therefore resembles your config file, with a check for every member.
In order to perform validation you need a ``Validator`` object. This has
several useful built-in check functions. You can also create your own custom
functions and register them with your Validator object.
Each check is the name of one of these functions, including any parameters and
keyword arguments. The configspecs look like function calls, and they map to
function calls.
The basic datatypes that an un-extended Validator can test for are :
* boolean values (True and False)
* integers (including minimum and maximum values)
* floats (including min and max)
* strings (including min and max length)
* IP addresses (v4 only)
It can also handle lists of these types and restrict a value to being one from
a set of options.
An example configspec is going to look something like::
port = integer(0, 100)
user = string(max=25)
mode = option('quiet', 'loud', 'silent')
You can specify default values, and also have the same configspec applied to
several sections. This is called `repeated sections`_.
For full details on writing configspecs, please refer to the `validate.py
documentation`_.
.. important::
Your configspec is read by ConfigObj in the same way as a config file.
That means you can do interpolation *within* your configspec.
In order to allow this, checks in the 'DEFAULT' section (of the root level
of your configspec) are *not* used.
If you want to use a configspec *without* interpolation being done in it
you can create your configspec manually and switch off interpolation:
.. code-block:: python
from configobj import ConfigObj
configspec = ConfigObj(spec_filename, interpolation=False, list_values=False,
_inspec=True)
conf = ConfigObj(config_filename, configspec=configspec)
If you need to specify the encoding of your configspec, then you can pass in a
ConfigObj instance as your configspec. When you read your configspec file, you
*must* specify ``list_values=False``. If you need to support hashes in
configspec values then you must also pass in ``_inspec=True``.
.. code-block:: python
from configobj import ConfigObj
configspec = ConfigObj(configspecfilename, encoding='UTF8',
list_values=False, _inspec=True)
config = ConfigObj(filename, configspec=configspec)
.. _validate.py documentation: :ref:`validate_doc`
Type Conversion
---------------
By default, validation does type conversion. This means that if you specify
``integer`` as the check, then calling validate_ will actually change the value
to an integer (so long as the check succeeds).
It also means that when you call the write_ method, the value will be converted
back into a string using the ``str`` function.
To switch this off, and leave values as strings after validation, you need to
set the stringify_ attribute to ``False``. If this is the case, attempting to
set a value to a non-string will raise an error.
Default Values
--------------
You can set a default value in your check. If the value is missing from the
config file then this value will be used instead. This means that your user
only has to supply values that differ from the defaults.
If you *don't* supply a default then for a value to be missing is an error,
and this will show in the `return value`_ from validate.
Additionally you can set the default to be ``None``. This means the value will
be set to ``None`` (the object) *whichever check is used*. (It will be set to
``''`` rather than ``None`` if stringify_ is ``False``). You can use this
to easily implement optional values in your config files. ::
port = integer(0, 100, default=80)
user = string(max=25, default=0)
mode = option('quiet', 'loud', 'silent', default='loud')
nick = string(default=None)
.. note::
Because the default goes through type conversion, it also has to pass the
check.
Note that ``default=None`` is case sensitive.
List Values
~~~~~~~~~~~
It's possible that you will want to specify a list as a default value. To avoid
confusing syntax with commas and quotes you use a list constructor to specify
that keyword arguments are lists. This includes the ``default`` value. This
makes checks look something like::
checkname(default=list('val1', 'val2', 'val3'))
This works with all keyword arguments, but is most useful for default values.
Repeated Sections
-----------------
Repeated sections are a way of specifying a configspec for a section that
should be applied to all unspecified subsections in the same section.
The easiest way of explaining this is to give an example. Suppose you have a
config file that describes a dog. That dog has various attributes, but it can
also have many fleas. You don't know in advance how many fleas there will be,
or what they will be called, but you want each flea validated against the same
configspec.
We can define a section called *fleas*. We want every flea in that section
(every sub-section) to have the same configspec applied to it. We do this by
defining a single section called ``__many__``. ::
[dog]
name = string(default=Rover)
age = float(0, 99, default=0)
[[fleas]]
[[[__many__]]]
bloodsucker = boolean(default=True)
children = integer(default=10000)
size = option(small, tiny, micro, default=tiny)
Every flea on our dog will now be validated using the ``__many__`` configspec.
``__many__`` sections can have sub-sections, including their own ``__many__``
sub-sections. Defaults work in the normal way in repeated sections.
Repeated Values
---------------
As well as using ``__many__`` to validate unspecified sections you can use it to validate values. For
example, to specify that all values in a section should be integers::
[section]
__many__ = integer
If you want to use repeated values alongside repeated sections you can call one ``__many__`` and the
other ``___many___`` (with three underscores).
Copy Mode
---------
Because you can specify default values in your configspec, you can use
ConfigObj to write out default config files for your application.
However, normally values supplied from a default in a configspec are *not*
written out by the ``write`` method.
To do this, you need to specify ``copy=True`` when you call validate. As well
as not marking values as default, all the comments in the configspec file
will be copied into your ConfigObj instance.
.. code-block:: python
from configobj import ConfigObj
from validate import Validator
vdt = Validator()
config = ConfigObj(configspec='default.ini')
config.filename = 'new_default.ini'
config.validate(vdt, copy=True)
config.write()
If you need to support hashes in the configspec values then you must create
it with ``_inspec=True``. This has the side effect of switching off the parsing
of inline comments, meaning that they won't be copied into the new config file.
(ConfigObj syntax is slightly different from configspec syntax and the parser
can't support both inline comments and hashes in configspec values.)
Validation and Interpolation
----------------------------
String interpolation and validation don't play well together. When validation
changes type it sets the value. If the value uses interpolation, then the
interpolation reference would normally be overwritten. Calling ``write`` would
then use the absolute value and the interpolation reference would be lost.
As a compromise - if the value is unchanged by validation then it is not reset.
This means strings that pass through validation unmodified will not be
overwritten. If validation changes type - the value has to be overwritten, and
any interpolation references are lost.
Extra Values
------------
After validation the ``extra_values`` member of every section that is listed in
the configspec will be populated with the names of members that are in the
config file but not in the configspec.
If you are reporting configuration errors to your user this information can be
useful, for example some missing entries may be due to misspelt entries that
appear as extra values.
See the get_extra_values_ function
New in ConfigObj 4.7.0.
SimpleVal
---------
You may not need a full validation process, but still want to check if all the
expected values are present.
Provided as part of the ConfigObj module is the ``SimpleVal`` object. This has
a dummy ``test`` method that always passes.
The only reason a test will fail is if the value is missing. The return value
from ``validate`` will either be ``True``, meaning all present, or a dictionary
with ``False`` for all missing values/sections.
To use it, you still need to pass in a valid configspec when you create the
ConfigObj, but just set all the values to ``''``. Then create an instance of
``SimpleVal`` and pass it to the ``validate`` method.
As a trivial example if you had the following config file::
# config file for an application
port = 80
protocol = http
domain = voidspace
top_level_domain = org.uk
You would write the following configspec::
port = ''
protocol = ''
domain = ''
top_level_domain = ''
.. code-block:: python
config = Configobj(filename, configspec=configspec)
val = SimpleVal()
test = config.validate(val)
if test == True:
print 'All values present.'
elif test == False:
print 'No values present!'
else:
for entry in test:
if test[entry] == False:
print '"%s" missing.' % entry
Empty values
============
Many config files from other applications allow empty values. As of version
4.3.0, ConfigObj will read these as an empty string.
A new option/attribute has been added (``write_empty_values``) to allow
ConfigObj to write empty strings as empty values.
.. code-block:: python
from configobj import ConfigObj
cfg = '''
key =
key2 = # a comment
'''.splitlines()
config = ConfigObj(cfg)
print config
ConfigObj({'key': '', 'key2': ''})
config.write_empty_values = True
for line in config.write():
print line
key =
key2 = # a comment
unrepr mode
===========
The ``unrepr`` option allows you to store and retrieve the basic Python
data-types using config files. It has to use a slightly different syntax to
normal ConfigObj files. Unsurprisingly it uses Python syntax.
This means that lists are different (they are surrounded by square brackets),
and strings *must* be quoted.
The types that ``unrepr`` can work with are :
| strings, lists tuples
| None, True, False
| dictionaries, integers, floats
| longs and complex numbers
You can't store classes, types or instances.
``unrepr`` uses ``repr(object)`` to write out values, so it currently *doesn't*
check that you are writing valid objects. If you attempt to read an unsupported
value, ConfigObj will raise a ``configobj.UnknownType`` exception.
Values that are triple quoted cased. The triple quotes are removed *before*
converting. This means that you can use triple quotes to write dictionaries
over several lines in your config files. They won't be written like this
though.
If you are writing config files by hand, for use with ``unrepr``, you should
be aware of the following differences from normal ConfigObj syntax :
| List : ``['A List', 'With', 'Strings']``
| Strings : ``"Must be quoted."``
| Backslash : ``"The backslash must be escaped \\"``
These all follow normal Python syntax.
In unrepr mode *inline comments* are not saved. This is because lines are
parsed using the `compiler package <http://docs.python.org/lib/compiler.html>`_
which discards comments.
String Interpolation
====================
.. note::
String interpolation can slow down (slightly) the fetching of values
from your config object. If you aren't using interpolation and it
is performance critical then create your instance with
``interpolation=False``.
ConfigObj allows string interpolation *similar* to the way ``ConfigParser``
or ``string.Template`` work. The value of the ``interpolation`` attribute
determines which style of interpolation you want to use. Valid values are
"ConfigParser" or "Template" (case-insensitive, so "configparser" and
"template" will also work). For backwards compatibility reasons, the value
``True`` is also a valid value for the ``interpolation`` attribute, and
will select ``ConfigParser``-style interpolation. At some undetermined point
in the future, that default *may* change to ``Template``-style interpolation.
For ``ConfigParser``-style interpolation, you specify a value to be
substituted by including ``%(name)s`` in the value.
For ``Template``-style interpolation, you specify a value to be substituted
by including ``${cl}name{cr}`` in the value. Alternately, if 'name' is a valid
Python identifier (i.e., is composed of nothing but alphanumeric characters,
plus the underscore character), then the braces are optional and the value
can be written as ``$name``.
Note that ``ConfigParser``-style interpolation and ``Template``-style
interpolation are mutually exclusive; you cannot have a configuration file
that's a mix of one or the other. Pick one and stick to it. ``Template``-style
interpolation is simpler to read and write by hand, and is recommended if
you don't have a particular reason to use ``ConfigParser``-style.
Interpolation checks first the current section to see if ``name`` is the key
to a value. ('name' is case sensitive).
If it doesn't find it, next it checks the 'DEFAULT' sub-section of the current
section.
If it still doesn't find it, it moves on to check the parent section and the
parent section's 'DEFAULT' subsection, and so on all the way up to the main
section.
If the value specified isn't found in any of these locations, then a
``MissingInterpolationOption`` error is raised (a subclass of
``ConfigObjError``).
If it is found then the returned value is also checked for substitutions. This
allows you to make up compound values (for example directory paths) that use
more than one default value. It also means it's possible to create circular
references. If there are any circular references which would cause an infinite
interpolation loop, an ``InterpolationLoopError`` is raised.
Both of these errors are subclasses of ``InterpolationError``, which is a
subclass of ``ConfigObjError``.
String interpolation and validation don't play well together. This is because
validation overwrites values - and so may erase the interpolation references.
See `Validation and Interpolation`_. (This can only happen if validation
has to *change* the value).
New in ConfigObj 4.7.0: String interpolation is now done in members of list
values.
String Interpolation and List Values
------------------------------------
Since version 4.7 string interpolation is done on string members of list values.
If interpolation changes any members of the list then what you get back is a
*copy* of the list rather than the original list.
This makes fetching list values slightly slower when interpolation is on, it
also means that if you mutate the list changes won't be reflected in the
original list:
.. code-block:: python
>>> c = ConfigObj()
>>> c['foo'] = 'boo'
>>> c['bar'] = ['%(foo)s']
>>> c['bar']
['boo']
>>> c['bar'].append('fish')
>>> c['bar']
['boo']
Instead of mutating the list you must create a new list and reassign it.
Comments
========
Any line that starts with a '#', possibly preceded by whitespace, is a comment.
If a config file starts with comments then these are preserved as the
initial_comment_.
If a config file ends with comments then these are preserved as the
final_comment_.
Every key or section marker may have lines of comments immediately above it.
These are saved as the ``comments`` attribute of the section. Each member is a
list of lines.
You can also have a comment inline with a value. These are saved as the
``inline_comments`` attribute of the section, with one entry per member of the
section.
Subsections (section markers in the config file) can also have comments.
See `Section Attributes`_ for more on these attributes.
These comments are all written back out by the ``write`` method.
flatten_errors
==============
.. code-block:: python
flatten_errors(cfg, res)
Validation_ is a powerful way of checking that the values supplied by the user
make sense.
The validate_ method returns a results dictionary that represents pass or fail
for each value. This doesn't give you any information about *why* the check
failed.
``flatten_errors`` is an example function that turns a results dictionary into
a flat list, that only contains values that *failed*.
``cfg`` is the ConfigObj instance being checked, ``res`` is the results
dictionary returned by ``validate``.
It returns a list of keys that failed. Each member of the list is a tuple::
([list of sections...], key, result)
If ``validate`` was called with ``preserve_errors=False`` (the default)
then ``result`` will always be ``False``.
*list of sections* is a flattened list of sections that the key was found
in.
If the section was missing then key will be ``None``.
If the value (or section) was missing then ``result`` will be ``False``.
If ``validate`` was called with ``preserve_errors=True`` and a value
was present, but failed the check, then ``result`` will be the exception
object returned. You can use this as a string that describes the failure.
For example :
*The value "3" is of the wrong type*.
Example Usage
-------------
The output from ``flatten_errors`` is a list of tuples.
Here is an example of how you could present this information to the user.
.. code-block:: python
vtor = validate.Validator()
# ini is your config file - cs is the configspec
cfg = ConfigObj(ini, configspec=cs)
res = cfg.validate(vtor, preserve_errors=True)
for entry in flatten_errors(cfg, res):
# each entry is a tuple
section_list, key, error = entry
if key is not None:
section_list.append(key)
else:
section_list.append('[missing section]')
section_string = ', '.join(section_list)
if error == False:
error = 'Missing value or section.'
print section_string, ' = ', error
get_extra_values
================
.. code-block:: python
get_extra_values(conf)
New in ConfigObj 4.7.0.
Find all the values and sections not in the configspec from a validated
ConfigObj.
``get_extra_values`` returns a list of tuples where each tuple represents
either an extra section, or an extra value.
The tuples contain two values, a tuple representing the section the value
is in and the name of the extra values. For extra values in the top level
section the first member will be an empty tuple. For values in the 'foo'
section the first member will be ``('foo',)``. For members in the 'bar'
subsection of the 'foo' section the first member will be ``('foo', 'bar')``.
Extra sections will only have one entry. Values and subsections inside
an extra section aren't listed separately.
NOTE: If you call ``get_extra_values`` on a ConfigObj instance that hasn't
been validated it will return an empty list.
Example Usage
-------------
The output from ``get_extra_values`` is a list of tuples.
Here is an example of how you could present this information to the user.
.. code-block:: python
vtor = validate.Validator()
# ini is your config file - cs is the configspec
cfg = ConfigObj(ini, configspec=cs)
cfg.validate(vtor, preserve_errors=True)
for sections, name in get_extra_values(cfg):
# this code gets the extra values themselves
the_section = cfg
for section in sections:
the_section = cfg[section]
# the_value may be a section or a value
the_value = the_section[name]
section_or_value = 'value
if isinstance(the_value, dict):
# Sections are subclasses of dict
section_or_value = 'section'
section_string = ', '.join(sections) or "top level"
print 'Extra entry in section: %s. Entry %r is a %s' % (section_string, name, section_or_value)
CREDITS
=======
ConfigObj version 4 and forward is written by (and copyright) Michael Foord,
Nicola Larosa, Rob Dennis and Eli Courtwright.
Rob Dennis and Eli Courtwright added Python 2 and 3 compatibility in a single
source starting with version 5, and have taken stewardship of ConfigObj moving
forward.
Particularly thanks to Nicola Larosa for help on the config file spec, the
validation system and the doctests.
*validate.py* was originally written by Michael Foord and Mark Andrews.
Thanks to many others for input, patches and bugfixes.
LICENSE
=======
ConfigObj, and related files, are licensed under the BSD license. This is a
very unrestrictive license, but it comes with the usual disclaimer. This is
free software: test it, break it, just don't blame us if it eats your data !
Of course if it does, let us know and we'll fix the problem so it doesn't
happen to anyone else::
Copyright (C) 2003-2023:
(name) : (email)
Michael Foord: fuzzyman AT voidspace DOT org DOT uk
Nicola Larosa: nico AT tekNico DOT net
Rob Dennis: rdennis AT gmail DOT com
Eli Courtwright: eli AT courtwright DOT org
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above
copyright notice, this list of conditions and the following
disclaimer in the documentation and/or other materials provided
with the distribution.
* None of the authors names may be used to endorse or
promote products derived from this software without
specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
You should also be able to find a copy of this license at : `BSD License`_
.. _BSD License: http://opensource.org/licenses/BSD-3-Clause
TODO
====
Better support for configuration from multiple files, including tracking
*where* the original file came from and writing changes to the correct
file.
Make ``newline`` a keyword argument (as well as an attribute) ?
``UTF16`` encoded files, when returned as a list of lines, will have the
BOM at the start of every line. Should this be removed from all but the
first line ?
Option to set warning type for unicode decode ? (Defaults to strict).
A method to optionally remove uniform indentation from multiline values.
(do as an example of using ``walk`` - along with string-escape)
Should the results dictionary from validate be an ordered dictionary if
`odict <http://www.voidspace.org.uk/python/odict.html>`_ is available ?
Implement some of the sequence methods (which include slicing) from the
newer ``odict`` ?
Preserve line numbers of values (and possibly the original text of each value).
ISSUES
======
.. note::
Please file any bug reports at the `Github Page`_
There is currently no way to specify the encoding of a configspec file.
As a consequence of the changes to configspec handling in version 4.6.0, when
you create a ConfigObj instance and provide a configspec, the configspec
attribute is only set on the ConfigObj instance - it isn't set on the sections until you validate. You also can't set the configspec attribute to be a dictionary. This wasn't documented but did work previously.
In order to fix the problem with hashes in configspecs I had to turn off the parsing of inline comments in configspecs. This will only affect you if you are using ``copy=True`` when validating and expecting inline comments to be copied from the configspec into the ConfigObj instance (all other comments will be copied as usual).
If you *create* the configspec by passing in a ConfigObj instance (usual way is to pass in a filename or list of lines) then you should pass in ``_inspec=True`` to the constructor to allow hashes in values. This is the magic that switches off inline comment parsing.
When using ``copy`` mode for validation, it won't copy ``DEFAULT``
sections. This is so that you *can* use interpolation in configspec
files. This is probably true even if interpolation is off in the
configspec.
You can't have a keyword with the same name as a section (in the same
section). They are both dictionary keys - so they would overlap.
ConfigObj doesn't quote and unquote values if ``list_values=False``.
This means that leading or trailing whitespace in values will be lost when
writing. (Unless you manually quote).
Interpolation checks first the current section, then the 'DEFAULT' subsection
of the current section, before moving on to the current section's parent and
so on up the tree.
Does it matter that we don't support the ':' divider, which is supported
by ``ConfigParser`` ?
String interpolation and validation don't play well together. When
validation changes type it sets the value. This will correctly fetch the
value using interpolation - but then overwrite the interpolation reference.
If the value is unchanged by validation (it's a string) - but other types
will be.
CHANGELOG
=========
This is an abbreviated changelog showing the major releases up to version 4.
From version 4 it lists all releases and changes.
2024/09/21 - Version 5.0.9
--------------------------
* drop support for Python 2 and <3.7
* fix CVE-2023-26112, ReDoS attack
2023/01/18 - Version 5.0.8
--------------------------
* fixing/test for a regression introduced in 5.0.7 that prevented ``import validate`` from working
2023/01/17 - Version 5.0.7
--------------------------
* Update documentation to remove some dead links
* Update unit tests to go against updated versions of Python
2014/08/25 - Version 5.0.6
--------------------------
* BUGFIX: Did not correctly handle %-chars in invalid lines
* BUGFIX: unhelpful error message when nesting invalid
2014/04/28 - Version 5.0.5
--------------------------
* BUGFIX: error in writing out config files to disk with non-ascii characters
2014/04/11 - Version 5.0.4
--------------------------
* BUGFIX: correcting that the code path fixed in 5.0.3 didn't cover reading in
config files
2014/04/04 - Version 5.0.3
--------------------------
* BUGFIX: not handling unicode encoding well, especially with respect to writing out files
2014/02/27 - Version 5.0.2
--------------------------
* Specific error message for installing version this version on Python versions older than 2.5
* Documentation corrections
2014/02/19 - Version 5.0.1
--------------------------
* BUGFIX: Fixed regression on python 2.x where passing an ``encoding`` parameter did
not convert a bytestring config file (which is the most common) to unicode. Added
unit tests for this and related cases
* BUGFIX: A particular error message would fail to display with a type error on python 2.6
only
2014/02/08 - Version 5.0.0
--------------------------
* Python 3 single-source compatibility at the cost of a more restrictive set of versions: 2.6, 2.7, 3.2, 3.3 (otherwise unchanged)
* New maintainers: Rob Dennis and Eli Courtwright
* New home on github
2010/02/27 - Version 4.7.2
--------------------------
* BUGFIX: Restore Python 2.3 compatibility
* BUGFIX: Members that were lists were being returned as copies due to interpolation
introduced in 4.7. Lists are now only copies if interpolation changes a list
member.
* BUGFIX: ``pop`` now does interpolation in list values as well.
* BUGFIX: where interpolation matches a section name rather than a value it is
ignored instead of raising an exception on fetching the item.
* BUGFIX: values that use interpolation to reference members that don't exist can
now be repr'd.
* BUGFIX: Fix to avoid writing '\\r\\r\\n' on Windows when given a file opened in
text write mode ('w').
See `String Interpolation and List Values`_ for information about the problem with lists and interpolation.
2010/02/06 - Version 4.7.1
--------------------------
* Fix bug in options deprecation warning added in 4.7.0
2010/01/09 - Version 4.7.0
--------------------------
* Minimum supported version of Python is now 2.3
* ~25% performance improvement thanks to Christian Heimes
* String interpolation now works in list value members
* After validation any additional entries not in the configspec are listed in
the ``extra_values`` section member
* Addition of the ``get_extra_values`` function for finding all extra values
in a validated ConfigObj instance
* Deprecated the use of the ``options`` dictionary in the ConfigObj constructor
and added explicit keyword arguments instead. Use \*\*options if you want
to initialise a ConfigObj instance from a dictionary
* Constructing a ConfigObj from an existing ConfigObj instance now preserves
the order of values and sections from the original instance in the new one
* BUGFIX: Checks that failed validation would not populate ``default_values`` and
``restore_default_value()`` wouldn't work for those entries
* BUGFIX: clear() now clears 'defaults'
* BUGFIX: empty values in list values were accidentally valid syntax. They now
raise a ``ParseError``. e.g. "value = 1, , 2"
* BUGFIX: Change to the result of a call to ``validate`` when ``preserve_errors``
is True. Previously sections where *all* values failed validation would
return False for the section rather than preserving the errors. False will
now only be returned for a section if it is missing
* Distribution includes version 1.0.1 of validate.py
* Removed __revision__ and __docformat__
2009/04/13 - Version 4.6.0
--------------------------
* Pickling of ConfigObj instances now supported (thanks to Christian Heimes)
* Hashes in confgspecs are now allowed (see note below)
* Replaced use of hasattr (which can swallow exceptions) with getattr
* __many__ in configspecs can refer to scalars (ordinary values) as well as sections
* You can use ___many___ (three underscores!) where you want to use __many__ as well
* You can now have normal sections inside configspec sections that use __many__
* You can now create an empty ConfigObj with a configspec, programmatically set values and then validate
* A section that was supplied as a value (or vice-versa) in the actual config file would cause an exception during validation (the config file is still broken of course, but it is now handled gracefully)
* Added ``as_list`` method
* Removed the deprecated ``istrue``, ``encode`` and ``decode`` methods
* Running test_configobj.py now also runs the doctests in the configobj module
As a consequence of the changes to configspec handling, when you create a ConfigObj instance and provide
a configspec, the configspec attribute is only set on the ConfigObj instance - it isn't set on the
sections until you validate. You also can't set the configspec attribute to be a dictionary. This wasn't
documented but did work previously.
In order to fix the problem with hashes in configspecs I had to turn off the parsing of inline comments
in configspecs. This will only affect you if you are using ``copy=True`` when validating and expecting
inline comments to be copied from the configspec into the ConfigObj instance (all other comments will be
copied as usual).
If you *create* the configspec by passing in a ConfigObj instance (usual way is to pass in a filename or
list of lines) then you should pass in ``_inspec=True`` to the constructor to allow hashes in values.
This is the magic that switches off inline comment parsing.
2008/06/27 - Version 4.5.3
--------------------------
BUGFIX: fixed a problem with ``copy=True`` when validating with configspecs that use
``__many__`` sections.
2008/02/05 - Version 4.5.2
--------------------------
Distribution updated to include version 0.3.2 of validate_. This means that
``None`` as a default value in configspecs works.
2008/02/05 - Version 4.5.1
--------------------------
Distribution updated to include version 0.3.1 of validate_. This means that
Unicode configspecs now work.
2008/02/05 - Version 4.5.0
--------------------------
ConfigObj will now guarantee that files will be written terminated with a
newline.
ConfigObj will no longer attempt to import the ``validate`` module, until/unless
you call ``ConfigObj.validate`` with ``preserve_errors=True``. This makes it
faster to import.
New methods ``restore_default`` and ``restore_defaults``. ``restore_default``
resets an entry to its default value (and returns that value). ``restore_defaults``
resets all entries to their default value. It doesn't modify entries without a
default value. You must have validated a ConfigObj (which populates the
``default_values`` dictionary) before calling these methods.
BUGFIX: Proper quoting of keys, values and list values that contain hashes
(when writing). When ``list_values=False``, values containing hashes are
triple quoted.
Added the ``reload`` method. This reloads a ConfigObj from file. If the filename
attribute is not set then a ``ReloadError`` (a new exception inheriting from
``IOError``) is raised.
BUGFIX: Files are read in with 'rb' mode, so that native/non-native line endings work!
Minor efficiency improvement in ``unrepr`` mode.
Added missing docstrings for some overidden dictionary methods.
Added the ``reset`` method. This restores a ConfigObj to a freshly created state.
Removed old CHANGELOG file.
2007/02/04 - Version 4.4.0
--------------------------
Official release of 4.4.0
2006/12/17 - Version 4.3.3-alpha4
---------------------------------
By Nicola Larosa
Allowed arbitrary indentation in the ``indent_type`` parameter, removed the
``NUM_INDENT_SPACES`` and ``MAX_INTERPOL_DEPTH`` (a leftover) constants,
added indentation tests (including another docutils workaround, sigh), updated
the documentation.
By Michael Foord
Made the import of ``compiler`` conditional so that ``ConfigObj`` can be used
with `IronPython <http://www.codeplex.com/IronPython>`_.
2006/12/17 - Version 4.3.3-alpha3
---------------------------------
By Nicola Larosa
Added a missing ``self.`` in the _handle_comment method and a related test,
per Sourceforge bug #1523975.
2006/12/09 - Version 4.3.3-alpha2
---------------------------------
By Nicola Larosa
Changed interpolation search strategy, based on this patch by Robin Munn:
http://sourceforge.net/mailarchive/message.php?msg_id=17125993
2006/12/09 - Version 4.3.3-alpha1
---------------------------------
By Nicola Larosa
Added Template-style interpolation, with tests, based on this patch by
Robin Munn: http://sourceforge.net/mailarchive/message.php?msg_id=17125991
(awful archives, bad Sourceforge, bad).
2006/06/04 - Version 4.3.2
--------------------------
Changed error handling, if parsing finds a single error then that error will
be re-raised. That error will still have an ``errors`` and a ``config``
attribute.
Fixed bug where '\\n' terminated files could be truncated.
Bugfix in ``unrepr`` mode, it couldn't handle '#' in values. (Thanks to
Philippe Normand for the report.)
As a consequence of this fix, ConfigObj doesn't now keep inline comments in
``unrepr`` mode. This is because the parser in the `compiler package`_
doesn't keep comments.
Error messages are now more useful. They tell you the number of parsing errors
and the line number of the first error. (In the case of multiple errors.)
Line numbers in exceptions now start at 1, not 0.
Errors in ``unrepr`` mode are now handled the same way as in the normal mode.
The errors stored will be an ``UnreprError``.
2006/04/29 - Version 4.3.1
--------------------------
Added ``validate.py`` back into ``configobj.zip``. (Thanks to Stewart
Midwinter)
Updated to ``validate.py`` 0.2.2.
Preserve tuples when calling the ``dict`` method. (Thanks to Gustavo Niemeyer.)
Changed ``__repr__`` to return a string that contains ``ConfigObj({ ... })``.
Change so that an options dictionary isn't modified by passing it to ConfigObj.
(Thanks to Artarious.)
Added ability to handle negative integers in ``unrepr``. (Thanks to Kevin
Dangoor.)
2006/03/24 - Version 4.3.0
--------------------------
Moved the tests and the CHANGELOG (etc) into a separate file. This has reduced
the size of ``configobj.py`` by about 40%.
Added the ``unrepr`` mode to reading and writing config files. Thanks to Kevin
Dangoor for this suggestion.
Empty values are now valid syntax. They are read as an empty string ``''``.
(``key =``, or ``key = # comment``.)
``validate`` now honours the order of the configspec.
Added the ``copy`` mode to validate. Thanks to Louis Cordier for this
suggestion.
Fixed bug where files written on windows could be given ``'\r\r\n'`` line
terminators.
Fixed bug where last occurring comment line could be interpreted as the
final comment if the last line isn't terminated.
Fixed bug where nested list values would be flattened when ``write`` is
called. Now sub-lists have a string representation written instead.
Deprecated ``encode`` and ``decode`` methods instead.
You can now pass in a ConfigObj instance as a configspec (remember to read
the configspec file using ``list_values=False``).
Sorted footnotes in the docs.
2006/02/16 - Version 4.2.0
--------------------------
Removed ``BOM_UTF8`` from ``__all__``.
The ``BOM`` attribute has become a boolean. (Defaults to ``False``.) It is
*only* ``True`` for the ``UTF16/UTF8`` encodings.
File like objects no longer need a ``seek`` attribute.
Full unicode support added. New options/attributes ``encoding``,
``default_encoding``.
ConfigObj no longer keeps a reference to file like objects. Instead the
``write`` method takes a file like object as an optional argument. (Which
will be used in preference of the ``filename`` attribute if that exists as
well.)
utf16 files decoded to unicode.
If ``BOM`` is ``True``, but no encoding specified, then the utf8 BOM is
written out at the start of the file. (It will normally only be ``True`` if
the utf8 BOM was found when the file was read.)
Thanks to Aaron Bentley for help and testing on the unicode issues.
File paths are *not* converted to absolute paths, relative paths will
remain relative as the ``filename`` attribute.
Fixed bug where ``final_comment`` wasn't returned if ``write`` is returning
a list of lines.
Deprecated ``istrue``, replaced it with ``as_bool``.
Added ``as_int`` and ``as_float``.
2005/12/14 - Version 4.1.0
--------------------------
Added ``merge``, a recursive update.
Added ``preserve_errors`` to ``validate`` and the ``flatten_errors``
example function.
Thanks to Matthew Brett for suggestions and helping me iron out bugs.
Fixed bug where a config file is *all* comment, the comment will now be
``initial_comment`` rather than ``final_comment``.
Validation no longer done on the 'DEFAULT' section (only in the root level).
This allows interpolation in configspecs.
Also use the new list syntax in validate_ 0.2.1. (For configspecs).
2005/12/02 - Version 4.0.2
--------------------------
Fixed bug in ``create_empty``. Thanks to Paul Jimenez for the report.
2005/11/05 - Version 4.0.1
--------------------------
Fixed bug in ``Section.walk`` when transforming names as well as values.
Added the ``istrue`` method. (Fetches the boolean equivalent of a string
value).
Fixed ``list_values=False`` - they are now only quoted/unquoted if they
are multiline values.
List values are written as ``item, item`` rather than ``item,item``.
2005/10/17 - Version 4.0.0
--------------------------
**ConfigObj 4.0.0 Final**
Fixed bug in ``setdefault``. When creating a new section with setdefault the
reference returned would be to the dictionary passed in *not* to the new
section. Bug fixed and behaviour documented.
Obscure typo/bug fixed in ``write``. Wouldn't have affected anyone though.
2005/09/09 - Version 4.0.0 beta 5
---------------------------------
Removed ``PositionError``.
Allowed quotes around keys as documented.
Fixed bug with commas in comments. (matched as a list value)
2005/09/07 - Version 4.0.0 beta 4
---------------------------------
Fixed bug in ``__delitem__``. Deleting an item no longer deletes the
``inline_comments`` attribute.
Fixed bug in initialising ConfigObj from a ConfigObj.
Changed the mailing list address.
2005/08/28 - Version 4.0.0 beta 3
---------------------------------
Interpolation is switched off before writing out files.
Fixed bug in handling ``StringIO`` instances. (Thanks to report from
Gustavo Niemeyer.)
Moved the doctests from the ``__init__`` method to a separate function.
(For the sake of IDE calltips).
2005/08/25 - Version 4.0.0 beta 2
---------------------------------
Amendments to *validate.py*.
First public release.
2005/08/21 - Version 4.0.0 beta 1
---------------------------------
Reads nested subsections to any depth.
Multiline values.
Simplified options and methods.
New list syntax.
Faster, smaller, and better parser.
Validation greatly improved. Includes:
* type conversion
* default values
* repeated sections
Improved error handling.
Plus lots of other improvements.
2004/05/24 - Version 3.0.0
--------------------------
Several incompatible changes: another major overhaul and change. (Lots of
improvements though).
Added support for standard config files with sections. This has an entirely
new interface: each section is a dictionary of values.
Changed the update method to be called writein: update clashes with a dict
method.
Made various attributes keyword arguments, added several.
Configspecs and orderlists have changed a great deal.
Removed support for adding dictionaries: use update instead.
Now subclasses a new class called caselessDict. This should add various
dictionary methods that could have caused errors before.
It also preserves the original casing of keywords when writing them back out.
Comments are also saved using a ``caselessDict``.
Using a non-string key will now raise a ``TypeError`` rather than converting
the key.
Added an exceptions keyword for *much* better handling of errors.
Made ``creatempty=False`` the default.
Now checks indict *and* any keyword args. Keyword args take precedence over
indict.
``' ', ':', '=', ','`` and ``'\t'`` are now all valid dividers where the
keyword is unquoted.
ConfigObj now does no type checking against configspec when you set items.
delete and add methods removed (they were unnecessary).
Docs rewritten to include all this gumph and more; actually ConfigObj is
*really* easy to use.
Support for stdout was removed.
A few new methods added.
Charmap is now incorporated into ConfigObj.
2004/03/14 - Version 2.0.0 beta
-------------------------------
Re-written it to subclass dict. My first forays into inheritance and operator
overloading.
The config object now behaves like a dictionary.
I've completely broken the interface, but I don't think anyone was really
using it anyway.
This new version is much more 'classy'.
It will also read straight from/to a filename and completely parse a config
file without you *having* to supply a config spec.
Uses listparse, so can handle nested list items as values.
No longer has getval and setval methods: use normal dictionary methods, or add
and delete.
2004/01/29 - Version 1.0.5
--------------------------
Version 1.0.5 has a couple of bugfixes as well as a couple of useful additions
over previous versions.
Since 1.0.0 the buildconfig function has been moved into this distribution,
and the methods reset, verify, getval and setval have been added.
A couple of bugs have been fixed.
Origins
-------
ConfigObj originated in a set of functions for reading config files in the
`atlantibots <http://www.voidspace.org.uk/atlantibots/>`_ project. The original
functions were written by Rob McNeur.
----------
Footnotes
=========
.. [#] And if you discover any bugs, let us know. We'll fix them quickly.
.. [#] If you specify a filename that doesn't exist, ConfigObj will assume you
are creating a new one. See the *create_empty* and *file_error* options.
.. [#] They can be byte strings (*ordinary* strings) or Unicode.
.. [#] Except we don't support the RFC822 style line continuations, nor ':' as
a divider.
.. [#] This is a change in ConfigObj 4.2.0. Note that ConfigObj doesn't call
the seek method of any file like object you pass in. You may want to call
``file_object.seek(0)`` yourself, first.
.. [#] A side effect of this is that it enables you to copy a ConfigObj :
.. code-block:: python
# only copies members
# not attributes/comments
config2 = ConfigObj(config1)
Since ConfigObj 4.7.0 the order of members and sections will be
preserved when copying a ConfigObj instance.
.. [#] Other than lists of strings.
.. [#] The exception is if it detects a ``UTF16`` encoded file which it
must decode before parsing.
.. [#] The method signature shows that this method takes
two arguments. The second is the section to be written. This is because the
``write`` method is called recursively.
.. [#] The dict method doesn't actually use the deepcopy mechanism. This means
if you add nested lists (etc) to your ConfigObj, then the dictionary
returned by dict may contain some references. For all *normal* ConfigObjs
it will return a deepcopy.
.. [#] Passing ``(section, key)`` rather than ``(value, key)`` allows you to
change the value by setting ``section[key] = newval``. It also gives you
access to the *rename* method of the section.
.. [#] Minimum required version of *validate.py* 0.2.0 .
|