Skip to content

akamor/veeva_clinical_sdk

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

49 Commits
 
 
 
 
 
 
 
 

Repository files navigation

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())

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages