pySplash.py 1.0.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.
pySplash/__init__.py ADDED
@@ -0,0 +1,38 @@
1
+ """pySplash.py - A Python wrapper for the Unsplash API."""
2
+
3
+ from .api import PySplashApi
4
+ from .api_async import PySplashApiAsync
5
+ from .base import PySplashBase
6
+ from .errors import PySplashError
7
+ from .models import (
8
+ BearerTokenResponse,
9
+ Collection,
10
+ DeleteResponse,
11
+ Photo,
12
+ PhotoLinks,
13
+ PhotoStatistics,
14
+ SearchResult,
15
+ User,
16
+ UserLinks,
17
+ UserPortfolio,
18
+ UserStatistics,
19
+ )
20
+
21
+ __version__ = "1.0.0"
22
+ __all__ = [
23
+ "BearerTokenResponse",
24
+ "Collection",
25
+ "DeleteResponse",
26
+ "Photo",
27
+ "PhotoLinks",
28
+ "PhotoStatistics",
29
+ "PySplashApi",
30
+ "PySplashApiAsync",
31
+ "PySplashBase",
32
+ "PySplashError",
33
+ "SearchResult",
34
+ "User",
35
+ "UserLinks",
36
+ "UserPortfolio",
37
+ "UserStatistics",
38
+ ]