Metadata-Version: 1.1
Name: python-hdfs
Version: 0.4
Summary: Python wrapper for libhdfs
Home-page: https://github.com/jdowner/libpyhdfs
Author: Deng Zhiping, Joshua Downer
Author-email: joshua.downer@gmail.com
License: Apache License 2.0
Description:   libpyhdfs
          ==================================================
        
          Introduction
          --------------------------------------------------
        
          libpyhdfs is a Python extension module which wraps the C API in libhdfs to
          access Hadoop file system.
        
          Sample usage:
        
            #!/usr/bin/env python
            import pyhdfs
        
            fs = pyhdfs.connect("192.168.1.1", 9000)
            pyhdfs.get(fs, "/path/to/remote-src-file", "/path/to/local-dst-file")
        
            f = pyhdfs.open(fs, "/user/wormtongue/quotes.txt", "w")
            pyhdfs.write(fs, f, "Why do you lay these troubles on an already troubled mind?")
            pyhdfs.close(fs, f)
        
            pyhdfs.disconnect(fs)
        
        
          Installation
          --------------------------------------------------
        
          Please see the file called INSTALL.
        
Platform: GNU/Linux
Classifier: Development Status :: 3 - Alpha
Classifier: Operating System :: Unix
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: System :: Filesystems
Classifier: Topic :: Utilities
