MCPcopy Create free account
hub / github.com/IfcOpenShell/IfcOpenShell / SearchList

Method SearchList

src/bsdd/bsdd.py:657–668  ·  view source on GitHub ↗
(self, DomainNamespaceUri, version="v2", SearchText="", LanguageCode="", RelatedIfcEntity="")

Source from the content-addressed store, hash-verified

655
656 # deprecated
657 def SearchList(self, DomainNamespaceUri, version="v2", SearchText="", LanguageCode="", RelatedIfcEntity=""):
658 print(f"function 'Client.SearchList' is deprecated, use 'Client.search_in_dictionary' instead")
659 return self._get_deprecated(
660 f"api/SearchList/{version}",
661 {
662 "DomainNamespaceUri": DomainNamespaceUri,
663 "SearchText": SearchText,
664 "LanguageCode": LanguageCode,
665 "RelatedIfcEntity": RelatedIfcEntity,
666 },
667 is_auth_required=True,
668 )
669
670 # deprecated
671 def SearchListOpen(self, DomainNamespaceUri, version="v2", SearchText="", LanguageCode="", RelatedIfcEntity=""):

Callers

nothing calls this directly

Calls 2

_get_deprecatedMethod · 0.95
printFunction · 0.85

Tested by

no test coverage detected