Beispiel #1
0
def wpUpdate(pages):
    wl = WebLibrary(app_data=app_data)
    for page in pages:
        try:
            wl.update(page)
        except IOError as e:
            print(e)
Beispiel #2
0
def wpUpdate(pages):
	wl = WebLibrary(app_data=app_data)
	for page in pages:
		try:
			wl.update(page)
		except IOError as e:
			print(e)
Beispiel #3
0
def wpUpdateAll():
    wl = WebLibrary(app_data=app_data)
    try:
        wl.update_all()
    except IOError as e:
        print(e)
Beispiel #4
0
def wpUpdateAll():
	wl = WebLibrary(app_data=app_data)
	try:
		wl.update_all()
	except IOError as e:
		print(e)