Metadata-Version: 1.1
Name: hbp_archive
Version: 0.2.0
Summary: A high-level API for interacting with the Human Brain Project archival storage at CSCS
Home-page: https://github.com/apdavison/hbp_archive
Author: Andrew P. Davison
Author-email: andrew.davison@unic.cnrs-gif.fr
License: UNKNOWN
Description-Content-Type: UNKNOWN
Description: A high-level API for interacting with the Human Brain Project archival storage at CSCS.
        
        Author: Andrew Davison, CNRS
        
        Usage:
        
        ```python
            from hbp_archive import Container, Project, Archive
        
            # Working with a single container
        
            container = Container("MyContainer", username="xyzabc")  # you will be prompted for your password
            files = container.list()
            local_file = container.download("README.txt")
            number_of_files = container.count()
            size_in_MB = container.size("MB")
        
            # Working with a project
        
            sp6 = Project('MyProject', username="xyzabc")
            containers = sp6.containers
        
            # Listing all your projects
        
            archive = Archive(username="xyzabc")
            projects = archive.projects
            container = archive.find_container("MyContainer")  # will search through all projects
        ```
Keywords: swift hbp cscs data
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Science/Research
Classifier: Topic :: Scientific/Engineering
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
