wikicrawl/launcher.py

12 lines
232 B
Python
Raw Normal View History

2017-10-20 17:39:00 -06:00
#!/usr/bin/env python
import wikicrawl
2017-08-17 01:27:05 -06:00
import settings
# Inject the settings.DefaultSettings object into the
# app and start running the program.
wikicrawl.init(settings.DefaultSettings)
wikicrawl.main()
2017-08-17 01:27:05 -06:00
input('<enter> to exit')