>  기사  >  백엔드 개발  >  Python에서 json.loads를 사용할 때 "ValueError: Extra Data"가 나타나는 이유는 무엇입니까?

Python에서 json.loads를 사용할 때 "ValueError: Extra Data"가 나타나는 이유는 무엇입니까?

Linda Hamilton
Linda Hamilton원래의
2024-11-17 18:11:01173검색

Why am I getting a

Python에서 json.loads를 사용할 때 "ValueError: Extra data" 처리

문제 설명

데이터를 읽을 때 json.load를 사용하는 JSON 파일에서 "ValueError: Extra data" 오류가 발생할 수 있습니다. 이는 유효한 JSON 데이터 외에 JSON 파일에 추가 후행 콘텐츠가 있음을 의미합니다.

샘플 데이터

다음은 "new" .json" 파일로 인해 오류:

{
    "contributors": null, 
    "truncated": false, 
    "text": "@HomeShop18 #DreamJob to professional rafter", 
    "in_reply_to_status_id": null, 
    "id": 421584490452893696, 
    "favorite_count": 0, 
    "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Mobile Web (M2)</a>",
    "retweeted": false, 
    "coordinates": null, 
    "entities": {
        "symbols": [], 
        "user_mentions": [
            {
                "id": 183093247, 
                "indices": [
                    0, 
                    11
                ], 
                "id_str": "183093247", 
                "screen_name": "HomeShop18", 
                "name": "HomeShop18"
            }
        ], 
        "hashtags": [
            {
                "indices": [
                    12, 
                    21
                ], 
                "text": "DreamJob"
            }
        ], 
        "urls": []
    }, 
    "in_reply_to_screen_name": "HomeShop18", 
    "id_str": "421584490452893696", 
    "retweet_count": 0, 
    "in_reply_to_user_id": 183093247, 
    "favorited": false, 
    "user": {
        "follow_request_sent": null, 
        "profile_use_background_image": true, 
        "default_profile_image": false, 
        "id": 2254546045, 
        "verified": false, 
        "profile_image_url_https": "https://pbs.twimg.com/profile_images/413952088880594944/rcdr59OY_normal.jpeg", 
        "profile_sidebar_fill_color": "171106", 
        "profile_text_color": "8A7302", 
        "followers_count": 87, 
        "profile_sidebar_border_color": "BCB302", 
        "id_str": "2254546045", 
        "profile_background_color": "0F0A02", 
        "listed_count": 1, 
        "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", 
        "utc_offset": null, 
        "statuses_count": 9793, 
        "description": "Rafter. Rafting is what I do. Me aur mera Tablet.  Technocrat of Future", 
        "friends_count": 231, 
        "location": "", 
        "profile_link_color": "473623", 
        "profile_image_url": "http://pbs.twimg.com/profile_images/413952088880594944/rcdr59OY_normal.jpeg", 
        "following": null, 
        "geo_enabled": false, 
        "profile_banner_url": "https://pbs.twimg.com/profile_banners/2254546045/1388065343", 
        "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", 
        "name": "Jayy", 
        "lang": "en", 
        "profile_background_tile": false, 
        "favourites_count": 41, 
        "screen_name": "JzayyPsingh", 
        "notifications": null, 
        "url": null, 
        "created_at": "Fri Dec 20 05:46:00 +0000 2013", 
        "contributors_enabled": false, 
        "time_zone": null, 
        "protected": false, 
        "default_profile": false, 
        "is_translator": false
    }, 
    "geo": null, 
    "in_reply_to_user_id_str": "183093247", 
    "lang": "en", 
    "created_at": "Fri Jan 10 10:09:09 +0000 2014", 
    "filter_level": "medium", 
    "in_reply_to_status_id_str": null, 
    "place": null
} 

해결 방법

json.load가 전체 파일을 단일 JSON 개체로 구문 분석하려고 하기 때문에 오류가 발생합니다. 그러나 파일에는 각각 별도의 JSON 개체를 나타내는 여러 줄이 포함되어 있습니다.

이 문제를 해결하려면 다음 단계를 따르세요.

  1. 한 줄씩 반복: 파일을 한 줄씩 반복하고 다음을 사용하여 각 줄을 JSON으로 로드합니다. json.loads.
tweets = []
with open('new.json') as infile:
    for line in infile:
        tweets.append(json.loads(line))
  1. 별도의 JSON 개체: 이렇게 하면 각 JSON 개체를 목록의 개별 요소로 효과적으로 분리할 수 있습니다.

중간 Python 객체를 피하고 완전한 트윗만 추가되도록 함으로써 이 접근 방식은 메모리 과부하를 방지하고 처리할 수 있게 해줍니다. 대용량 JSON 파일을 효율적으로 처리하세요.

위 내용은 Python에서 json.loads를 사용할 때 "ValueError: Extra Data"가 나타나는 이유는 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.