您好,登錄后才能下訂單哦!
本篇文章為大家展示了如何在Python中使用SQL查詢并生成json文件,內容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。
Python是一種跨平臺的、具有解釋性、編譯性、互動性和面向對象的腳本語言,其最初的設計是用于編寫自動化腳本,隨著版本的不斷更新和新功能的添加,常用于用于開發獨立的項目和大型項目。
1. 數據準備
SQL數據點擊此處本站下載。
2. python代碼
import datetime import os import mssqlhelper ms = mssqlhelper.MSSQL(host="192.168.0.108", user="sa", pwd="sa", db="ComPrject") def getAreas(cityid): arealist=ms.ExecQuery("select *From dbo.areas where cityid='%s' " % cityid) return arealist def getCity(provinces): citylist=ms.ExecQuery("select *From dbo.cities where provinceid='%s'" % provinces) return citylist def getProvinces(): provlist=ms.ExecQuery("select *From dbo.provinces") return provlist def createFileJson(): date=datetime.datetime.now().strftime('%Y-%m-%d') path=date+'-provinces.json' return path def writeJson(path): provlist=getProvinces() with open(path,"w+",encoding="utf-8") as f: f.write("[") lp = 0 for p in provlist: if lp>0: f.write(",\n") else: f.write("\n") f.write("{\n") f.write('"Code":"%s"\n'% p[1]) f.write(',"Name":"%s"\n'% p[2]) f.write(',Nodes:[\n') citylist=getCity(p[1]) lc = 0 for c in citylist: if lc>0: f.write("\t,\n") else: f.write("\n") f.write("\t{\n") f.write('\t"Code":"%s"\n'% c[1]) f.write('\t,"Name":"%s"\n'% c[2]) f.write('\t,Nodes:[\n') arealist = getAreas(c[1]) la = 0 for a in arealist: if la>0: f.write("\t\t,\n") else: f.write("\n") f.write("\t\t{\n") f.write('\t\t"Code":"%s"\n'% a[1]) f.write('\t\t,"Name":"%s"\n'% a[2]) f.write("\t\t}\n") la += 1 f.write("\t]\n") f.write("\t}\n") lc += 1 f.write("]\n") f.write("}\n") lp += 1 f.write("]\n") if __name__ == '__main__': path=createFileJson() writeJson(path)
3.生成預覽
上述內容就是如何在Python中使用SQL查詢并生成json文件,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。