aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Harder <radhermit@gmail.com>2020-12-19 19:01:18 -0700
committerTim Harder <radhermit@gmail.com>2020-12-19 19:21:25 -0700
commit825dc4dff8b5c82d39a0453e592abbe1488961f3 (patch)
treee06c8dafed3fd25aab82b571917c381822490f4b /src/pkgcheck/__init__.py
parenttests: re-add pipeline runtime exception test (diff)
downloadpkgcheck-825dc4dff8b5c82d39a0453e592abbe1488961f3.tar.gz
pkgcheck-825dc4dff8b5c82d39a0453e592abbe1488961f3.tar.bz2
pkgcheck-825dc4dff8b5c82d39a0453e592abbe1488961f3.zip
add initial, simple scan API support
Allows running `pkgcheck scan` programmatically returning results iterators. Fixes #52.
Diffstat (limited to 'src/pkgcheck/__init__.py')
-rw-r--r--src/pkgcheck/__init__.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/pkgcheck/__init__.py b/src/pkgcheck/__init__.py
index d0078cc7..cd5afc59 100644
--- a/src/pkgcheck/__init__.py
+++ b/src/pkgcheck/__init__.py
@@ -1,2 +1,5 @@
+from .api import scan
+from .base import PkgcheckException
+
__title__ = 'pkgcheck'
__version__ = '0.8.0'