Advertisement
Virtual_Universe

Untitled

Jun 7th, 2016
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. # coding: utf-8
  2. from json import loads
  3. import requests
  4.  
  5. w = 'кот'
  6. d = requests.get('https://ru.wiktionary.org/w/api.php?action=query&titles=%s&prop=revisions&rvprop=content&format=json' % w)
  7. w = d.text
  8. print(loads(d.text))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement