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.
Files changed (32) hide show
  1. tf2_data-0.2.0/.gitignore +3 -0
  2. {tf2_data-0.0.8 → tf2_data-0.2.0}/PKG-INFO +1 -1
  3. {tf2_data-0.0.8 → tf2_data-0.2.0}/src/tf2_data/__init__.py +6 -6
  4. {tf2_data-0.0.8 → tf2_data-0.2.0}/src/tf2_data/json/defindex_full_names.json +1036 -0
  5. {tf2_data-0.0.8 → tf2_data-0.2.0}/src/tf2_data/json/defindex_names.json +858 -178
  6. {tf2_data-0.0.8 → tf2_data-0.2.0}/src/tf2_data/json/effects.json +47 -2
  7. {tf2_data-0.0.8 → tf2_data-0.2.0}/src/tf2_data/json/schema_items.json +33268 -21401
  8. {tf2_data-0.0.8 → tf2_data-0.2.0}/src/tf2_data/schema.py +1 -2
  9. {tf2_data-0.0.8 → tf2_data-0.2.0}/src/tf2_data.egg-info/PKG-INFO +1 -1
  10. tf2_data-0.0.8/.gitignore +0 -2
  11. {tf2_data-0.0.8 → tf2_data-0.2.0}/.flake8 +0 -0
  12. {tf2_data-0.0.8 → tf2_data-0.2.0}/.github/workflows/publish.yml +0 -0
  13. {tf2_data-0.0.8 → tf2_data-0.2.0}/LICENSE +0 -0
  14. {tf2_data-0.0.8 → tf2_data-0.2.0}/README.md +0 -0
  15. {tf2_data-0.0.8 → tf2_data-0.2.0}/pyproject.toml +0 -0
  16. {tf2_data-0.0.8 → tf2_data-0.2.0}/setup.cfg +0 -0
  17. {tf2_data-0.0.8 → tf2_data-0.2.0}/setup.py +0 -0
  18. {tf2_data-0.0.8 → tf2_data-0.2.0}/src/tf2_data/files.py +0 -0
  19. {tf2_data-0.0.8 → tf2_data-0.2.0}/src/tf2_data/json/colors.json +0 -0
  20. {tf2_data-0.0.8 → tf2_data-0.2.0}/src/tf2_data/json/item_nameids.json +0 -0
  21. {tf2_data-0.0.8 → tf2_data-0.2.0}/src/tf2_data/json/killstreaks.json +0 -0
  22. {tf2_data-0.0.8 → tf2_data-0.2.0}/src/tf2_data/json/qualities.json +0 -0
  23. {tf2_data-0.0.8 → tf2_data-0.2.0}/src/tf2_data/json/schema_overview.json +0 -0
  24. {tf2_data-0.0.8 → tf2_data-0.2.0}/src/tf2_data/json/wears.json +0 -0
  25. {tf2_data-0.0.8 → tf2_data-0.2.0}/src/tf2_data/static.py +0 -0
  26. {tf2_data-0.0.8 → tf2_data-0.2.0}/src/tf2_data/utils.py +0 -0
  27. {tf2_data-0.0.8 → tf2_data-0.2.0}/src/tf2_data.egg-info/SOURCES.txt +0 -0
  28. {tf2_data-0.0.8 → tf2_data-0.2.0}/src/tf2_data.egg-info/dependency_links.txt +0 -0
  29. {tf2_data-0.0.8 → tf2_data-0.2.0}/src/tf2_data.egg-info/requires.txt +0 -0
  30. {tf2_data-0.0.8 → tf2_data-0.2.0}/src/tf2_data.egg-info/top_level.txt +0 -0
  31. {tf2_data-0.0.8 → tf2_data-0.2.0}/tests/__init__.py +0 -0
  32. {tf2_data-0.0.8 → tf2_data-0.2.0}/tests/test_static.py +0 -0
@@ -0,0 +1,3 @@
1
+ .vscode
2
+ __pycache__
3
+ update.py
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tf2-data
3
- Version: 0.0.8
3
+ Version: 0.2.0
4
4
  Summary: Item schemas, unusual effects, SKUs and more useful data for TF2 trading
5
5
  Author-email: offish <overutilization@gmail.com>
6
6
  Project-URL: Homepage, https://github.com/offish/tf2-data
@@ -1,16 +1,16 @@
1
1
  __title__ = "tf2-data"
2
2
  __author__ = "offish"
3
- __version__ = "0.0.8"
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