Metadata-Version: 2.1
Name: dwython
Version: 0.1.6
Summary: Datawave Python API
Home-page: https://github.com/phrocker/dwython
Author: Marc Parisi
License: UNKNOWN
Description: # dwython
        Dwython is a Datawave API interconnect within Python.
        
        ## Example
        
        ```python
            user_query = query.Query(query = query,
                                cert_path = cert, key_path = key, ca_cert=cacert, key_password=key_pass, url=url )
            result = user_query.create()
            print("{},{},{}".format(line,result.operation_time,result.wall_time))
            result = user_query.next()
            print("{},{},{}".format(line,result.operation_time,result.wall_time))
        ```
Keywords: dwython
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.8
Description-Content-Type: text/markdown
