Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
49 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
561b204
migrate flow module
Omswastik-11 Jan 8, 2026
860b1b6
implement FlowsV2.exists() and get() with JSON parsing
Omswastik-11 Jan 8, 2026
36c22aa
skip delete flows tests
Omswastik-11 Jan 12, 2026
36184e5
remove chaching part
Omswastik-11 Jan 14, 2026
371ae4a
Merge branch 'main' into flow-migration-stacked
Omswastik-11 Jan 14, 2026
862b463
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Jan 14, 2026
4c75e16
undo changes in tasks/functions.py
geetu040 Jan 15, 2026
5762185
Merge branch 'main' into migration
geetu040 Jan 15, 2026
b2dcdf2
Merge branch 'main' into flow-migration-stacked
Omswastik-11 Jan 15, 2026
2aa1b36
Merge branch 'main' into flow-migration-stacked
Omswastik-11 Jan 15, 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
29fac2c
migrating v1 -> v2 flows
Omswastik-11 Jan 21, 2026
bdf53f3
migrating v1 -> v2 flows
Omswastik-11 Jan 21, 2026
a1a706c
Merge branch 'main' into flow-migration-stacked
Omswastik-11 Jan 22, 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
c4e713f
Merge remote-tracking branch 'geetu040/migration' into flow-migration…
Omswastik-11 Jan 27, 2026
95fc75f
Merge branch 'main' into flow-migration-stacked
Omswastik-11 Jan 27, 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
685c19a
added tests
Omswastik-11 Jan 27, 2026
920ff21
Merge branch 'migration' of https://github.com/geetu040/openml-python…
Omswastik-11 Jan 28, 2026
fa53f8d
add test_http.py
geetu040 Jan 28, 2026
2b2db96
add uses_test_server marker
geetu040 Jan 28, 2026
c7c24a3
Merge branch 'migration' of https://github.com/geetu040/openml-python…
Omswastik-11 Jan 29, 2026
c9617f9
implement reset_cache
geetu040 Jan 29, 2026
92d88e4
Merge branch 'migration' of https://github.com/geetu040/openml-python…
Omswastik-11 Jan 29, 2026
443ade9
tests:added tests for migration
Omswastik-11 Jan 29, 2026
468087d
tests:added tests for migration
Omswastik-11 Jan 29, 2026
5bc37b8
fixes with publish/delete
geetu040 Jan 29, 2026
08d9916
fix cache_key in tests
geetu040 Jan 29, 2026
9660e78
tests:added tests for migration
Omswastik-11 Jan 30, 2026
f60c78b
Merge branch 'migration' of https://github.com/geetu040/openml-python…
Omswastik-11 Jan 30, 2026
f25c95b
tests:added tests for migration
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
Loading