xcpcio 0.64.0__tar.gz → 0.64.1__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 xcpcio might be problematic. Click here for more details.

Files changed (51) hide show
  1. xcpcio-0.64.1/PKG-INFO +86 -0
  2. xcpcio-0.64.1/README.md +56 -0
  3. {xcpcio-0.64.0 → xcpcio-0.64.1}/xcpcio/__version__.py +1 -1
  4. xcpcio-0.64.0/PKG-INFO +0 -31
  5. xcpcio-0.64.0/README.md +0 -1
  6. {xcpcio-0.64.0 → xcpcio-0.64.1}/.gitignore +0 -0
  7. {xcpcio-0.64.0 → xcpcio-0.64.1}/.python-version +0 -0
  8. {xcpcio-0.64.0 → xcpcio-0.64.1}/app/contest_api_server.py +0 -0
  9. {xcpcio-0.64.0 → xcpcio-0.64.1}/cli/ccs_archiver_cli.py +0 -0
  10. {xcpcio-0.64.0 → xcpcio-0.64.1}/pyproject.toml +0 -0
  11. {xcpcio-0.64.0 → xcpcio-0.64.1}/scripts/generate_ccs_models.sh +0 -0
  12. {xcpcio-0.64.0 → xcpcio-0.64.1}/tests/__init__.py +0 -0
  13. {xcpcio-0.64.0 → xcpcio-0.64.1}/tests/test_contest.py +0 -0
  14. {xcpcio-0.64.0 → xcpcio-0.64.1}/tests/test_submission.py +0 -0
  15. {xcpcio-0.64.0 → xcpcio-0.64.1}/tests/test_team.py +0 -0
  16. {xcpcio-0.64.0 → xcpcio-0.64.1}/tests/test_types.py +0 -0
  17. {xcpcio-0.64.0 → xcpcio-0.64.1}/uv.lock +0 -0
  18. {xcpcio-0.64.0 → xcpcio-0.64.1}/xcpcio/__init__.py +0 -0
  19. {xcpcio-0.64.0 → xcpcio-0.64.1}/xcpcio/ccs/__init__.py +0 -0
  20. {xcpcio-0.64.0 → xcpcio-0.64.1}/xcpcio/ccs/api_server/__init__.py +0 -0
  21. {xcpcio-0.64.0 → xcpcio-0.64.1}/xcpcio/ccs/api_server/dependencies.py +0 -0
  22. {xcpcio-0.64.0 → xcpcio-0.64.1}/xcpcio/ccs/api_server/routes/__init__.py +0 -0
  23. {xcpcio-0.64.0 → xcpcio-0.64.1}/xcpcio/ccs/api_server/routes/access.py +0 -0
  24. {xcpcio-0.64.0 → xcpcio-0.64.1}/xcpcio/ccs/api_server/routes/accounts.py +0 -0
  25. {xcpcio-0.64.0 → xcpcio-0.64.1}/xcpcio/ccs/api_server/routes/awards.py +0 -0
  26. {xcpcio-0.64.0 → xcpcio-0.64.1}/xcpcio/ccs/api_server/routes/clarifications.py +0 -0
  27. {xcpcio-0.64.0 → xcpcio-0.64.1}/xcpcio/ccs/api_server/routes/contests.py +0 -0
  28. {xcpcio-0.64.0 → xcpcio-0.64.1}/xcpcio/ccs/api_server/routes/general.py +0 -0
  29. {xcpcio-0.64.0 → xcpcio-0.64.1}/xcpcio/ccs/api_server/routes/groups.py +0 -0
  30. {xcpcio-0.64.0 → xcpcio-0.64.1}/xcpcio/ccs/api_server/routes/judgement_types.py +0 -0
  31. {xcpcio-0.64.0 → xcpcio-0.64.1}/xcpcio/ccs/api_server/routes/judgements.py +0 -0
  32. {xcpcio-0.64.0 → xcpcio-0.64.1}/xcpcio/ccs/api_server/routes/languages.py +0 -0
  33. {xcpcio-0.64.0 → xcpcio-0.64.1}/xcpcio/ccs/api_server/routes/organizations.py +0 -0
  34. {xcpcio-0.64.0 → xcpcio-0.64.1}/xcpcio/ccs/api_server/routes/problems.py +0 -0
  35. {xcpcio-0.64.0 → xcpcio-0.64.1}/xcpcio/ccs/api_server/routes/runs.py +0 -0
  36. {xcpcio-0.64.0 → xcpcio-0.64.1}/xcpcio/ccs/api_server/routes/submissions.py +0 -0
  37. {xcpcio-0.64.0 → xcpcio-0.64.1}/xcpcio/ccs/api_server/routes/teams.py +0 -0
  38. {xcpcio-0.64.0 → xcpcio-0.64.1}/xcpcio/ccs/api_server/server.py +0 -0
  39. {xcpcio-0.64.0 → xcpcio-0.64.1}/xcpcio/ccs/api_server/services/__init__.py +0 -0
  40. {xcpcio-0.64.0 → xcpcio-0.64.1}/xcpcio/ccs/api_server/services/contest_service.py +0 -0
  41. {xcpcio-0.64.0 → xcpcio-0.64.1}/xcpcio/ccs/base/__init__.py +0 -0
  42. {xcpcio-0.64.0 → xcpcio-0.64.1}/xcpcio/ccs/base/types.py +0 -0
  43. {xcpcio-0.64.0 → xcpcio-0.64.1}/xcpcio/ccs/contest_archiver.py +0 -0
  44. {xcpcio-0.64.0 → xcpcio-0.64.1}/xcpcio/ccs/model/__init__.py +0 -0
  45. {xcpcio-0.64.0 → xcpcio-0.64.1}/xcpcio/ccs/model/model_2023_06/__init__.py +0 -0
  46. {xcpcio-0.64.0 → xcpcio-0.64.1}/xcpcio/ccs/model/model_2023_06/model.py +0 -0
  47. {xcpcio-0.64.0 → xcpcio-0.64.1}/xcpcio/ccs/reader/__init__.py +0 -0
  48. {xcpcio-0.64.0 → xcpcio-0.64.1}/xcpcio/ccs/reader/base_ccs_reader.py +0 -0
  49. {xcpcio-0.64.0 → xcpcio-0.64.1}/xcpcio/ccs/reader/contest_package_reader.py +0 -0
  50. {xcpcio-0.64.0 → xcpcio-0.64.1}/xcpcio/constants.py +0 -0
  51. {xcpcio-0.64.0 → xcpcio-0.64.1}/xcpcio/types.py +0 -0
xcpcio-0.64.1/PKG-INFO ADDED
@@ -0,0 +1,86 @@
1
+ Metadata-Version: 2.4
2
+ Name: xcpcio
3
+ Version: 0.64.1
4
+ Summary: xcpcio python lib
5
+ Project-URL: homepage, https://github.com/xcpcio/xcpcio
6
+ Project-URL: documentation, https://github.com/xcpcio/xcpcio
7
+ Project-URL: repository, https://github.com/xcpcio/xcpcio
8
+ Author-email: Dup4 <hi@dup4.com>
9
+ Maintainer-email: Dup4 <hi@dup4.com>, cubercsl <hi@cubercsl.site>
10
+ License-Expression: MIT
11
+ Keywords: xcpcio
12
+ Classifier: Programming Language :: Python :: 3
13
+ Classifier: Programming Language :: Python :: 3.11
14
+ Classifier: Programming Language :: Python :: 3.12
15
+ Classifier: Programming Language :: Python :: 3.13
16
+ Classifier: Topic :: Software Development :: Build Tools
17
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
18
+ Requires-Python: >=3.11
19
+ Requires-Dist: aiofiles>=23.0.0
20
+ Requires-Dist: aiohttp>=3.8.0
21
+ Requires-Dist: click>=8.0.0
22
+ Requires-Dist: fastapi>=0.117.1
23
+ Requires-Dist: pydantic>=2.11.7
24
+ Requires-Dist: pyyaml>=6.0.0
25
+ Requires-Dist: semver>=3.0.0
26
+ Requires-Dist: tenacity>=8.0.0
27
+ Requires-Dist: uvicorn>=0.36.0
28
+ Requires-Dist: zstandard>=0.25.0
29
+ Description-Content-Type: text/markdown
30
+
31
+ # xcpcio-python
32
+
33
+ Python library and CLI tools for XCPCIO.
34
+
35
+ ## Features
36
+
37
+ - **Type Definitions**: Pydantic models for contest data structures (teams, submissions, problems, etc.)
38
+ - **Constants**: Shared constants for submission statuses, time units, and penalty calculations
39
+ - **CCS Archiver**: CLI tool to archive CCS API data to contest package format
40
+ - **Contest API Server**: CLI tool to serve contest packages via CCS API
41
+ - **Cross-Language Compatibility**: Mirrors TypeScript types for data consistency
42
+
43
+ ## Installation
44
+
45
+ ```bash
46
+ pip install xcpcio
47
+ ```
48
+
49
+ Or install with [uv](https://github.com/astral-sh/uv):
50
+
51
+ ```bash
52
+ uv add xcpcio
53
+ ```
54
+
55
+ ## Development
56
+
57
+ ### Setup
58
+
59
+ ```bash
60
+ # Clone repository
61
+ git clone https://github.com/xcpcio/xcpcio.git
62
+ cd xcpcio/python
63
+
64
+ # Install dependencies with uv
65
+ uv sync
66
+ ```
67
+
68
+ ### Testing
69
+
70
+ ```bash
71
+ # Run tests
72
+ uv run pytest
73
+
74
+ # Run specific test file
75
+ uv run pytest tests/test_types.py
76
+ ```
77
+
78
+ ## Documentation
79
+
80
+ For detailed documentation, visit:
81
+
82
+ - [CCS Utility Guide](https://xcpcio.com/guide/ccs-utility)
83
+
84
+ ## License
85
+
86
+ MIT License &copy; 2020-PRESENT [Dup4](https://github.com/Dup4)
@@ -0,0 +1,56 @@
1
+ # xcpcio-python
2
+
3
+ Python library and CLI tools for XCPCIO.
4
+
5
+ ## Features
6
+
7
+ - **Type Definitions**: Pydantic models for contest data structures (teams, submissions, problems, etc.)
8
+ - **Constants**: Shared constants for submission statuses, time units, and penalty calculations
9
+ - **CCS Archiver**: CLI tool to archive CCS API data to contest package format
10
+ - **Contest API Server**: CLI tool to serve contest packages via CCS API
11
+ - **Cross-Language Compatibility**: Mirrors TypeScript types for data consistency
12
+
13
+ ## Installation
14
+
15
+ ```bash
16
+ pip install xcpcio
17
+ ```
18
+
19
+ Or install with [uv](https://github.com/astral-sh/uv):
20
+
21
+ ```bash
22
+ uv add xcpcio
23
+ ```
24
+
25
+ ## Development
26
+
27
+ ### Setup
28
+
29
+ ```bash
30
+ # Clone repository
31
+ git clone https://github.com/xcpcio/xcpcio.git
32
+ cd xcpcio/python
33
+
34
+ # Install dependencies with uv
35
+ uv sync
36
+ ```
37
+
38
+ ### Testing
39
+
40
+ ```bash
41
+ # Run tests
42
+ uv run pytest
43
+
44
+ # Run specific test file
45
+ uv run pytest tests/test_types.py
46
+ ```
47
+
48
+ ## Documentation
49
+
50
+ For detailed documentation, visit:
51
+
52
+ - [CCS Utility Guide](https://xcpcio.com/guide/ccs-utility)
53
+
54
+ ## License
55
+
56
+ MIT License &copy; 2020-PRESENT [Dup4](https://github.com/Dup4)
@@ -1,4 +1,4 @@
1
1
  # This file is auto-generated by Hatchling. As such, do not:
2
2
  # - modify
3
3
  # - track in version control e.g. be sure to add to .gitignore
4
- __version__ = VERSION = '0.64.0'
4
+ __version__ = VERSION = '0.64.1'
xcpcio-0.64.0/PKG-INFO DELETED
@@ -1,31 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: xcpcio
3
- Version: 0.64.0
4
- Summary: xcpcio python lib
5
- Project-URL: homepage, https://github.com/xcpcio/xcpcio
6
- Project-URL: documentation, https://github.com/xcpcio/xcpcio
7
- Project-URL: repository, https://github.com/xcpcio/xcpcio
8
- Author-email: Dup4 <hi@dup4.com>
9
- Maintainer-email: Dup4 <hi@dup4.com>, cubercsl <hi@cubercsl.site>
10
- License-Expression: MIT
11
- Keywords: xcpcio
12
- Classifier: Programming Language :: Python :: 3
13
- Classifier: Programming Language :: Python :: 3.11
14
- Classifier: Programming Language :: Python :: 3.12
15
- Classifier: Programming Language :: Python :: 3.13
16
- Classifier: Topic :: Software Development :: Build Tools
17
- Classifier: Topic :: Software Development :: Libraries :: Python Modules
18
- Requires-Python: >=3.11
19
- Requires-Dist: aiofiles>=23.0.0
20
- Requires-Dist: aiohttp>=3.8.0
21
- Requires-Dist: click>=8.0.0
22
- Requires-Dist: fastapi>=0.117.1
23
- Requires-Dist: pydantic>=2.11.7
24
- Requires-Dist: pyyaml>=6.0.0
25
- Requires-Dist: semver>=3.0.0
26
- Requires-Dist: tenacity>=8.0.0
27
- Requires-Dist: uvicorn>=0.36.0
28
- Requires-Dist: zstandard>=0.25.0
29
- Description-Content-Type: text/markdown
30
-
31
- # xcpcio-python
xcpcio-0.64.0/README.md DELETED
@@ -1 +0,0 @@
1
- # xcpcio-python
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
File without changes
File without changes
File without changes
File without changes