3
0
Fork 0
fsim/fsimcrawl/fsimcrawl.py

19 lines
300 B
Python
Raw Normal View History

2022-11-13 13:46:54 +00:00
#!/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()