Skip to content
Snippets Groups Projects

F refactor high level api

Merged Alexander Schlemmer requested to merge f-refactor-high-level-api into dev
3 unresolved threads
2 files
+ 117
0
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -38,6 +38,7 @@ from caosdb.common.datatype import (BOOLEAN, DATETIME, DOUBLE, FILE, INTEGER,
import caosdb as db
from .apiutils import get_type_of_entity_with, create_flat_list
import warnings
from typing import Any, Optional, List, Union, Dict
@@ -47,6 +48,10 @@ from dataclasses import dataclass, fields
from datetime import datetime
from dateutil import parser
warnings.warn("""EXPERIMENTAL! The high_level_api module is experimental and may be changed or
removed in future. Its purpose is to give an impression on how the Python client user interface
might be changed.""")
def standard_type_for_high_level_type(high_level_record: "CaosDBPythonEntity",
return_string: bool = False):
Loading