2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

ftpでレンタルサーバーにテキストファイルをアップロード

Last updated at Posted at 2020-03-08

ラズパイで温湿度データをテキストファイルに保存することができたので、
今度はそれを定期的にレンタルサーバーにアップできるかどうか、試してみた。

ちなみに自分が試したレンタルサーバーは、
「スターサーバー フリー」だった。
問題なくアップロードできた。

import ftplib
def ftp_upload(filename):
  ftp = ftplib.FTP('サーバーのホスト名')
  ftp.set_pasv('true')
  ftp.login('ユーザー名','パスワード')
  ftp.cwd('/rp/')
  f = open(filename,'rb')
  ftp.storbinary('STOR ' + filename, f)
  f.close()

ftp_upload('data.txt')

こういう温湿度データのような、一定時間ごとにずっと溜まっていくテキストデータというのは、
テキストファイルではなく、MySQLで管理をしていった方がいいのだろうか?

2
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?