Skip to content

Commit

Permalink
add devborg.py
Browse files Browse the repository at this point in the history
  • Loading branch information
udf committed Aug 7, 2020
1 parent 95d0eb9 commit da6b7db
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions devborg.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# 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/.

import logging

from uniborg import Uniborg
import api_key

logging.basicConfig(level=logging.DEBUG)

borg = Uniborg(
"stdborg",
plugin_path="stdplugins_dev",
connection_retries=None,
api_id=api_key.id,
api_hash=api_key.hash
)

borg.run_until_disconnected()

0 comments on commit da6b7db

Please sign in to comment.