Member 13916385 Ответов: 1

В Python 3 такого файла или каталога нет


Я новичок в python. Я хочу извлечь имя категорий и веб-страниц (дерево категорий) страницы Википедии, имеющей категорию, с помощью процедуры обхода. В ходе этого я сталкиваюсь со следующей ошибкой, и я разочарован ошибкой. В связи с этим любая помощь очень ценится.

Загрузка
Обратная трассировка (самый недавний призыв последнего):
Файл "C:\Users\SIBA\Desktop\PDF\Code\trialcode.py", строка 100, в <модуле>
printTree(имя, 0)
Файл "C:\Users\SIBA\Desktop\PDF\Code\trialcode.py", строка 80, в printTree
content = open("categories/Category:"+catName+".html").readlines()
FileNotFoundError: [Errno 2] такого файла или каталога нет: 'categories/Category:Cricket.html'

Фрагмент кода того, что я попробовал, выглядит следующим образом. Я использую версию Python 3.6.

Что я уже пробовал:

#Imports
import httplib2
from bs4 import BeautifulSoup
import subprocess
import time
import os,sys
os.path.dirname(sys.argv[0])

#declarations
catRoot = "http://en.wikipedia.org/wiki/Category:"
MAX_DEPTH = 100
done = []
ignore = []
# Removes all newline characters and replaces with spaces
def removeNewLines(in_text):
return in_text.replace('\n', ' ')

# Downloads a link into the destination
def download(link, dest):
# print link
if not os.path.exists(dest) or os.path.getsize(dest) == 0:
subprocess.getoutput('wget "' + link + '" -O "' + dest+ '"')
print ("Downloading")

def ensureDir(f):
    if not os.path.exists(f):
    os.makedirs(f)

# Cleans a text by removing tags
def clean(in_text):
s_list = list(in_text)
i,j = 0,0
while i < len(s_list):
    # iterate until a left-angle bracket is found
    if s_list[i] == '<':
        if s_list[i+1] == 'b' and s_list[i+2] == 'r' and s_list[i+3] == '>':
            i=i+1
            print (hello)
            continue
        while s_list[i] != '>':
            # pop everything from the the left-angle bracket until the right-angle bracket
            s_list.pop(i)
        # pops the right-angle bracket, too
        s_list.pop(i)

    elif s_list[i] == '\n':
        s_list.pop(i)
    else:
        i=i+1

# convert the list back into text
join_char=''
return (join_char.join(s_list))#.replace("<br>","\n")

# Gets bullets
def getBullets(content):
    mainSoup = BeautifulSoup(contents)

# Gets empty bullets
def getAllBullets(content):
mainSoup = BeautifulSoup(str(content))
subcategories = mainSoup.findAll('div',attrs={"class" :  "CategoryTreeItem"})
empty = []
full = []
for x in subcategories:
    subSoup = BeautifulSoup(str(x))
    link = str(subSoup.findAll('a')[0])
    if (str(x)).count("CategoryTreeEmptyBullet") > 0:
        empty.append(clean(link).replace(" ","_"))
    elif (str(x)).count("CategoryTreeBullet") > 0:
        full.append(clean(link).replace(" ","_"))

return((empty,full))

def printTree(catName, count):
catName = catName.replace("\\'","'")
if count == MAX_DEPTH: return
   path='trivial'
   download(catRoot+catName, path)
content = ("Category:"+catName+".html")
filepath=open("content")
(emptyBullets,fullBullets) = getAllBullets(content)
f.close()

for x in emptyBullets:
    for i in range(count): print ("  "),
    download(catRoot+x, "categories/Category:"+x+".html")
    print (x)

for x in fullBullets:
    for i in range(count): print ("  "),
    print (x)
    if x in done:
        print ("Done... "+x)
        continue
    done.append(x)
    try: printTree(x, count + 1)
    except: print ("ERROR: " + x)

name = "Cricket"
printTree(name, 0)

1 Ответов

Рейтинг:
1

Jochen Arndt

Сообщение об ошибке совершенно ясно: указанный файл не существует.

Но опубликованный код имеет ошибки отступа и не соответствует строке кода из сообщения об ошибке, так что скорее всего невозможно помочь, просто увидев опубликованный код.

В любом случае вы можете проверить, существует ли файл, прежде чем пытаться его открыть, и действовать соответственно.

Обратите также внимание, что использование относительных путей подвержено ошибкам.

Наконец, вы должны проверить, является ли выполнение wget инструмент оказался удачным. В противном случае файл не создается.