How to get Python dictionary via Flask request files attribute [duplicate]










0
















This question already has an answer here:



  • Read file data without saving it in Flask

    2 answers



  • Opening a file that has been uploaded in Flask

    2 answers



With server.py running:



from flask import Flask, request, Response

app = Flask(__name__)

@app.route('/test', methods=['GET','POST'])
def route():
print('got files: %s' % request.files)
return Response()

if __name__ == '__main__':
app.run('0.0.0.0', 5000)


send a request using client.py:



import json, requests 

dictionary_1 = "file": "url": "https://bootstrap.pypa.io/get-pip.py"

files = [('dictionary_1', ('get-pip.py', json.dumps(dictionary_1), 'application/json'))]

response = requests.post('http://127.0.0.1:5000/test', files=files)


Server logs that it received a request:



got files: ImmutableMultiDict([('dictionary_1', <FileStorage: u'get-pip.py' ('application/json')>)]) 


Apparently, the dictionary_1 was received as FileStorage object.
How to turn the received FileStorage into the Python dictionary?



edited later



The possible duplicate post does not clarify how to send and unpack the Python dictionary object sent via requests(files=list())










share|improve this question















marked as duplicate by Matthieu Brucher, davidism flask
Users with the  flask badge can single-handedly close flask questions as duplicates and reopen them as needed.

StackExchange.ready(function()
if (StackExchange.options.isMobile) return;

$('.dupe-hammer-message-hover:not(.hover-bound)').each(function()
var $hover = $(this).addClass('hover-bound'),
$msg = $hover.siblings('.dupe-hammer-message');

$hover.hover(
function()
$hover.showInfoMessage('',
messageElement: $msg.clone().show(),
transient: false,
position: my: 'bottom left', at: 'top center', offsetTop: -7 ,
dismissable: false,
relativeToBody: true
);
,
function()
StackExchange.helpers.removeMessages();

);
);
);
Nov 16 '18 at 19:49


This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.


















  • The post you've mentioned does not clarify how to send and unpack the dictionary object using Flask.request.files attribute.

    – alphanumeric
    Nov 14 '18 at 22:08
















0
















This question already has an answer here:



  • Read file data without saving it in Flask

    2 answers



  • Opening a file that has been uploaded in Flask

    2 answers



With server.py running:



from flask import Flask, request, Response

app = Flask(__name__)

@app.route('/test', methods=['GET','POST'])
def route():
print('got files: %s' % request.files)
return Response()

if __name__ == '__main__':
app.run('0.0.0.0', 5000)


send a request using client.py:



import json, requests 

dictionary_1 = "file": "url": "https://bootstrap.pypa.io/get-pip.py"

files = [('dictionary_1', ('get-pip.py', json.dumps(dictionary_1), 'application/json'))]

response = requests.post('http://127.0.0.1:5000/test', files=files)


Server logs that it received a request:



got files: ImmutableMultiDict([('dictionary_1', <FileStorage: u'get-pip.py' ('application/json')>)]) 


Apparently, the dictionary_1 was received as FileStorage object.
How to turn the received FileStorage into the Python dictionary?



edited later



The possible duplicate post does not clarify how to send and unpack the Python dictionary object sent via requests(files=list())










share|improve this question















marked as duplicate by Matthieu Brucher, davidism flask
Users with the  flask badge can single-handedly close flask questions as duplicates and reopen them as needed.

StackExchange.ready(function()
if (StackExchange.options.isMobile) return;

$('.dupe-hammer-message-hover:not(.hover-bound)').each(function()
var $hover = $(this).addClass('hover-bound'),
$msg = $hover.siblings('.dupe-hammer-message');

$hover.hover(
function()
$hover.showInfoMessage('',
messageElement: $msg.clone().show(),
transient: false,
position: my: 'bottom left', at: 'top center', offsetTop: -7 ,
dismissable: false,
relativeToBody: true
);
,
function()
StackExchange.helpers.removeMessages();

);
);
);
Nov 16 '18 at 19:49


This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.


















  • The post you've mentioned does not clarify how to send and unpack the dictionary object using Flask.request.files attribute.

    – alphanumeric
    Nov 14 '18 at 22:08














0












0








0









This question already has an answer here:



  • Read file data without saving it in Flask

    2 answers



  • Opening a file that has been uploaded in Flask

    2 answers



With server.py running:



from flask import Flask, request, Response

app = Flask(__name__)

@app.route('/test', methods=['GET','POST'])
def route():
print('got files: %s' % request.files)
return Response()

if __name__ == '__main__':
app.run('0.0.0.0', 5000)


send a request using client.py:



import json, requests 

dictionary_1 = "file": "url": "https://bootstrap.pypa.io/get-pip.py"

files = [('dictionary_1', ('get-pip.py', json.dumps(dictionary_1), 'application/json'))]

response = requests.post('http://127.0.0.1:5000/test', files=files)


Server logs that it received a request:



got files: ImmutableMultiDict([('dictionary_1', <FileStorage: u'get-pip.py' ('application/json')>)]) 


Apparently, the dictionary_1 was received as FileStorage object.
How to turn the received FileStorage into the Python dictionary?



edited later



The possible duplicate post does not clarify how to send and unpack the Python dictionary object sent via requests(files=list())










share|improve this question

















This question already has an answer here:



  • Read file data without saving it in Flask

    2 answers



  • Opening a file that has been uploaded in Flask

    2 answers



With server.py running:



from flask import Flask, request, Response

app = Flask(__name__)

@app.route('/test', methods=['GET','POST'])
def route():
print('got files: %s' % request.files)
return Response()

if __name__ == '__main__':
app.run('0.0.0.0', 5000)


send a request using client.py:



import json, requests 

dictionary_1 = "file": "url": "https://bootstrap.pypa.io/get-pip.py"

files = [('dictionary_1', ('get-pip.py', json.dumps(dictionary_1), 'application/json'))]

response = requests.post('http://127.0.0.1:5000/test', files=files)


Server logs that it received a request:



got files: ImmutableMultiDict([('dictionary_1', <FileStorage: u'get-pip.py' ('application/json')>)]) 


Apparently, the dictionary_1 was received as FileStorage object.
How to turn the received FileStorage into the Python dictionary?



edited later



The possible duplicate post does not clarify how to send and unpack the Python dictionary object sent via requests(files=list())





This question already has an answer here:



  • Read file data without saving it in Flask

    2 answers



  • Opening a file that has been uploaded in Flask

    2 answers







python flask request python-requests






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 16 '18 at 3:00







alphanumeric

















asked Nov 14 '18 at 21:32









alphanumericalphanumeric

5,3321383184




5,3321383184




marked as duplicate by Matthieu Brucher, davidism flask
Users with the  flask badge can single-handedly close flask questions as duplicates and reopen them as needed.

StackExchange.ready(function()
if (StackExchange.options.isMobile) return;

$('.dupe-hammer-message-hover:not(.hover-bound)').each(function()
var $hover = $(this).addClass('hover-bound'),
$msg = $hover.siblings('.dupe-hammer-message');

$hover.hover(
function()
$hover.showInfoMessage('',
messageElement: $msg.clone().show(),
transient: false,
position: my: 'bottom left', at: 'top center', offsetTop: -7 ,
dismissable: false,
relativeToBody: true
);
,
function()
StackExchange.helpers.removeMessages();

);
);
);
Nov 16 '18 at 19:49


This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.









marked as duplicate by Matthieu Brucher, davidism flask
Users with the  flask badge can single-handedly close flask questions as duplicates and reopen them as needed.

StackExchange.ready(function()
if (StackExchange.options.isMobile) return;

$('.dupe-hammer-message-hover:not(.hover-bound)').each(function()
var $hover = $(this).addClass('hover-bound'),
$msg = $hover.siblings('.dupe-hammer-message');

$hover.hover(
function()
$hover.showInfoMessage('',
messageElement: $msg.clone().show(),
transient: false,
position: my: 'bottom left', at: 'top center', offsetTop: -7 ,
dismissable: false,
relativeToBody: true
);
,
function()
StackExchange.helpers.removeMessages();

);
);
);
Nov 16 '18 at 19:49


This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.














  • The post you've mentioned does not clarify how to send and unpack the dictionary object using Flask.request.files attribute.

    – alphanumeric
    Nov 14 '18 at 22:08


















  • The post you've mentioned does not clarify how to send and unpack the dictionary object using Flask.request.files attribute.

    – alphanumeric
    Nov 14 '18 at 22:08

















The post you've mentioned does not clarify how to send and unpack the dictionary object using Flask.request.files attribute.

– alphanumeric
Nov 14 '18 at 22:08






The post you've mentioned does not clarify how to send and unpack the dictionary object using Flask.request.files attribute.

– alphanumeric
Nov 14 '18 at 22:08













2 Answers
2






active

oldest

votes


















0














This is happening because you're posting files instead of data. This should work:



import flask

app = flask.Flask(__name__)

@app.route('/test', methods=['GET','POST'])
def route():
print('got data: '.format(flask.request.json))
return Response()

if __name__ == '__main__':
app.run('0.0.0.0', 5000)


and then send data to your app by



import requests 

dictionary_1 = "file": "url": "https://bootstrap.pypa.io/get-pip.py"

response = requests.post('http://127.0.0.1:5000/test', json=dictionary_1)


In your example there's no need to post the file unless I'm misunderstanding something






share|improve this answer























  • I am intentionally using the requests.post(url, files=list()) and not requests.post(url, json=str()) since I would like to be able to send both the files and dictionary with the same request.

    – alphanumeric
    Nov 14 '18 at 21:58












  • @alphanumeric Your request doesn't include any files. The variable multiple_files in the client contains only dicts, lists, and strings.

    – André C. Andersen
    Nov 14 '18 at 22:03











  • Since I would like to keep the question as simple as possible the multiple_files list contains the dictionary object only and not the files.

    – alphanumeric
    Nov 14 '18 at 22:03



















0














Solution # 1:



from flask import Flask, request, Response
import StringIO, json

app = Flask(__name__)

@app.route('/test', methods=['GET','POST'])
def route():
print('got files: %s' % request.files)
for key, file_storage in request.files.items():
string_io = StringIO.StringIO()
file_storage.save(string_io)
data = json.loads(string_io.getvalue())
print('data: %s type: %s' % (data, type(data)) )

return Response()

if __name__ == '__main__':
app.run('0.0.0.0', 5000)


Solution # 2:



from flask import Flask, request, Response
import tempfile, json, os, time

app = Flask(__name__)

@app.route('/test', methods=['GET','POST'])
def route():
print('got files: %s' % request.files)

for key, _file in request.files.items():
tmp_filepath = os.path.join(tempfile.mktemp(), str(time.time()))
if not os.path.exists(os.path.dirname(tmp_filepath)):
os.makedirs(os.path.dirname(tmp_filepath))

_file.save(tmp_filepath)

with open(tmp_filepath) as f:
json_data = json.loads(f.read())

print type(json_data), json_data

return Response(json_data)

if __name__ == '__main__':
app.run('0.0.0.0', 5000)





share|improve this answer































    2 Answers
    2






    active

    oldest

    votes








    2 Answers
    2






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    0














    This is happening because you're posting files instead of data. This should work:



    import flask

    app = flask.Flask(__name__)

    @app.route('/test', methods=['GET','POST'])
    def route():
    print('got data: '.format(flask.request.json))
    return Response()

    if __name__ == '__main__':
    app.run('0.0.0.0', 5000)


    and then send data to your app by



    import requests 

    dictionary_1 = "file": "url": "https://bootstrap.pypa.io/get-pip.py"

    response = requests.post('http://127.0.0.1:5000/test', json=dictionary_1)


    In your example there's no need to post the file unless I'm misunderstanding something






    share|improve this answer























    • I am intentionally using the requests.post(url, files=list()) and not requests.post(url, json=str()) since I would like to be able to send both the files and dictionary with the same request.

      – alphanumeric
      Nov 14 '18 at 21:58












    • @alphanumeric Your request doesn't include any files. The variable multiple_files in the client contains only dicts, lists, and strings.

      – André C. Andersen
      Nov 14 '18 at 22:03











    • Since I would like to keep the question as simple as possible the multiple_files list contains the dictionary object only and not the files.

      – alphanumeric
      Nov 14 '18 at 22:03
















    0














    This is happening because you're posting files instead of data. This should work:



    import flask

    app = flask.Flask(__name__)

    @app.route('/test', methods=['GET','POST'])
    def route():
    print('got data: '.format(flask.request.json))
    return Response()

    if __name__ == '__main__':
    app.run('0.0.0.0', 5000)


    and then send data to your app by



    import requests 

    dictionary_1 = "file": "url": "https://bootstrap.pypa.io/get-pip.py"

    response = requests.post('http://127.0.0.1:5000/test', json=dictionary_1)


    In your example there's no need to post the file unless I'm misunderstanding something






    share|improve this answer























    • I am intentionally using the requests.post(url, files=list()) and not requests.post(url, json=str()) since I would like to be able to send both the files and dictionary with the same request.

      – alphanumeric
      Nov 14 '18 at 21:58












    • @alphanumeric Your request doesn't include any files. The variable multiple_files in the client contains only dicts, lists, and strings.

      – André C. Andersen
      Nov 14 '18 at 22:03











    • Since I would like to keep the question as simple as possible the multiple_files list contains the dictionary object only and not the files.

      – alphanumeric
      Nov 14 '18 at 22:03














    0












    0








    0







    This is happening because you're posting files instead of data. This should work:



    import flask

    app = flask.Flask(__name__)

    @app.route('/test', methods=['GET','POST'])
    def route():
    print('got data: '.format(flask.request.json))
    return Response()

    if __name__ == '__main__':
    app.run('0.0.0.0', 5000)


    and then send data to your app by



    import requests 

    dictionary_1 = "file": "url": "https://bootstrap.pypa.io/get-pip.py"

    response = requests.post('http://127.0.0.1:5000/test', json=dictionary_1)


    In your example there's no need to post the file unless I'm misunderstanding something






    share|improve this answer













    This is happening because you're posting files instead of data. This should work:



    import flask

    app = flask.Flask(__name__)

    @app.route('/test', methods=['GET','POST'])
    def route():
    print('got data: '.format(flask.request.json))
    return Response()

    if __name__ == '__main__':
    app.run('0.0.0.0', 5000)


    and then send data to your app by



    import requests 

    dictionary_1 = "file": "url": "https://bootstrap.pypa.io/get-pip.py"

    response = requests.post('http://127.0.0.1:5000/test', json=dictionary_1)


    In your example there's no need to post the file unless I'm misunderstanding something







    share|improve this answer












    share|improve this answer



    share|improve this answer










    answered Nov 14 '18 at 21:55









    n8styn8sty

    7191623




    7191623












    • I am intentionally using the requests.post(url, files=list()) and not requests.post(url, json=str()) since I would like to be able to send both the files and dictionary with the same request.

      – alphanumeric
      Nov 14 '18 at 21:58












    • @alphanumeric Your request doesn't include any files. The variable multiple_files in the client contains only dicts, lists, and strings.

      – André C. Andersen
      Nov 14 '18 at 22:03











    • Since I would like to keep the question as simple as possible the multiple_files list contains the dictionary object only and not the files.

      – alphanumeric
      Nov 14 '18 at 22:03


















    • I am intentionally using the requests.post(url, files=list()) and not requests.post(url, json=str()) since I would like to be able to send both the files and dictionary with the same request.

      – alphanumeric
      Nov 14 '18 at 21:58












    • @alphanumeric Your request doesn't include any files. The variable multiple_files in the client contains only dicts, lists, and strings.

      – André C. Andersen
      Nov 14 '18 at 22:03











    • Since I would like to keep the question as simple as possible the multiple_files list contains the dictionary object only and not the files.

      – alphanumeric
      Nov 14 '18 at 22:03

















    I am intentionally using the requests.post(url, files=list()) and not requests.post(url, json=str()) since I would like to be able to send both the files and dictionary with the same request.

    – alphanumeric
    Nov 14 '18 at 21:58






    I am intentionally using the requests.post(url, files=list()) and not requests.post(url, json=str()) since I would like to be able to send both the files and dictionary with the same request.

    – alphanumeric
    Nov 14 '18 at 21:58














    @alphanumeric Your request doesn't include any files. The variable multiple_files in the client contains only dicts, lists, and strings.

    – André C. Andersen
    Nov 14 '18 at 22:03





    @alphanumeric Your request doesn't include any files. The variable multiple_files in the client contains only dicts, lists, and strings.

    – André C. Andersen
    Nov 14 '18 at 22:03













    Since I would like to keep the question as simple as possible the multiple_files list contains the dictionary object only and not the files.

    – alphanumeric
    Nov 14 '18 at 22:03






    Since I would like to keep the question as simple as possible the multiple_files list contains the dictionary object only and not the files.

    – alphanumeric
    Nov 14 '18 at 22:03














    0














    Solution # 1:



    from flask import Flask, request, Response
    import StringIO, json

    app = Flask(__name__)

    @app.route('/test', methods=['GET','POST'])
    def route():
    print('got files: %s' % request.files)
    for key, file_storage in request.files.items():
    string_io = StringIO.StringIO()
    file_storage.save(string_io)
    data = json.loads(string_io.getvalue())
    print('data: %s type: %s' % (data, type(data)) )

    return Response()

    if __name__ == '__main__':
    app.run('0.0.0.0', 5000)


    Solution # 2:



    from flask import Flask, request, Response
    import tempfile, json, os, time

    app = Flask(__name__)

    @app.route('/test', methods=['GET','POST'])
    def route():
    print('got files: %s' % request.files)

    for key, _file in request.files.items():
    tmp_filepath = os.path.join(tempfile.mktemp(), str(time.time()))
    if not os.path.exists(os.path.dirname(tmp_filepath)):
    os.makedirs(os.path.dirname(tmp_filepath))

    _file.save(tmp_filepath)

    with open(tmp_filepath) as f:
    json_data = json.loads(f.read())

    print type(json_data), json_data

    return Response(json_data)

    if __name__ == '__main__':
    app.run('0.0.0.0', 5000)





    share|improve this answer





























      0














      Solution # 1:



      from flask import Flask, request, Response
      import StringIO, json

      app = Flask(__name__)

      @app.route('/test', methods=['GET','POST'])
      def route():
      print('got files: %s' % request.files)
      for key, file_storage in request.files.items():
      string_io = StringIO.StringIO()
      file_storage.save(string_io)
      data = json.loads(string_io.getvalue())
      print('data: %s type: %s' % (data, type(data)) )

      return Response()

      if __name__ == '__main__':
      app.run('0.0.0.0', 5000)


      Solution # 2:



      from flask import Flask, request, Response
      import tempfile, json, os, time

      app = Flask(__name__)

      @app.route('/test', methods=['GET','POST'])
      def route():
      print('got files: %s' % request.files)

      for key, _file in request.files.items():
      tmp_filepath = os.path.join(tempfile.mktemp(), str(time.time()))
      if not os.path.exists(os.path.dirname(tmp_filepath)):
      os.makedirs(os.path.dirname(tmp_filepath))

      _file.save(tmp_filepath)

      with open(tmp_filepath) as f:
      json_data = json.loads(f.read())

      print type(json_data), json_data

      return Response(json_data)

      if __name__ == '__main__':
      app.run('0.0.0.0', 5000)





      share|improve this answer



























        0












        0








        0







        Solution # 1:



        from flask import Flask, request, Response
        import StringIO, json

        app = Flask(__name__)

        @app.route('/test', methods=['GET','POST'])
        def route():
        print('got files: %s' % request.files)
        for key, file_storage in request.files.items():
        string_io = StringIO.StringIO()
        file_storage.save(string_io)
        data = json.loads(string_io.getvalue())
        print('data: %s type: %s' % (data, type(data)) )

        return Response()

        if __name__ == '__main__':
        app.run('0.0.0.0', 5000)


        Solution # 2:



        from flask import Flask, request, Response
        import tempfile, json, os, time

        app = Flask(__name__)

        @app.route('/test', methods=['GET','POST'])
        def route():
        print('got files: %s' % request.files)

        for key, _file in request.files.items():
        tmp_filepath = os.path.join(tempfile.mktemp(), str(time.time()))
        if not os.path.exists(os.path.dirname(tmp_filepath)):
        os.makedirs(os.path.dirname(tmp_filepath))

        _file.save(tmp_filepath)

        with open(tmp_filepath) as f:
        json_data = json.loads(f.read())

        print type(json_data), json_data

        return Response(json_data)

        if __name__ == '__main__':
        app.run('0.0.0.0', 5000)





        share|improve this answer















        Solution # 1:



        from flask import Flask, request, Response
        import StringIO, json

        app = Flask(__name__)

        @app.route('/test', methods=['GET','POST'])
        def route():
        print('got files: %s' % request.files)
        for key, file_storage in request.files.items():
        string_io = StringIO.StringIO()
        file_storage.save(string_io)
        data = json.loads(string_io.getvalue())
        print('data: %s type: %s' % (data, type(data)) )

        return Response()

        if __name__ == '__main__':
        app.run('0.0.0.0', 5000)


        Solution # 2:



        from flask import Flask, request, Response
        import tempfile, json, os, time

        app = Flask(__name__)

        @app.route('/test', methods=['GET','POST'])
        def route():
        print('got files: %s' % request.files)

        for key, _file in request.files.items():
        tmp_filepath = os.path.join(tempfile.mktemp(), str(time.time()))
        if not os.path.exists(os.path.dirname(tmp_filepath)):
        os.makedirs(os.path.dirname(tmp_filepath))

        _file.save(tmp_filepath)

        with open(tmp_filepath) as f:
        json_data = json.loads(f.read())

        print type(json_data), json_data

        return Response(json_data)

        if __name__ == '__main__':
        app.run('0.0.0.0', 5000)






        share|improve this answer














        share|improve this answer



        share|improve this answer








        edited Nov 15 '18 at 6:02

























        answered Nov 14 '18 at 21:55









        alphanumericalphanumeric

        5,3321383184




        5,3321383184













            Popular posts from this blog

            Top Tejano songwriter Luis Silva dead of heart attack at 64

            ReactJS Fetched API data displays live - need Data displayed static

            政党