Skip to content

Instantly share code, notes, and snippets.

@kirkdotcam
Last active December 17, 2018 19:38
Show Gist options
  • Save kirkdotcam/a6f73666595c0f6e66f3ebea9ebbe17c to your computer and use it in GitHub Desktop.
Save kirkdotcam/a6f73666595c0f6e66f3ebea9ebbe17c to your computer and use it in GitHub Desktop.
search_failure = []
for drug in top200_names:
res = requests.get(f"https://cactus.nci.nih.gov/chemical/structure/{drug}/stdinchi")
if res.status_code == 404:
search_failure.append(drug)
else:
inchi_to_mol_file(res.text, drug)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment