Skip to content

Instantly share code, notes, and snippets.

@werrpy
Last active July 26, 2018 19:20
Show Gist options
  • Save werrpy/92e5345a3476982503f3df391e8408c4 to your computer and use it in GitHub Desktop.
Save werrpy/92e5345a3476982503f3df391e8408c4 to your computer and use it in GitHub Desktop.
WIP imagez.to upload script
# production: python3 -O imagez.py
# debug: python3 imagez.py
import requests
from bs4 import BeautifulSoup
def get_embed(url):
# url is imagez post, ex. https://imagez.to/i/xksKbOSe
resp = requests.get(url).text
soup = BeautifulSoup(resp, 'html.parser')
url_embed = soup.find('textarea', {"name":"url_embed"}).string
html_embed = soup.find('textarea', {"name":"html_embed"}).string
bbcode_embed = soup.find('textarea', {"name":"bbcode_embed"}).string
print(bbcode_embed)
#get_embed('https://imagez.to/i/xksKbOSe')
#exit()
# get meta token
resp = requests.get('https://imagez.to/').text
soup = BeautifulSoup(resp, 'html.parser')
token = soup.find('meta', {"name":"_token"})['content']
if __debug__:
print("_token: " + token)
# TODO: POST form data to https://imagez.to/image/upload for each image
'''
_token: kXc1KFqENRmTx4b6yY6nI8oUE1cO8XkPOMUdW8hG
qquuid: a16852f3-2b22-4e68-a8ff-d7af04b1a928
qqfilename: iS2UIklu_o.png
qqtotalfilesize: 1673307
qqfile: (binary)
'''
# TODO: POST form data to https://imagez.to/image/create
'''
_token: kXc1KFqENRmTx4b6yY6nI8oUE1cO8XkPOMUdW8hG
images[]: 700944
title: example title
description: example desc
adult: 0
private: 0
expire: 0
'''
#upload_form = soup.find("form", _id="form_upload")
#print(upload_form)
#print(token)
#token = soup2.find("form", {"name": "_token"})
#print(token)
#soup2 = BeautifulSoup(upload_form, 'html.parser')
#title = soup2.find("form", {"name": "title"})
#print(title)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment