abgros

Results 2 issues of abgros

Consider a graph like this: ```py graph = rx.PyDiGraph() graph.add_node("a") graph.add_node("b") graph.add_node("c") ``` Say I want to find out what index the value `b` is at. The naïve implementation looks...

To reproduce: ```py import pgeocode locator = pgeocode.Nominatim("CA") query = locator.query_postal_code("V9W") print(repr(query["county_name"])) ``` The output is: ``` 'Campbell River ' ``` I checked [Geonames](https://download.geonames.org/export/zip/) (CA_full.csv.zip) and didn't see this trailing...