6 lines
132 B
Python
6 lines
132 B
Python
|
|
import Star
|
||
|
|
|
||
|
|
crawler = Star.Crawler()
|
||
|
|
crawler.run("https://www.patricematz.de/", 5000)
|
||
|
|
print(crawler.getNodesEdges())
|
||
|
|
crawler.draw()
|