MCPcopy Create free account
hub / github.com/google/earthengine-api / unboundFunctions

Method unboundFunctions

python/ee/apifunction.py:119–126  ·  view source on GitHub ↗

Returns the functions that have not been bound using importApi() yet.

(cls)

Source from the content-addressed store, hash-verified

117
118 @classmethod
119 def unboundFunctions(cls) -> dict[str, Any]:
120 """Returns the functions that have not been bound using importApi() yet."""
121 cls.initialize()
122 return {
123 name: func
124 for name, func in cls._api.items()
125 if name not in cls._bound_signatures
126 }
127
128 # TODO(user): Any -> ApiFunction for the return type.
129 @classmethod

Callers 2

ee.jsFile · 0.80

Calls 1

initializeMethod · 0.45

Tested by

no test coverage detected