include Python_lib__.Import
include Ppx_python_runtime
val python_of_bool : bool -> Pytypes.pyobjectval bool_of_python : Pytypes.pyobject -> boolval python_of_int : int -> Pytypes.pyobjectval int_of_python : Pytypes.pyobject -> intval python_of_float : float -> Pytypes.pyobjectval float_of_python : Pytypes.pyobject -> floatval python_of_string : string -> Pytypes.pyobjectval string_of_python : Pytypes.pyobject -> stringval python_of_array : ('a -> Pytypes.pyobject) -> 'a array -> Pytypes.pyobjectval array_of_python : (Pytypes.pyobject -> 'a) -> Pytypes.pyobject -> 'a arrayval python_of_list : ('a -> Pytypes.pyobject) -> 'a list -> Pytypes.pyobjectval list_of_python : (Pytypes.pyobject -> 'a) -> Pytypes.pyobject -> 'a listval python_of_option : ('a -> Pytypes.pyobject) -> 'a option -> Pytypes.pyobjectval option_of_python : (Pytypes.pyobject -> 'a) -> Pytypes.pyobject -> 'a option
type pyobject = Pytypes.pyobject
val python_of_pyobject : 'a -> 'aval pyobject_of_python : 'a -> 'a
val get_class : Py.Object.t -> string Base.Option.t
val to_iterable : Py.Object.t -> Py.Object.t option
val value_errorf : ('a, unit, string, 'b) Stdlib.format4 -> 'a