AtCoderStudyBooster 0.21__tar.gz → 0.24__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.
- {atcoderstudybooster-0.21 → atcoderstudybooster-0.24}/PKG-INFO +2 -2
- {atcoderstudybooster-0.21 → atcoderstudybooster-0.24}/atcdr/generate.py +1 -1
- {atcoderstudybooster-0.21 → atcoderstudybooster-0.24}/pyproject.toml +2 -2
- atcoderstudybooster-0.24/~/cache/atcder/session.json +1 -0
- {atcoderstudybooster-0.21 → atcoderstudybooster-0.24}/.github/workflows/deploy.yaml +0 -0
- {atcoderstudybooster-0.21 → atcoderstudybooster-0.24}/.gitignore +0 -0
- {atcoderstudybooster-0.21 → atcoderstudybooster-0.24}/.images/demo1.png +0 -0
- {atcoderstudybooster-0.21 → atcoderstudybooster-0.24}/.pre-commit-config.yaml +0 -0
- {atcoderstudybooster-0.21 → atcoderstudybooster-0.24}/.python-version +0 -0
- {atcoderstudybooster-0.21 → atcoderstudybooster-0.24}/.vscode/extensions.json +0 -0
- {atcoderstudybooster-0.21 → atcoderstudybooster-0.24}/.vscode/setting.json +0 -0
- {atcoderstudybooster-0.21 → atcoderstudybooster-0.24}/.vscode/tasks.json +0 -0
- {atcoderstudybooster-0.21 → atcoderstudybooster-0.24}/README.md +0 -0
- {atcoderstudybooster-0.21 → atcoderstudybooster-0.24}/atcdr/__init__.py +0 -0
- {atcoderstudybooster-0.21 → atcoderstudybooster-0.24}/atcdr/download.py +0 -0
- {atcoderstudybooster-0.21 → atcoderstudybooster-0.24}/atcdr/main.py +0 -0
- {atcoderstudybooster-0.21 → atcoderstudybooster-0.24}/atcdr/markdown.py +0 -0
- {atcoderstudybooster-0.21 → atcoderstudybooster-0.24}/atcdr/open.py +0 -0
- {atcoderstudybooster-0.21 → atcoderstudybooster-0.24}/atcdr/test.py +0 -0
- {atcoderstudybooster-0.21 → atcoderstudybooster-0.24}/atcdr/util/__init__.py +0 -0
- {atcoderstudybooster-0.21 → atcoderstudybooster-0.24}/atcdr/util/cost.py +0 -0
- {atcoderstudybooster-0.21 → atcoderstudybooster-0.24}/atcdr/util/execute.py +0 -0
- {atcoderstudybooster-0.21 → atcoderstudybooster-0.24}/atcdr/util/filetype.py +0 -0
- {atcoderstudybooster-0.21 → atcoderstudybooster-0.24}/atcdr/util/gpt.py +0 -0
- {atcoderstudybooster-0.21 → atcoderstudybooster-0.24}/atcdr/util/problem.py +0 -0
- {atcoderstudybooster-0.21 → atcoderstudybooster-0.24}/requirements-dev.lock +0 -0
- {atcoderstudybooster-0.21 → atcoderstudybooster-0.24}/requirements.lock +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: AtCoderStudyBooster
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.24
|
4
4
|
Summary: A tool to download and manage AtCoder problems.
|
5
5
|
Project-URL: Homepage, https://github.com/yuta6/AtCoderStudyBooster
|
6
6
|
Author-email: yuta6 <46110512+yuta6@users.noreply.github.com>
|
@@ -15,7 +15,7 @@ Requires-Dist: rich>=13.7.1
|
|
15
15
|
Requires-Dist: tiktoken
|
16
16
|
Requires-Dist: types-beautifulsoup4>=4.12.0.20240511
|
17
17
|
Requires-Dist: types-requests>=2.32.0.20240712
|
18
|
-
Requires-Dist: yfinance
|
18
|
+
Requires-Dist: yfinance==0.2.41
|
19
19
|
Description-Content-Type: text/markdown
|
20
20
|
|
21
21
|
# AtCoderStudyBooster
|
@@ -140,8 +140,8 @@ def solve_problem(file: Filename, lang: Lang) -> None:
|
|
140
140
|
|
141
141
|
for i in range(1, 4):
|
142
142
|
with console.status(f'{i}回目のコード生成 (by {gpt.model.value})...'):
|
143
|
-
test_report = ''
|
144
143
|
if i == 1:
|
144
|
+
test_report = ''
|
145
145
|
reply = gpt.tell(md)
|
146
146
|
else:
|
147
147
|
reply = gpt.tell(f"""The following is the test report for the code you provided:
|
@@ -1,6 +1,6 @@
|
|
1
1
|
[project]
|
2
2
|
name = "AtCoderStudyBooster"
|
3
|
-
version = "0.
|
3
|
+
version = "0.24"
|
4
4
|
description = "A tool to download and manage AtCoder problems."
|
5
5
|
authors = [
|
6
6
|
{ name = "yuta6", email = "46110512+yuta6@users.noreply.github.com" }
|
@@ -10,7 +10,7 @@ dependencies = [
|
|
10
10
|
"fire",
|
11
11
|
"requests",
|
12
12
|
"tiktoken",
|
13
|
-
"yfinance",
|
13
|
+
"yfinance==0.2.41",
|
14
14
|
"types-requests>=2.32.0.20240712",
|
15
15
|
"types-beautifulsoup4>=4.12.0.20240511",
|
16
16
|
"markdownify>=0.13.1",
|
@@ -0,0 +1 @@
|
|
1
|
+
{"REVEL_FLASH": "", "REVEL_SESSION": "6ed034143e4ffc3a30817dd07de4b2eb9ed82dd9-%00a%3Afalse%00%00w%3Afalse%00%00csrf_token%3AS5UrONqsSPMsTQbkTHq8kKlhl5nttdbhNmOQElt3Kuw%3D%00%00_TS%3A1740588999%00%00SessionKey%3A2d8d85044c0f080c379397d92c43088052dc3a96b13aecbc37c1fde1ead529ac79c63faf970055-61cb0d45486bad8dab4fa34352f66c369f126090851d42d3ed43bd36b4e8760a%00%00UserScreenName%3AYutaY9%00%00UserName%3AYuuuta%00"}
|
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
|
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
|