Metadata-Version: 1.1
Name: artifactory
Version: 0.1.6
Summary: A Python to Artifactory interface
Home-page: http://github.com/parallels/artifactory
Author: Konstantin Nazarov
Author-email: knazarov@parallels.com
License: MIT License
Download-URL: http://github.com/parallels/artifactory
Description: # Python interface library for Jfrog Artifactory #
        
        [![Build Status](https://travis-ci.org/Parallels/artifactory.svg?branch=develop)](https://travis-ci.org/Parallels/artifactory)
        
        This module is intended to serve as a logical descendant of [pathlib](https://docs.python.org/3/library/pathlib.html), a Python 3 module for object-oriented path manipulations. As such, it implements everything as closely as possible to the origin with few exceptions, such as stat().
        
        # Usage Examples #
        
        Getting directory listing:
        
        ```python
        from artifactory import ArtifactoryPath
        path = ArtifactoryPath("http://repo.jfrog.org/artifactory/gradle-ivy-local")
        for p in path.iterdir():
            print p
        ```
        Find all .gz files in current dir, recursively:
        
        ```python
        from artifactory import ArtifactoryPath
        path = ArtifactoryPath("http://repo.jfrog.org/artifactory/distributions/org/")
        
        for p in path.glob("**/*.gz"):
            print p
        ```
        
        Download artifact to a local filesystem:
        
        ```python
        from artifactory import ArtifactoryPath
        path = ArtifactoryPath("http://repo.jfrog.org/artifactory/distributions/org/apache/tomcat/apache-tomcat-7.0.11.tar.gz")
            
        with path.open() as fd:
            with open("tomcat.tar.gz", "w") as out:
                out.write(fd.read())
        ```
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: System :: Filesystems
