Advertisement
Guest User

Untitled

a guest
Jan 5th, 2019
161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.22 KB | None | 0 0
  1. import csv
  2. import os
  3. import subprocess
  4.  
  5.  
  6.  
  7. with open('/code/ctf/robot/f.txt', 'r') as file:
  8.     file_stream = csv.DictReader(file, fieldnames=['user'])
  9.     data = {}
  10.     for row in file_stream:
  11.         data['user'] = row
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement