This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import io | |
import re | |
import json | |
import requests | |
import demjson3 | |
from PIL import Image | |
import urllib.parse as parse | |
file = input("file url: ") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import json | |
import re | |
import requests | |
from urllib.parse import urlparse, parse_qs | |
file = input("File url: ") | |
def custom_url_encode(input_string): | |
encoded_string = "" |