Skip to content

Latest commit

 

History

History
19 lines (12 loc) · 419 Bytes

README.md

File metadata and controls

19 lines (12 loc) · 419 Bytes

Simple Python SDK for fetching files from Veeva Clinical

Usage

from classes.veeva_clinical import VeevaClinical

client = VeevaClinical('<veeva clinical dns>','<user name>','<password>')

#list all files, returns a VeevaDocument object
documents = client.list_all_files()


#download each file, save to disk
for document in documents:
  with open(document.name,'wb') as f:
    f.write(document.download())