Advertisement
Guest User

Untitled

a guest
Aug 26th, 2019
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. all_user_details = []
  2. for participant in all_participants:
  3. all_user_details.append(
  4. {"id": participant.id, "first_name": participant.first_name, "last_name": participant.last_name,
  5. "user": participant.username, "phone": participant.phone, "is_bot": participant.bot})
  6.  
  7. with open('user_data.json', 'w') as outfile:
  8. json.dump(all_user_details, outfile)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement