cs2tracker 2.0.3__tar.gz → 2.0.5__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.

Potentially problematic release.


This version of cs2tracker might be problematic. Click here for more details.

Files changed (26) hide show
  1. {cs2tracker-2.0.3 → cs2tracker-2.0.5}/PKG-INFO +1 -1
  2. {cs2tracker-2.0.3 → cs2tracker-2.0.5}/cs2tracker/_version.py +2 -2
  3. cs2tracker-2.0.5/cs2tracker/main.py +33 -0
  4. {cs2tracker-2.0.3 → cs2tracker-2.0.5}/cs2tracker.egg-info/PKG-INFO +1 -1
  5. cs2tracker-2.0.3/cs2tracker/main.py +0 -62
  6. {cs2tracker-2.0.3 → cs2tracker-2.0.5}/.flake8 +0 -0
  7. {cs2tracker-2.0.3 → cs2tracker-2.0.5}/.gitignore +0 -0
  8. {cs2tracker-2.0.3 → cs2tracker-2.0.5}/.isort.cfg +0 -0
  9. {cs2tracker-2.0.3 → cs2tracker-2.0.5}/.pre-commit-config.yaml +0 -0
  10. {cs2tracker-2.0.3 → cs2tracker-2.0.5}/LICENSE.md +0 -0
  11. {cs2tracker-2.0.3 → cs2tracker-2.0.5}/MANIFEST.in +0 -0
  12. {cs2tracker-2.0.3 → cs2tracker-2.0.5}/README.md +0 -0
  13. {cs2tracker-2.0.3 → cs2tracker-2.0.5}/cs2tracker/__init__.py +0 -0
  14. {cs2tracker-2.0.3 → cs2tracker-2.0.5}/cs2tracker/__main__.py +0 -0
  15. {cs2tracker-2.0.3 → cs2tracker-2.0.5}/cs2tracker/application.py +0 -0
  16. {cs2tracker-2.0.3 → cs2tracker-2.0.5}/cs2tracker/constants.py +0 -0
  17. {cs2tracker-2.0.3 → cs2tracker-2.0.5}/cs2tracker/data/config.ini +0 -0
  18. {cs2tracker-2.0.3 → cs2tracker-2.0.5}/cs2tracker/scraper.py +0 -0
  19. {cs2tracker-2.0.3 → cs2tracker-2.0.5}/cs2tracker.egg-info/SOURCES.txt +0 -0
  20. {cs2tracker-2.0.3 → cs2tracker-2.0.5}/cs2tracker.egg-info/dependency_links.txt +0 -0
  21. {cs2tracker-2.0.3 → cs2tracker-2.0.5}/cs2tracker.egg-info/entry_points.txt +0 -0
  22. {cs2tracker-2.0.3 → cs2tracker-2.0.5}/cs2tracker.egg-info/requires.txt +0 -0
  23. {cs2tracker-2.0.3 → cs2tracker-2.0.5}/cs2tracker.egg-info/top_level.txt +0 -0
  24. {cs2tracker-2.0.3 → cs2tracker-2.0.5}/pyproject.toml +0 -0
  25. {cs2tracker-2.0.3 → cs2tracker-2.0.5}/requirements.txt +0 -0
  26. {cs2tracker-2.0.3 → cs2tracker-2.0.5}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: cs2tracker
3
- Version: 2.0.3
3
+ Version: 2.0.5
4
4
  Summary: Tracking the steam market prices of CS2 items
5
5
  Home-page: https://github.com/ashiven/cs2tracker
6
6
  Author: Jannik Novak
@@ -12,5 +12,5 @@ __version__: str
12
12
  __version_tuple__: VERSION_TUPLE
13
13
  version_tuple: VERSION_TUPLE
14
14
 
15
- __version__ = version = '2.0.3'
16
- __version_tuple__ = version_tuple = (2, 0, 3)
15
+ __version__ = version = '2.0.5'
16
+ __version_tuple__ = version_tuple = (2, 0, 5)
@@ -0,0 +1,33 @@
1
+ import urllib3
2
+ from rich.console import Console
3
+
4
+ from .application import Application
5
+
6
+
7
+ def main():
8
+ ## disable warnings for proxy requests
9
+ urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning)
10
+
11
+ console = Console()
12
+ console.print(
13
+ "[bold yellow]"
14
+ + """
15
+ __ _____ _____ ______ ____ ____ __ __ _ ___ ____
16
+ / ] / ___/| T| T| \ / T / ]| l/ ] / _]| \\
17
+ / / ( \_ l__/ || || D )Y o | / / | ' / / [_ | D )
18
+ / / \__ T| __jl_j l_j| / | | / / | \ Y _]| /
19
+ / \_ / \ || / | | | | \ | _ |/ \_ | Y| [_ | \\
20
+ \ | \ || | | | | . Y| | |\ || . || T| . Y
21
+ \____j \___jl_____j l__j l__j\_jl__j__j \____jl__j\_jl_____jl__j\_j
22
+
23
+
24
+ """
25
+ + "Version: v2.0.5 - 11/14/2023 - Jannik Novak @ashiven_"
26
+ )
27
+
28
+ application = Application()
29
+ application.run()
30
+
31
+
32
+ if __name__ == "__main__":
33
+ main()
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: cs2tracker
3
- Version: 2.0.3
3
+ Version: 2.0.5
4
4
  Summary: Tracking the steam market prices of CS2 items
5
5
  Home-page: https://github.com/ashiven/cs2tracker
6
6
  Author: Jannik Novak
@@ -1,62 +0,0 @@
1
- import urllib3
2
- from rich.console import Console
3
-
4
- from .application import Application
5
-
6
-
7
- def main():
8
- ## disable warnings for proxy requests
9
- urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning)
10
-
11
- console = Console()
12
-
13
- console.print(
14
- "[bold yellow]"
15
- + " "
16
- )
17
- console.print(
18
- "[bold yellow]"
19
- + " __ _____ ____ ___ ______ ____ ____ __ __ _ ___ ____ "
20
- )
21
- console.print(
22
- "[bold yellow]"
23
- + " / ] / ___/ / T / \ | T| \ / T / ]| l/ ] / _]| \ "
24
- )
25
- console.print(
26
- "[bold yellow]"
27
- + " / / ( \_ Y __jY Y| || D )Y o | / / | ' / / [_ | D )"
28
- )
29
- console.print(
30
- "[bold yellow]"
31
- + " / / \__ T| T || O |l_j l_j| / | | / / | \ Y _]| / "
32
- )
33
- console.print(
34
- "[bold yellow]"
35
- + "/ \_ / \ || l_ || | | | | \ | _ |/ \_ | Y| [_ | \ "
36
- )
37
- console.print(
38
- "[bold yellow]"
39
- + "\ | \ || |l ! | | | . Y| | |\ || . || T| . Y"
40
- )
41
- console.print(
42
- "[bold yellow]"
43
- + " \____j \___jl___,_j \___/ l__j l__j\_jl__j__j \____jl__j\_jl_____jl__j\_j"
44
- )
45
- console.print(
46
- "[bold yellow]"
47
- + " "
48
- )
49
- console.print(
50
- "[bold yellow]" + "Version: v2.0.1 - 11/14/2023 - Jannik Novak @ashiven_"
51
- )
52
- console.print(
53
- "[bold yellow]"
54
- + " "
55
- )
56
-
57
- application = Application()
58
- application.run()
59
-
60
-
61
- if __name__ == "__main__":
62
- main()
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes