Advertisement
davegimo

Untitled

Jan 14th, 2021
212
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. import json
  2.  
  3.  
  4. #blocco query in agui
  5.  
  6. file = "cn.json"
  7.  
  8. with open(file) as json_file:
  9. json_data = json.load(json_file)
  10.  
  11. for p in json_data['recordset']:
  12. print(p["CONNECTION_NODE_ID"])
  13.  
  14. #processi in parallelo
  15.  
  16.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement