summaryrefslogtreecommitdiff
path: root/obsapi
diff options
context:
space:
mode:
authorScott Bahling <sbahling@suse.com>2020-09-03 10:19:08 +0200
committerScott Bahling <sbahling@suse.com>2020-09-03 10:19:08 +0200
commitfe355e1a9cd7232c675192a9c59eca1853ffdbc8 (patch)
tree39eea399bc9c106bf07bfc67f29a75f3db4fee10 /obsapi
parentc8cd5800a7beb588c88994abf3643a683f11ab0c (diff)
downloadobsapi-fe355e1a9cd7232c675192a9c59eca1853ffdbc8.tar.gz
obsapi-fe355e1a9cd7232c675192a9c59eca1853ffdbc8.tar.xz
obsapi-fe355e1a9cd7232c675192a9c59eca1853ffdbc8.zip
Add license header
Diffstat (limited to 'obsapi')
-rw-r--r--obsapi/sourceapi.py25
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