Skip to content

FootprintAI/tintin-sdk

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 

Repository files navigation

tintin-sdk

SDK library for project tintin

Installation

pip install tintin-sdk

Example

Download files to /tmp from Assets /testdata/1.jpg
from tintin.file.minio import FileManager as minioFileManager

debug = False
mgr = FileManager('', debug)

// download individual assets from /testdata/1.jpg to /tmp/testdata/1.jpg folder
mgr.download('/tmp',['/testdata/1.jpg'])

// download the entire objects with prefix /testdata into /tmp folder
mgr.download('/tmp',['/testdata'])

see more on testcase.