下記のプログラムを実行した際 「TypeError: a bytes-like object is required, not 'str'」というエラーが出てしまいます。 python2系から3系に移行したいと考えており現在3系で実行できるよう修正中です。 エラー解決のほかにも3系ならではのエラーが出そうな箇所がございましたらご指摘頂けると幸いです。 エラー内容 last_sf_modified = 2018/06/17 13:07:31 last_lo_modified = 2000/01/01 00:00:00 Traceback (most recent call last): File "s2h_updater.py", line 17, in <module> updated = s2h.sf_get_updated_companies(last_lo_modified) Fil

