从Python应用程序中获取Heroku发行版

时间:2017-01-24 04:21:51

标签: python heroku

如何从Python应用程序中获取Heroku版本号(例如:v274)?

类似的问题被问到here,但是专门针对Rails。

1 个答案:

答案 0 :(得分:1)

最简单的方法是启用Heroku Labs Dyno Metadata功能,在这种情况下,您的python应用程序将能够访问HEROKU_RELEASE_VERSION env var。

另一种方法是查询Dyno Info from the Heroku Platform API。在Dyno信息中你有release.version。