よく使うのでメモ
import sys
import requests
def main(hash):
url = "http://xxxyyy/api/hash"
p = {"q" : hash}
r = requests.get(url,params=p)
print(r.json()["hash"])
Go to list of users who liked
More than 3 years have passed since last update.
よく使うのでメモ
import sys
import requests
def main(hash):
url = "http://xxxyyy/api/hash"
p = {"q" : hash}
r = requests.get(url,params=p)
print(r.json()["hash"])
Register as a new user and use Qiita more conveniently
Go to list of users who liked