diff options
author | Evgeny Fadeev <evgeny.fadeev@gmail.com> | 2010-03-03 01:32:56 -0500 |
---|---|---|
committer | Evgeny Fadeev <evgeny.fadeev@gmail.com> | 2010-03-03 01:32:56 -0500 |
commit | e6f49c04ab60a1729f09aee50804ce83f4869a17 (patch) | |
tree | f9dd69e746b78eebfa80e71d7699adc9faa8deea /stackexchange/README | |
parent | bac35fb088833fdc757c8dc9e90bcb53a0a8755c (diff) | |
download | askbot-e6f49c04ab60a1729f09aee50804ce83f4869a17.tar.gz askbot-e6f49c04ab60a1729f09aee50804ce83f4869a17.tar.bz2 askbot-e6f49c04ab60a1729f09aee50804ce83f4869a17.zip |
created model parser and initial models for stackexchange importer
Diffstat (limited to 'stackexchange/README')
-rw-r--r-- | stackexchange/README | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/stackexchange/README b/stackexchange/README new file mode 100644 index 00000000..4d3f7750 --- /dev/null +++ b/stackexchange/README @@ -0,0 +1,16 @@ +this app's function will be to: + +* install it's own tables +* read SE xml dump into DjangoDB +* populate osqa database +* remove SE tables + +So far models are automatically created via: + +1) add 'stackexchange' to the list of installed apps +2) type commands + + cd stackexchange + python parse_models.py SE_DUMP/xsd/*.xsd > models.py + cd .. + python manage.py syncdb |