(path,name)
| 9 | return sp |
| 10 | |
| 11 | def run(path,name): |
| 12 | rPath = path |
| 13 | if len(name) > 0: |
| 14 | rPath = 'plugin/py_{0}.py'.format(name) |
| 15 | sp = loadFromDisk(rPath) |
| 16 | sp.test() |
| 17 | |
| 18 | if __name__ == '__main__': |
| 19 | parser = argparse.ArgumentParser(description='choose your crawler') |
no test coverage detected