evesde 0.1.0a1__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.
evesde/__init__.py ADDED
@@ -0,0 +1,33 @@
1
+ """evesde — библиотека для работы со статическими данными EVE Online (SDE)."""
2
+
3
+ from __future__ import annotations
4
+
5
+ from evesde.api.sde import (
6
+ SDE,
7
+ Agent,
8
+ DogmaAttribute,
9
+ IndustryRecipe,
10
+ Item,
11
+ Meta,
12
+ SDEAmbiguousNameError,
13
+ SDENotFoundError,
14
+ SolarSystem,
15
+ TypeStats,
16
+ UpdateResult,
17
+ )
18
+ from evesde.config import SDEConfig
19
+
20
+ __all__ = [
21
+ "SDE",
22
+ "Agent",
23
+ "DogmaAttribute",
24
+ "IndustryRecipe",
25
+ "Item",
26
+ "Meta",
27
+ "SDEAmbiguousNameError",
28
+ "SDENotFoundError",
29
+ "SDEConfig",
30
+ "SolarSystem",
31
+ "TypeStats",
32
+ "UpdateResult",
33
+ ]
evesde/api/__init__.py ADDED
@@ -0,0 +1 @@
1
+ """Публичный API запросов evesde."""