Created
February 29, 2012 13:42
-
-
Save FlaviuSim/1940925 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def load_drugs3(file_path): | |
reader = csv.DictReader(file_path) | |
for row in reader: | |
drug = Drug(rxcui=row['Rxcui'], short_name=row['Short Name'], is_brand | |
= row['Is Brand']) | |
drug.save |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment