layout | title | nav_order | parent | grand_parent |
---|---|---|---|---|
default |
Property Label |
4 |
Python |
API |
Returns the labels of properties defined for the given node DCIDs.
Signature:
datacommons.get_property_labels(dcids, out=True)
Required arguments:
dcids
: A list of nodes to query, identified by their DCID.
Optional arguments:
out
: The label's direction. Defaults toTrue
(only returning response nodes directed towards the requested node). If set toFalse
, will only return response nodes directed away from the request node.
Going into more detail on how to assemble the values for the required argument:
dcids
: Data Commons uniquely identifies nodes by assigning them DCIDs, or Data Commons IDs. Your query will need to specify the DCIDs for the nodes of interest. More information about DCIDs is available in the glossary.
In addition to this required property, this endpoint also allows for an additional, optional argument:
out
: This is a boolean value that refers to the orientation, or direction, of the edge. You can specify this argument asTrue
to indicate that you desire the response to only include nodes with the value of the property equivalent to one or more of the specifiedDCIDs
, orFalse
to only return nodes equivalent to one or more of the values of the properties of the specifiedDCIDs
. (To visualize this, Figure 1 illustrates the directions for the propertycontainedInPlace
of the node for Argentina.)
Figure 1. Relationship diagram for the property containedInPlace
of the country Argentina. Note the directionality of the property containedInPlace
: the API returns both nodes with direction in
(Buenos Aires is containedInPlace
of Argentina) and nodes with direction out
(Argentina is containedInPlace
of South America).
The method's return value will always be a dict
in the following form:
{
"<dcid>": ["string", ...]
...
}
Example 1: Retrieve the outwardly directed property labels of Wisconsin's eighth congressional district.
>>> datacommons.get_property_labels(['geoId/5508'])
{'geoId/5508': ['containedInPlace', 'geoId', 'geoJsonCoordinates', 'geoOverlaps', 'kmlCoordinates', 'landArea', 'latitude', 'longitude', 'name', 'provenance', 'typeOf', 'waterArea']}
>>> datacommons.get_property_labels(['dc/c3j78rpyssdmf','dc/7hfhd2ek8ppd2'],out=False)
{'dc/c3j78rpyssdmf': ['biosampleOntology'], 'dc/7hfhd2ek8ppd2': ['biosampleOntology']}
If there are no properties associated with the node, an empty list is returned:
>>> datacommons.get_property_labels(['geoId/123123123123123'])
{'geoId/123123123123123': []}
If you do not pass a required positional argument, a TypeError is returned:
>>> datacommons.get_property_labels()
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: get_property_labels() missing 1 required positional argument: 'dcids'