Browse Source

Not functional changes

pysitemap-python-2.7
Kamo Petrosyan 6 years ago
committed by GitHub
parent
commit
41e9fb2526
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      pysitemap/crawler.py

+ 3
- 3
pysitemap/crawler.py View File

@ -19,7 +19,7 @@ try:
monkey.patch_all()
gevent_installed = True
except:
print("Gevent does not installed. Parsing process will be slower.")
print("Gevent is not installed. Parsing process will be slower.")
gevent_installed = False
@ -30,7 +30,7 @@ class Crawler:
self.oformat = oformat
self.outputfile = outputfile
# create lists for the urls in que and visited urls
# create lists for urls in queue and visited urls
self.urls = set([url])
self.visited = set([url])
self.exts = ['htm', 'php']
@ -60,7 +60,7 @@ class Crawler:
self.pool.spawn(self.parse_gevent)
self.pool.join()
else:
self.pool = [None,] # fixing n_poll exception in self.parse with poolsize > 1 and gevent_installed == False
self.pool = [None,] # fixing n_pool exception in self.parse with poolsize > 1 and gevent_installed == False
while len(self.urls) > 0:
self.parse()
if self.oformat == 'xml':


Loading…
Cancel
Save