Flask:如何提供动态生成的 svg

Flask: how do I serve an svg that's dynamically generated

所以我有生成 SVG 的代码 xml:

def get_map(locations):
    max_value = max(locations.iteritems(), key=operator.itemgetter(1))[1]
    base = "fill:#%s;fill-rule:nonzero;"

    f = open("../static/img/usaHigh.svg", "r").read()
    soup = BeautifulSoup(f)

    for l in locations:
       #do stuff.....

    return str(soup)

但现在我想通过烧瓶提供这个 svg。能够做类似

的事情
<img src='sometemp.svg'>

所以我的 flask 函数看起来像:

def serve_content():
    return render_template('sometemplate.html', map=get_map())

这是否可以不创建临时文件?

编辑:这是输出的一部分:

<?xml version='1.0' encoding='utf-8'?>
<!-- (c) ammap.com | SVG map of USA -->
<svg xmlns="http://www.w3.org/2000/svg" xmlns:amcharts="http://amcharts.com/ammap" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1">
<defs>
<style type="text/css">
            .land
            {
                fill: #CCCCCC;
                fill-opacity: 1;
                stroke:white;
                stroke-opacity: 1;
                stroke-width:0.5;
            }
        </style>
<!--{id:"US-AK"},{id:"US-AL"},{id:"US-AR"},{id:"US-AZ"},{id:"US-CA"},{id:"US-CO"},{id:"US-CT"},{id:"US-DC"},{id:"US-DE"},{id:"US-FL"},{id:"US-GA"},{id:"US-HI"},{id:"US-IA"},{id:"US-ID"},{id:"US-IL"},{id:"US-IN"},{id:"US-KS"},{id:"US-KY"},{id:"US-LA"},{id:"US-MA"},{id:"US-MD"},{id:"US-ME"},{id:"US-MI"},{id:"US-MN"},{id:"US-MO"},{id:"US-MS"},{id:"US-MT"},{id:"US-NC"},{id:"US-ND"},{id:"US-NE"},{id:"US-NH"},{id:"US-NJ"},{id:"US-NM"},{id:"US-NV"},{id:"US-NY"},{id:"US-OH"},{id:"US-OK"},{id:"US-OR"},{id:"US-PA"},{id:"US-RI"},{id:"US-SC"},{id:"US-SD"},{id:"US-TN"},{id:"US-TX"},{id:"US-UT"},{id:"US-VA"},{id:"US-VT"},{id:"US-WA"},{id:"US-WI"},{id:"US-WV"},{id:"US-WY"}-->
</defs>
<g>
<path id="US-AK" title="Alaska" class="land" d="M456.18,521.82l-0.1,4.96l-0.1,4.94l-0.1,4.92l-0.1,4.9l-0.1,4.88l-0.1,4.86l-0.1,4.84l-0.1,4.82l-0.1,4.8l-0.1,4.78l-0.1,4.77l-0.09,4.75l-0.1,4.73l-0.09,4.71l-0.09,4.7l-0.09,4.68l-0.09,4.66l-0.09,4.65l-0.09,4.64l-0.09,4.62l-0.09,4.61l-0.09,4.59l-0.09,4.58l-0.09,4.56l-0.09,4.55l-0.09,4.54l-0.09,4.53l-0.09,4.51l-0.09,4.5l-0.09,4.49l-0.09,4.48l-0.09,4.47l1.8,0.66l1.79,0.65l0.57,-1.23l1.93,0.97l1.69,0.85l1.09,-1.06l1.18,-1.14l1.58,-0.07l1.77,-0.09l1.18,-0.06l0,0.98l-0.44,1.63l-

所以我试图将其通过管道返回到页面模板,而不是先将其保存到文件中,然后再提供。这可能吗?

编辑 2:

这是路由功能

@app.route("/map", methods=["GET", "POST"])
def map():
    locations = {"US-NY":60,
             "US-FL":30,
             "US-CA":100}
    #return Response(get_map(locations), mimetype='image/svg+xml')
    return render_template("map.html", svg=get_map(locations))

这是我的模板:

<html>
<body>

this is some of the stuff I want, here's a beautiful map

{{ svg }}
</body>

</html>

这就是我的页面在 Chrome 上的样子

所以它实际上并没有显示 svg :'(

您可以为此使用 StringIO :

from flask import send_file
from StringIO import StringIO

def serve_content(content):
    svg_io = StringIO()
    svg_io.write(content)
    svg_io.seek(0)
    return send_file(svg_io, mimetype='image/svg+xml')

您的 SVG 代码正在 autoescaped. An appropriate solution is to call Markup(),像这样:

return render_template("map.html", svg=Markup(get_map(locations)))

对于那些不需要实际文件的人,下面是我使用自定义颜色从头开始制作 SVG 并使用 Flask 提供它的方法。

import flask

custom_color_global_variable = 'red'

@app.route('/circle-thin-custom-color.svg', methods=('GET', 'HEAD'))
def circle_thin_custom_color):
    """Thin circle with the color set by a global variable."""
    return flask.Response(
        """
            <svg
                xmlns="http://www.w3.org/2000/svg"
                viewBox="0 0 512 512"
            ><path 
                fill="{color}" 
                d="M256 8C119 8 8 119 8 256s111 248 248 248 248-111
                    248-248S393 8 256 8zm216 248c0 118.7-96.1 216-216 216-118.7
                    0-216-96.1-216-216 0-118.7 96.1-216 216-216 118.7 0 216 96.1
                    216 216z"
            /></svg>
        \n""".format(
            color=custom_color_global_variable,
        ),
        mimetype='image/svg+xml'
    )