Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
47 commits
Select commit Hold shift + click to select a range
0159f47
set up folder structure and base code
geetu040 Dec 30, 2025
58e9175
Merge branch 'main' into migration
fkiraly Dec 31, 2025
bdd65ff
Merge branch 'main' into migration
geetu040 Jan 1, 2026
52ef379
fix pre-commit
geetu040 Jan 5, 2026
5dfcbce
refactor
geetu040 Jan 7, 2026
2acbe99
implement cache_dir
geetu040 Jan 7, 2026
af99880
refactor
geetu040 Jan 7, 2026
74ab366
Merge branch 'main' into pr/1576
fkiraly Jan 7, 2026
3c61c5e
Merge branch 'main' into runs-migration-stacked
Omswastik-11 Jan 15, 2026
b284a0a
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Jan 15, 2026
4c75e16
undo changes in tasks/functions.py
geetu040 Jan 15, 2026
5762185
Merge branch 'main' into migration
geetu040 Jan 15, 2026
3da4760
revert the tarsks/function changes
Omswastik-11 Jan 15, 2026
e5b7af4
Merge branch 'main' into runs-migration-stacked
Omswastik-11 Jan 15, 2026
716667c
migrating v1 -> v2 runs
Omswastik-11 Jan 19, 2026
68a403a
Merge branch 'runs-migration-stacked' of https://github.com/Omswastik…
Omswastik-11 Jan 20, 2026
7e9bc1f
Merge branch 'main' into migration
geetu040 Jan 21, 2026
c603383
add tests directory
geetu040 Jan 21, 2026
ff6a8b0
use enum for delay method
geetu040 Jan 21, 2026
f01898f
implement cache
geetu040 Jan 21, 2026
5c4511e
refactor clients
geetu040 Jan 21, 2026
43276d2
fix import in resources/base.py
geetu040 Jan 23, 2026
1206f69
refactor and add exception handling
geetu040 Jan 26, 2026
4948e99
refactor resources/base/
geetu040 Jan 26, 2026
a354167
implement delete
geetu040 Jan 26, 2026
1fe7e3e
implement publish and minor refactoring
geetu040 Jan 27, 2026
54a3151
implement tag/untag
geetu040 Jan 27, 2026
2b6fe65
implement fallback
geetu040 Jan 27, 2026
29fd985
Merge branches 'migration' and 'migration' of https://github.com/geet…
Omswastik-11 Jan 28, 2026
fa53f8d
add test_http.py
geetu040 Jan 28, 2026
2b2db96
add uses_test_server marker
geetu040 Jan 28, 2026
0135ba2
Merge branch 'migration' of https://github.com/geetu040/openml-python…
Omswastik-11 Jan 29, 2026
c9617f9
implement reset_cache
geetu040 Jan 29, 2026
5bc37b8
fixes with publish/delete
geetu040 Jan 29, 2026
08d9916
fix cache_key in tests
geetu040 Jan 29, 2026
37a468f
Merge branch 'migration' of https://github.com/geetu040/openml-python…
Omswastik-11 Jan 30, 2026
8caba11
update _not_supported
geetu040 Jan 30, 2026
a70a33f
tests:added tests for migration
Omswastik-11 Jan 30, 2026
d08b1fe
Merge branch 'migration' of https://github.com/geetu040/openml-python…
Omswastik-11 Jan 30, 2026
aaf9d4b
tests:added tests for migration
Omswastik-11 Jan 30, 2026
84d43a9
Merge branch 'main' into runs-migration-stacked
Omswastik-11 Jan 30, 2026
761ef9e
tests:modified old chache tests to use new caching
Omswastik-11 Jan 30, 2026
cf37a75
Merge branch 'runs-migration-stacked' of https://github.com/Omswastik…
Omswastik-11 Jan 30, 2026
2eb7c7a
tests:modified old chache tests to use new caching
Omswastik-11 Jan 30, 2026
d9476c8
tests:modified old chache tests to use new caching
Omswastik-11 Jan 30, 2026
f4718c1
tests:skip the production related tests
Omswastik-11 Jan 30, 2026
4560b6b
tests:modify skip messgaes
Omswastik-11 Jan 30, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions openml/_api/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
from openml._api.runtime.core import APIContext


def set_api_version(version: str, *, strict: bool = False) -> None:
api_context.set_version(version=version, strict=strict)


api_context = APIContext()
6 changes: 6 additions & 0 deletions openml/_api/clients/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
from .http import HTTPCache, HTTPClient

__all__ = [
"HTTPCache",
"HTTPClient",
]
Loading