に文字列を変換します私は以下の内容を含む.jsファイル持っている辞書
私は>>> print(data['AppSettings']['url']
>>> 'https://www.google.com'
を次のように、私がアクセスできるPythonの辞書に変換したい
AppSettings = {
projectName:'myproject',
url: 'https://www.google.com',
appKey: 'k2y-myproject_124439_18111',
newsKey: '',
version: moment().format('YYMMDD_HHmmss'),
mixpanelToken: '08e97bef3930f330037d9z6t56395060'
};
をこれを達成する最良の方法は何ですか?
https://stackoverflow.com/questions/24027589/how-to-convert-raw-javascript-object-to-python-dictionary – chakri
ここではこれを[parse-json](http://docs.python-guide.org/en/latest/scenarios/json/#parsing-json) – PetarP
@PetarPありがとうの良い例です。しかし、有効なjson文字列ではありません – labjunky