Mercurial > hg > martINI
annotate README.txt @ 23:858fb3bfacfe default tip
python3
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Sat, 24 Apr 2021 15:04:15 -0700 |
parents | 9e4da7517815 |
children |
rev | line source |
---|---|
3
9e4da7517815
make a README file and include it in the setup.py
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
1 martINI |
9e4da7517815
make a README file and include it in the setup.py
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
2 ======= |
9e4da7517815
make a README file and include it in the setup.py
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
3 |
9e4da7517815
make a README file and include it in the setup.py
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
4 martINI is an extended facility for utilizing |
9e4da7517815
make a README file and include it in the setup.py
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
5 `ini files <http://en.wikipedia.org/wiki/INI_file>`_ in python. |
9e4da7517815
make a README file and include it in the setup.py
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
6 martINI includes API, command-line, and web interfaces. |
9e4da7517815
make a README file and include it in the setup.py
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
7 martINI is built on the |
9e4da7517815
make a README file and include it in the setup.py
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
8 `ConfigParser <http://docs.python.org/library/configparser.html>`_ module, |
9e4da7517815
make a README file and include it in the setup.py
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
9 which is part of python's standard library. |
9e4da7517815
make a README file and include it in the setup.py
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
10 |
9e4da7517815
make a README file and include it in the setup.py
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
11 |
9e4da7517815
make a README file and include it in the setup.py
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
12 Command Line Tools |
9e4da7517815
make a README file and include it in the setup.py
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
13 ------------------ |
9e4da7517815
make a README file and include it in the setup.py
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
14 |
9e4da7517815
make a README file and include it in the setup.py
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
15 martINI comes with several command line tools for manipulating .ini |
9e4da7517815
make a README file and include it in the setup.py
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
16 files: |
9e4da7517815
make a README file and include it in the setup.py
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
17 |
9e4da7517815
make a README file and include it in the setup.py
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
18 * ini-get: get key or section values from a .ini files |
9e4da7517815
make a README file and include it in the setup.py
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
19 * ini-set: set .ini file values |
9e4da7517815
make a README file and include it in the setup.py
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
20 * ini-delete: delete .ini key-value pairs from a .ini files |
9e4da7517815
make a README file and include it in the setup.py
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
21 * ini-munge: combine several .ini files |
9e4da7517815
make a README file and include it in the setup.py
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
22 |
9e4da7517815
make a README file and include it in the setup.py
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
23 Running the commands will display usage information. |
9e4da7517815
make a README file and include it in the setup.py
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
24 |
9e4da7517815
make a README file and include it in the setup.py
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
25 |
9e4da7517815
make a README file and include it in the setup.py
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
26 TODO |
9e4da7517815
make a README file and include it in the setup.py
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
27 ---- |
9e4da7517815
make a README file and include it in the setup.py
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
28 |
9e4da7517815
make a README file and include it in the setup.py
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
29 Consider refactoring to use |
9e4da7517815
make a README file and include it in the setup.py
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
30 `INITools <http://pythonpaste.org/initools/>`_ instead of ``ConfigParser``. |
9e4da7517815
make a README file and include it in the setup.py
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
31 |
9e4da7517815
make a README file and include it in the setup.py
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
32 -- |
9e4da7517815
make a README file and include it in the setup.py
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
33 |
9e4da7517815
make a README file and include it in the setup.py
k0s <k0scist@gmail.com>
parents:
diff
changeset
|
34 http://k0s.org/portfolio/software.html#martini |