MCPcopy Index your code
hub / github.com/google/earthengine-api / allSignatures

Method allSignatures

python/ee/apifunction.py:113–116  ·  view source on GitHub ↗

Returns a map from the name to signature for all API functions.

(cls)

Source from the content-addressed store, hash-verified

111
112 @classmethod
113 def allSignatures(cls) -> dict[str, dict[str, Any]]:
114 """Returns a map from the name to signature for all API functions."""
115 cls.initialize()
116 return {name: func.getSignature() for name, func in cls._api.items()}
117
118 @classmethod
119 def unboundFunctions(cls) -> dict[str, Any]:

Callers 2

ee.jsFile · 0.80

Calls 2

initializeMethod · 0.45
getSignatureMethod · 0.45

Tested by

no test coverage detected