process-user.js 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. import fs from 'fs'
  2. let fileName = './data.json'
  3. let saveFileStr = fs.readFileSync(fileName, 'utf8')
  4. let inputData = JSON.parse(saveFileStr)
  5. inputData.map((v) => {
  6. Object.keys(v).map((k) => {
  7. if (
  8. ![
  9. 'avatar_168x168',
  10. 'avatar_300x300',
  11. 'aweme_count',
  12. 'birthday_hide_level',
  13. 'can_show_group_card',
  14. 'commerce_user_level',
  15. 'province',
  16. 'city',
  17. 'country',
  18. 'district',
  19. 'favoriting_count',
  20. 'follow_status',
  21. 'follower_count',
  22. 'follower_request_status',
  23. 'follower_status',
  24. 'following_count',
  25. 'forward_count',
  26. 'public_collects_count',
  27. 'share_info',
  28. 'mplatform_followers_count',
  29. 'nickname',
  30. 'max_follower_count',
  31. 'gender',
  32. 'cover_colour',
  33. 'cover_url',
  34. 'commerce_info',
  35. 'commerce_user_info',
  36. 'short_id',
  37. 'signature',
  38. 'total_favorited',
  39. 'uid',
  40. 'unique_id',
  41. 'user_age',
  42. 'white_cover_url',
  43. 'card_entries',
  44. 'cover_and_head_image_info',
  45. 'ip_location',
  46. ].includes(k)
  47. ) {
  48. delete v[k]
  49. }
  50. })
  51. })
  52. // saveFileData = saveFileData.concat(inputData.aweme_list)
  53. // fs.writeFileSync(
  54. // "./ouput.json",
  55. // JSON.stringify(inputData.aweme_list, null, 2)
  56. // );
  57. fs.writeFileSync(
  58. // fileName,
  59. './data.json',
  60. JSON.stringify(inputData, null, 2),
  61. )