python解析json格式数据时使用jsonpath无法取到值,返回false

jQuery183026400820446366513_1535963936721(
{
"records":[
{
"id":"94406754893220",
"memberid":"",
"evaluationId":"0",
"name":"S***.",
"countryCode":"us",
"countryName":"",
"rank":
""
,
"buyerAccountPointLeval":"A1",
"price":"",
"quantity":"1",
"unit":"piece",
"lotNum":"1",
"option":"",
"star":"",
"date":"31 Aug 2018 23:30",
"buyerFeedback":"",
"supplierReply":"",
"buyerReply":"",
"canDigg":"0"

            }
                           ,
                                         {
                "id":"94059567015926",
                "memberid":"",
                "evaluationId":"0",
                "name":"H***.",
                                    "countryCode":"us",
                "countryName":"",
                "rank":
                                        ""
                                    ,
                "buyerAccountPointLeval":"A1",
                "price":"",
                "quantity":"1",
                "unit":"piece",
                "lotNum":"1",
                "option":"",
                "star":"",
                "date":"29 Aug 2018 22:32",
                "buyerFeedback":"",
                                    "supplierReply":"",
                                                        "buyerReply":"",
                                                        "canDigg":"0"

            }
                            ,
                                         {
                "id":"94058600254638",
                "memberid":"",
                "evaluationId":"0",
                "name":"M***.",
                                    "countryCode":"us",
                "countryName":"",
                "rank":
                                        ""
                                    ,
                "buyerAccountPointLeval":"A1",
                "price":"",
                "quantity":"1",
                "unit":"piece",
                "lotNum":"1",
                "option":"",
                "star":"",
                "date":"29 Aug 2018 21:03",
                "buyerFeedback":"",
                                    "supplierReply":"",
                                                        "buyerReply":"",
                                                        "canDigg":"0"

            }
                            ,
                                         {
                "id":"94305519432368",
                "memberid":"",
                "evaluationId":"0",
                "name":"S***.",
                                    "countryCode":"ru",
                "countryName":"",
                "rank":
                                        ""
                                    ,
                "buyerAccountPointLeval":"A1",
                "price":"",
                "quantity":"1",
                "unit":"piece",
                "lotNum":"1",
                "option":"",
                "star":"",
                "date":"29 Aug 2018 20:41",
                "buyerFeedback":"",
                                    "supplierReply":"",
                                                        "buyerReply":"",
                                                        "canDigg":"0"

            }
                            ,
                                         {
                "id":"702475432645369",
                "memberid":"",
                "evaluationId":"0",
                "name":"M***.",
                                    "countryCode":"ca",
                "countryName":"",
                "rank":
                                        ""
                                    ,
                "buyerAccountPointLeval":"A1",
                "price":"",
                "quantity":"1",
                "unit":"piece",
                "lotNum":"1",
                "option":"",
                "star":"",
                "date":"29 Aug 2018 19:54",
                "buyerFeedback":"",
                                    "supplierReply":"",
                                                        "buyerReply":"",
                                                        "canDigg":"0"

            }
                                    ],
"type":"default",
"page":{
        "current":"1",
        "total":"3"
    },
"range":{
        "region":"6 months",
        "transactions":"43"
    }

}
);

大佬们,这样的数据要怎么解析?

https://www.cnblogs.com/peizhe123/p/6647234.html

这个格式并非json格式,需要去掉开头的 jQuery183026400820446366513_1535963936721( 和结尾的 );
a=jQuery183026400820446366513_1535963936721({"records":[XXXXXXXX}); ##赋值
js=a.strip(' jQuery183026400820446366513_1535963936721( ) \n\t\r') ## 去掉开头结尾部分
js=json.loads(js) ###转化JS格式