tf2-data 0.0.8__tar.gz → 0.2.0__tar.gz
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.
- tf2_data-0.2.0/.gitignore +3 -0
- {tf2_data-0.0.8 → tf2_data-0.2.0}/PKG-INFO +1 -1
- {tf2_data-0.0.8 → tf2_data-0.2.0}/src/tf2_data/__init__.py +6 -6
- {tf2_data-0.0.8 → tf2_data-0.2.0}/src/tf2_data/json/defindex_full_names.json +1036 -0
- {tf2_data-0.0.8 → tf2_data-0.2.0}/src/tf2_data/json/defindex_names.json +858 -178
- {tf2_data-0.0.8 → tf2_data-0.2.0}/src/tf2_data/json/effects.json +47 -2
- {tf2_data-0.0.8 → tf2_data-0.2.0}/src/tf2_data/json/schema_items.json +33268 -21401
- {tf2_data-0.0.8 → tf2_data-0.2.0}/src/tf2_data/schema.py +1 -2
- {tf2_data-0.0.8 → tf2_data-0.2.0}/src/tf2_data.egg-info/PKG-INFO +1 -1
- tf2_data-0.0.8/.gitignore +0 -2
- {tf2_data-0.0.8 → tf2_data-0.2.0}/.flake8 +0 -0
- {tf2_data-0.0.8 → tf2_data-0.2.0}/.github/workflows/publish.yml +0 -0
- {tf2_data-0.0.8 → tf2_data-0.2.0}/LICENSE +0 -0
- {tf2_data-0.0.8 → tf2_data-0.2.0}/README.md +0 -0
- {tf2_data-0.0.8 → tf2_data-0.2.0}/pyproject.toml +0 -0
- {tf2_data-0.0.8 → tf2_data-0.2.0}/setup.cfg +0 -0
- {tf2_data-0.0.8 → tf2_data-0.2.0}/setup.py +0 -0
- {tf2_data-0.0.8 → tf2_data-0.2.0}/src/tf2_data/files.py +0 -0
- {tf2_data-0.0.8 → tf2_data-0.2.0}/src/tf2_data/json/colors.json +0 -0
- {tf2_data-0.0.8 → tf2_data-0.2.0}/src/tf2_data/json/item_nameids.json +0 -0
- {tf2_data-0.0.8 → tf2_data-0.2.0}/src/tf2_data/json/killstreaks.json +0 -0
- {tf2_data-0.0.8 → tf2_data-0.2.0}/src/tf2_data/json/qualities.json +0 -0
- {tf2_data-0.0.8 → tf2_data-0.2.0}/src/tf2_data/json/schema_overview.json +0 -0
- {tf2_data-0.0.8 → tf2_data-0.2.0}/src/tf2_data/json/wears.json +0 -0
- {tf2_data-0.0.8 → tf2_data-0.2.0}/src/tf2_data/static.py +0 -0
- {tf2_data-0.0.8 → tf2_data-0.2.0}/src/tf2_data/utils.py +0 -0
- {tf2_data-0.0.8 → tf2_data-0.2.0}/src/tf2_data.egg-info/SOURCES.txt +0 -0
- {tf2_data-0.0.8 → tf2_data-0.2.0}/src/tf2_data.egg-info/dependency_links.txt +0 -0
- {tf2_data-0.0.8 → tf2_data-0.2.0}/src/tf2_data.egg-info/requires.txt +0 -0
- {tf2_data-0.0.8 → tf2_data-0.2.0}/src/tf2_data.egg-info/top_level.txt +0 -0
- {tf2_data-0.0.8 → tf2_data-0.2.0}/tests/__init__.py +0 -0
- {tf2_data-0.0.8 → tf2_data-0.2.0}/tests/test_static.py +0 -0
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
__title__ = "tf2-data"
|
|
2
2
|
__author__ = "offish"
|
|
3
|
-
__version__ = "0.0
|
|
3
|
+
__version__ = "0.2.0"
|
|
4
4
|
__license__ = "MIT"
|
|
5
5
|
|
|
6
|
-
from .schema import Schema, SchemaItems, IEconItems
|
|
7
|
-
from .static import *
|
|
8
6
|
from .files import (
|
|
9
|
-
EFFECTS,
|
|
10
|
-
SCHEMA_ITEMS,
|
|
11
|
-
DEFINDEX_NAMES,
|
|
12
7
|
DEFINDEX_FULL_NAMES,
|
|
8
|
+
DEFINDEX_NAMES,
|
|
9
|
+
EFFECTS,
|
|
13
10
|
ITEM_NAME_IDS,
|
|
11
|
+
SCHEMA_ITEMS,
|
|
14
12
|
)
|
|
13
|
+
from .schema import IEconItems, Schema, SchemaItems
|
|
14
|
+
from .static import *
|
|
15
15
|
|
|
16
16
|
# flake8: noqa
|