Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在heroku上部署python应用程序。它正在做一件非常简单的事情。解析 HTML,获取一些数据并保存到 csv 文件中。当我启动它时,应该何时写入文件(它在本地工作)。我认为 heroku 阻止在服务器上操作文件。
如何解决?
Heroku 是一个只读文件系统,不允许写入,除了小的临时文件。Heroku 推荐使用 S3 来编写文件。我从来没有用 Python(只有 Ruby)做过这个,但是文档看起来很不错。