only skip failing users, added windows compatibility

This commit is contained in:
Lynne 2018-11-01 15:27:03 +10:00
parent 11e7a1ff88
commit 1ec058027c
2 changed files with 23 additions and 21 deletions

7
gen.py
View File

@ -23,8 +23,9 @@ client = Mastodon(
access_token=cfg['secret'], access_token=cfg['secret'],
api_base_url=cfg['site']) api_base_url=cfg['site'])
toot = create.make_toot() if __name__ == '__main__':
if not args.simulate: toot = create.make_toot()
if not args.simulate:
try: try:
if toot['media'] != None: if toot['media'] != None:
mediaID = client.media_post(toot['media'], description = toot['toot']) mediaID = client.media_post(toot['media'], description = toot['toot'])
@ -40,4 +41,4 @@ if not args.simulate:
+ " error:\n" + "\n".join(traceback.format_tb(sys.exc_info()[2])) + " error:\n" + "\n".join(traceback.format_tb(sys.exc_info()[2]))
} }
client.status_post(toot['toot'], visibility = 'unlisted', spoiler_text = "Error!") client.status_post(toot['toot'], visibility = 'unlisted', spoiler_text = "Error!")
print(toot['toot']) print(toot['toot'])

View File

@ -214,10 +214,11 @@ for f in following:
print(" Done!") print(" Done!")
db.commit() db.commit()
except: except:
print("Encountered an error! Saving toots to database and exiting.") print("Encountered an error! Saving toots to database and continuing.")
db.commit() db.commit()
db.close() # db.close()
sys.exit(1)
print("Done!")
db.commit() db.commit()
db.execute("VACUUM") #compact db db.execute("VACUUM") #compact db