Advertisement
Guest User

Untitled

a guest
Jun 21st, 2022
41
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 0.30 KB | None | 0 0
  1. # Here is what I have:
  2. {
  3.     "list": [
  4.         {
  5.             "id": "AAA",
  6.             "total": "0.1"
  7.         },
  8.         {
  9.             "id": "AAA",
  10.             "total": "0.3"
  11.         },
  12.         {
  13.             "id": "BBB",
  14.             "total": "0.8"
  15.         }
  16.     ]
  17. }
  18.  
  19. # Here is what I want:
  20. [
  21.     {
  22.         "symbol": "AAA",
  23.         "total": "0.4"
  24.     },
  25.     {
  26.         "symbol": "BBB",
  27.         "total": "0.8"
  28.     }
  29. ]
  30.    
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement