19 lines
300 B
Python
19 lines
300 B
Python
#!/usr/bin/env python2.4
|
|
"""
|
|
fsimcrawl.py - a crawler for fsim
|
|
|
|
this file is really only the launcher for the crawler
|
|
"""
|
|
|
|
import sys
|
|
|
|
from core import FsimCrawl
|
|
|
|
def startup():
|
|
# here we start running fsimcrawl
|
|
#FsimCrawl.FsimCrawl().start()
|
|
pass
|
|
|
|
if __name__=="__main__":
|
|
startup()
|