Skip to content

Instantly share code, notes, and snippets.

@tbrittoborges
Last active November 13, 2018 09:41
Show Gist options
  • Save tbrittoborges/d337b524570c305421c3d3ecac856259 to your computer and use it in GitHub Desktop.
Save tbrittoborges/d337b524570c305421c3d3ecac856259 to your computer and use it in GitHub Desktop.
parse medical abbreviations from wikipedia
import pandas as pd
x = pd.read_html('https://de.wikipedia.org/wiki/Medizinische_Abk%C3%BCrzungen')
x=pd.concat(x)
x.tail()
x.set_index(0)[1]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment