ufload3 1.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
ufload3/__init__.py ADDED
@@ -0,0 +1,11 @@
1
+ from . import cloud; assert cloud
2
+ from . import db; assert db
3
+
4
+ __version__ = '1.0'
5
+
6
+ # null progress, can be overridden by importers
7
+ def _progress(p):
8
+ pass
9
+
10
+ progress = _progress
11
+
File without changes