diff options
| author | Scott Bahling <sbahling@suse.com> | 2020-09-03 10:19:08 +0200 |
|---|---|---|
| committer | Scott Bahling <sbahling@suse.com> | 2020-09-03 10:19:08 +0200 |
| commit | fe355e1a9cd7232c675192a9c59eca1853ffdbc8 (patch) | |
| tree | 39eea399bc9c106bf07bfc67f29a75f3db4fee10 /obsapi | |
| parent | c8cd5800a7beb588c88994abf3643a683f11ab0c (diff) | |
| download | obsapi-fe355e1a9cd7232c675192a9c59eca1853ffdbc8.tar.gz obsapi-fe355e1a9cd7232c675192a9c59eca1853ffdbc8.tar.xz obsapi-fe355e1a9cd7232c675192a9c59eca1853ffdbc8.zip | |
Add license header
Diffstat (limited to 'obsapi')
| -rw-r--r-- | obsapi/sourceapi.py | 25 |
1 files changed, 24 insertions, 1 deletions
diff --git a/obsapi/sourceapi.py b/obsapi/sourceapi.py index 1d4ba56..da01d3b 100644 --- a/obsapi/sourceapi.py +++ b/obsapi/sourceapi.py @@ -1,5 +1,28 @@ # -*- coding: utf-8 -*- -# +""" +Python OBS 'source' API +~~~~~~~~~~~~~~~~~~~~~~~ + +This module provides the ObsSourceAPI class used for accessing +the `Open Build Service <https://openbuildservice.org/>'_ APIs +related to `sources <https://build.opensuse.org/apidocs/index>`_. + +:copyright: Copyright (c) 2015-2020 Scott Bahling + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License version 2 as + published by the Free Software Foundation. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program (see the file COPYING); if not, write to the + Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA +:license: GPL-2.0, see COPYING for details +""" from obsapi.httpapi import ObsHttpApi |
