@@ -8,7 +8,7 @@ This API allows you to search for Dutch addresses using zipcodes.
88
99For more information about this API, please visit http://postcodeapi.nu
1010
11- This library supports both the v1 and the v2 api, defaulting to v1 for now .
11+ This library supports only the v2 api, defaulting to v2 .
1212
1313
1414##Installation
@@ -25,7 +25,7 @@ pyPostcode works with Python 2.7.x (you're welcome to test other versions)
2525###API-key
2626
2727The API can only be used when you have your own API-key.
28- You can request this key by visiting: http://www.postcodeapi.nu/#request
28+ You can request this key by visiting: http://www.postcodeapi.nu/#pakketten
2929
3030
3131##Example
@@ -40,8 +40,6 @@ Get the address by using the zipcode and the house number
4040from pyPostcode import Api
4141
4242postcodeapi = Api(' {YOUR_API_KEY} ' ) # Set your own API-key
43- # if you want to use the v2 api, say
44- postcodeapi = Api(' {YOUR_API_KEY} ' , (2 , 0 , 0 ))
4543result = postcodeapi.getaddress(' 1011AC' , 154 ) # use address search
4644print result.street, result.house_number, result.town
4745```
@@ -63,8 +61,8 @@ the following information can be gathered from the result:
6361
6462##License
6563
66- "PostcodeApi" is owned by freshheads , see http://postcodeapi.nu and http://freshheads.com for more information.
67- I am in no way affiliated with PostcodeAPI or the freshheads organization.
64+ "PostcodeApi" is owned by Apiwise , see http://postcodeapi.nu for more information.
65+ I am in no way affiliated with PostcodeAPI or the Apiwise organization.
6866
6967[ Rijksdriehoek ] : http://nl.wikipedia.org/wiki/Rijksdriehoekscoördinaten
7068[ Trigonometrical ] : http://en.wikipedia.org/wiki/Triangulation_station
0 commit comments