rodrigosantosbr

[Py] Get Wikipedia data

Aug 1st, 2019 (edited)
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.22 KB | None | 0 0
  1. ```
  2. import wikipedia
  3. wikipedia.set_lang("pt")
  4. ny = wikipedia.page("Buenos_Aires_(província)")
  5. print(ny.content)
  6.  
  7. import wikipedia
  8. wikipedia.set_lang("pt")
  9. print(wikipedia.summary("Córdova Província", sentences=2))
  10. ```
Add Comment
Please, Sign In to add comment