blob: 939b611b6cc40972a929d9865f3f7db952cb8481 (
plain) (
blame)
1
2
3
4
5
6
7
|
from __future__ import print_function, unicode_literals
from nikola import Nikola
import conf
SITE = Nikola(**conf.__dict__)
SITE.scan_posts()
print("You can now access your configuration as conf and your site engine as SITE")
|