remotes/1693045480750635534/spooky-22
Aevann1 2021-07-21 18:23:51 +02:00
parent c970a6ad73
commit 2780afc4e8
1 changed files with 2 additions and 2 deletions

View File

@ -388,7 +388,7 @@ def archiveorg(url):
except Exception as e: print(e)
def sex():
def sex(g):
for u in g.db.query(User).filter(User.profileurl != None).all():
print(f"1 {u.profileurl}")
x = requests.get(u.profileurl)
@ -405,7 +405,7 @@ def sex():
@app.route("/admin/resize", methods=["GET"])
def resize():
gevent.spawn(archiveorg, "https://sex.com")
gevent.spawn(sex, g)
return "sex"
@app.route("/submit", methods=['POST'])