添加图片以拉取请求评论

时间:2016-09-26 00:49:53

标签: python github3.py

我正在使用github3.py库在csv文件中的columns字段的pull请求中创建注释。我想在评论中添加一个图像以及列的输出,但我找不到这样做的方法。我已经阅读了使用PIL打开图片,但.create_comment()只接受字符串值。任何提示或指示?

failed_validation_lst=[]
        with open(reportOut, 'r') as f:
            reader = csv.reader(f, skipinitialspace=True)
            headers = next(reader)
            for row_number,row in enumerate(reader,2):
                for column, val in enumerate(row):
                    if val == 'True':
                        failed_validation_lst.append(headers[column])
                failed_validation_string = '; '.join(failed_validation_lst)
                repo.issue(row[0]).create_comment(failed_validation_string)

1 个答案:

答案 0 :(得分:2)

GitHub API不支持此功能。评论拉取请求与commenting on a issue是一回事。您需要在其他地方托管图像并使用图像标记降价显示它,例如,

![image description](http://image-hosting.com/path/to/img.jpg)