Created
September 26, 2011 18:15
-
-
Save ecylmz/1242918 to your computer and use it in GitHub Desktop.
csv'den okuma yapıp gam ile gruba ekle [python]
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
#-*- coding:utf-8 -*- | |
import os | |
import csv | |
first_file = csv.reader(open("/home/ecylmz/Masaüstü/ilitam_son.csv", "rb"),delimiter=",") | |
for row in first_file: | |
os.system("python gam.py update group [email protected] add member "+ row[0]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment