Metadata-Version: 2.1
Name: osc-tiny
Version: 0.3.1
Summary: Client API for openSUSE BuildService
Home-page: http://github.com/crazyscientist/osc-tiny
Author: Andreas Hasenkopf
Author-email: ahasenkopf@suse.com
License: MIT
Download-URL: http://github.com/crazyscientist/osc-tiny/tarball/master
Description: OSC Tiny
        ========
        
        [![Build Status](https://travis-ci.com/crazyscientist/osc-tiny.svg?branch=master)](https://travis-ci.com/crazyscientist/osc-tiny)
        [![Coverage Status](https://coveralls.io/repos/github/crazyscientist/osc-tiny/badge.svg)](https://coveralls.io/github/crazyscientist/osc-tiny)
        [![PyPI version](https://badge.fury.io/py/osc-tiny.svg)](https://badge.fury.io/py/osc-tiny)
        
        This project aims to provide a minimalistic and transparent client for accessing
        the [OpenBuildService](https://openbuildservice.org/) 
        [API](https://build.opensuse.org/apidocs/index).
        
        Usage
        -----
        
        This is a very basic example:
        
        ```python
        from osctiny import Osc
        
        osc = Osc(
            url="https://api.opensuse.org",
            username="foobar",
            password="helloworld",
        )
        
        # This returns an LXML object
        osc.requests.get(request_id=1)
        
        # This returns an LXML object
        osc.search.request(xpath="state/@name='new'")
        ```
        
        For more documentation see https://osc-tiny.readthedocs.io/en/latest/
        
        Contributing
        ------------
        
        Any contributions are welcome.
        
        Links
        -----
        
        * https://osc-tiny.readthedocs.io/en/latest/
        * https://openbuildservice.org/
        * https://build.opensuse.org/apidocs/index
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Description-Content-Type: text/markdown
