Skip to content

Instantly share code, notes, and snippets.

@ecylmz
Created September 26, 2011 18:15
Show Gist options
  • Save ecylmz/1242918 to your computer and use it in GitHub Desktop.
Save ecylmz/1242918 to your computer and use it in GitHub Desktop.
csv'den okuma yapıp gam ile gruba ekle [python]
#!/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