まず、コメントが有効なjsonではないことを理解します。それは何らかの理由で私が処理しなければならないこの.jsonファイルには、行頭と行末にコメントがあります。Pythonでコメントを持つ.jsonファイルの読み込みをどのように処理できますか?
私はこれをPythonで処理し、基本的に.jsonファイルを読み込むことができますが、コメントを無視して処理できますか?私は現在、次のようにしています。
しかし、ファイルfにコメントがあるので、json.load(f)コマンドでクラッシュします。
これは一般的な問題だと思っていましたが、私は多くのオンラインREを見つけることができません。誰かがcommentjsonを提案したが、それは私が
思考commentjsonインポートすると
ImportError: cannot import name 'dump'
を言って私のスクリプトがクラッシュするのですか?
編集: これは、私が処理しなければならないjsonファイルのスニペットです。
{
// this configuration file works by first loading all top-level
// configuration items and then will load the specified environment
// on top, this provides a layering affect. environment names can be
// anything, and just require definition in this file. There's
// two predefined environments, 'backtesting' and 'live', feel free
// to add more!
"environment": "backtesting",// "live-paper", "backtesting", "live-interactive", "live-interactive-iqfeed"
// algorithm class selector
"algorithm-type-name": "BasicTemplateAlgorithm",
// Algorithm language selector - options CSharp, FSharp, VisualBasic, Python, Java
"algorithm-language": "CSharp"
}
jsonファイルのスニペットをコメントで投稿できますか? –
@ Jean-FrançoisFabreが追加されました! –