「python学習」ftplibを通じてファイルを送信する
サンプルコード:
#!/usr/bin/env python
import ftplib # FTPモジュールをインポート
session = ftplib.FTP('ftp.arkgame.com’,’user_startnews24′,’pwd_startnews24′)#FTPサーバーへの接続
myfile = open('toto_startnews24.txt’,’rb’) # 送信ファイルを開く
session.storbinary('STOR toto.txt’, myfile) # フアイルを送信
myfile.close() #ファイルを閉じる
session.quit()