Skip to content

Commit 330841c

Browse files
committed
metadata/docs
1 parent b8361aa commit 330841c

1 file changed

Lines changed: 32 additions & 0 deletions

File tree

src/lpdb/__init__.py

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,34 @@
1+
"""
2+
Python interface for Liquipedia Database (LPDB) API
3+
"""
4+
5+
import importlib.metadata as _metadata
6+
17
from .defs import *
28
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

Comments
 (0)