We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b8361aa commit 330841cCopy full SHA for 330841c
1 file changed
src/lpdb/__init__.py
@@ -1,2 +1,34 @@
1
+"""
2
+Python interface for Liquipedia Database (LPDB) API
3
4
+
5
+import importlib.metadata as _metadata
6
7
from .defs import *
8
from .session import *
9
10
+__all__ = [
11
+ "OpponentType",
12
+ "Broadcasters",
13
+ "Company",
14
+ "Datapoint",
15
+ "ExternalMediaLink",
16
+ "LpdbError",
17
+ "LpdbWarning",
18
+ "LpdbSession",
19
+ "Match",
20
+ "MatchGame",
21
+ "MatchOpponent",
22
+ "Placement",
23
+ "Player",
24
+ "Series",
25
+ "SquadPlayer",
26
+ "StandingsEntry",
27
+ "StandingsTable",
28
+ "Team",
29
+ "Tournament",
30
+ "Transfer",
31
+ "TeamTemplate",
32
+]
33
34
+__version__ = _metadata.version("LPDB_python")
0 commit comments