I-Best Free Umguquli we CSVName
I-JSON
Indlela esebenza ngayo
- Inikezela nge-JSON. Ncamathisela i-JSON yezinto (okanye into enye), okanye ulayishe ifayili ye-.json.
- I-Graph. Iinketho ze projekti
- Fumana i CSV. Khuphela i CSV, okanye zulayisha ezantsi ilungile ukuvula kwi spreadsheet.
Malunga nale sixhobo
I-JSON ukuya kwi-CSV igubungela i-JSON yoluhlu lwezinto kwi-CSV elungiselelwe i-spreadsheet. Ncamathisela i-JSON okanye ulayishe ifayile ye-.json, kwaye isixhobo siza kwakha okubhalwe emantla ephepha okusuka kuthungelwano lweeqhosha zezinto zonke, ukuze imiqolo eneendawo ezahlukeneyo iqhubeke nokuhamba. Izinto ezifakelweyo kunye noluhlu lubhalwe njenge-JSON eqinileyo ngaphakathi kweseli yabo endaweni yokuwa. Isiphumo sivula ngokuthe ngqo kwi-Excel, iShedyuli okanye Amaxabiso. Yonke into iquka i-parse kwisicelo kwaye akukho nto igcinwa.
Iinkqubo zolawulo lweenkqubo
- Vula umyalezo we-JSON we-API kwi-spreadsheet
- Guqula i-JSON erhwebiweyo kwi-CSV ye-Excel okanye i-Sheet
- Ukwabelana ngeenkcukacha ezimiselweyo nabahlobo abangekho
- I-JSON yokujonga kwakhona iirekhodi ze-JSON njengemiqolo kunye neekholam
Umbhekisi phambili
Yenza ukuba isebenze ngokuzenzekelayo le sixhobo ukusuka kwikhowudi yakho. Thumela isicelo se POST kwincopho yesiphelo ezantsi uze ufumane isiphumo esifanayo sesixhobo se web esivelisa. Ikhawuleza- ikhawuleza kwi IP kwaye ayifunanga ukungena - iityhubhu ze API zemida ephezulu ziya kufika.
https://best.free/api/tools/json-to-csv/
| Iparamitha | Iinketho ze projekti | Ifunekayo | Iinkcukacha |
|---|---|---|---|
text |
[{"name":"Ada","age":36}] |
Ewe | A JSON array of objects. |
curl -X POST https://best.free/api/tools/json-to-csv/ \
-H 'Content-Type: application/json' \
-d '{"text": "[{\"name\":\"Ada\",\"age\":36}]"}'
import requests
r = requests.post(
"https://best.free/api/tools/json-to-csv/",
json={"text": "[{\"name\":\"Ada\",\"age\":36}]"},
)
print(r.json())
const r = await fetch("https://best.free/api/tools/json-to-csv/", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({ text: "[{\"name\":\"Ada\",\"age\":36}]" }),
});
const data = await r.json();
console.log(data);
I-response: JSON with the CSV text in "csv".
{"ok": true, "csv": "name,age\r\nAda,36\r\n"}