json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)

前端 未结 2 1228
Happy的楠姐
Happy的楠姐 2021-02-03 23:36

I am trying to import a file which was saved using json.dumps and contains tweet coordinates:

{
    \"type\": \"Point\", 
    \"coordinates\": [
            


        
相关标签:
2条回答
  • 2021-02-04 00:06

    json.loads() takes a JSON encoded string, not a filename. You want to use json.load() (no s) instead and pass in an open file object:

    with open('/Users/JoshuaHawley/clean1.txt') as jsonfile:
        data = json.load(jsonfile)
    

    The open() command produces a file object that json.load() can then read from, to produce the decoded Python object for you. The with statement ensures that the file is closed again when done.

    The alternative is to read the data yourself and then pass it into json.loads().

    0 讨论(0)
  • 2021-02-04 00:11

    I had similar error: "Expecting value: line 1 column 1 (char 0)"

    It helped for me to add "myfile.seek(0)", move the pointer to the 0 character

    with open(storage_path, 'r') as myfile:
    if len(myfile.readlines()) != 0:
        myfile.seek(0)
        Bank_0 = json.load(myfile)
    
    0 讨论(0)
提交回复
热议问题