akissa/pysyncthing

View on GitHub
pysyncthing/__init__.py

Summary

Maintainability
A
0 mins
Test Coverage
# -*- coding: utf-8 -*-
# vim: ai ts=4 sts=4 et sw=4
# pysyncthing Python bindings for Syncthing REST API
# Copyright (C) 2015 Andrew Colin Kissa <andrew@topdog.za.net>
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this file,
# You can obtain one at http://mozilla.org/MPL/2.0/.
"""
pysyncthing: Python bindings for Syncthing REST API

Copyright 2015, Andrew Colin Kissa
Licensed under MPL 2.0.
"""

from pysyncthing.version import version_info, __version__
from pysyncthing.resource import SyncthingClient


assert version_info
assert SyncthingClient