Arceliar / yggdrasil-map

Yggdrasil network map

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Crawler script does not work

ChronosXYZ opened this issue · comments

crawl-dht.py does not work. If I try to run, it will give an error:

Traceback (most recent call last):
  File "crawler.py", line 57, in <module>
    for k,v in selfInfo['response']['self'].iteritems(): rumored[k] = v
TypeError: 'NoneType' object has no attribute '__getitem__'

Сommand that I run it: python2.7 crawl-dht.py.

Thanks. The crawler does need some work. At some point we switched to using a unix socket instead of a tcp stocket for the admin api, so changing your yggdrasil.conf to have AdminListen: tcp://localhost:9001 may fix it for now.

Thanks. The crawler does need some work. At some point we switched to using a unix socket instead of a tcp stocket for the admin api, so changing your yggdrasil.conf to have AdminListen: tcp://localhost:9001 may fix it for now.

Thanks. I will try it.