how to migrate a WordPress blog to Django
There is currently no utility to migrate existing blog content to django. However, conversion of an existing WordPress blog is pretty straightforward. Firstly, simply export the following tables from the WordPress database using phpMyAdmin wp_posts wp_comments wp_terms wp_term_taxonomy wp_term_relationships Import the tables into the django database. Then run the following SQL statements which migrate posts, comments and categories and assume a WordPress 2.3 schema and a blank django blog. If you have already created content in django, minor changes will be needed. My WordPress blog only uses categories which simply get converted to django tags. ...