Last active
March 18, 2020 09:42
-
-
Save LouisdeBruijn/21d991ef17458f444e5a23fdbc7fd806 to your computer and use it in GitHub Desktop.
Multi-line docstring example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| def suggest_places(auth_key, city): | |
| """Returns longitude and latitude of first suggested location in the Netherlands from Postcode API. | |
| :param auth_key: authorization key for Postcode API | |
| :type auth_key: str | |
| :param city: textual input for city names to match in Postcode API | |
| :type city: str | |
| :rtype: (str, str), str, str | |
| :return: (longitude, latitude), Postcode API status code, Postcode API error message | |
| """ | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment