Hi Robert,
Did you get something cooking? Otherwise, I can encourage to look at the Django Framework that django-wiki is based on:
https://www.djangoproject.com/start/
You would want to do something like this from a Python script:
From terminal, run DJANGO_SETTINGS_MODULE=yourproject.settings python yourscript.py
Here's an outline for yourscript.py
import django django.setup() # Needs DJANGO_SETTINGS_MODULE to point to a settings module # Import the Django models AFTER Django is loaded from wiki import models # Call the various ORM methods on the articles that you want to create models.Article.objects.create(...)
--
You received this message because you are subscribed to the Google Groups "django-wiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-wiki...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-wiki/9da6c832-1c3b-4727-b365-e2102f58cc3f%40googlegroups.com.