2015. 2. 9. 22:58
336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
import os, tempfile
def edit(editor, content=''):
f=tempfile.NamedTemporaryFile(mode='w+')
if content:
f.write(content)
f.flush()
command=editor+" "+f.name
status=os.system(command)
f.seek(0,0)
text=f.read()
f.close()
assert not os.path.exists(f.name)
return (status, text)
'Python' 카테고리의 다른 글
shortUrlGenerator.py (0) | 2015.02.11 |
---|---|
primeNumber.py (0) | 2015.02.09 |
aFewTricks.py (0) | 2015.02.09 |
assKick.py (0) | 2015.02.09 |
sinebeep.py (0) | 2015.02.09 |