Skip to content

Instantly share code, notes, and snippets.

@cenkersisman
Last active April 14, 2020 11:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cenkersisman/9d6265b72069dce6131527201bcdb1f6 to your computer and use it in GitHub Desktop.
Save cenkersisman/9d6265b72069dce6131527201bcdb1f6 to your computer and use it in GitHub Desktop.
import requests
import json
params = dict(
username='volkan',
token='abc123',
code='Saat kaç',
type='text'
)
cevap = json.loads(requests.post("https://beta.ceyd-a.com/jsonengine.jsp", data=params).content.decode('utf-8')[1:-3]).get("answer")
print(cevap)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment