![PyPI Now Supports iOS and Android Wheels for Mobile Python Development](https://cdn.sanity.io/images/cgdhsj6q/production/96416c872705517a6a65ad9646ce3e7caef623a0-1024x1024.webp?w=400&fit=max&auto=format)
Security News
PyPI Now Supports iOS and Android Wheels for Mobile Python Development
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
cloudmade-lib
Advanced tools
A node library for consuming Cloudmade APIs. Currently only supports Geocoding.
npm install cloudmade-lib
To retrieve results in JSON format, see the following example:
var
cloudmade = require('cloudmade-lib'),
geocoding = cloudmade.geocoding.initialize({
apikey : 'your_api_key_here'
});
geocoding.get('8727 148th Ave NE, Redmond, WA 98052', function (err, data) {
// work with results here...
});
To retrieve results in GeoJSON format, see the following example:
var
cloudmade = require('cloudmade-lib'),
geocoding = cloudmade.geocoding.initialize({
apikey : 'your_api_key_here'
});
geocoding.getGeo('8727 148th Ave NE, Redmond, WA 98052', function (err, data) {
// work with results here...
});
To retrieve results in Plist format, see the following example:
var
cloudmade = require('cloudmade-lib'),
geocoding = cloudmade.geocoding.initialize({
apikey : 'your_api_key_here'
});
geocoding.getPlist('8727 148th Ave NE, Redmond, WA 98052', function (err, data) {
// work with results here...
});
To retrieve results in HTML format, see the following example:
var
cloudmade = require('cloudmade-lib'),
geocoding = cloudmade.geocoding.initialize({
apikey : 'your_api_key_here'
});
geocoding.getHtml('8727 148th Ave NE, Redmond, WA 98052', function (err, data) {
// work with results here...
});
Additional parameters, as outlined at http://developers.cloudmade.com/projects/show/geocoding-http-api#Parameters, can be supplied easily during the request.
var
cloudmade = require('cloudmade-lib'),
geocoding = cloudmade.geocoding.initialize({
apikey : 'your_api_key_here'
}),
options = {
around : '47.6742,122.1203'
results : 100,
skip : 100
};
geocoding.get(options, '8727 148th Ave NE, Redmond, WA 98052', function (err, data) {
// work with results here...
});
The results returned from the cloudmade API are wrapped with the following fields:
{
"apikey" : "your_api_key_here",
"data" : { /* Cloudmade Response Here */ },
"host" : "geocoding.cloudmade.com",
"path" : "/geocoding/v2/find.js",
"query" : "?query=8727%20148th%20Ave%20NE%2C%20Redmond%2C%20WA%2098052",
"secure" : false
}
For more information about cloudmade's response data: http://developers.cloudmade.com/projects/show/geocoding-http-api#Geocoding-responses
MIT, see LICENSE
FAQs
a client library for cloudmade geocode API
The npm package cloudmade-lib receives a total of 0 weekly downloads. As such, cloudmade-lib popularity was classified as not popular.
We found that cloudmade-lib demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.