添加链接
link管理
链接快照平台
  • 输入网页链接,自动生成快照
  • 标签化管理网页链接

im using config parser to read an ini file for links then put those links into an array for later use i tried using the try function but i cant seem to get it working

i feel its a simple solution and i just cant see it

config_read = configparser.ConfigParser()
config_read.read("default.ini")
current = 0
all_links = []
while True:
		current = current + 1
		tst =  "link"+ str(current)
		link = config_read.get("links",tst )
		time.sleep(0.25)
		all_links.append(link)
		print(link)
	except:
print(all_links)

edit:
heres the ini file too

[links]
link1=1
link2=2
link3=3
link4=4
link5=5
              

yeah its working now i did try break earlier but it didnt work must’ve been something i changed

thanks for the help!