aboutsummaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
Diffstat (limited to 'README')
-rw-r--r--README39
1 files changed, 39 insertions, 0 deletions
diff --git a/README b/README
new file mode 100644
index 0000000..cc8e664
--- /dev/null
+++ b/README
@@ -0,0 +1,39 @@
1DODAI
2
3A Python module to help with writing command line scripts
4
5This module is to be a foundation to your command line python
6scripts. This module provides for quick access to logger, configparser,
7optionparse and databases via sqlalchemy.
8
9
10INSTALLATION
11------------
12
13There are three ways to install dodai
14
151. The easy_install method
16
17 easy_install dodai
18
192. To do a traditional install, download compressed file from:
20 http://code.google.com/p/dodai/downloads/list
21
22 tar zxvf dodai-*
23 cd dodai-*
24 python setup.py install
25
263. If you have Paver installed then download compressed file from
27 http://code.google.com/p/dodai/downloads/list
28
29 tar zxvf dodai-*
30 cd dodai-*
31 paver install
32
33
34The installation will also install sqlalchemy. This installation will not
35install the required system and python libs needed to get sqlalchemy to work
36with your desired database. This includes things like: cx_Oracle, psycopg2,
37pyodbc, mysql-python etc. For more information on installing these check out
38the docs at http://code.google.com/p/dodai
39