public-google-sheets-parser
Advanced tools
Comparing version 1.0.11 to 1.0.12
{ | ||
"name": "public-google-sheets-parser", | ||
"version": "1.0.11", | ||
"version": "1.0.12", | ||
"description": "Public Google sheets parser", | ||
@@ -5,0 +5,0 @@ "main": "./src/index.js", |
@@ -13,2 +13,5 @@ # Public Google sheets parser | ||
You can also use it via free API. Please see [this documentation](https://api.fureweb.com). | ||
If you have a public spreadsheet document, and the first column is a header and you have more than one column of data, you can call it free of charge through this API and use the result as a JSON response. | ||
### Demo page | ||
@@ -21,2 +24,3 @@ [Click here](http://fureweb.com/public-google-sheets-parser.html) | ||
const PublicGoogleSheetsParser = require('public-google-sheets-parser') | ||
const spreadsheetId = '10WDbAPAY7Xl5DT36VuMheTPTTpqx9x0C5sDCnh4BGps' | ||
@@ -44,3 +48,11 @@ const parser = new PublicGoogleSheetsParser(spreadsheetId) | ||
- free API ([documentation](https://api.fureweb.com)) | ||
```sh | ||
curl -X GET "https://api.fureweb.com/spreadsheets/10WDbAPAY7Xl5DT36VuMheTPTTpqx9x0C5sDCnh4BGps" -H "accept: */*" | ||
# response (application/json) | ||
{"data":[{"a":1,"b":2,"c":3},{"a":4,"b":5,"c":6},{"a":7,"b":8,"c":9}]} | ||
``` | ||
**That's it!** | ||
17716
56