Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

#!/usr/bin/env python3 

 

''' 

Execution script 

''' 

import sys 

from monitor import create_monitor 

 

if __name__ == '__main__': 

try: 

CRAWL = create_monitor(False) 

except TypeError: 

print("Input file was not valid!") 

sys.exit(1) 

 

if CRAWL.torrent.infohash_list[1]: 

for torrent in CRAWL.torrent.infohash_list[1]: 

CRAWL.crawl_begin(torrent) 

else: 

CRAWL.crawl_begin()