├── .idea ├── GraduationProject.iml ├── encodings.xml ├── misc.xml ├── modules.xml └── workspace.xml ├── GraduationProject ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── settings.cpython-36.pyc │ ├── urls.cpython-36.pyc │ └── wsgi.cpython-36.pyc ├── settings.py ├── urls.py └── wsgi.py ├── README.md ├── __init__.py ├── analysis ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── admin.cpython-36.pyc │ ├── models.cpython-36.pyc │ ├── urls.cpython-36.pyc │ └── views.cpython-36.pyc ├── admin.py ├── apps.py ├── migrations │ ├── __init__.py │ └── __pycache__ │ │ └── __init__.cpython-36.pyc ├── models.py ├── stopwords-master │ ├── 中文停用词表.txt │ ├── 哈工大停用词表.txt │ ├── 四川大学机器智能实验室停用词库.txt │ └── 百度停用词表.txt ├── templates │ └── analysis │ │ └── analysisPage.html ├── tests.py ├── urls.py └── views.py ├── db.sqlite3 ├── dbs └── JDSpider.db ├── eggs └── JDSpider │ ├── 1553428488.egg │ ├── 1553429887.egg │ ├── 1553431321.egg │ ├── 1553431492.egg │ ├── 1553434979.egg │ ├── 1553435051.egg │ ├── 1553435237.egg │ ├── 1553435875.egg │ ├── 1553579501.egg │ ├── 1553584540.egg │ ├── 1553590316.egg │ ├── 1553592105.egg │ └── 1553596855.egg ├── logs └── JDSpider │ ├── getCommentDetail │ ├── 0e19b8384e3211e9955bace010528bab.log │ ├── 456418f84e3211e9bd3face010528bab.log │ ├── ba130a824e2b11e982e5ace010528bab.log │ ├── c72abd524e3c11e9817cace010528bab.log │ ├── c7dd3dda4e3211e9bdc9ace010528bab.log │ └── dc8cbfa44e3c11e9b432ace010528bab.log │ ├── getCommentSummary │ ├── 72025c124fb011e9ae3aace010528bab.log │ ├── 80c247ae4fab11e983f5ace010528bab.log │ ├── 93cbd7624fa911e98ef3ace010528bab.log │ ├── a5b1f1544faf11e985e5ace010528bab.log │ ├── b0e68ae64fb311e98d09ace010528bab.log │ └── d586db1e4faf11e9a338ace010528bab.log │ └── getCommodityInfo │ ├── 02cbd2024e2f11e98c89ace010528bab.log │ ├── 595bf24c4fa411e9b6bcace010528bab.log │ ├── 78b743ae4fab11e9be93ace010528bab.log │ ├── 81ba366e4fa411e9967aace010528bab.log │ ├── b12b1dd24e3211e981eaace010528bab.log │ └── be12de804e3c11e9b17bace010528bab.log ├── main ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── admin.cpython-36.pyc │ ├── apps.cpython-36.pyc │ ├── models.cpython-36.pyc │ ├── urls.cpython-36.pyc │ └── views.cpython-36.pyc ├── admin.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20190327_1331.py │ ├── __init__.py │ └── __pycache__ │ │ ├── 0001_initial.cpython-36.pyc │ │ ├── 0002_auto_20190327_1331.cpython-36.pyc │ │ └── __init__.cpython-36.pyc ├── models.py ├── static │ └── main │ │ ├── axios.min.js │ │ ├── axios.min.map │ │ ├── bootstrap.min.css │ │ ├── jquery-3.3.1.min.js │ │ ├── qs.min.js │ │ ├── searchImg.png │ │ └── vue.js ├── templates │ └── main │ │ ├── commodityCommentPage.html │ │ ├── commodityCommentSummaryPage.html │ │ ├── commodityInfoPage.html │ │ └── index.html ├── tests.py ├── urls.py └── views.py ├── manage.py └── spiderApp └── JDSpider ├── .scrapy └── httpcache │ ├── default │ ├── 16 │ │ └── 1609ca97345c360aafe42c895d803a2eac40e189 │ │ │ ├── meta │ │ │ ├── pickled_meta │ │ │ ├── request_body │ │ │ ├── request_headers │ │ │ ├── response_body │ │ │ └── response_headers │ └── 09 │ │ └── 09c30fb093aca2258d1cd689eeb2d86b0766e2ef │ │ ├── meta │ │ ├── pickled_meta │ │ ├── request_body │ │ ├── request_headers │ │ ├── response_body │ │ └── response_headers │ ├── getCommentDetail │ ├── 13 │ │ └── 13e27752303517dc4f557799cf21fa087bbf9d70 │ │ │ ├── meta │ │ │ ├── pickled_meta │ │ │ ├── request_body │ │ │ ├── request_headers │ │ │ ├── response_body │ │ │ └── response_headers │ ├── 14 │ │ └── 1488d57e39cd4dad00447ca1edceec3ec98bd7ae │ │ │ ├── meta │ │ │ ├── pickled_meta │ │ │ ├── request_body │ │ │ ├── request_headers │ │ │ ├── response_body │ │ │ └── response_headers │ ├── 16 │ │ └── 1609ca97345c360aafe42c895d803a2eac40e189 │ │ │ ├── meta │ │ │ ├── pickled_meta │ │ │ ├── request_body │ │ │ ├── request_headers │ │ │ ├── response_body │ │ │ └── response_headers │ ├── 25 │ │ └── 25d56efbc7acb8b4959344238626b940a3309b4f │ │ │ ├── meta │ │ │ ├── pickled_meta │ │ │ ├── request_body │ │ │ ├── request_headers │ │ │ ├── response_body │ │ │ └── response_headers │ ├── 26 │ │ └── 26afbd1f0b5d601c683df28857cc3a8e41f8d505 │ │ │ ├── meta │ │ │ ├── pickled_meta │ │ │ ├── request_body │ │ │ ├── request_headers │ │ │ ├── response_body │ │ │ └── response_headers │ ├── 29 │ │ ├── 293adb8eb743112b49dd7c547037b923ac95e512 │ │ │ ├── meta │ │ │ ├── pickled_meta │ │ │ ├── request_body │ │ │ ├── request_headers │ │ │ ├── response_body │ │ │ └── response_headers │ │ └── 29480504bc94bd20eb1390ce0c3ac7309783c4d3 │ │ │ ├── meta │ │ │ ├── pickled_meta │ │ │ ├── request_body │ │ │ ├── request_headers │ │ │ ├── response_body │ │ │ └── response_headers │ ├── 31 │ │ └── 312ec87b681cccbce1618d4e7163e9742886522b │ │ │ ├── meta │ │ │ ├── pickled_meta │ │ │ ├── request_body │ │ │ ├── request_headers │ │ │ ├── response_body │ │ │ └── response_headers │ ├── 33 │ │ └── 332e2c74cba45ca3cef15d500b18cc28cd12e905 │ │ │ ├── meta │ │ │ ├── pickled_meta │ │ │ ├── request_body │ │ │ ├── request_headers │ │ │ ├── response_body │ │ │ └── response_headers │ ├── 36 │ │ └── 361c4938c2a47b99608489ebd131e511e75d9450 │ │ │ ├── meta │ │ │ ├── pickled_meta │ │ │ ├── request_body │ │ │ ├── request_headers │ │ │ ├── response_body │ │ │ └── response_headers │ ├── 37 │ │ └── 37cb7da5eceebe91399341045ea387395ad54dd1 │ │ │ ├── meta │ │ │ ├── pickled_meta │ │ │ ├── request_body │ │ │ ├── request_headers │ │ │ ├── response_body │ │ │ └── response_headers │ ├── 39 │ │ └── 39913c30351fa4a1df0a90542772df276c8275b9 │ │ │ ├── meta │ │ │ ├── pickled_meta │ │ │ ├── request_body │ │ │ ├── request_headers │ │ │ ├── response_body │ │ │ └── response_headers │ ├── 45 │ │ ├── 4547326b42f1fd12764d2f61330021ca3e6faf49 │ │ │ ├── meta │ │ │ ├── pickled_meta │ │ │ ├── request_body │ │ │ ├── request_headers │ │ │ ├── response_body │ │ │ └── response_headers │ │ └── 459ea8cb0c62eaf6ae09bb773fa41e58b305d366 │ │ │ ├── meta │ │ │ ├── pickled_meta │ │ │ ├── request_body │ │ │ ├── request_headers │ │ │ ├── response_body │ │ │ └── response_headers │ ├── 46 │ │ ├── 464287f4e3be2aa47a7b907736de90e06291d89f │ │ │ ├── meta │ │ │ ├── pickled_meta │ │ │ ├── request_body │ │ │ ├── request_headers │ │ │ ├── response_body │ │ │ └── response_headers │ │ └── 46a2fa1a6991cd6cd102ce709d4949160a4de73a │ │ │ ├── meta │ │ │ ├── pickled_meta │ │ │ ├── request_body │ │ │ ├── request_headers │ │ │ ├── response_body │ │ │ └── response_headers │ ├── 48 │ │ └── 48a17ac9ac2c7abfa291b9dc4a2fc9b009f6ab39 │ │ │ ├── meta │ │ │ ├── pickled_meta │ │ │ ├── request_body │ │ │ ├── request_headers │ │ │ ├── response_body │ │ │ └── response_headers │ ├── 54 │ │ └── 5499c8c9c98369e5a604214f10fe7ddd6a40a302 │ │ │ ├── meta │ │ │ ├── pickled_meta │ │ │ ├── request_body │ │ │ ├── request_headers │ │ │ ├── response_body │ │ │ └── response_headers │ ├── 56 │ │ └── 56927b8db5f916e7ab80f5c32b2e28a5a68a9e66 │ │ │ ├── meta │ │ │ ├── pickled_meta │ │ │ ├── request_body │ │ │ ├── request_headers │ │ │ ├── response_body │ │ │ └── response_headers │ ├── 58 │ │ ├── 58333226f45854052a6a28804488f98b2d31096e │ │ │ ├── meta │ │ │ ├── pickled_meta │ │ │ ├── request_body │ │ │ ├── request_headers │ │ │ ├── response_body │ │ │ └── response_headers │ │ └── 5861fe962cd8e632fb11e38c077bd4759a88aa40 │ │ │ ├── meta │ │ │ ├── pickled_meta │ │ │ ├── request_body │ │ │ ├── request_headers │ │ │ ├── response_body │ │ │ └── response_headers │ ├── 59 │ │ └── 59f70d5b659279a5d94b3452b483ba3a58b86288 │ │ │ ├── meta │ │ │ ├── pickled_meta │ │ │ ├── request_body │ │ │ ├── request_headers │ │ │ ├── response_body │ │ │ └── response_headers │ ├── 63 │ │ └── 63ec3a3045dbc4a8d50a9e5d3974176470ba0800 │ │ │ ├── meta │ │ │ ├── pickled_meta │ │ │ ├── request_body │ │ │ ├── request_headers │ │ │ ├── response_body │ │ │ └── response_headers │ ├── 65 │ │ └── 655831c57cebe67cde1fb747601ac625eac940bc │ │ │ ├── meta │ │ │ ├── pickled_meta │ │ │ ├── request_body │ │ │ ├── request_headers │ │ │ ├── response_body │ │ │ └── response_headers │ ├── 69 │ │ └── 69a5bf26dc4f17e837ebc9387a2903020b642871 │ │ │ ├── meta │ │ │ ├── pickled_meta │ │ │ ├── request_body │ │ │ ├── request_headers │ │ │ ├── response_body │ │ │ └── response_headers │ ├── 73 │ │ └── 7371d83bb5e6354e5239fd75f6b488ca41fda970 │ │ │ ├── meta │ │ │ ├── pickled_meta │ │ │ ├── request_body │ │ │ ├── request_headers │ │ │ ├── response_body │ │ │ └── response_headers │ ├── 74 │ │ └── 748086a47802a3e26c67f2f41fb7d132c1916c74 │ │ │ ├── meta │ │ │ ├── pickled_meta │ │ │ ├── request_body │ │ │ ├── request_headers │ │ │ ├── response_body │ │ │ └── response_headers │ ├── 78 │ │ └── 78139de8f266a1902539f82a054ee2b35af7d3a3 │ │ │ ├── meta │ │ │ ├── pickled_meta │ │ │ ├── request_body │ │ │ ├── request_headers │ │ │ ├── response_body │ │ │ └── response_headers │ ├── 81 │ │ └── 817d826dcf698e96cb88ea08a5003ef8b0b5ca70 │ │ │ ├── meta │ │ │ ├── pickled_meta │ │ │ ├── request_body │ │ │ ├── request_headers │ │ │ ├── response_body │ │ │ └── response_headers │ ├── 86 │ │ ├── 8668c8ec5faee842a089e8b0bfb21bfb72162828 │ │ │ ├── meta │ │ │ ├── pickled_meta │ │ │ ├── request_body │ │ │ ├── request_headers │ │ │ ├── response_body │ │ │ └── response_headers │ │ └── 86e3a1daa49e7b75f583b47ef83693aa2910288f │ │ │ ├── meta │ │ │ ├── pickled_meta │ │ │ ├── request_body │ │ │ ├── request_headers │ │ │ ├── response_body │ │ │ └── response_headers │ ├── 87 │ │ ├── 8730c60eaf9f85b3c008f57358f0803c43a00a0b │ │ │ ├── meta │ │ │ ├── pickled_meta │ │ │ ├── request_body │ │ │ ├── request_headers │ │ │ ├── response_body │ │ │ └── response_headers │ │ └── 87744669f352925d60338408f80e33879bf4576e │ │ │ ├── meta │ │ │ ├── pickled_meta │ │ │ ├── request_body │ │ │ ├── request_headers │ │ │ ├── response_body │ │ │ └── response_headers │ ├── 90 │ │ └── 90f6cf682670c1873c0903087d14375a77300714 │ │ │ ├── meta │ │ │ ├── pickled_meta │ │ │ ├── request_body │ │ │ ├── request_headers │ │ │ ├── response_body │ │ │ └── response_headers │ ├── 95 │ │ └── 95f82ac82b8a2cdee0b29e934658d4097877bd91 │ │ │ ├── meta │ │ │ ├── pickled_meta │ │ │ ├── request_body │ │ │ ├── request_headers │ │ │ ├── response_body │ │ │ └── response_headers │ ├── 02 │ │ └── 0262bd4f4e04bf52401915750247ef3b3f43cba2 │ │ │ ├── meta │ │ │ ├── pickled_meta │ │ │ ├── request_body │ │ │ ├── request_headers │ │ │ ├── response_body │ │ │ └── response_headers │ ├── 04 │ │ └── 04cb4eeb604c60e039fe2339636b5b032aa8e7d7 │ │ │ ├── meta │ │ │ ├── pickled_meta │ │ │ ├── request_body │ │ │ ├── request_headers │ │ │ ├── response_body │ │ │ └── response_headers │ ├── 05 │ │ └── 05361f592ad62b456743d14925e7e0b9ab09dfa9 │ │ │ ├── meta │ │ │ ├── pickled_meta │ │ │ ├── request_body │ │ │ ├── request_headers │ │ │ ├── response_body │ │ │ └── response_headers │ ├── 08 │ │ └── 0805fd57d2ccf6d2faab717a429454ea423a6f3d │ │ │ ├── meta │ │ │ ├── pickled_meta │ │ │ ├── request_body │ │ │ ├── request_headers │ │ │ ├── response_body │ │ │ └── response_headers │ ├── 1a │ │ └── 1a45775b9ba9ee2f391ffed8ef2034ce4ce4077d │ │ │ ├── meta │ │ │ ├── pickled_meta │ │ │ ├── request_body │ │ │ ├── request_headers │ │ │ ├── response_body │ │ │ └── response_headers │ ├── 1b │ │ ├── 1b2ba677424064fbedb1c0c2c874087b7d2edd31 │ │ │ ├── meta │ │ │ ├── pickled_meta │ │ │ ├── request_body │ │ │ ├── request_headers │ │ │ ├── response_body │ │ │ └── response_headers │ │ └── 1b87e564abfecd6e7c4072e23cebe77f8242e4b4 │ │ │ ├── meta │ │ │ ├── pickled_meta │ │ │ ├── request_body │ │ │ ├── request_headers │ │ │ ├── response_body │ │ │ └── response_headers │ ├── 1d │ │ └── 1d55e10d2e1ae0b989aac2d847ed135557e53a40 │ │ │ ├── meta │ │ │ ├── pickled_meta │ │ │ ├── request_body │ │ │ ├── request_headers │ │ │ ├── response_body │ │ │ └── response_headers │ ├── 2c │ │ └── 2c8b5db68539ec287e0acac649953e412a53ad1a │ │ │ ├── meta │ │ │ ├── pickled_meta │ │ │ ├── request_body │ │ │ ├── request_headers │ │ │ ├── response_body │ │ │ └── response_headers │ ├── 3b │ │ └── 3b28c159f1c11a5d856f91afe6746f1dce4825d6 │ │ │ ├── meta │ │ │ ├── pickled_meta │ │ │ ├── request_body │ │ │ ├── request_headers │ │ │ ├── response_body │ │ │ └── response_headers │ ├── 3d │ │ └── 3d5a9c7b0f4b6b64b53bbd96385823ab2c7f7114 │ │ │ ├── meta │ │ │ ├── pickled_meta │ │ │ ├── request_body │ │ │ ├── request_headers │ │ │ ├── response_body │ │ │ └── response_headers │ ├── 3f │ │ └── 3f640fa36529b10b7bfa83d46e625930c7c173cd │ │ │ ├── meta │ │ │ ├── pickled_meta │ │ │ ├── request_body │ │ │ ├── request_headers │ │ │ ├── response_body │ │ │ └── response_headers │ ├── 5e │ │ └── 5e2b435bf3caee40f64e09974c2d80b98f961e2b │ │ │ ├── meta │ │ │ ├── pickled_meta │ │ │ ├── request_body │ │ │ ├── request_headers │ │ │ ├── response_body │ │ │ └── response_headers │ ├── 6a │ │ └── 6a43fdb14c7d72af859f0ca289fc8d4ea0127aa3 │ │ │ ├── meta │ │ │ ├── pickled_meta │ │ │ ├── request_body │ │ │ ├── request_headers │ │ │ ├── response_body │ │ │ └── response_headers │ ├── 6b │ │ └── 6b02d3b23f0f37715cbba07382eb4c7621e434b8 │ │ │ ├── meta │ │ │ ├── pickled_meta │ │ │ ├── request_body │ │ │ ├── request_headers │ │ │ ├── response_body │ │ │ └── response_headers │ ├── 8a │ │ └── 8a86cd0704ec7d40be85546432d87cb760adfb20 │ │ │ ├── meta │ │ │ ├── pickled_meta │ │ │ ├── request_body │ │ │ ├── request_headers │ │ │ ├── response_body │ │ │ └── response_headers │ ├── 8e │ │ ├── 8e018f6f16da1e9222a1beffb5f09977d1599fa9 │ │ │ ├── meta │ │ │ ├── pickled_meta │ │ │ ├── request_body │ │ │ ├── request_headers │ │ │ ├── response_body │ │ │ └── response_headers │ │ ├── 8ea61ec1b9b97a68ca86d5c7a6ba3dde08b90d6e │ │ │ ├── meta │ │ │ ├── pickled_meta │ │ │ ├── request_body │ │ │ ├── request_headers │ │ │ ├── response_body │ │ │ └── response_headers │ │ └── 8ed478c224028c2d6b966e55e7d04ac053c6c399 │ │ │ ├── meta │ │ │ ├── pickled_meta │ │ │ ├── request_body │ │ │ ├── request_headers │ │ │ ├── response_body │ │ │ └── response_headers │ ├── 9a │ │ └── 9ad99f96f86db6060b9125376566c0416a6cafe0 │ │ │ ├── meta │ │ │ ├── pickled_meta │ │ │ ├── request_body │ │ │ ├── request_headers │ │ │ ├── response_body │ │ │ └── response_headers │ ├── 9c │ │ └── 9cc7871bf34b69c659bfed3f92259bd5e7589a92 │ │ │ ├── meta │ │ │ ├── pickled_meta │ │ │ ├── request_body │ │ │ ├── request_headers │ │ │ ├── response_body │ │ │ └── response_headers │ ├── 9d │ │ ├── 9d2bd0cc56ecbd244d634a874858c1438cc456be │ │ │ ├── meta │ │ │ ├── pickled_meta │ │ │ ├── request_body │ │ │ ├── request_headers │ │ │ ├── response_body │ │ │ └── response_headers │ │ └── 9db405364bb2fbecc6903adda57297be80bd7e61 │ │ │ ├── meta │ │ │ ├── pickled_meta │ │ │ ├── request_body │ │ │ ├── request_headers │ │ │ ├── response_body │ │ │ └── response_headers │ ├── 9f │ │ └── 9ff2b945d0cdd3b4dced65024423c71c1d00692c │ │ │ ├── meta │ │ │ ├── pickled_meta │ │ │ ├── request_body │ │ │ ├── request_headers │ │ │ ├── response_body │ │ │ └── response_headers │ ├── ad │ │ └── ad5f01be2a6a52fcec36c73fbc453e5850dba5d5 │ │ │ ├── meta │ │ │ ├── pickled_meta │ │ │ ├── request_body │ │ │ ├── request_headers │ │ │ ├── response_body │ │ │ └── response_headers │ ├── b0 │ │ └── b0825df7f967adfaee90b0d1192b007f3e297e13 │ │ │ ├── meta │ │ │ ├── pickled_meta │ │ │ ├── request_body │ │ │ ├── request_headers │ │ │ ├── response_body │ │ │ └── response_headers │ ├── b1 │ │ └── b1294c607fad86ff569d98d61c732fa323c04244 │ │ │ ├── meta │ │ │ ├── pickled_meta │ │ │ ├── request_body │ │ │ ├── request_headers │ │ │ ├── response_body │ │ │ └── response_headers │ ├── b2 │ │ ├── b267be55a9ea202dd112e283bc15b0a42ac263e4 │ │ │ ├── meta │ │ │ ├── pickled_meta │ │ │ ├── request_body │ │ │ ├── request_headers │ │ │ ├── response_body │ │ │ └── response_headers │ │ └── b27ce3849f69b1256dbba39bf31bf97014e6d62c │ │ │ ├── meta │ │ │ ├── pickled_meta │ │ │ ├── request_body │ │ │ ├── request_headers │ │ │ ├── response_body │ │ │ └── response_headers │ ├── b3 │ │ └── b3ca43599690e15c3aa83c255b1a6376fff87eef │ │ │ ├── meta │ │ │ ├── pickled_meta │ │ │ ├── request_body │ │ │ ├── request_headers │ │ │ ├── response_body │ │ │ └── response_headers │ ├── b4 │ │ └── b483815ce1c65e2c4e29e287c9c6d7504e3c5e8e │ │ │ ├── meta │ │ │ ├── pickled_meta │ │ │ ├── request_body │ │ │ ├── request_headers │ │ │ ├── response_body │ │ │ └── response_headers │ ├── ba │ │ ├── ba8937dae9d91f324b30f02b801aa6877af28c95 │ │ │ ├── meta │ │ │ ├── pickled_meta │ │ │ ├── request_body │ │ │ ├── request_headers │ │ │ ├── response_body │ │ │ └── response_headers │ │ └── badba28cba38e6860eaafb1651568c4b637212d6 │ │ │ ├── meta │ │ │ ├── pickled_meta │ │ │ ├── request_body │ │ │ ├── request_headers │ │ │ ├── response_body │ │ │ └── response_headers │ ├── c1 │ │ └── c1aeb619c0f3f9bcbbe58289b7c9e80db56f8fe9 │ │ │ ├── meta │ │ │ ├── pickled_meta │ │ │ ├── request_body │ │ │ ├── request_headers │ │ │ ├── response_body │ │ │ └── response_headers │ ├── c3 │ │ └── c3c32a9f368a2e96b44057933334e23ba8a12b0f │ │ │ ├── meta │ │ │ ├── pickled_meta │ │ │ ├── request_body │ │ │ ├── request_headers │ │ │ ├── response_body │ │ │ └── response_headers │ ├── c4 │ │ └── c429c7b3e98851c566e4b545271f47dd22fba095 │ │ │ ├── meta │ │ │ ├── pickled_meta │ │ │ ├── request_body │ │ │ ├── request_headers │ │ │ ├── response_body │ │ │ └── response_headers │ ├── c6 │ │ └── c6a0f6ff7fbc53a76b53935674a984e48c7731f1 │ │ │ ├── meta │ │ │ ├── pickled_meta │ │ │ ├── request_body │ │ │ ├── request_headers │ │ │ ├── response_body │ │ │ └── response_headers │ ├── cb │ │ └── cb66956cb1086a59580942cb025de76f50ead720 │ │ │ ├── meta │ │ │ ├── pickled_meta │ │ │ ├── request_body │ │ │ ├── request_headers │ │ │ ├── response_body │ │ │ └── response_headers │ ├── cd │ │ └── cd3887bae7a85ed9b442a8f498e91afe300aa1b2 │ │ │ ├── meta │ │ │ ├── pickled_meta │ │ │ ├── request_body │ │ │ ├── request_headers │ │ │ ├── response_body │ │ │ └── response_headers │ ├── d0 │ │ └── d00543ce8209423040886a158ceee8cfcd3762af │ │ │ ├── meta │ │ │ ├── pickled_meta │ │ │ ├── request_body │ │ │ ├── request_headers │ │ │ ├── response_body │ │ │ └── response_headers │ ├── d9 │ │ └── d91b2c18e02ed9a5bf9c9261696a8a6304ad6261 │ │ │ ├── meta │ │ │ ├── pickled_meta │ │ │ ├── request_body │ │ │ ├── request_headers │ │ │ ├── response_body │ │ │ └── response_headers │ ├── dc │ │ └── dc235873c9a9f2784f9922c83be9ba6fd101e534 │ │ │ ├── meta │ │ │ ├── pickled_meta │ │ │ ├── request_body │ │ │ ├── request_headers │ │ │ ├── response_body │ │ │ └── response_headers │ ├── e0 │ │ └── e02be06465bd80a9b468f1c909d758510d519999 │ │ │ ├── meta │ │ │ ├── pickled_meta │ │ │ ├── request_body │ │ │ ├── request_headers │ │ │ ├── response_body │ │ │ └── response_headers │ ├── e3 │ │ └── e34bbaa9cc9568833d2186e4f855e82068e80beb │ │ │ ├── meta │ │ │ ├── pickled_meta │ │ │ ├── request_body │ │ │ ├── request_headers │ │ │ ├── response_body │ │ │ └── response_headers │ ├── e6 │ │ └── e6c749c601b743583444ee4a03ce0f1e3f133c6a │ │ │ ├── meta │ │ │ ├── pickled_meta │ │ │ ├── request_body │ │ │ ├── request_headers │ │ │ ├── response_body │ │ │ └── response_headers │ ├── e8 │ │ └── e82ff059f597c4d7dbc5040a7dac2a5d44622a30 │ │ │ ├── meta │ │ │ ├── pickled_meta │ │ │ ├── request_body │ │ │ ├── request_headers │ │ │ ├── response_body │ │ │ └── response_headers │ ├── ea │ │ └── ea64cfa9a0646e4a7bd2d375d044fc6844811d3c │ │ │ ├── meta │ │ │ ├── pickled_meta │ │ │ ├── request_body │ │ │ ├── request_headers │ │ │ ├── response_body │ │ │ └── response_headers │ ├── ee │ │ ├── eec1d217adcf8d83b3684b003d957a3c4a0327a7 │ │ │ ├── meta │ │ │ ├── pickled_meta │ │ │ ├── request_body │ │ │ ├── request_headers │ │ │ ├── response_body │ │ │ └── response_headers │ │ ├── eee37193f53df3ac01486c80fc2c1499bdd2f969 │ │ │ ├── meta │ │ │ ├── pickled_meta │ │ │ ├── request_body │ │ │ ├── request_headers │ │ │ ├── response_body │ │ │ └── response_headers │ │ └── eee41235760fed40a9b3d351a9982542eb7a1046 │ │ │ ├── meta │ │ │ ├── pickled_meta │ │ │ ├── request_body │ │ │ ├── request_headers │ │ │ ├── response_body │ │ │ └── response_headers │ ├── ef │ │ └── ef14589d3a21a6044cb6ba5725123029e47f773d │ │ │ ├── meta │ │ │ ├── pickled_meta │ │ │ ├── request_body │ │ │ ├── request_headers │ │ │ ├── response_body │ │ │ └── response_headers │ ├── f0 │ │ └── f05bbb8da327493af03068d9f22bd84a824f54b7 │ │ │ ├── meta │ │ │ ├── pickled_meta │ │ │ ├── request_body │ │ │ ├── request_headers │ │ │ ├── response_body │ │ │ └── response_headers │ ├── f5 │ │ └── f5f13abca021aed8addf17e821d4b13a6eef7702 │ │ │ ├── meta │ │ │ ├── pickled_meta │ │ │ ├── request_body │ │ │ ├── request_headers │ │ │ ├── response_body │ │ │ └── response_headers │ ├── f6 │ │ └── f64965e2a99674bae3d21fcf46fa7f35540915a9 │ │ │ ├── meta │ │ │ ├── pickled_meta │ │ │ ├── request_body │ │ │ ├── request_headers │ │ │ ├── response_body │ │ │ └── response_headers │ ├── fb │ │ └── fbd85abae9d55a3f69720bd6b83b719d1e20b002 │ │ │ ├── meta │ │ │ ├── pickled_meta │ │ │ ├── request_body │ │ │ ├── request_headers │ │ │ ├── response_body │ │ │ └── response_headers │ └── fe │ │ └── fe4a09ae3a3c0d4612152cbaf979a7246f8a300d │ │ ├── meta │ │ ├── pickled_meta │ │ ├── request_body │ │ ├── request_headers │ │ ├── response_body │ │ └── response_headers │ ├── getCommentSummary │ ├── 16 │ │ └── 1609ca97345c360aafe42c895d803a2eac40e189 │ │ │ ├── meta │ │ │ ├── pickled_meta │ │ │ ├── request_body │ │ │ ├── request_headers │ │ │ ├── response_body │ │ │ └── response_headers │ ├── 25 │ │ └── 25d56efbc7acb8b4959344238626b940a3309b4f │ │ │ ├── meta │ │ │ ├── pickled_meta │ │ │ ├── request_body │ │ │ ├── request_headers │ │ │ ├── response_body │ │ │ └── response_headers │ ├── 70 │ │ └── 704df34dbeec8d9aaf78c3f0613d1281ef178f35 │ │ │ ├── meta │ │ │ ├── pickled_meta │ │ │ ├── request_body │ │ │ ├── request_headers │ │ │ ├── response_body │ │ │ └── response_headers │ ├── b6 │ │ └── b6ef6257d63de037ec0d897020b7af075fb36ccf │ │ │ ├── meta │ │ │ ├── pickled_meta │ │ │ ├── request_body │ │ │ ├── request_headers │ │ │ ├── response_body │ │ │ └── response_headers │ └── c6 │ │ └── c6b4c9714a2539c1e03b5a16216b3a126cf6943a │ │ ├── meta │ │ ├── pickled_meta │ │ ├── request_body │ │ ├── request_headers │ │ ├── response_body │ │ └── response_headers │ └── getCommodityInfo │ ├── 20 │ └── 20699dc4485802e08c142b6768a41d9ca78d6720 │ │ ├── meta │ │ ├── pickled_meta │ │ ├── request_body │ │ ├── request_headers │ │ ├── response_body │ │ └── response_headers │ ├── 45 │ └── 45cac7f372c45331146d2b7d528302ca34ed63d7 │ │ ├── meta │ │ ├── pickled_meta │ │ ├── request_body │ │ ├── request_headers │ │ ├── response_body │ │ └── response_headers │ ├── 91 │ └── 91d1feee2fb8d255ffc5358d869b2def6fd8fb89 │ │ ├── meta │ │ ├── pickled_meta │ │ ├── request_body │ │ ├── request_headers │ │ ├── response_body │ │ └── response_headers │ ├── 6e │ └── 6e6780b78a9b420019fa37ce2b25ac8e941dc80f │ │ ├── meta │ │ ├── pickled_meta │ │ ├── request_body │ │ ├── request_headers │ │ ├── response_body │ │ └── response_headers │ ├── 9d │ └── 9d0ba8b3fa355d7d57844e9cec039fb9089bb209 │ │ ├── meta │ │ ├── pickled_meta │ │ ├── request_body │ │ ├── request_headers │ │ ├── response_body │ │ └── response_headers │ └── a1 │ └── a1d1c46c76ac3802722e3dac162e51a9218ec55d │ ├── meta │ ├── pickled_meta │ ├── request_body │ ├── request_headers │ ├── response_body │ └── response_headers ├── JDSpider ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── items.cpython-36.pyc │ ├── pipelines.cpython-36.pyc │ └── settings.cpython-36.pyc ├── entrypoint.py ├── items.py ├── middlewares.py ├── pipelines.py ├── settings.py └── spiders │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── getCommentDetail.cpython-36.pyc │ ├── getCommentSummary.cpython-36.pyc │ └── getCommodityInfo.cpython-36.pyc │ ├── getCommentDetail.py │ ├── getCommentSummary.py │ └── getCommodityInfo.py ├── build └── lib │ └── JDSpider │ ├── __init__.py │ ├── entrypoint.py │ ├── items.py │ ├── middlewares.py │ ├── pipelines.py │ ├── settings.py │ └── spiders │ ├── __init__.py │ ├── getCommentDetail.py │ ├── getCommentSummary.py │ └── getCommodityInfo.py ├── project.egg-info ├── PKG-INFO ├── SOURCES.txt ├── dependency_links.txt ├── entry_points.txt └── top_level.txt ├── scrapy.cfg └── setup.py /.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /GraduationProject/__init__.py: -------------------------------------------------------------------------------- 1 | import pymysql 2 | pymysql.install_as_MySQLdb() -------------------------------------------------------------------------------- /GraduationProject/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/GraduationProject/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /GraduationProject/__pycache__/settings.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/GraduationProject/__pycache__/settings.cpython-36.pyc -------------------------------------------------------------------------------- /GraduationProject/__pycache__/urls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/GraduationProject/__pycache__/urls.cpython-36.pyc -------------------------------------------------------------------------------- /GraduationProject/__pycache__/wsgi.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/GraduationProject/__pycache__/wsgi.cpython-36.pyc -------------------------------------------------------------------------------- /GraduationProject/wsgi.py: -------------------------------------------------------------------------------- 1 | """ 2 | WSGI config for GraduationProject project. 3 | 4 | It exposes the WSGI callable as a module-level variable named ``application``. 5 | 6 | For more information on this file, see 7 | https://docs.djangoproject.com/en/2.0/howto/deployment/wsgi/ 8 | """ 9 | 10 | import os 11 | 12 | from django.core.wsgi import get_wsgi_application 13 | 14 | os.environ.setdefault("DJANGO_SETTINGS_MODULE", "GraduationProject.settings") 15 | 16 | application = get_wsgi_application() 17 | -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding:utf-8 -*- 2 | """ 3 | @author:ZheYu 4 | @file:__init__.py 5 | @time:2019/3/2122:00 6 | """ -------------------------------------------------------------------------------- /analysis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/analysis/__init__.py -------------------------------------------------------------------------------- /analysis/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/analysis/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /analysis/__pycache__/admin.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/analysis/__pycache__/admin.cpython-36.pyc -------------------------------------------------------------------------------- /analysis/__pycache__/models.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/analysis/__pycache__/models.cpython-36.pyc -------------------------------------------------------------------------------- /analysis/__pycache__/urls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/analysis/__pycache__/urls.cpython-36.pyc -------------------------------------------------------------------------------- /analysis/__pycache__/views.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/analysis/__pycache__/views.cpython-36.pyc -------------------------------------------------------------------------------- /analysis/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /analysis/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class AnalysisConfig(AppConfig): 5 | name = 'analysis' 6 | -------------------------------------------------------------------------------- /analysis/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/analysis/migrations/__init__.py -------------------------------------------------------------------------------- /analysis/migrations/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/analysis/migrations/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /analysis/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | 3 | # Create your models here. 4 | -------------------------------------------------------------------------------- /analysis/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /analysis/urls.py: -------------------------------------------------------------------------------- 1 | # -*- coding:utf-8 -*- 2 | """ 3 | @author:ZheYu 4 | @file:urls.py.py 5 | @time:2019/3/2713:02 6 | """ 7 | from django.urls import path 8 | from . import views 9 | 10 | app_name = 'analysis' 11 | 12 | urlpatterns = [ 13 | path("",views.analysis,name="analysis"), 14 | path("commentProcess/",views.commentProcess, name = "commentProcess"), 15 | 16 | ] -------------------------------------------------------------------------------- /db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/db.sqlite3 -------------------------------------------------------------------------------- /dbs/JDSpider.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/dbs/JDSpider.db -------------------------------------------------------------------------------- /eggs/JDSpider/1553428488.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/eggs/JDSpider/1553428488.egg -------------------------------------------------------------------------------- /eggs/JDSpider/1553429887.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/eggs/JDSpider/1553429887.egg -------------------------------------------------------------------------------- /eggs/JDSpider/1553431321.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/eggs/JDSpider/1553431321.egg -------------------------------------------------------------------------------- /eggs/JDSpider/1553431492.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/eggs/JDSpider/1553431492.egg -------------------------------------------------------------------------------- /eggs/JDSpider/1553434979.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/eggs/JDSpider/1553434979.egg -------------------------------------------------------------------------------- /eggs/JDSpider/1553435051.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/eggs/JDSpider/1553435051.egg -------------------------------------------------------------------------------- /eggs/JDSpider/1553435237.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/eggs/JDSpider/1553435237.egg -------------------------------------------------------------------------------- /eggs/JDSpider/1553435875.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/eggs/JDSpider/1553435875.egg -------------------------------------------------------------------------------- /eggs/JDSpider/1553579501.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/eggs/JDSpider/1553579501.egg -------------------------------------------------------------------------------- /eggs/JDSpider/1553584540.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/eggs/JDSpider/1553584540.egg -------------------------------------------------------------------------------- /eggs/JDSpider/1553590316.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/eggs/JDSpider/1553590316.egg -------------------------------------------------------------------------------- /eggs/JDSpider/1553592105.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/eggs/JDSpider/1553592105.egg -------------------------------------------------------------------------------- /eggs/JDSpider/1553596855.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/eggs/JDSpider/1553596855.egg -------------------------------------------------------------------------------- /main/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/main/__init__.py -------------------------------------------------------------------------------- /main/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/main/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /main/__pycache__/admin.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/main/__pycache__/admin.cpython-36.pyc -------------------------------------------------------------------------------- /main/__pycache__/apps.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/main/__pycache__/apps.cpython-36.pyc -------------------------------------------------------------------------------- /main/__pycache__/models.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/main/__pycache__/models.cpython-36.pyc -------------------------------------------------------------------------------- /main/__pycache__/urls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/main/__pycache__/urls.cpython-36.pyc -------------------------------------------------------------------------------- /main/__pycache__/views.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/main/__pycache__/views.cpython-36.pyc -------------------------------------------------------------------------------- /main/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | from .models import JDCommodity 3 | from .models import JDCommentDetail 4 | # Register your models here. 5 | 6 | admin.site.register(JDCommodity) 7 | admin.site.register(JDCommentDetail) 8 | 9 | -------------------------------------------------------------------------------- /main/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class MainConfig(AppConfig): 5 | name = 'main' 6 | -------------------------------------------------------------------------------- /main/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/main/migrations/__init__.py -------------------------------------------------------------------------------- /main/migrations/__pycache__/0001_initial.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/main/migrations/__pycache__/0001_initial.cpython-36.pyc -------------------------------------------------------------------------------- /main/migrations/__pycache__/0002_auto_20190327_1331.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/main/migrations/__pycache__/0002_auto_20190327_1331.cpython-36.pyc -------------------------------------------------------------------------------- /main/migrations/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/main/migrations/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /main/static/main/searchImg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/main/static/main/searchImg.png -------------------------------------------------------------------------------- /main/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/default/09/09c30fb093aca2258d1cd689eeb2d86b0766e2ef/meta: -------------------------------------------------------------------------------- 1 | {'url': 'http://sclub.jd.com/comment/productPageComments.action?callback=fetchJSON_comment98vv74', 'method': 'GET', 'status': 200, 'response_url': 'http://sclub.jd.com/comment/productPageComments.action?callback=fetchJSON_comment98vv74', 'timestamp': 1553584685.3398788} -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/default/09/09c30fb093aca2258d1cd689eeb2d86b0766e2ef/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/default/09/09c30fb093aca2258d1cd689eeb2d86b0766e2ef/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/default/09/09c30fb093aca2258d1cd689eeb2d86b0766e2ef/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/default/09/09c30fb093aca2258d1cd689eeb2d86b0766e2ef/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/default/09/09c30fb093aca2258d1cd689eeb2d86b0766e2ef/request_headers: -------------------------------------------------------------------------------- 1 | Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 2 | Accept-Language: en 3 | User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/536.3 (KHTML, like Gecko) Chrome/19.0.1062.0 Safari/536.3 4 | Accept-Encoding: gzip,deflate -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/default/09/09c30fb093aca2258d1cd689eeb2d86b0766e2ef/response_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/default/09/09c30fb093aca2258d1cd689eeb2d86b0766e2ef/response_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/default/09/09c30fb093aca2258d1cd689eeb2d86b0766e2ef/response_headers: -------------------------------------------------------------------------------- 1 | Server: JDWS/2.0 2 | Date: Tue, 26 Mar 2019 07:18:05 GMT 3 | Content-Type: text/html;charset=GBK 4 | Vary: Accept-Encoding 5 | Content-Encoding: gzip 6 | Via: BJ-Y-NX-104(MISS), http/1.1 BJ-EDU-1-JCS-39 ( [cMsSf ]) 7 | Age: 0 -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/default/16/1609ca97345c360aafe42c895d803a2eac40e189/meta: -------------------------------------------------------------------------------- 1 | {'url': 'http://sclub.jd.com/robots.txt', 'method': 'GET', 'status': 404, 'response_url': 'http://sclub.jd.com/robots.txt', 'timestamp': 1553584685.2659225} -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/default/16/1609ca97345c360aafe42c895d803a2eac40e189/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/default/16/1609ca97345c360aafe42c895d803a2eac40e189/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/default/16/1609ca97345c360aafe42c895d803a2eac40e189/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/default/16/1609ca97345c360aafe42c895d803a2eac40e189/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/default/16/1609ca97345c360aafe42c895d803a2eac40e189/request_headers: -------------------------------------------------------------------------------- 1 | Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 2 | Accept-Language: en 3 | User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/536.3 (KHTML, like Gecko) Chrome/19.0.1062.0 Safari/536.3 4 | Accept-Encoding: gzip,deflate -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/default/16/1609ca97345c360aafe42c895d803a2eac40e189/response_headers: -------------------------------------------------------------------------------- 1 | Server: JDWS/2.0 2 | Date: Tue, 26 Mar 2019 07:18:05 GMT 3 | Content-Type: text/html 4 | Via: BJ-H-NX-111(MISS), http/1.1 BJ-EDU-1-JCS-38 ( [cMsSf ]) 5 | Age: 0 -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/02/0262bd4f4e04bf52401915750247ef3b3f43cba2/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/02/0262bd4f4e04bf52401915750247ef3b3f43cba2/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/02/0262bd4f4e04bf52401915750247ef3b3f43cba2/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/02/0262bd4f4e04bf52401915750247ef3b3f43cba2/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/02/0262bd4f4e04bf52401915750247ef3b3f43cba2/response_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/02/0262bd4f4e04bf52401915750247ef3b3f43cba2/response_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/02/0262bd4f4e04bf52401915750247ef3b3f43cba2/response_headers: -------------------------------------------------------------------------------- 1 | Server: JDWS/2.0 2 | Date: Sun, 24 Mar 2019 12:50:01 GMT 3 | Content-Type: text/html;charset=GBK 4 | Vary: Accept-Encoding 5 | Set-Cookie: JSESSIONID=47C3E07253B89CBF9D9DFF3CC493C03C.s1; Path=/ 6 | Set-Cookie: jwotest_product=99; Domain=club.jd.com; Expires=Sun, 31-Mar-2019 12:50:01 GMT; Path=/ 7 | Content-Encoding: gzip 8 | Via: BJ-Y-NX-104(MISS), http/1.1 CHSH-UNI-1-JCS-46 ( [cMsSf ]) 9 | Age: 0 -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/04/04cb4eeb604c60e039fe2339636b5b032aa8e7d7/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/04/04cb4eeb604c60e039fe2339636b5b032aa8e7d7/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/04/04cb4eeb604c60e039fe2339636b5b032aa8e7d7/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/04/04cb4eeb604c60e039fe2339636b5b032aa8e7d7/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/04/04cb4eeb604c60e039fe2339636b5b032aa8e7d7/response_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/04/04cb4eeb604c60e039fe2339636b5b032aa8e7d7/response_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/04/04cb4eeb604c60e039fe2339636b5b032aa8e7d7/response_headers: -------------------------------------------------------------------------------- 1 | Server: JDWS/2.0 2 | Date: Tue, 26 Mar 2019 08:18:08 GMT 3 | Content-Type: text/html;charset=GBK 4 | Vary: Accept-Encoding 5 | Set-Cookie: JSESSIONID=439C57E9FCD1441031A79A16E404EE04.s1; Path=/ 6 | Set-Cookie: jwotest_product=99; Domain=club.jd.com; Expires=Tue, 02-Apr-2019 08:18:08 GMT; Path=/ 7 | Content-Encoding: gzip 8 | Via: BJ-Y-NX-112(MISS), http/1.1 CHSH-UNI-1-JCS-43 ( [cMsSf ]) 9 | Age: 0 -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/05/05361f592ad62b456743d14925e7e0b9ab09dfa9/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/05/05361f592ad62b456743d14925e7e0b9ab09dfa9/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/05/05361f592ad62b456743d14925e7e0b9ab09dfa9/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/05/05361f592ad62b456743d14925e7e0b9ab09dfa9/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/05/05361f592ad62b456743d14925e7e0b9ab09dfa9/response_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/05/05361f592ad62b456743d14925e7e0b9ab09dfa9/response_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/05/05361f592ad62b456743d14925e7e0b9ab09dfa9/response_headers: -------------------------------------------------------------------------------- 1 | Server: JDWS/2.0 2 | Date: Sun, 24 Mar 2019 13:38:43 GMT 3 | Content-Type: text/html;charset=GBK 4 | Vary: Accept-Encoding 5 | Set-Cookie: JSESSIONID=F73F0A95DFC29D353F6AD97337B6F776.s1; Path=/ 6 | Set-Cookie: jwotest_product=99; Domain=club.jd.com; Expires=Sun, 31-Mar-2019 13:38:43 GMT; Path=/ 7 | Content-Encoding: gzip 8 | Via: BJ-Y-NX-105(MISS), http/1.1 CHSH-UNI-1-JCS-40 ( [cMsSf ]) 9 | Age: 0 -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/08/0805fd57d2ccf6d2faab717a429454ea423a6f3d/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/08/0805fd57d2ccf6d2faab717a429454ea423a6f3d/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/08/0805fd57d2ccf6d2faab717a429454ea423a6f3d/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/08/0805fd57d2ccf6d2faab717a429454ea423a6f3d/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/08/0805fd57d2ccf6d2faab717a429454ea423a6f3d/response_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/08/0805fd57d2ccf6d2faab717a429454ea423a6f3d/response_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/08/0805fd57d2ccf6d2faab717a429454ea423a6f3d/response_headers: -------------------------------------------------------------------------------- 1 | Server: JDWS/2.0 2 | Date: Tue, 26 Mar 2019 08:18:08 GMT 3 | Content-Type: text/html;charset=GBK 4 | Vary: Accept-Encoding 5 | Set-Cookie: JSESSIONID=4C4E63DBF6E138F6A37ECAFE6726814A.s1; Path=/ 6 | Set-Cookie: jwotest_product=99; Domain=club.jd.com; Expires=Tue, 02-Apr-2019 08:18:08 GMT; Path=/ 7 | Content-Encoding: gzip 8 | Via: BJ-H-NX-111(MISS), http/1.1 CHSH-UNI-1-JCS-36 ( [cMsSf ]) 9 | Age: 0 -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/13/13e27752303517dc4f557799cf21fa087bbf9d70/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/13/13e27752303517dc4f557799cf21fa087bbf9d70/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/13/13e27752303517dc4f557799cf21fa087bbf9d70/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/13/13e27752303517dc4f557799cf21fa087bbf9d70/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/13/13e27752303517dc4f557799cf21fa087bbf9d70/response_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/13/13e27752303517dc4f557799cf21fa087bbf9d70/response_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/13/13e27752303517dc4f557799cf21fa087bbf9d70/response_headers: -------------------------------------------------------------------------------- 1 | Server: JDWS/2.0 2 | Date: Sun, 24 Mar 2019 12:50:02 GMT 3 | Content-Type: text/html;charset=GBK 4 | Vary: Accept-Encoding 5 | Set-Cookie: JSESSIONID=993A70BE4B4FD362E9B3B72AB0D1A4FF.s1; Path=/ 6 | Set-Cookie: jwotest_product=99; Domain=club.jd.com; Expires=Sun, 31-Mar-2019 12:50:02 GMT; Path=/ 7 | Content-Encoding: gzip 8 | Via: BJ-H-NX-111(MISS), http/1.1 CHSH-UNI-1-JCS-44 ( [cMsSf ]) 9 | Age: 0 -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/14/1488d57e39cd4dad00447ca1edceec3ec98bd7ae/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/14/1488d57e39cd4dad00447ca1edceec3ec98bd7ae/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/14/1488d57e39cd4dad00447ca1edceec3ec98bd7ae/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/14/1488d57e39cd4dad00447ca1edceec3ec98bd7ae/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/14/1488d57e39cd4dad00447ca1edceec3ec98bd7ae/response_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/14/1488d57e39cd4dad00447ca1edceec3ec98bd7ae/response_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/14/1488d57e39cd4dad00447ca1edceec3ec98bd7ae/response_headers: -------------------------------------------------------------------------------- 1 | Server: JDWS/2.0 2 | Date: Sun, 24 Mar 2019 13:38:42 GMT 3 | Content-Type: text/html;charset=GBK 4 | Vary: Accept-Encoding 5 | Set-Cookie: JSESSIONID=CCBF14E650DA980470D9E4DEF542DA13.s1; Path=/ 6 | Set-Cookie: jwotest_product=99; Domain=club.jd.com; Expires=Sun, 31-Mar-2019 13:38:42 GMT; Path=/ 7 | Content-Encoding: gzip 8 | Via: BJ-H-NX-113(MISS), http/1.1 CHSH-UNI-1-JCS-46 ( [cMsSf ]) 9 | Age: 0 -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/16/1609ca97345c360aafe42c895d803a2eac40e189/meta: -------------------------------------------------------------------------------- 1 | {'url': 'http://sclub.jd.com/robots.txt', 'method': 'GET', 'status': 404, 'response_url': 'http://sclub.jd.com/robots.txt', 'timestamp': 1553431800.5995345} -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/16/1609ca97345c360aafe42c895d803a2eac40e189/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/16/1609ca97345c360aafe42c895d803a2eac40e189/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/16/1609ca97345c360aafe42c895d803a2eac40e189/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/16/1609ca97345c360aafe42c895d803a2eac40e189/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/16/1609ca97345c360aafe42c895d803a2eac40e189/request_headers: -------------------------------------------------------------------------------- 1 | Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 2 | Accept-Language: en 3 | User-Agent: Scrapy/1.3.3 (+http://scrapy.org) 4 | Accept-Encoding: gzip,deflate -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/16/1609ca97345c360aafe42c895d803a2eac40e189/response_body: -------------------------------------------------------------------------------- 1 | 2 | 404 Not Found 3 | 4 |

404 Not Found

5 |
nginx
6 | 7 | 8 | -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/16/1609ca97345c360aafe42c895d803a2eac40e189/response_headers: -------------------------------------------------------------------------------- 1 | Server: JDWS/2.0 2 | Date: Sun, 24 Mar 2019 12:50:00 GMT 3 | Content-Type: text/html 4 | Via: BJ-H-NX-111(MISS), http/1.1 CHSH-UNI-1-JCS-40 ( [cMsSf ]) 5 | Age: 0 -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/1a/1a45775b9ba9ee2f391ffed8ef2034ce4ce4077d/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/1a/1a45775b9ba9ee2f391ffed8ef2034ce4ce4077d/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/1a/1a45775b9ba9ee2f391ffed8ef2034ce4ce4077d/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/1a/1a45775b9ba9ee2f391ffed8ef2034ce4ce4077d/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/1a/1a45775b9ba9ee2f391ffed8ef2034ce4ce4077d/response_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/1a/1a45775b9ba9ee2f391ffed8ef2034ce4ce4077d/response_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/1a/1a45775b9ba9ee2f391ffed8ef2034ce4ce4077d/response_headers: -------------------------------------------------------------------------------- 1 | Server: JDWS/2.0 2 | Date: Tue, 26 Mar 2019 08:18:08 GMT 3 | Content-Type: text/html;charset=GBK 4 | Vary: Accept-Encoding 5 | Set-Cookie: JSESSIONID=83EC0AA81C3097D7788923620AE07C87.s1; Path=/ 6 | Set-Cookie: jwotest_product=99; Domain=club.jd.com; Expires=Tue, 02-Apr-2019 08:18:08 GMT; Path=/ 7 | Content-Encoding: gzip 8 | Via: BJ-H-NX-106(MISS), http/1.1 CHSH-UNI-1-JCS-32 ( [cMsSf ]) 9 | Age: 0 -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/1b/1b2ba677424064fbedb1c0c2c874087b7d2edd31/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/1b/1b2ba677424064fbedb1c0c2c874087b7d2edd31/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/1b/1b2ba677424064fbedb1c0c2c874087b7d2edd31/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/1b/1b2ba677424064fbedb1c0c2c874087b7d2edd31/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/1b/1b2ba677424064fbedb1c0c2c874087b7d2edd31/response_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/1b/1b2ba677424064fbedb1c0c2c874087b7d2edd31/response_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/1b/1b2ba677424064fbedb1c0c2c874087b7d2edd31/response_headers: -------------------------------------------------------------------------------- 1 | Server: JDWS/2.0 2 | Date: Tue, 26 Mar 2019 08:18:07 GMT 3 | Content-Type: text/html;charset=GBK 4 | Vary: Accept-Encoding 5 | Set-Cookie: JSESSIONID=4600463D4BC2E2A126A8037F9933BEED.s1; Path=/ 6 | Set-Cookie: jwotest_product=99; Domain=club.jd.com; Expires=Tue, 02-Apr-2019 08:18:07 GMT; Path=/ 7 | Content-Encoding: gzip 8 | Via: BJ-H-NX-105(MISS), http/1.1 CHSH-UNI-1-JCS-33 ( [cMsSf ]) 9 | Age: 0 -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/1b/1b87e564abfecd6e7c4072e23cebe77f8242e4b4/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/1b/1b87e564abfecd6e7c4072e23cebe77f8242e4b4/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/1b/1b87e564abfecd6e7c4072e23cebe77f8242e4b4/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/1b/1b87e564abfecd6e7c4072e23cebe77f8242e4b4/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/1b/1b87e564abfecd6e7c4072e23cebe77f8242e4b4/response_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/1b/1b87e564abfecd6e7c4072e23cebe77f8242e4b4/response_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/1b/1b87e564abfecd6e7c4072e23cebe77f8242e4b4/response_headers: -------------------------------------------------------------------------------- 1 | Server: JDWS/2.0 2 | Date: Sun, 24 Mar 2019 13:38:43 GMT 3 | Content-Type: text/html;charset=GBK 4 | Vary: Accept-Encoding 5 | Set-Cookie: JSESSIONID=50501CE185966D3B804B5DD08C16333D.s1; Path=/ 6 | Set-Cookie: jwotest_product=99; Domain=club.jd.com; Expires=Sun, 31-Mar-2019 13:38:43 GMT; Path=/ 7 | Content-Encoding: gzip 8 | Via: BJ-M-YZ-NX-78(MISS), http/1.1 CHSH-UNI-1-JCS-40 ( [cMsSf ]) 9 | Age: 0 -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/1d/1d55e10d2e1ae0b989aac2d847ed135557e53a40/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/1d/1d55e10d2e1ae0b989aac2d847ed135557e53a40/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/1d/1d55e10d2e1ae0b989aac2d847ed135557e53a40/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/1d/1d55e10d2e1ae0b989aac2d847ed135557e53a40/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/1d/1d55e10d2e1ae0b989aac2d847ed135557e53a40/response_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/1d/1d55e10d2e1ae0b989aac2d847ed135557e53a40/response_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/1d/1d55e10d2e1ae0b989aac2d847ed135557e53a40/response_headers: -------------------------------------------------------------------------------- 1 | Server: JDWS/2.0 2 | Date: Sun, 24 Mar 2019 13:38:43 GMT 3 | Content-Type: text/html;charset=GBK 4 | Vary: Accept-Encoding 5 | Set-Cookie: JSESSIONID=54C85B8C885628B612BB7AE904051A69.s1; Path=/ 6 | Set-Cookie: jwotest_product=99; Domain=club.jd.com; Expires=Sun, 31-Mar-2019 13:38:43 GMT; Path=/ 7 | Content-Encoding: gzip 8 | Via: BJ-H-NX-116(MISS), http/1.1 CHSH-UNI-1-JCS-38 ( [cMsSf ]) 9 | Age: 0 -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/25/25d56efbc7acb8b4959344238626b940a3309b4f/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/25/25d56efbc7acb8b4959344238626b940a3309b4f/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/25/25d56efbc7acb8b4959344238626b940a3309b4f/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/25/25d56efbc7acb8b4959344238626b940a3309b4f/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/25/25d56efbc7acb8b4959344238626b940a3309b4f/request_headers: -------------------------------------------------------------------------------- 1 | Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 2 | Accept-Language: en 3 | User-Agent: Scrapy/1.3.3 (+http://scrapy.org) 4 | Accept-Encoding: gzip,deflate -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/25/25d56efbc7acb8b4959344238626b940a3309b4f/response_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/25/25d56efbc7acb8b4959344238626b940a3309b4f/response_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/25/25d56efbc7acb8b4959344238626b940a3309b4f/response_headers: -------------------------------------------------------------------------------- 1 | Server: JDWS/2.0 2 | Date: Sun, 24 Mar 2019 13:38:42 GMT 3 | Content-Type: text/html;charset=GBK 4 | Vary: Accept-Encoding 5 | Set-Cookie: JSESSIONID=00E10389E9F5EF77D0FE063D99A720E3.s1; Path=/ 6 | Set-Cookie: jwotest_product=99; Domain=club.jd.com; Expires=Sun, 31-Mar-2019 13:38:42 GMT; Path=/ 7 | Content-Encoding: gzip 8 | Via: BJ-H-NX-113(MISS), http/1.1 CHSH-UNI-1-JCS-37 ( [cMsSf ]) 9 | Age: 0 -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/26/26afbd1f0b5d601c683df28857cc3a8e41f8d505/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/26/26afbd1f0b5d601c683df28857cc3a8e41f8d505/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/26/26afbd1f0b5d601c683df28857cc3a8e41f8d505/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/26/26afbd1f0b5d601c683df28857cc3a8e41f8d505/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/26/26afbd1f0b5d601c683df28857cc3a8e41f8d505/response_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/26/26afbd1f0b5d601c683df28857cc3a8e41f8d505/response_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/26/26afbd1f0b5d601c683df28857cc3a8e41f8d505/response_headers: -------------------------------------------------------------------------------- 1 | Server: JDWS/2.0 2 | Date: Sun, 24 Mar 2019 13:38:42 GMT 3 | Content-Type: text/html;charset=GBK 4 | Vary: Accept-Encoding 5 | Set-Cookie: JSESSIONID=4419B9FC2E2D5AD45A819558884E620F.s1; Path=/ 6 | Set-Cookie: jwotest_product=99; Domain=club.jd.com; Expires=Sun, 31-Mar-2019 13:38:42 GMT; Path=/ 7 | Content-Encoding: gzip 8 | Via: BJ-H-NX-111(MISS), http/1.1 CHSH-UNI-1-JCS-35 ( [cMsSf ]) 9 | Age: 0 -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/29/293adb8eb743112b49dd7c547037b923ac95e512/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/29/293adb8eb743112b49dd7c547037b923ac95e512/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/29/293adb8eb743112b49dd7c547037b923ac95e512/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/29/293adb8eb743112b49dd7c547037b923ac95e512/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/29/293adb8eb743112b49dd7c547037b923ac95e512/request_headers: -------------------------------------------------------------------------------- 1 | Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 2 | Accept-Language: en 3 | User-Agent: Scrapy/1.3.3 (+http://scrapy.org) 4 | Accept-Encoding: gzip,deflate -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/29/293adb8eb743112b49dd7c547037b923ac95e512/response_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/29/293adb8eb743112b49dd7c547037b923ac95e512/response_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/29/293adb8eb743112b49dd7c547037b923ac95e512/response_headers: -------------------------------------------------------------------------------- 1 | Server: JDWS/2.0 2 | Date: Sun, 24 Mar 2019 12:50:01 GMT 3 | Content-Type: text/html;charset=GBK 4 | Vary: Accept-Encoding 5 | Set-Cookie: JSESSIONID=F716865FAB0A21170107D5E8480530AC.s1; Path=/ 6 | Set-Cookie: jwotest_product=99; Domain=club.jd.com; Expires=Sun, 31-Mar-2019 12:50:01 GMT; Path=/ 7 | Content-Encoding: gzip 8 | Via: BJ-M-YZ-NX-78(MISS), http/1.1 CHSH-UNI-1-JCS-45 ( [cMsSf ]) 9 | Age: 0 -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/29/29480504bc94bd20eb1390ce0c3ac7309783c4d3/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/29/29480504bc94bd20eb1390ce0c3ac7309783c4d3/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/29/29480504bc94bd20eb1390ce0c3ac7309783c4d3/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/29/29480504bc94bd20eb1390ce0c3ac7309783c4d3/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/29/29480504bc94bd20eb1390ce0c3ac7309783c4d3/response_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/29/29480504bc94bd20eb1390ce0c3ac7309783c4d3/response_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/29/29480504bc94bd20eb1390ce0c3ac7309783c4d3/response_headers: -------------------------------------------------------------------------------- 1 | Server: JDWS/2.0 2 | Date: Sun, 24 Mar 2019 12:50:01 GMT 3 | Content-Type: text/html;charset=GBK 4 | Vary: Accept-Encoding 5 | Set-Cookie: JSESSIONID=E3DBEEE9E1B2F402413B1DCB28CC4940.s1; Path=/ 6 | Set-Cookie: jwotest_product=99; Domain=club.jd.com; Expires=Sun, 31-Mar-2019 12:50:01 GMT; Path=/ 7 | Content-Encoding: gzip 8 | Via: BJ-Y-NX-109(MISS), http/1.1 CHSH-UNI-1-JCS-36 ( [cMsSf ]) 9 | Age: 0 -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/2c/2c8b5db68539ec287e0acac649953e412a53ad1a/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/2c/2c8b5db68539ec287e0acac649953e412a53ad1a/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/2c/2c8b5db68539ec287e0acac649953e412a53ad1a/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/2c/2c8b5db68539ec287e0acac649953e412a53ad1a/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/2c/2c8b5db68539ec287e0acac649953e412a53ad1a/response_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/2c/2c8b5db68539ec287e0acac649953e412a53ad1a/response_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/2c/2c8b5db68539ec287e0acac649953e412a53ad1a/response_headers: -------------------------------------------------------------------------------- 1 | Server: JDWS/2.0 2 | Date: Sun, 24 Mar 2019 13:38:42 GMT 3 | Content-Type: text/html;charset=GBK 4 | Vary: Accept-Encoding 5 | Set-Cookie: JSESSIONID=945746F43B190F66CC715BDA8F3CB629.s1; Path=/ 6 | Set-Cookie: jwotest_product=99; Domain=club.jd.com; Expires=Sun, 31-Mar-2019 13:38:42 GMT; Path=/ 7 | Content-Encoding: gzip 8 | Via: BJ-Y-NX-111(MISS), http/1.1 CHSH-UNI-1-JCS-38 ( [cMsSf ]) 9 | Age: 0 -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/31/312ec87b681cccbce1618d4e7163e9742886522b/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/31/312ec87b681cccbce1618d4e7163e9742886522b/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/31/312ec87b681cccbce1618d4e7163e9742886522b/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/31/312ec87b681cccbce1618d4e7163e9742886522b/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/31/312ec87b681cccbce1618d4e7163e9742886522b/response_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/31/312ec87b681cccbce1618d4e7163e9742886522b/response_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/31/312ec87b681cccbce1618d4e7163e9742886522b/response_headers: -------------------------------------------------------------------------------- 1 | Server: JDWS/2.0 2 | Date: Sun, 24 Mar 2019 12:50:03 GMT 3 | Content-Type: text/html;charset=GBK 4 | Vary: Accept-Encoding 5 | Set-Cookie: JSESSIONID=4FC91CC4731D604686E583A01A5E97DC.s1; Path=/ 6 | Set-Cookie: jwotest_product=99; Domain=club.jd.com; Expires=Sun, 31-Mar-2019 12:50:03 GMT; Path=/ 7 | Content-Encoding: gzip 8 | Via: BJ-Y-NX-110(MISS), http/1.1 CHSH-UNI-1-JCS-37 ( [cMsSf ]) 9 | Age: 0 -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/33/332e2c74cba45ca3cef15d500b18cc28cd12e905/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/33/332e2c74cba45ca3cef15d500b18cc28cd12e905/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/33/332e2c74cba45ca3cef15d500b18cc28cd12e905/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/33/332e2c74cba45ca3cef15d500b18cc28cd12e905/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/33/332e2c74cba45ca3cef15d500b18cc28cd12e905/response_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/33/332e2c74cba45ca3cef15d500b18cc28cd12e905/response_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/33/332e2c74cba45ca3cef15d500b18cc28cd12e905/response_headers: -------------------------------------------------------------------------------- 1 | Server: JDWS/2.0 2 | Date: Tue, 26 Mar 2019 08:18:07 GMT 3 | Content-Type: text/html;charset=GBK 4 | Vary: Accept-Encoding 5 | Set-Cookie: JSESSIONID=AB3D7D5F543F9731D0CF476ABD5C54FA.s1; Path=/ 6 | Set-Cookie: jwotest_product=99; Domain=club.jd.com; Expires=Tue, 02-Apr-2019 08:18:07 GMT; Path=/ 7 | Content-Encoding: gzip 8 | Via: BJ-M-YZ-NX-77(MISS), http/1.1 CHSH-UNI-1-JCS-45 ( [cMsSf ]) 9 | Age: 0 -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/36/361c4938c2a47b99608489ebd131e511e75d9450/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/36/361c4938c2a47b99608489ebd131e511e75d9450/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/36/361c4938c2a47b99608489ebd131e511e75d9450/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/36/361c4938c2a47b99608489ebd131e511e75d9450/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/36/361c4938c2a47b99608489ebd131e511e75d9450/response_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/36/361c4938c2a47b99608489ebd131e511e75d9450/response_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/36/361c4938c2a47b99608489ebd131e511e75d9450/response_headers: -------------------------------------------------------------------------------- 1 | Server: JDWS/2.0 2 | Date: Sun, 24 Mar 2019 13:38:43 GMT 3 | Content-Type: text/html;charset=GBK 4 | Vary: Accept-Encoding 5 | Set-Cookie: JSESSIONID=E4D66CD1B6A08E3FB172A6466D69FD83.s1; Path=/ 6 | Set-Cookie: jwotest_product=99; Domain=club.jd.com; Expires=Sun, 31-Mar-2019 13:38:43 GMT; Path=/ 7 | Content-Encoding: gzip 8 | Via: BJ-H-NX-116(MISS), http/1.1 CHSH-UNI-1-JCS-34 ( [cMsSf ]) 9 | Age: 0 -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/37/37cb7da5eceebe91399341045ea387395ad54dd1/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/37/37cb7da5eceebe91399341045ea387395ad54dd1/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/37/37cb7da5eceebe91399341045ea387395ad54dd1/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/37/37cb7da5eceebe91399341045ea387395ad54dd1/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/37/37cb7da5eceebe91399341045ea387395ad54dd1/response_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/37/37cb7da5eceebe91399341045ea387395ad54dd1/response_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/37/37cb7da5eceebe91399341045ea387395ad54dd1/response_headers: -------------------------------------------------------------------------------- 1 | Server: JDWS/2.0 2 | Date: Sun, 24 Mar 2019 12:50:02 GMT 3 | Content-Type: text/html;charset=GBK 4 | Vary: Accept-Encoding 5 | Set-Cookie: JSESSIONID=27157E9AA4D248257B890181DFBDAA7F.s1; Path=/ 6 | Set-Cookie: jwotest_product=99; Domain=club.jd.com; Expires=Sun, 31-Mar-2019 12:50:02 GMT; Path=/ 7 | Content-Encoding: gzip 8 | Via: BJ-H-NX-110(MISS), http/1.1 CHSH-UNI-1-JCS-37 ( [cMsSf ]) 9 | Age: 0 -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/39/39913c30351fa4a1df0a90542772df276c8275b9/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/39/39913c30351fa4a1df0a90542772df276c8275b9/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/39/39913c30351fa4a1df0a90542772df276c8275b9/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/39/39913c30351fa4a1df0a90542772df276c8275b9/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/39/39913c30351fa4a1df0a90542772df276c8275b9/response_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/39/39913c30351fa4a1df0a90542772df276c8275b9/response_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/39/39913c30351fa4a1df0a90542772df276c8275b9/response_headers: -------------------------------------------------------------------------------- 1 | Server: JDWS/2.0 2 | Date: Tue, 26 Mar 2019 08:18:08 GMT 3 | Content-Type: text/html;charset=GBK 4 | Vary: Accept-Encoding 5 | Set-Cookie: JSESSIONID=586DA64AB6AAD2C33658F0381B705718.s1; Path=/ 6 | Set-Cookie: jwotest_product=99; Domain=club.jd.com; Expires=Tue, 02-Apr-2019 08:18:08 GMT; Path=/ 7 | Content-Encoding: gzip 8 | Via: BJ-H-NX-111(MISS), http/1.1 CHSH-UNI-1-JCS-44 ( [cMsSf ]) 9 | Age: 0 -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/3b/3b28c159f1c11a5d856f91afe6746f1dce4825d6/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/3b/3b28c159f1c11a5d856f91afe6746f1dce4825d6/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/3b/3b28c159f1c11a5d856f91afe6746f1dce4825d6/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/3b/3b28c159f1c11a5d856f91afe6746f1dce4825d6/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/3b/3b28c159f1c11a5d856f91afe6746f1dce4825d6/response_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/3b/3b28c159f1c11a5d856f91afe6746f1dce4825d6/response_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/3b/3b28c159f1c11a5d856f91afe6746f1dce4825d6/response_headers: -------------------------------------------------------------------------------- 1 | Server: JDWS/2.0 2 | Date: Tue, 26 Mar 2019 08:18:07 GMT 3 | Content-Type: text/html;charset=GBK 4 | Vary: Accept-Encoding 5 | Set-Cookie: JSESSIONID=FDEF21E687B5866A317F2EDA22C925E8.s1; Path=/ 6 | Set-Cookie: jwotest_product=99; Domain=club.jd.com; Expires=Tue, 02-Apr-2019 08:18:07 GMT; Path=/ 7 | Content-Encoding: gzip 8 | Via: BJ-H-NX-106(MISS), http/1.1 CHSH-UNI-1-JCS-38 ( [cMsSf ]) 9 | Age: 0 -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/3d/3d5a9c7b0f4b6b64b53bbd96385823ab2c7f7114/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/3d/3d5a9c7b0f4b6b64b53bbd96385823ab2c7f7114/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/3d/3d5a9c7b0f4b6b64b53bbd96385823ab2c7f7114/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/3d/3d5a9c7b0f4b6b64b53bbd96385823ab2c7f7114/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/3d/3d5a9c7b0f4b6b64b53bbd96385823ab2c7f7114/response_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/3d/3d5a9c7b0f4b6b64b53bbd96385823ab2c7f7114/response_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/3d/3d5a9c7b0f4b6b64b53bbd96385823ab2c7f7114/response_headers: -------------------------------------------------------------------------------- 1 | Server: JDWS/2.0 2 | Date: Tue, 26 Mar 2019 08:18:09 GMT 3 | Content-Type: text/html;charset=GBK 4 | Vary: Accept-Encoding 5 | Set-Cookie: JSESSIONID=4AD549F98D2EEAE4AECC7CCF52542628.s1; Path=/ 6 | Set-Cookie: jwotest_product=99; Domain=club.jd.com; Expires=Tue, 02-Apr-2019 08:18:09 GMT; Path=/ 7 | Content-Encoding: gzip 8 | Via: BJ-M-YZ-NX-80(MISS), http/1.1 CHSH-UNI-1-JCS-42 ( [cMsSf ]) 9 | Age: 0 -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/3f/3f640fa36529b10b7bfa83d46e625930c7c173cd/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/3f/3f640fa36529b10b7bfa83d46e625930c7c173cd/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/3f/3f640fa36529b10b7bfa83d46e625930c7c173cd/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/3f/3f640fa36529b10b7bfa83d46e625930c7c173cd/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/3f/3f640fa36529b10b7bfa83d46e625930c7c173cd/response_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/3f/3f640fa36529b10b7bfa83d46e625930c7c173cd/response_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/3f/3f640fa36529b10b7bfa83d46e625930c7c173cd/response_headers: -------------------------------------------------------------------------------- 1 | Server: JDWS/2.0 2 | Date: Tue, 26 Mar 2019 08:18:09 GMT 3 | Content-Type: text/html;charset=GBK 4 | Vary: Accept-Encoding 5 | Set-Cookie: JSESSIONID=DEE43755A4CE1821E722E89AC2B27CA1.s1; Path=/ 6 | Set-Cookie: jwotest_product=99; Domain=club.jd.com; Expires=Tue, 02-Apr-2019 08:18:09 GMT; Path=/ 7 | Content-Encoding: gzip 8 | Via: BJ-Y-NX-101(MISS), http/1.1 CHSH-UNI-1-JCS-35 ( [cMsSf ]) 9 | Age: 0 -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/45/4547326b42f1fd12764d2f61330021ca3e6faf49/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/45/4547326b42f1fd12764d2f61330021ca3e6faf49/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/45/4547326b42f1fd12764d2f61330021ca3e6faf49/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/45/4547326b42f1fd12764d2f61330021ca3e6faf49/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/45/4547326b42f1fd12764d2f61330021ca3e6faf49/response_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/45/4547326b42f1fd12764d2f61330021ca3e6faf49/response_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/45/4547326b42f1fd12764d2f61330021ca3e6faf49/response_headers: -------------------------------------------------------------------------------- 1 | Server: JDWS/2.0 2 | Date: Sun, 24 Mar 2019 12:50:01 GMT 3 | Content-Type: text/html;charset=GBK 4 | Vary: Accept-Encoding 5 | Set-Cookie: JSESSIONID=7C648D4EC93450B6FF59A89121D0E833.s1; Path=/ 6 | Set-Cookie: jwotest_product=99; Domain=club.jd.com; Expires=Sun, 31-Mar-2019 12:50:01 GMT; Path=/ 7 | Content-Encoding: gzip 8 | Via: BJ-H-NX-106(MISS), http/1.1 CHSH-UNI-1-JCS-46 ( [cMsSf ]) 9 | Age: 0 -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/45/459ea8cb0c62eaf6ae09bb773fa41e58b305d366/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/45/459ea8cb0c62eaf6ae09bb773fa41e58b305d366/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/45/459ea8cb0c62eaf6ae09bb773fa41e58b305d366/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/45/459ea8cb0c62eaf6ae09bb773fa41e58b305d366/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/45/459ea8cb0c62eaf6ae09bb773fa41e58b305d366/response_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/45/459ea8cb0c62eaf6ae09bb773fa41e58b305d366/response_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/45/459ea8cb0c62eaf6ae09bb773fa41e58b305d366/response_headers: -------------------------------------------------------------------------------- 1 | Server: JDWS/2.0 2 | Date: Sun, 24 Mar 2019 13:38:42 GMT 3 | Content-Type: text/html;charset=GBK 4 | Vary: Accept-Encoding 5 | Set-Cookie: JSESSIONID=0C0769A5A1E279F3B2216CC8417F1245.s1; Path=/ 6 | Set-Cookie: jwotest_product=99; Domain=club.jd.com; Expires=Sun, 31-Mar-2019 13:38:42 GMT; Path=/ 7 | Content-Encoding: gzip 8 | Via: BJ-M-YZ-NX-74(MISS), http/1.1 CHSH-UNI-1-JCS-47 ( [cMsSf ]) 9 | Age: 0 -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/46/464287f4e3be2aa47a7b907736de90e06291d89f/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/46/464287f4e3be2aa47a7b907736de90e06291d89f/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/46/464287f4e3be2aa47a7b907736de90e06291d89f/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/46/464287f4e3be2aa47a7b907736de90e06291d89f/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/46/464287f4e3be2aa47a7b907736de90e06291d89f/response_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/46/464287f4e3be2aa47a7b907736de90e06291d89f/response_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/46/464287f4e3be2aa47a7b907736de90e06291d89f/response_headers: -------------------------------------------------------------------------------- 1 | Server: JDWS/2.0 2 | Date: Sun, 24 Mar 2019 12:50:02 GMT 3 | Content-Type: text/html;charset=GBK 4 | Vary: Accept-Encoding 5 | Set-Cookie: JSESSIONID=1DE499D435BFB729500443EF77868803.s1; Path=/ 6 | Set-Cookie: jwotest_product=99; Domain=club.jd.com; Expires=Sun, 31-Mar-2019 12:50:02 GMT; Path=/ 7 | Content-Encoding: gzip 8 | Via: BJ-Y-NX-101(MISS), http/1.1 CHSH-UNI-1-JCS-35 ( [cMsSf ]) 9 | Age: 0 -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/46/46a2fa1a6991cd6cd102ce709d4949160a4de73a/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/46/46a2fa1a6991cd6cd102ce709d4949160a4de73a/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/46/46a2fa1a6991cd6cd102ce709d4949160a4de73a/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/46/46a2fa1a6991cd6cd102ce709d4949160a4de73a/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/46/46a2fa1a6991cd6cd102ce709d4949160a4de73a/response_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/46/46a2fa1a6991cd6cd102ce709d4949160a4de73a/response_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/46/46a2fa1a6991cd6cd102ce709d4949160a4de73a/response_headers: -------------------------------------------------------------------------------- 1 | Server: JDWS/2.0 2 | Date: Sun, 24 Mar 2019 12:50:01 GMT 3 | Content-Type: text/html;charset=GBK 4 | Vary: Accept-Encoding 5 | Set-Cookie: JSESSIONID=BAACDF2545157135F77A169C2AAF27B4.s1; Path=/ 6 | Set-Cookie: jwotest_product=99; Domain=club.jd.com; Expires=Sun, 31-Mar-2019 12:50:01 GMT; Path=/ 7 | Content-Encoding: gzip 8 | Via: BJ-H-NX-103(MISS), http/1.1 CHSH-UNI-1-JCS-47 ( [cMsSf ]) 9 | Age: 0 -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/48/48a17ac9ac2c7abfa291b9dc4a2fc9b009f6ab39/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/48/48a17ac9ac2c7abfa291b9dc4a2fc9b009f6ab39/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/48/48a17ac9ac2c7abfa291b9dc4a2fc9b009f6ab39/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/48/48a17ac9ac2c7abfa291b9dc4a2fc9b009f6ab39/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/48/48a17ac9ac2c7abfa291b9dc4a2fc9b009f6ab39/response_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/48/48a17ac9ac2c7abfa291b9dc4a2fc9b009f6ab39/response_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/48/48a17ac9ac2c7abfa291b9dc4a2fc9b009f6ab39/response_headers: -------------------------------------------------------------------------------- 1 | Server: JDWS/2.0 2 | Date: Sun, 24 Mar 2019 12:50:02 GMT 3 | Content-Type: text/html;charset=GBK 4 | Vary: Accept-Encoding 5 | Set-Cookie: jwotest_product=99; Domain=club.jd.com; Expires=Sun, 31-Mar-2019 12:50:02 GMT; Path=/ 6 | Content-Encoding: gzip 7 | Via: BJ-Y-NX-104(MISS), http/1.1 CHSH-UNI-1-JCS-48 ( [cMsSf ]) 8 | Age: 1 -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/54/5499c8c9c98369e5a604214f10fe7ddd6a40a302/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/54/5499c8c9c98369e5a604214f10fe7ddd6a40a302/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/54/5499c8c9c98369e5a604214f10fe7ddd6a40a302/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/54/5499c8c9c98369e5a604214f10fe7ddd6a40a302/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/54/5499c8c9c98369e5a604214f10fe7ddd6a40a302/response_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/54/5499c8c9c98369e5a604214f10fe7ddd6a40a302/response_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/54/5499c8c9c98369e5a604214f10fe7ddd6a40a302/response_headers: -------------------------------------------------------------------------------- 1 | Server: JDWS/2.0 2 | Date: Sun, 24 Mar 2019 12:50:01 GMT 3 | Content-Type: text/html;charset=GBK 4 | Vary: Accept-Encoding 5 | Set-Cookie: JSESSIONID=E9F7BF0877FDAA309461C62BAC3AAF1B.s1; Path=/ 6 | Set-Cookie: jwotest_product=99; Domain=club.jd.com; Expires=Sun, 31-Mar-2019 12:50:01 GMT; Path=/ 7 | Content-Encoding: gzip 8 | Via: BJ-M-YZ-NX-80(MISS), http/1.1 CHSH-UNI-1-JCS-44 ( [cMsSf ]) 9 | Age: 0 -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/56/56927b8db5f916e7ab80f5c32b2e28a5a68a9e66/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/56/56927b8db5f916e7ab80f5c32b2e28a5a68a9e66/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/56/56927b8db5f916e7ab80f5c32b2e28a5a68a9e66/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/56/56927b8db5f916e7ab80f5c32b2e28a5a68a9e66/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/56/56927b8db5f916e7ab80f5c32b2e28a5a68a9e66/response_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/56/56927b8db5f916e7ab80f5c32b2e28a5a68a9e66/response_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/56/56927b8db5f916e7ab80f5c32b2e28a5a68a9e66/response_headers: -------------------------------------------------------------------------------- 1 | Server: JDWS/2.0 2 | Date: Tue, 26 Mar 2019 08:18:09 GMT 3 | Content-Type: text/html;charset=GBK 4 | Vary: Accept-Encoding 5 | Set-Cookie: JSESSIONID=16DF9BB8AF99120098762281F94710A3.s1; Path=/ 6 | Set-Cookie: jwotest_product=99; Domain=club.jd.com; Expires=Tue, 02-Apr-2019 08:18:09 GMT; Path=/ 7 | Content-Encoding: gzip 8 | Via: BJ-Y-NX-113(MISS), http/1.1 CHSH-UNI-1-JCS-34 ( [cMsSf ]) 9 | Age: 0 -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/58/58333226f45854052a6a28804488f98b2d31096e/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/58/58333226f45854052a6a28804488f98b2d31096e/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/58/58333226f45854052a6a28804488f98b2d31096e/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/58/58333226f45854052a6a28804488f98b2d31096e/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/58/58333226f45854052a6a28804488f98b2d31096e/response_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/58/58333226f45854052a6a28804488f98b2d31096e/response_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/58/58333226f45854052a6a28804488f98b2d31096e/response_headers: -------------------------------------------------------------------------------- 1 | Server: JDWS/2.0 2 | Date: Tue, 26 Mar 2019 08:18:09 GMT 3 | Content-Type: text/html;charset=GBK 4 | Vary: Accept-Encoding 5 | Set-Cookie: JSESSIONID=6037458C8AB08D3D6E1621100665D1C8.s1; Path=/ 6 | Set-Cookie: jwotest_product=99; Domain=club.jd.com; Expires=Tue, 02-Apr-2019 08:18:09 GMT; Path=/ 7 | Content-Encoding: gzip 8 | Via: BJ-H-NX-110(MISS), http/1.1 CHSH-UNI-1-JCS-46 ( [cMsSf ]) 9 | Age: 0 -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/58/5861fe962cd8e632fb11e38c077bd4759a88aa40/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/58/5861fe962cd8e632fb11e38c077bd4759a88aa40/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/58/5861fe962cd8e632fb11e38c077bd4759a88aa40/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/58/5861fe962cd8e632fb11e38c077bd4759a88aa40/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/58/5861fe962cd8e632fb11e38c077bd4759a88aa40/response_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/58/5861fe962cd8e632fb11e38c077bd4759a88aa40/response_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/58/5861fe962cd8e632fb11e38c077bd4759a88aa40/response_headers: -------------------------------------------------------------------------------- 1 | Server: JDWS/2.0 2 | Date: Sun, 24 Mar 2019 13:38:42 GMT 3 | Content-Type: text/html;charset=GBK 4 | Vary: Accept-Encoding 5 | Set-Cookie: jwotest_product=99; Domain=club.jd.com; Expires=Sun, 31-Mar-2019 13:38:42 GMT; Path=/ 6 | Content-Encoding: gzip 7 | Via: BJ-H-NX-103(MISS), http/1.1 CHSH-UNI-1-JCS-36 ( [cMsSf ]) 8 | Age: 0 -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/59/59f70d5b659279a5d94b3452b483ba3a58b86288/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/59/59f70d5b659279a5d94b3452b483ba3a58b86288/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/59/59f70d5b659279a5d94b3452b483ba3a58b86288/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/59/59f70d5b659279a5d94b3452b483ba3a58b86288/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/59/59f70d5b659279a5d94b3452b483ba3a58b86288/response_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/59/59f70d5b659279a5d94b3452b483ba3a58b86288/response_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/59/59f70d5b659279a5d94b3452b483ba3a58b86288/response_headers: -------------------------------------------------------------------------------- 1 | Server: JDWS/2.0 2 | Date: Sun, 24 Mar 2019 12:50:01 GMT 3 | Content-Type: text/html;charset=GBK 4 | Vary: Accept-Encoding 5 | Set-Cookie: JSESSIONID=8925EA47F1804B3C6A7D0E6D969907C8.s1; Path=/ 6 | Set-Cookie: jwotest_product=99; Domain=club.jd.com; Expires=Sun, 31-Mar-2019 12:50:01 GMT; Path=/ 7 | Content-Encoding: gzip 8 | Via: BJ-H-NX-109(MISS), http/1.1 CHSH-UNI-1-JCS-45 ( [cMsSf ]) 9 | Age: 0 -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/5e/5e2b435bf3caee40f64e09974c2d80b98f961e2b/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/5e/5e2b435bf3caee40f64e09974c2d80b98f961e2b/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/5e/5e2b435bf3caee40f64e09974c2d80b98f961e2b/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/5e/5e2b435bf3caee40f64e09974c2d80b98f961e2b/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/5e/5e2b435bf3caee40f64e09974c2d80b98f961e2b/response_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/5e/5e2b435bf3caee40f64e09974c2d80b98f961e2b/response_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/5e/5e2b435bf3caee40f64e09974c2d80b98f961e2b/response_headers: -------------------------------------------------------------------------------- 1 | Server: JDWS/2.0 2 | Date: Sun, 24 Mar 2019 12:50:01 GMT 3 | Content-Type: text/html;charset=GBK 4 | Vary: Accept-Encoding 5 | Set-Cookie: JSESSIONID=00E2F281D84D468413BF9671EB0354AC.s1; Path=/ 6 | Set-Cookie: jwotest_product=99; Domain=club.jd.com; Expires=Sun, 31-Mar-2019 12:50:01 GMT; Path=/ 7 | Content-Encoding: gzip 8 | Via: BJ-Y-NX-101(MISS), http/1.1 CHSH-UNI-1-JCS-36 ( [cMsSf ]) 9 | Age: 0 -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/63/63ec3a3045dbc4a8d50a9e5d3974176470ba0800/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/63/63ec3a3045dbc4a8d50a9e5d3974176470ba0800/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/63/63ec3a3045dbc4a8d50a9e5d3974176470ba0800/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/63/63ec3a3045dbc4a8d50a9e5d3974176470ba0800/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/63/63ec3a3045dbc4a8d50a9e5d3974176470ba0800/response_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/63/63ec3a3045dbc4a8d50a9e5d3974176470ba0800/response_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/63/63ec3a3045dbc4a8d50a9e5d3974176470ba0800/response_headers: -------------------------------------------------------------------------------- 1 | Server: JDWS/2.0 2 | Date: Sun, 24 Mar 2019 12:50:02 GMT 3 | Content-Type: text/html;charset=GBK 4 | Vary: Accept-Encoding 5 | Set-Cookie: JSESSIONID=0027E32690E02C40BD6E933FC57E835F.s1; Path=/ 6 | Set-Cookie: jwotest_product=99; Domain=club.jd.com; Expires=Sun, 31-Mar-2019 12:50:02 GMT; Path=/ 7 | Content-Encoding: gzip 8 | Via: BJ-Y-NX-105(MISS), http/1.1 CHSH-UNI-1-JCS-36 ( [cMsSf ]) 9 | Age: 0 -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/65/655831c57cebe67cde1fb747601ac625eac940bc/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/65/655831c57cebe67cde1fb747601ac625eac940bc/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/65/655831c57cebe67cde1fb747601ac625eac940bc/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/65/655831c57cebe67cde1fb747601ac625eac940bc/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/65/655831c57cebe67cde1fb747601ac625eac940bc/response_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/65/655831c57cebe67cde1fb747601ac625eac940bc/response_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/65/655831c57cebe67cde1fb747601ac625eac940bc/response_headers: -------------------------------------------------------------------------------- 1 | Server: JDWS/2.0 2 | Date: Tue, 26 Mar 2019 08:18:08 GMT 3 | Content-Type: text/html;charset=GBK 4 | Vary: Accept-Encoding 5 | Set-Cookie: JSESSIONID=3E1E3043EFE0137128CF5FDF55C6B875.s1; Path=/ 6 | Set-Cookie: jwotest_product=99; Domain=club.jd.com; Expires=Tue, 02-Apr-2019 08:18:07 GMT; Path=/ 7 | Content-Encoding: gzip 8 | Via: BJ-Y-NX-104(MISS), http/1.1 CHSH-UNI-1-JCS-47 ( [cMsSf ]) 9 | Age: 0 -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/69/69a5bf26dc4f17e837ebc9387a2903020b642871/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/69/69a5bf26dc4f17e837ebc9387a2903020b642871/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/69/69a5bf26dc4f17e837ebc9387a2903020b642871/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/69/69a5bf26dc4f17e837ebc9387a2903020b642871/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/69/69a5bf26dc4f17e837ebc9387a2903020b642871/response_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/69/69a5bf26dc4f17e837ebc9387a2903020b642871/response_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/69/69a5bf26dc4f17e837ebc9387a2903020b642871/response_headers: -------------------------------------------------------------------------------- 1 | Server: JDWS/2.0 2 | Date: Sun, 24 Mar 2019 13:38:42 GMT 3 | Content-Type: text/html;charset=GBK 4 | Vary: Accept-Encoding 5 | Set-Cookie: JSESSIONID=73AE346ACF71A56D8BD564FF1B2C3D88.s1; Path=/ 6 | Set-Cookie: jwotest_product=99; Domain=club.jd.com; Expires=Sun, 31-Mar-2019 13:38:42 GMT; Path=/ 7 | Content-Encoding: gzip 8 | Via: BJ-M-YZ-NX-75(MISS), http/1.1 CHSH-UNI-1-JCS-38 ( [cMsSf ]) 9 | Age: 0 -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/6a/6a43fdb14c7d72af859f0ca289fc8d4ea0127aa3/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/6a/6a43fdb14c7d72af859f0ca289fc8d4ea0127aa3/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/6a/6a43fdb14c7d72af859f0ca289fc8d4ea0127aa3/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/6a/6a43fdb14c7d72af859f0ca289fc8d4ea0127aa3/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/6a/6a43fdb14c7d72af859f0ca289fc8d4ea0127aa3/response_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/6a/6a43fdb14c7d72af859f0ca289fc8d4ea0127aa3/response_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/6a/6a43fdb14c7d72af859f0ca289fc8d4ea0127aa3/response_headers: -------------------------------------------------------------------------------- 1 | Server: JDWS/2.0 2 | Date: Tue, 26 Mar 2019 08:18:09 GMT 3 | Content-Type: text/html;charset=GBK 4 | Vary: Accept-Encoding 5 | Set-Cookie: JSESSIONID=683BB8BCA5F13C40AB73455968537FCB.s1; Path=/ 6 | Set-Cookie: jwotest_product=99; Domain=club.jd.com; Expires=Tue, 02-Apr-2019 08:18:09 GMT; Path=/ 7 | Content-Encoding: gzip 8 | Via: BJ-Y-NX-110(MISS), http/1.1 CHSH-UNI-1-JCS-47 ( [cMsSf ]) 9 | Age: 0 -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/6b/6b02d3b23f0f37715cbba07382eb4c7621e434b8/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/6b/6b02d3b23f0f37715cbba07382eb4c7621e434b8/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/6b/6b02d3b23f0f37715cbba07382eb4c7621e434b8/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/6b/6b02d3b23f0f37715cbba07382eb4c7621e434b8/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/6b/6b02d3b23f0f37715cbba07382eb4c7621e434b8/response_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/6b/6b02d3b23f0f37715cbba07382eb4c7621e434b8/response_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/6b/6b02d3b23f0f37715cbba07382eb4c7621e434b8/response_headers: -------------------------------------------------------------------------------- 1 | Server: JDWS/2.0 2 | Date: Tue, 26 Mar 2019 08:18:08 GMT 3 | Content-Type: text/html;charset=GBK 4 | Vary: Accept-Encoding 5 | Set-Cookie: JSESSIONID=36B65F9DAA8C309D59A1B499D15DED8B.s1; Path=/ 6 | Set-Cookie: jwotest_product=99; Domain=club.jd.com; Expires=Tue, 02-Apr-2019 08:18:08 GMT; Path=/ 7 | Content-Encoding: gzip 8 | Via: BJ-H-NX-115(MISS), http/1.1 CHSH-UNI-1-JCS-38 ( [cMsSf ]) 9 | Age: 0 -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/73/7371d83bb5e6354e5239fd75f6b488ca41fda970/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/73/7371d83bb5e6354e5239fd75f6b488ca41fda970/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/73/7371d83bb5e6354e5239fd75f6b488ca41fda970/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/73/7371d83bb5e6354e5239fd75f6b488ca41fda970/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/73/7371d83bb5e6354e5239fd75f6b488ca41fda970/response_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/73/7371d83bb5e6354e5239fd75f6b488ca41fda970/response_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/73/7371d83bb5e6354e5239fd75f6b488ca41fda970/response_headers: -------------------------------------------------------------------------------- 1 | Server: JDWS/2.0 2 | Date: Sun, 24 Mar 2019 12:50:01 GMT 3 | Content-Type: text/html;charset=GBK 4 | Vary: Accept-Encoding 5 | Set-Cookie: JSESSIONID=64743D448EE4DFE21A8B68EAB1EDE6BE.s1; Path=/ 6 | Set-Cookie: jwotest_product=99; Domain=club.jd.com; Expires=Sun, 31-Mar-2019 12:50:01 GMT; Path=/ 7 | Content-Encoding: gzip 8 | Via: BJ-Y-NX-102(MISS), http/1.1 CHSH-UNI-1-JCS-48 ( [cMsSf ]) 9 | Age: 0 -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/74/748086a47802a3e26c67f2f41fb7d132c1916c74/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/74/748086a47802a3e26c67f2f41fb7d132c1916c74/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/74/748086a47802a3e26c67f2f41fb7d132c1916c74/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/74/748086a47802a3e26c67f2f41fb7d132c1916c74/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/74/748086a47802a3e26c67f2f41fb7d132c1916c74/response_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/74/748086a47802a3e26c67f2f41fb7d132c1916c74/response_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/74/748086a47802a3e26c67f2f41fb7d132c1916c74/response_headers: -------------------------------------------------------------------------------- 1 | Server: JDWS/2.0 2 | Date: Tue, 26 Mar 2019 08:18:08 GMT 3 | Content-Type: text/html;charset=GBK 4 | Vary: Accept-Encoding 5 | Set-Cookie: JSESSIONID=9776E81F045F8B7FE23EEDC6E1423696.s1; Path=/ 6 | Set-Cookie: jwotest_product=99; Domain=club.jd.com; Expires=Tue, 02-Apr-2019 08:18:08 GMT; Path=/ 7 | Content-Encoding: gzip 8 | Via: BJ-Y-NX-101(MISS), http/1.1 CHSH-UNI-1-JCS-33 ( [cMsSf ]) 9 | Age: 1 -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/78/78139de8f266a1902539f82a054ee2b35af7d3a3/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/78/78139de8f266a1902539f82a054ee2b35af7d3a3/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/78/78139de8f266a1902539f82a054ee2b35af7d3a3/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/78/78139de8f266a1902539f82a054ee2b35af7d3a3/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/78/78139de8f266a1902539f82a054ee2b35af7d3a3/response_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/78/78139de8f266a1902539f82a054ee2b35af7d3a3/response_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/78/78139de8f266a1902539f82a054ee2b35af7d3a3/response_headers: -------------------------------------------------------------------------------- 1 | Server: JDWS/2.0 2 | Date: Tue, 26 Mar 2019 08:18:08 GMT 3 | Content-Type: text/html;charset=GBK 4 | Vary: Accept-Encoding 5 | Set-Cookie: JSESSIONID=52E044697AA7CD77E3A8753182BB9C7E.s1; Path=/ 6 | Set-Cookie: jwotest_product=99; Domain=club.jd.com; Expires=Tue, 02-Apr-2019 08:18:08 GMT; Path=/ 7 | Content-Encoding: gzip 8 | Via: BJ-H-NX-105(MISS), http/1.1 CHSH-UNI-1-JCS-34 ( [cMsSf ]) 9 | Age: 0 -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/81/817d826dcf698e96cb88ea08a5003ef8b0b5ca70/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/81/817d826dcf698e96cb88ea08a5003ef8b0b5ca70/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/81/817d826dcf698e96cb88ea08a5003ef8b0b5ca70/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/81/817d826dcf698e96cb88ea08a5003ef8b0b5ca70/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/81/817d826dcf698e96cb88ea08a5003ef8b0b5ca70/response_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/81/817d826dcf698e96cb88ea08a5003ef8b0b5ca70/response_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/81/817d826dcf698e96cb88ea08a5003ef8b0b5ca70/response_headers: -------------------------------------------------------------------------------- 1 | Server: JDWS/2.0 2 | Date: Tue, 26 Mar 2019 08:18:08 GMT 3 | Content-Type: text/html;charset=GBK 4 | Vary: Accept-Encoding 5 | Set-Cookie: jwotest_product=99; Domain=club.jd.com; Expires=Tue, 02-Apr-2019 08:18:07 GMT; Path=/ 6 | Content-Encoding: gzip 7 | Via: BJ-Y-NX-114(MISS), http/1.1 CHSH-UNI-1-JCS-38 ( [cMsSf ]) 8 | Age: 1 -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/86/8668c8ec5faee842a089e8b0bfb21bfb72162828/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/86/8668c8ec5faee842a089e8b0bfb21bfb72162828/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/86/8668c8ec5faee842a089e8b0bfb21bfb72162828/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/86/8668c8ec5faee842a089e8b0bfb21bfb72162828/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/86/8668c8ec5faee842a089e8b0bfb21bfb72162828/response_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/86/8668c8ec5faee842a089e8b0bfb21bfb72162828/response_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/86/8668c8ec5faee842a089e8b0bfb21bfb72162828/response_headers: -------------------------------------------------------------------------------- 1 | Server: JDWS/2.0 2 | Date: Sun, 24 Mar 2019 12:50:02 GMT 3 | Content-Type: text/html;charset=GBK 4 | Vary: Accept-Encoding 5 | Set-Cookie: JSESSIONID=C00EA87D4450FD573EBD84BEB4C3BF5D.s1; Path=/ 6 | Set-Cookie: jwotest_product=99; Domain=club.jd.com; Expires=Sun, 31-Mar-2019 12:50:02 GMT; Path=/ 7 | Content-Encoding: gzip 8 | Via: BJ-Y-NX-110(MISS), http/1.1 CHSH-UNI-1-JCS-32 ( [cMsSf ]) 9 | Age: 0 -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/86/86e3a1daa49e7b75f583b47ef83693aa2910288f/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/86/86e3a1daa49e7b75f583b47ef83693aa2910288f/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/86/86e3a1daa49e7b75f583b47ef83693aa2910288f/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/86/86e3a1daa49e7b75f583b47ef83693aa2910288f/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/86/86e3a1daa49e7b75f583b47ef83693aa2910288f/response_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/86/86e3a1daa49e7b75f583b47ef83693aa2910288f/response_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/86/86e3a1daa49e7b75f583b47ef83693aa2910288f/response_headers: -------------------------------------------------------------------------------- 1 | Server: JDWS/2.0 2 | Date: Tue, 26 Mar 2019 08:18:08 GMT 3 | Content-Type: text/html;charset=GBK 4 | Vary: Accept-Encoding 5 | Set-Cookie: JSESSIONID=F09B412DE7B9659B69E5DE7C86568AB5.s1; Path=/ 6 | Set-Cookie: jwotest_product=99; Domain=club.jd.com; Expires=Tue, 02-Apr-2019 08:18:08 GMT; Path=/ 7 | Content-Encoding: gzip 8 | Via: BJ-H-NX-103(MISS), http/1.1 CHSH-UNI-1-JCS-47 ( [cMsSf ]) 9 | Age: 0 -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/87/8730c60eaf9f85b3c008f57358f0803c43a00a0b/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/87/8730c60eaf9f85b3c008f57358f0803c43a00a0b/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/87/8730c60eaf9f85b3c008f57358f0803c43a00a0b/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/87/8730c60eaf9f85b3c008f57358f0803c43a00a0b/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/87/8730c60eaf9f85b3c008f57358f0803c43a00a0b/response_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/87/8730c60eaf9f85b3c008f57358f0803c43a00a0b/response_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/87/8730c60eaf9f85b3c008f57358f0803c43a00a0b/response_headers: -------------------------------------------------------------------------------- 1 | Server: JDWS/2.0 2 | Date: Sun, 24 Mar 2019 12:50:01 GMT 3 | Content-Type: text/html;charset=GBK 4 | Vary: Accept-Encoding 5 | Set-Cookie: JSESSIONID=5E3F4F3BB7F5E721D52461A328A15B8D.s1; Path=/ 6 | Set-Cookie: jwotest_product=99; Domain=club.jd.com; Expires=Sun, 31-Mar-2019 12:50:01 GMT; Path=/ 7 | Content-Encoding: gzip 8 | Via: BJ-H-NX-106(MISS), http/1.1 CHSH-UNI-1-JCS-44 ( [cMsSf ]) 9 | Age: 0 -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/87/87744669f352925d60338408f80e33879bf4576e/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/87/87744669f352925d60338408f80e33879bf4576e/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/87/87744669f352925d60338408f80e33879bf4576e/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/87/87744669f352925d60338408f80e33879bf4576e/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/87/87744669f352925d60338408f80e33879bf4576e/response_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/87/87744669f352925d60338408f80e33879bf4576e/response_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/87/87744669f352925d60338408f80e33879bf4576e/response_headers: -------------------------------------------------------------------------------- 1 | Server: JDWS/2.0 2 | Date: Sun, 24 Mar 2019 13:38:42 GMT 3 | Content-Type: text/html;charset=GBK 4 | Vary: Accept-Encoding 5 | Set-Cookie: JSESSIONID=C21D524E2A4CB95DBF21D18319218C21.s1; Path=/ 6 | Set-Cookie: jwotest_product=99; Domain=club.jd.com; Expires=Sun, 31-Mar-2019 13:38:42 GMT; Path=/ 7 | Content-Encoding: gzip 8 | Via: BJ-H-NX-116(MISS), http/1.1 CHSH-UNI-1-JCS-34 ( [cMsSf ]) 9 | Age: 0 -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/8a/8a86cd0704ec7d40be85546432d87cb760adfb20/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/8a/8a86cd0704ec7d40be85546432d87cb760adfb20/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/8a/8a86cd0704ec7d40be85546432d87cb760adfb20/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/8a/8a86cd0704ec7d40be85546432d87cb760adfb20/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/8a/8a86cd0704ec7d40be85546432d87cb760adfb20/response_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/8a/8a86cd0704ec7d40be85546432d87cb760adfb20/response_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/8a/8a86cd0704ec7d40be85546432d87cb760adfb20/response_headers: -------------------------------------------------------------------------------- 1 | Server: JDWS/2.0 2 | Date: Sun, 24 Mar 2019 13:38:43 GMT 3 | Content-Type: text/html;charset=GBK 4 | Vary: Accept-Encoding 5 | Set-Cookie: JSESSIONID=A362E1D62AD6EC580A45F0D59C473723.s1; Path=/ 6 | Set-Cookie: jwotest_product=99; Domain=club.jd.com; Expires=Sun, 31-Mar-2019 13:38:43 GMT; Path=/ 7 | Content-Encoding: gzip 8 | Via: BJ-H-NX-105(MISS), http/1.1 CHSH-UNI-1-JCS-44 ( [cMsSf ]) 9 | Age: 0 -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/8e/8e018f6f16da1e9222a1beffb5f09977d1599fa9/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/8e/8e018f6f16da1e9222a1beffb5f09977d1599fa9/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/8e/8e018f6f16da1e9222a1beffb5f09977d1599fa9/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/8e/8e018f6f16da1e9222a1beffb5f09977d1599fa9/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/8e/8e018f6f16da1e9222a1beffb5f09977d1599fa9/response_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/8e/8e018f6f16da1e9222a1beffb5f09977d1599fa9/response_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/8e/8e018f6f16da1e9222a1beffb5f09977d1599fa9/response_headers: -------------------------------------------------------------------------------- 1 | Server: JDWS/2.0 2 | Date: Tue, 26 Mar 2019 08:18:08 GMT 3 | Content-Type: text/html;charset=GBK 4 | Vary: Accept-Encoding 5 | Set-Cookie: JSESSIONID=DA985909498DE3CA6B1736F9B65370F6.s1; Path=/ 6 | Set-Cookie: jwotest_product=99; Domain=club.jd.com; Expires=Tue, 02-Apr-2019 08:18:08 GMT; Path=/ 7 | Content-Encoding: gzip 8 | Via: BJ-Y-NX-104(MISS), http/1.1 CHSH-UNI-1-JCS-35 ( [cMsSf ]) 9 | Age: 0 -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/8e/8ea61ec1b9b97a68ca86d5c7a6ba3dde08b90d6e/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/8e/8ea61ec1b9b97a68ca86d5c7a6ba3dde08b90d6e/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/8e/8ea61ec1b9b97a68ca86d5c7a6ba3dde08b90d6e/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/8e/8ea61ec1b9b97a68ca86d5c7a6ba3dde08b90d6e/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/8e/8ea61ec1b9b97a68ca86d5c7a6ba3dde08b90d6e/response_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/8e/8ea61ec1b9b97a68ca86d5c7a6ba3dde08b90d6e/response_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/8e/8ea61ec1b9b97a68ca86d5c7a6ba3dde08b90d6e/response_headers: -------------------------------------------------------------------------------- 1 | Server: JDWS/2.0 2 | Date: Tue, 26 Mar 2019 08:18:08 GMT 3 | Content-Type: text/html;charset=GBK 4 | Vary: Accept-Encoding 5 | Set-Cookie: JSESSIONID=BA010EDB75DED24F91F2A73BCF4E51B7.s1; Path=/ 6 | Set-Cookie: jwotest_product=99; Domain=club.jd.com; Expires=Tue, 02-Apr-2019 08:18:08 GMT; Path=/ 7 | Content-Encoding: gzip 8 | Via: BJ-H-NX-114(MISS), http/1.1 CHSH-UNI-1-JCS-35 ( [cMsSf ]) 9 | Age: 0 -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/8e/8ed478c224028c2d6b966e55e7d04ac053c6c399/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/8e/8ed478c224028c2d6b966e55e7d04ac053c6c399/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/8e/8ed478c224028c2d6b966e55e7d04ac053c6c399/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/8e/8ed478c224028c2d6b966e55e7d04ac053c6c399/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/8e/8ed478c224028c2d6b966e55e7d04ac053c6c399/response_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/8e/8ed478c224028c2d6b966e55e7d04ac053c6c399/response_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/8e/8ed478c224028c2d6b966e55e7d04ac053c6c399/response_headers: -------------------------------------------------------------------------------- 1 | Server: JDWS/2.0 2 | Date: Sun, 24 Mar 2019 13:38:42 GMT 3 | Content-Type: text/html;charset=GBK 4 | Vary: Accept-Encoding 5 | Set-Cookie: JSESSIONID=86FE603742514AF2FEF536F231756DF2.s1; Path=/ 6 | Set-Cookie: jwotest_product=99; Domain=club.jd.com; Expires=Sun, 31-Mar-2019 13:38:42 GMT; Path=/ 7 | Content-Encoding: gzip 8 | Via: BJ-Y-NX-106(MISS), http/1.1 CHSH-UNI-1-JCS-35 ( [cMsSf ]) 9 | Age: 0 -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/90/90f6cf682670c1873c0903087d14375a77300714/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/90/90f6cf682670c1873c0903087d14375a77300714/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/90/90f6cf682670c1873c0903087d14375a77300714/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/90/90f6cf682670c1873c0903087d14375a77300714/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/90/90f6cf682670c1873c0903087d14375a77300714/response_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/90/90f6cf682670c1873c0903087d14375a77300714/response_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/90/90f6cf682670c1873c0903087d14375a77300714/response_headers: -------------------------------------------------------------------------------- 1 | Server: JDWS/2.0 2 | Date: Tue, 26 Mar 2019 08:18:07 GMT 3 | Content-Type: text/html;charset=GBK 4 | Vary: Accept-Encoding 5 | Set-Cookie: JSESSIONID=2735450DCB156ED8E2A03367C55310B6.s1; Path=/ 6 | Set-Cookie: jwotest_product=99; Domain=club.jd.com; Expires=Tue, 02-Apr-2019 08:18:07 GMT; Path=/ 7 | Content-Encoding: gzip 8 | Via: BJ-H-NX-111(MISS), http/1.1 CHSH-UNI-1-JCS-34 ( [cMsSf ]) 9 | Age: 0 -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/95/95f82ac82b8a2cdee0b29e934658d4097877bd91/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/95/95f82ac82b8a2cdee0b29e934658d4097877bd91/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/95/95f82ac82b8a2cdee0b29e934658d4097877bd91/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/95/95f82ac82b8a2cdee0b29e934658d4097877bd91/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/95/95f82ac82b8a2cdee0b29e934658d4097877bd91/response_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/95/95f82ac82b8a2cdee0b29e934658d4097877bd91/response_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/95/95f82ac82b8a2cdee0b29e934658d4097877bd91/response_headers: -------------------------------------------------------------------------------- 1 | Server: JDWS/2.0 2 | Date: Sun, 24 Mar 2019 13:38:43 GMT 3 | Content-Type: text/html;charset=GBK 4 | Vary: Accept-Encoding 5 | Set-Cookie: JSESSIONID=684C07AC95037A500171525C136232CE.s1; Path=/ 6 | Set-Cookie: jwotest_product=99; Domain=club.jd.com; Expires=Sun, 31-Mar-2019 13:38:43 GMT; Path=/ 7 | Content-Encoding: gzip 8 | Via: BJ-Y-NX-105(MISS), http/1.1 CHSH-UNI-1-JCS-44 ( [cMsSf ]) 9 | Age: 0 -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/9a/9ad99f96f86db6060b9125376566c0416a6cafe0/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/9a/9ad99f96f86db6060b9125376566c0416a6cafe0/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/9a/9ad99f96f86db6060b9125376566c0416a6cafe0/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/9a/9ad99f96f86db6060b9125376566c0416a6cafe0/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/9a/9ad99f96f86db6060b9125376566c0416a6cafe0/response_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/9a/9ad99f96f86db6060b9125376566c0416a6cafe0/response_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/9a/9ad99f96f86db6060b9125376566c0416a6cafe0/response_headers: -------------------------------------------------------------------------------- 1 | Server: JDWS/2.0 2 | Date: Sun, 24 Mar 2019 12:50:01 GMT 3 | Content-Type: text/html;charset=GBK 4 | Vary: Accept-Encoding 5 | Set-Cookie: JSESSIONID=2EC48AC1A92A881FC7185D34CC2761AA.s1; Path=/ 6 | Set-Cookie: jwotest_product=99; Domain=club.jd.com; Expires=Sun, 31-Mar-2019 12:50:01 GMT; Path=/ 7 | Content-Encoding: gzip 8 | Via: BJ-Y-NX-111(MISS), http/1.1 CHSH-UNI-1-JCS-40 ( [cMsSf ]) 9 | Age: 0 -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/9c/9cc7871bf34b69c659bfed3f92259bd5e7589a92/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/9c/9cc7871bf34b69c659bfed3f92259bd5e7589a92/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/9c/9cc7871bf34b69c659bfed3f92259bd5e7589a92/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/9c/9cc7871bf34b69c659bfed3f92259bd5e7589a92/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/9c/9cc7871bf34b69c659bfed3f92259bd5e7589a92/response_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/9c/9cc7871bf34b69c659bfed3f92259bd5e7589a92/response_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/9c/9cc7871bf34b69c659bfed3f92259bd5e7589a92/response_headers: -------------------------------------------------------------------------------- 1 | Server: JDWS/2.0 2 | Date: Tue, 26 Mar 2019 08:18:07 GMT 3 | Content-Type: text/html;charset=GBK 4 | Vary: Accept-Encoding 5 | Set-Cookie: JSESSIONID=0DC7CFAB5308600695D200B660CADD8E.s1; Path=/ 6 | Set-Cookie: jwotest_product=99; Domain=club.jd.com; Expires=Tue, 02-Apr-2019 08:18:07 GMT; Path=/ 7 | Content-Encoding: gzip 8 | Via: BJ-H-NX-111(MISS), http/1.1 CHSH-UNI-1-JCS-46 ( [cMsSf ]) 9 | Age: 1 -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/9d/9d2bd0cc56ecbd244d634a874858c1438cc456be/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/9d/9d2bd0cc56ecbd244d634a874858c1438cc456be/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/9d/9d2bd0cc56ecbd244d634a874858c1438cc456be/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/9d/9d2bd0cc56ecbd244d634a874858c1438cc456be/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/9d/9d2bd0cc56ecbd244d634a874858c1438cc456be/response_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/9d/9d2bd0cc56ecbd244d634a874858c1438cc456be/response_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/9d/9d2bd0cc56ecbd244d634a874858c1438cc456be/response_headers: -------------------------------------------------------------------------------- 1 | Server: JDWS/2.0 2 | Date: Sun, 24 Mar 2019 12:50:03 GMT 3 | Content-Type: text/html;charset=GBK 4 | Vary: Accept-Encoding 5 | Set-Cookie: JSESSIONID=AFD52C607333D3F52C3D9C9C23DB328A.s1; Path=/ 6 | Set-Cookie: jwotest_product=99; Domain=club.jd.com; Expires=Sun, 31-Mar-2019 12:50:03 GMT; Path=/ 7 | Content-Encoding: gzip 8 | Via: BJ-H-NX-103(MISS), http/1.1 CHSH-UNI-1-JCS-39 ( [cMsSf ]) 9 | Age: 0 -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/9d/9db405364bb2fbecc6903adda57297be80bd7e61/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/9d/9db405364bb2fbecc6903adda57297be80bd7e61/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/9d/9db405364bb2fbecc6903adda57297be80bd7e61/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/9d/9db405364bb2fbecc6903adda57297be80bd7e61/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/9d/9db405364bb2fbecc6903adda57297be80bd7e61/response_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/9d/9db405364bb2fbecc6903adda57297be80bd7e61/response_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/9d/9db405364bb2fbecc6903adda57297be80bd7e61/response_headers: -------------------------------------------------------------------------------- 1 | Server: JDWS/2.0 2 | Date: Sun, 24 Mar 2019 13:38:42 GMT 3 | Content-Type: text/html;charset=GBK 4 | Vary: Accept-Encoding 5 | Set-Cookie: JSESSIONID=FA86936E71F868A2BAFF609D9F31B813.s1; Path=/ 6 | Set-Cookie: jwotest_product=99; Domain=club.jd.com; Expires=Sun, 31-Mar-2019 13:38:42 GMT; Path=/ 7 | Content-Encoding: gzip 8 | Via: BJ-M-YZ-NX-80(MISS), http/1.1 CHSH-UNI-1-JCS-35 ( [cMsSf ]) 9 | Age: 0 -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/9f/9ff2b945d0cdd3b4dced65024423c71c1d00692c/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/9f/9ff2b945d0cdd3b4dced65024423c71c1d00692c/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/9f/9ff2b945d0cdd3b4dced65024423c71c1d00692c/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/9f/9ff2b945d0cdd3b4dced65024423c71c1d00692c/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/9f/9ff2b945d0cdd3b4dced65024423c71c1d00692c/response_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/9f/9ff2b945d0cdd3b4dced65024423c71c1d00692c/response_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/9f/9ff2b945d0cdd3b4dced65024423c71c1d00692c/response_headers: -------------------------------------------------------------------------------- 1 | Server: JDWS/2.0 2 | Date: Sun, 24 Mar 2019 13:38:42 GMT 3 | Content-Type: text/html;charset=GBK 4 | Vary: Accept-Encoding 5 | Set-Cookie: JSESSIONID=03D5CE5A7DECB5D4F15A7A72DFBA2C1E.s1; Path=/ 6 | Set-Cookie: jwotest_product=99; Domain=club.jd.com; Expires=Sun, 31-Mar-2019 13:38:42 GMT; Path=/ 7 | Content-Encoding: gzip 8 | Via: BJ-Y-NX-111(MISS), http/1.1 CHSH-UNI-1-JCS-45 ( [cMsSf ]) 9 | Age: 0 -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/ad/ad5f01be2a6a52fcec36c73fbc453e5850dba5d5/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/ad/ad5f01be2a6a52fcec36c73fbc453e5850dba5d5/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/ad/ad5f01be2a6a52fcec36c73fbc453e5850dba5d5/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/ad/ad5f01be2a6a52fcec36c73fbc453e5850dba5d5/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/ad/ad5f01be2a6a52fcec36c73fbc453e5850dba5d5/response_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/ad/ad5f01be2a6a52fcec36c73fbc453e5850dba5d5/response_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/ad/ad5f01be2a6a52fcec36c73fbc453e5850dba5d5/response_headers: -------------------------------------------------------------------------------- 1 | Server: JDWS/2.0 2 | Date: Sun, 24 Mar 2019 13:38:42 GMT 3 | Content-Type: text/html;charset=GBK 4 | Vary: Accept-Encoding 5 | Set-Cookie: JSESSIONID=4A8A756A543A3CA9B95ED9C4F3D5A2F8.s1; Path=/ 6 | Set-Cookie: jwotest_product=99; Domain=club.jd.com; Expires=Sun, 31-Mar-2019 13:38:42 GMT; Path=/ 7 | Content-Encoding: gzip 8 | Via: BJ-H-NX-107(MISS), http/1.1 CHSH-UNI-1-JCS-39 ( [cMsSf ]) 9 | Age: 0 -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/b0/b0825df7f967adfaee90b0d1192b007f3e297e13/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/b0/b0825df7f967adfaee90b0d1192b007f3e297e13/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/b0/b0825df7f967adfaee90b0d1192b007f3e297e13/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/b0/b0825df7f967adfaee90b0d1192b007f3e297e13/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/b0/b0825df7f967adfaee90b0d1192b007f3e297e13/response_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/b0/b0825df7f967adfaee90b0d1192b007f3e297e13/response_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/b0/b0825df7f967adfaee90b0d1192b007f3e297e13/response_headers: -------------------------------------------------------------------------------- 1 | Server: JDWS/2.0 2 | Date: Tue, 26 Mar 2019 08:18:08 GMT 3 | Content-Type: text/html;charset=GBK 4 | Vary: Accept-Encoding 5 | Set-Cookie: JSESSIONID=FDE0B5B7AD49A26D117EE95C05D8DA9F.s1; Path=/ 6 | Set-Cookie: jwotest_product=99; Domain=club.jd.com; Expires=Tue, 02-Apr-2019 08:18:08 GMT; Path=/ 7 | Content-Encoding: gzip 8 | Via: BJ-Y-NX-103(MISS), http/1.1 CHSH-UNI-1-JCS-47 ( [cMsSf ]) 9 | Age: 0 -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/b1/b1294c607fad86ff569d98d61c732fa323c04244/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/b1/b1294c607fad86ff569d98d61c732fa323c04244/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/b1/b1294c607fad86ff569d98d61c732fa323c04244/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/b1/b1294c607fad86ff569d98d61c732fa323c04244/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/b1/b1294c607fad86ff569d98d61c732fa323c04244/response_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/b1/b1294c607fad86ff569d98d61c732fa323c04244/response_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/b1/b1294c607fad86ff569d98d61c732fa323c04244/response_headers: -------------------------------------------------------------------------------- 1 | Server: JDWS/2.0 2 | Date: Sun, 24 Mar 2019 12:50:01 GMT 3 | Content-Type: text/html;charset=GBK 4 | Vary: Accept-Encoding 5 | Set-Cookie: JSESSIONID=C5644B0AC253F98B80FA83453DE9531F.s1; Path=/ 6 | Set-Cookie: jwotest_product=99; Domain=club.jd.com; Expires=Sun, 31-Mar-2019 12:50:01 GMT; Path=/ 7 | Content-Encoding: gzip 8 | Via: BJ-Y-NX-107(MISS), http/1.1 CHSH-UNI-1-JCS-33 ( [cMsSf ]) 9 | Age: 0 -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/b2/b267be55a9ea202dd112e283bc15b0a42ac263e4/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/b2/b267be55a9ea202dd112e283bc15b0a42ac263e4/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/b2/b267be55a9ea202dd112e283bc15b0a42ac263e4/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/b2/b267be55a9ea202dd112e283bc15b0a42ac263e4/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/b2/b267be55a9ea202dd112e283bc15b0a42ac263e4/response_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/b2/b267be55a9ea202dd112e283bc15b0a42ac263e4/response_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/b2/b267be55a9ea202dd112e283bc15b0a42ac263e4/response_headers: -------------------------------------------------------------------------------- 1 | Server: JDWS/2.0 2 | Date: Sun, 24 Mar 2019 12:50:02 GMT 3 | Content-Type: text/html;charset=GBK 4 | Vary: Accept-Encoding 5 | Set-Cookie: JSESSIONID=0567533F2EA57B12F8AC0F04CD1E6B21.s1; Path=/ 6 | Set-Cookie: jwotest_product=99; Domain=club.jd.com; Expires=Sun, 31-Mar-2019 12:50:02 GMT; Path=/ 7 | Content-Encoding: gzip 8 | Via: BJ-Y-NX-109(MISS), http/1.1 CHSH-UNI-1-JCS-47 ( [cMsSf ]) 9 | Age: 0 -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/b2/b27ce3849f69b1256dbba39bf31bf97014e6d62c/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/b2/b27ce3849f69b1256dbba39bf31bf97014e6d62c/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/b2/b27ce3849f69b1256dbba39bf31bf97014e6d62c/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/b2/b27ce3849f69b1256dbba39bf31bf97014e6d62c/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/b2/b27ce3849f69b1256dbba39bf31bf97014e6d62c/response_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/b2/b27ce3849f69b1256dbba39bf31bf97014e6d62c/response_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/b2/b27ce3849f69b1256dbba39bf31bf97014e6d62c/response_headers: -------------------------------------------------------------------------------- 1 | Server: JDWS/2.0 2 | Date: Tue, 26 Mar 2019 08:18:09 GMT 3 | Content-Type: text/html;charset=GBK 4 | Vary: Accept-Encoding 5 | Set-Cookie: JSESSIONID=2BAE395EE6323BFDDCBFFD25051C0D92.s1; Path=/ 6 | Set-Cookie: jwotest_product=99; Domain=club.jd.com; Expires=Tue, 02-Apr-2019 08:18:09 GMT; Path=/ 7 | Content-Encoding: gzip 8 | Via: BJ-Y-NX-106(MISS), http/1.1 CHSH-UNI-1-JCS-36 ( [cMsSf ]) 9 | Age: 0 -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/b3/b3ca43599690e15c3aa83c255b1a6376fff87eef/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/b3/b3ca43599690e15c3aa83c255b1a6376fff87eef/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/b3/b3ca43599690e15c3aa83c255b1a6376fff87eef/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/b3/b3ca43599690e15c3aa83c255b1a6376fff87eef/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/b3/b3ca43599690e15c3aa83c255b1a6376fff87eef/response_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/b3/b3ca43599690e15c3aa83c255b1a6376fff87eef/response_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/b3/b3ca43599690e15c3aa83c255b1a6376fff87eef/response_headers: -------------------------------------------------------------------------------- 1 | Server: JDWS/2.0 2 | Date: Sun, 24 Mar 2019 13:38:43 GMT 3 | Content-Type: text/html;charset=GBK 4 | Vary: Accept-Encoding 5 | Set-Cookie: JSESSIONID=85D6717ABB152E699C807934AAD4EA15.s1; Path=/ 6 | Set-Cookie: jwotest_product=99; Domain=club.jd.com; Expires=Sun, 31-Mar-2019 13:38:43 GMT; Path=/ 7 | Content-Encoding: gzip 8 | Via: BJ-H-NX-107(MISS), http/1.1 CHSH-UNI-1-JCS-47 ( [cMsSf ]) 9 | Age: 0 -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/b4/b483815ce1c65e2c4e29e287c9c6d7504e3c5e8e/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/b4/b483815ce1c65e2c4e29e287c9c6d7504e3c5e8e/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/b4/b483815ce1c65e2c4e29e287c9c6d7504e3c5e8e/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/b4/b483815ce1c65e2c4e29e287c9c6d7504e3c5e8e/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/b4/b483815ce1c65e2c4e29e287c9c6d7504e3c5e8e/response_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/b4/b483815ce1c65e2c4e29e287c9c6d7504e3c5e8e/response_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/ba/ba8937dae9d91f324b30f02b801aa6877af28c95/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/ba/ba8937dae9d91f324b30f02b801aa6877af28c95/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/ba/ba8937dae9d91f324b30f02b801aa6877af28c95/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/ba/ba8937dae9d91f324b30f02b801aa6877af28c95/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/ba/ba8937dae9d91f324b30f02b801aa6877af28c95/response_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/ba/ba8937dae9d91f324b30f02b801aa6877af28c95/response_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/ba/badba28cba38e6860eaafb1651568c4b637212d6/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/ba/badba28cba38e6860eaafb1651568c4b637212d6/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/ba/badba28cba38e6860eaafb1651568c4b637212d6/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/ba/badba28cba38e6860eaafb1651568c4b637212d6/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/ba/badba28cba38e6860eaafb1651568c4b637212d6/response_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/ba/badba28cba38e6860eaafb1651568c4b637212d6/response_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/c1/c1aeb619c0f3f9bcbbe58289b7c9e80db56f8fe9/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/c1/c1aeb619c0f3f9bcbbe58289b7c9e80db56f8fe9/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/c1/c1aeb619c0f3f9bcbbe58289b7c9e80db56f8fe9/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/c1/c1aeb619c0f3f9bcbbe58289b7c9e80db56f8fe9/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/c1/c1aeb619c0f3f9bcbbe58289b7c9e80db56f8fe9/response_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/c1/c1aeb619c0f3f9bcbbe58289b7c9e80db56f8fe9/response_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/c3/c3c32a9f368a2e96b44057933334e23ba8a12b0f/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/c3/c3c32a9f368a2e96b44057933334e23ba8a12b0f/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/c3/c3c32a9f368a2e96b44057933334e23ba8a12b0f/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/c3/c3c32a9f368a2e96b44057933334e23ba8a12b0f/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/c3/c3c32a9f368a2e96b44057933334e23ba8a12b0f/response_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/c3/c3c32a9f368a2e96b44057933334e23ba8a12b0f/response_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/c4/c429c7b3e98851c566e4b545271f47dd22fba095/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/c4/c429c7b3e98851c566e4b545271f47dd22fba095/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/c4/c429c7b3e98851c566e4b545271f47dd22fba095/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/c4/c429c7b3e98851c566e4b545271f47dd22fba095/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/c4/c429c7b3e98851c566e4b545271f47dd22fba095/response_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/c4/c429c7b3e98851c566e4b545271f47dd22fba095/response_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/c6/c6a0f6ff7fbc53a76b53935674a984e48c7731f1/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/c6/c6a0f6ff7fbc53a76b53935674a984e48c7731f1/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/c6/c6a0f6ff7fbc53a76b53935674a984e48c7731f1/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/c6/c6a0f6ff7fbc53a76b53935674a984e48c7731f1/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/c6/c6a0f6ff7fbc53a76b53935674a984e48c7731f1/response_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/c6/c6a0f6ff7fbc53a76b53935674a984e48c7731f1/response_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/cb/cb66956cb1086a59580942cb025de76f50ead720/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/cb/cb66956cb1086a59580942cb025de76f50ead720/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/cb/cb66956cb1086a59580942cb025de76f50ead720/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/cb/cb66956cb1086a59580942cb025de76f50ead720/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/cb/cb66956cb1086a59580942cb025de76f50ead720/response_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/cb/cb66956cb1086a59580942cb025de76f50ead720/response_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/cd/cd3887bae7a85ed9b442a8f498e91afe300aa1b2/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/cd/cd3887bae7a85ed9b442a8f498e91afe300aa1b2/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/cd/cd3887bae7a85ed9b442a8f498e91afe300aa1b2/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/cd/cd3887bae7a85ed9b442a8f498e91afe300aa1b2/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/cd/cd3887bae7a85ed9b442a8f498e91afe300aa1b2/response_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/cd/cd3887bae7a85ed9b442a8f498e91afe300aa1b2/response_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/d0/d00543ce8209423040886a158ceee8cfcd3762af/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/d0/d00543ce8209423040886a158ceee8cfcd3762af/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/d0/d00543ce8209423040886a158ceee8cfcd3762af/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/d0/d00543ce8209423040886a158ceee8cfcd3762af/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/d0/d00543ce8209423040886a158ceee8cfcd3762af/response_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/d0/d00543ce8209423040886a158ceee8cfcd3762af/response_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/d9/d91b2c18e02ed9a5bf9c9261696a8a6304ad6261/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/d9/d91b2c18e02ed9a5bf9c9261696a8a6304ad6261/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/d9/d91b2c18e02ed9a5bf9c9261696a8a6304ad6261/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/d9/d91b2c18e02ed9a5bf9c9261696a8a6304ad6261/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/d9/d91b2c18e02ed9a5bf9c9261696a8a6304ad6261/response_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/d9/d91b2c18e02ed9a5bf9c9261696a8a6304ad6261/response_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/dc/dc235873c9a9f2784f9922c83be9ba6fd101e534/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/dc/dc235873c9a9f2784f9922c83be9ba6fd101e534/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/dc/dc235873c9a9f2784f9922c83be9ba6fd101e534/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/dc/dc235873c9a9f2784f9922c83be9ba6fd101e534/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/dc/dc235873c9a9f2784f9922c83be9ba6fd101e534/response_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/dc/dc235873c9a9f2784f9922c83be9ba6fd101e534/response_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/e0/e02be06465bd80a9b468f1c909d758510d519999/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/e0/e02be06465bd80a9b468f1c909d758510d519999/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/e0/e02be06465bd80a9b468f1c909d758510d519999/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/e0/e02be06465bd80a9b468f1c909d758510d519999/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/e0/e02be06465bd80a9b468f1c909d758510d519999/response_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/e0/e02be06465bd80a9b468f1c909d758510d519999/response_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/e3/e34bbaa9cc9568833d2186e4f855e82068e80beb/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/e3/e34bbaa9cc9568833d2186e4f855e82068e80beb/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/e3/e34bbaa9cc9568833d2186e4f855e82068e80beb/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/e3/e34bbaa9cc9568833d2186e4f855e82068e80beb/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/e3/e34bbaa9cc9568833d2186e4f855e82068e80beb/response_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/e3/e34bbaa9cc9568833d2186e4f855e82068e80beb/response_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/e6/e6c749c601b743583444ee4a03ce0f1e3f133c6a/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/e6/e6c749c601b743583444ee4a03ce0f1e3f133c6a/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/e6/e6c749c601b743583444ee4a03ce0f1e3f133c6a/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/e6/e6c749c601b743583444ee4a03ce0f1e3f133c6a/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/e6/e6c749c601b743583444ee4a03ce0f1e3f133c6a/response_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/e6/e6c749c601b743583444ee4a03ce0f1e3f133c6a/response_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/e8/e82ff059f597c4d7dbc5040a7dac2a5d44622a30/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/e8/e82ff059f597c4d7dbc5040a7dac2a5d44622a30/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/e8/e82ff059f597c4d7dbc5040a7dac2a5d44622a30/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/e8/e82ff059f597c4d7dbc5040a7dac2a5d44622a30/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/e8/e82ff059f597c4d7dbc5040a7dac2a5d44622a30/response_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/e8/e82ff059f597c4d7dbc5040a7dac2a5d44622a30/response_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/ea/ea64cfa9a0646e4a7bd2d375d044fc6844811d3c/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/ea/ea64cfa9a0646e4a7bd2d375d044fc6844811d3c/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/ea/ea64cfa9a0646e4a7bd2d375d044fc6844811d3c/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/ea/ea64cfa9a0646e4a7bd2d375d044fc6844811d3c/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/ea/ea64cfa9a0646e4a7bd2d375d044fc6844811d3c/response_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/ea/ea64cfa9a0646e4a7bd2d375d044fc6844811d3c/response_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/ee/eec1d217adcf8d83b3684b003d957a3c4a0327a7/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/ee/eec1d217adcf8d83b3684b003d957a3c4a0327a7/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/ee/eec1d217adcf8d83b3684b003d957a3c4a0327a7/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/ee/eec1d217adcf8d83b3684b003d957a3c4a0327a7/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/ee/eec1d217adcf8d83b3684b003d957a3c4a0327a7/response_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/ee/eec1d217adcf8d83b3684b003d957a3c4a0327a7/response_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/ee/eee37193f53df3ac01486c80fc2c1499bdd2f969/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/ee/eee37193f53df3ac01486c80fc2c1499bdd2f969/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/ee/eee37193f53df3ac01486c80fc2c1499bdd2f969/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/ee/eee37193f53df3ac01486c80fc2c1499bdd2f969/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/ee/eee37193f53df3ac01486c80fc2c1499bdd2f969/response_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/ee/eee37193f53df3ac01486c80fc2c1499bdd2f969/response_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/ee/eee41235760fed40a9b3d351a9982542eb7a1046/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/ee/eee41235760fed40a9b3d351a9982542eb7a1046/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/ee/eee41235760fed40a9b3d351a9982542eb7a1046/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/ee/eee41235760fed40a9b3d351a9982542eb7a1046/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/ee/eee41235760fed40a9b3d351a9982542eb7a1046/request_headers: -------------------------------------------------------------------------------- 1 | Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 2 | Accept-Language: en 3 | User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/536.3 (KHTML, like Gecko) Chrome/19.0.1061.1 Safari/536.3 4 | Accept-Encoding: gzip,deflate -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/ee/eee41235760fed40a9b3d351a9982542eb7a1046/response_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/ee/eee41235760fed40a9b3d351a9982542eb7a1046/response_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/ef/ef14589d3a21a6044cb6ba5725123029e47f773d/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/ef/ef14589d3a21a6044cb6ba5725123029e47f773d/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/ef/ef14589d3a21a6044cb6ba5725123029e47f773d/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/ef/ef14589d3a21a6044cb6ba5725123029e47f773d/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/ef/ef14589d3a21a6044cb6ba5725123029e47f773d/response_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/ef/ef14589d3a21a6044cb6ba5725123029e47f773d/response_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/f0/f05bbb8da327493af03068d9f22bd84a824f54b7/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/f0/f05bbb8da327493af03068d9f22bd84a824f54b7/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/f0/f05bbb8da327493af03068d9f22bd84a824f54b7/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/f0/f05bbb8da327493af03068d9f22bd84a824f54b7/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/f0/f05bbb8da327493af03068d9f22bd84a824f54b7/response_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/f0/f05bbb8da327493af03068d9f22bd84a824f54b7/response_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/f5/f5f13abca021aed8addf17e821d4b13a6eef7702/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/f5/f5f13abca021aed8addf17e821d4b13a6eef7702/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/f5/f5f13abca021aed8addf17e821d4b13a6eef7702/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/f5/f5f13abca021aed8addf17e821d4b13a6eef7702/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/f5/f5f13abca021aed8addf17e821d4b13a6eef7702/response_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/f5/f5f13abca021aed8addf17e821d4b13a6eef7702/response_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/f6/f64965e2a99674bae3d21fcf46fa7f35540915a9/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/f6/f64965e2a99674bae3d21fcf46fa7f35540915a9/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/f6/f64965e2a99674bae3d21fcf46fa7f35540915a9/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/f6/f64965e2a99674bae3d21fcf46fa7f35540915a9/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/f6/f64965e2a99674bae3d21fcf46fa7f35540915a9/response_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/f6/f64965e2a99674bae3d21fcf46fa7f35540915a9/response_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/fb/fbd85abae9d55a3f69720bd6b83b719d1e20b002/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/fb/fbd85abae9d55a3f69720bd6b83b719d1e20b002/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/fb/fbd85abae9d55a3f69720bd6b83b719d1e20b002/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/fb/fbd85abae9d55a3f69720bd6b83b719d1e20b002/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/fb/fbd85abae9d55a3f69720bd6b83b719d1e20b002/response_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/fb/fbd85abae9d55a3f69720bd6b83b719d1e20b002/response_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/fe/fe4a09ae3a3c0d4612152cbaf979a7246f8a300d/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/fe/fe4a09ae3a3c0d4612152cbaf979a7246f8a300d/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/fe/fe4a09ae3a3c0d4612152cbaf979a7246f8a300d/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/fe/fe4a09ae3a3c0d4612152cbaf979a7246f8a300d/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/fe/fe4a09ae3a3c0d4612152cbaf979a7246f8a300d/response_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentDetail/fe/fe4a09ae3a3c0d4612152cbaf979a7246f8a300d/response_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentSummary/16/1609ca97345c360aafe42c895d803a2eac40e189/meta: -------------------------------------------------------------------------------- 1 | {'url': 'http://sclub.jd.com/robots.txt', 'method': 'GET', 'status': 302, 'response_url': 'http://sclub.jd.com/robots.txt', 'timestamp': 1553580693.0258212} -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentSummary/16/1609ca97345c360aafe42c895d803a2eac40e189/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentSummary/16/1609ca97345c360aafe42c895d803a2eac40e189/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentSummary/16/1609ca97345c360aafe42c895d803a2eac40e189/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentSummary/16/1609ca97345c360aafe42c895d803a2eac40e189/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentSummary/16/1609ca97345c360aafe42c895d803a2eac40e189/request_headers: -------------------------------------------------------------------------------- 1 | Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 2 | Accept-Language: en 3 | User-Agent: Scrapy/1.3.3 (+http://scrapy.org) 4 | Accept-Encoding: gzip,deflate -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentSummary/16/1609ca97345c360aafe42c895d803a2eac40e189/response_body: -------------------------------------------------------------------------------- 1 | 2 | 302 Found 3 | 4 |

302 Found

5 |
JDWS/1.0.0
6 | 7 | 8 | -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentSummary/16/1609ca97345c360aafe42c895d803a2eac40e189/response_headers: -------------------------------------------------------------------------------- 1 | Server: JDWS/2.0 2 | Date: Tue, 26 Mar 2019 06:11:52 GMT 3 | Content-Type: text/html 4 | Location: https://www.jd.com/?d 5 | Via: BJ-H-NX-111(MISS), http/1.1 GZ-CT-2-JCS-35 ( [cMsSf ]) 6 | Age: 30 -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentSummary/25/25d56efbc7acb8b4959344238626b940a3309b4f/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentSummary/25/25d56efbc7acb8b4959344238626b940a3309b4f/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentSummary/25/25d56efbc7acb8b4959344238626b940a3309b4f/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentSummary/25/25d56efbc7acb8b4959344238626b940a3309b4f/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentSummary/25/25d56efbc7acb8b4959344238626b940a3309b4f/request_headers: -------------------------------------------------------------------------------- 1 | Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 2 | Accept-Language: en 3 | User-Agent: Mozilla/5.0 (Windows NT 6.0) AppleWebKit/536.5 (KHTML, like Gecko) Chrome/19.0.1084.36 Safari/536.5 4 | Accept-Encoding: gzip,deflate -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentSummary/25/25d56efbc7acb8b4959344238626b940a3309b4f/response_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentSummary/25/25d56efbc7acb8b4959344238626b940a3309b4f/response_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentSummary/70/704df34dbeec8d9aaf78c3f0613d1281ef178f35/meta: -------------------------------------------------------------------------------- 1 | {'url': 'https://www.jd.com/?d', 'method': 'GET', 'status': 200, 'response_url': 'https://www.jd.com/?d', 'timestamp': 1553580693.2736766} -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentSummary/70/704df34dbeec8d9aaf78c3f0613d1281ef178f35/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentSummary/70/704df34dbeec8d9aaf78c3f0613d1281ef178f35/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentSummary/70/704df34dbeec8d9aaf78c3f0613d1281ef178f35/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentSummary/70/704df34dbeec8d9aaf78c3f0613d1281ef178f35/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentSummary/70/704df34dbeec8d9aaf78c3f0613d1281ef178f35/request_headers: -------------------------------------------------------------------------------- 1 | Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 2 | Accept-Language: en 3 | User-Agent: Scrapy/1.3.3 (+http://scrapy.org) 4 | Accept-Encoding: gzip,deflate -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentSummary/70/704df34dbeec8d9aaf78c3f0613d1281ef178f35/response_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentSummary/70/704df34dbeec8d9aaf78c3f0613d1281ef178f35/response_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentSummary/70/704df34dbeec8d9aaf78c3f0613d1281ef178f35/response_headers: -------------------------------------------------------------------------------- 1 | Server: JDWS/2.0 2 | Date: Tue, 26 Mar 2019 06:11:33 GMT 3 | Content-Type: text/html; charset=utf-8 4 | Vary: Accept-Encoding 5 | Expires: Tue, 26 Mar 2019 06:11:39 GMT 6 | Cache-Control: max-age=30 7 | Content-Encoding: gzip 8 | Ser: 101.113 9 | Via: BJ-H-NX-102(HIT), http/1.1 GZ-CT-2-JCS-46 ( [cRs f ]) 10 | Age: 20 11 | Strict-Transport-Security: max-age=3153600 -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentSummary/b6/b6ef6257d63de037ec0d897020b7af075fb36ccf/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentSummary/b6/b6ef6257d63de037ec0d897020b7af075fb36ccf/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentSummary/b6/b6ef6257d63de037ec0d897020b7af075fb36ccf/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentSummary/b6/b6ef6257d63de037ec0d897020b7af075fb36ccf/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentSummary/b6/b6ef6257d63de037ec0d897020b7af075fb36ccf/request_headers: -------------------------------------------------------------------------------- 1 | Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 2 | Accept-Language: en 3 | User-Agent: Mozilla/5.0 (Windows NT 5.1) AppleWebKit/536.3 (KHTML, like Gecko) Chrome/19.0.1063.0 Safari/536.3 4 | Accept-Encoding: gzip,deflate -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentSummary/b6/b6ef6257d63de037ec0d897020b7af075fb36ccf/response_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentSummary/b6/b6ef6257d63de037ec0d897020b7af075fb36ccf/response_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentSummary/b6/b6ef6257d63de037ec0d897020b7af075fb36ccf/response_headers: -------------------------------------------------------------------------------- 1 | Server: JDWS/2.0 2 | Date: Tue, 26 Mar 2019 09:19:27 GMT 3 | Content-Type: text/html;charset=GBK 4 | Vary: Accept-Encoding 5 | Set-Cookie: JSESSIONID=069D1D3DF1CF2AD4A742A3F24087C401.s1; Path=/ 6 | Set-Cookie: jwotest_product=99; Domain=club.jd.com; Expires=Tue, 02-Apr-2019 09:19:27 GMT; Path=/ 7 | Content-Encoding: gzip 8 | Via: BJ-Y-NX-103(MISS), http/1.1 BJ-EDU-1-JCS-33 ( [cMsSf ]) 9 | Age: 0 -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentSummary/c6/c6b4c9714a2539c1e03b5a16216b3a126cf6943a/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentSummary/c6/c6b4c9714a2539c1e03b5a16216b3a126cf6943a/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentSummary/c6/c6b4c9714a2539c1e03b5a16216b3a126cf6943a/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentSummary/c6/c6b4c9714a2539c1e03b5a16216b3a126cf6943a/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentSummary/c6/c6b4c9714a2539c1e03b5a16216b3a126cf6943a/request_headers: -------------------------------------------------------------------------------- 1 | Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 2 | Accept-Language: en 3 | User-Agent: Scrapy/1.3.3 (+http://scrapy.org) 4 | Accept-Encoding: gzip,deflate -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentSummary/c6/c6b4c9714a2539c1e03b5a16216b3a126cf6943a/response_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommentSummary/c6/c6b4c9714a2539c1e03b5a16216b3a126cf6943a/response_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommentSummary/c6/c6b4c9714a2539c1e03b5a16216b3a126cf6943a/response_headers: -------------------------------------------------------------------------------- 1 | Server: JDWS/2.0 2 | Date: Tue, 26 Mar 2019 06:11:52 GMT 3 | Content-Type: text/html;charset=GBK 4 | Vary: Accept-Encoding 5 | Set-Cookie: JSESSIONID=F1FE5C0E5CB1E27FAF78FC69212133E5.s1; Path=/ 6 | Content-Encoding: gzip 7 | Via: BJ-Y-NX-114(MISS), http/1.1 GZ-CT-2-JCS-37 ( [cMsSf ]) 8 | Age: 15 -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommodityInfo/20/20699dc4485802e08c142b6768a41d9ca78d6720/meta: -------------------------------------------------------------------------------- 1 | {'url': 'https://search.jd.com/Search?keyword=%E6%89%8B%E6%9C%BA&enc=utf-8&qrst=1&rt=1&stop=1&vt=2&s=54&click=0&page=1', 'method': 'GET', 'status': 200, 'response_url': 'https://search.jd.com/Search?keyword=%E6%89%8B%E6%9C%BA&enc=utf-8&qrst=1&rt=1&stop=1&vt=2&s=54&click=0&page=1', 'timestamp': 1553434674.8125608} -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommodityInfo/20/20699dc4485802e08c142b6768a41d9ca78d6720/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommodityInfo/20/20699dc4485802e08c142b6768a41d9ca78d6720/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommodityInfo/20/20699dc4485802e08c142b6768a41d9ca78d6720/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommodityInfo/20/20699dc4485802e08c142b6768a41d9ca78d6720/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommodityInfo/20/20699dc4485802e08c142b6768a41d9ca78d6720/request_headers: -------------------------------------------------------------------------------- 1 | Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 2 | Accept-Language: en 3 | User-Agent: Scrapy/1.3.3 (+http://scrapy.org) 4 | Accept-Encoding: gzip,deflate -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommodityInfo/20/20699dc4485802e08c142b6768a41d9ca78d6720/response_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommodityInfo/20/20699dc4485802e08c142b6768a41d9ca78d6720/response_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommodityInfo/45/45cac7f372c45331146d2b7d528302ca34ed63d7/meta: -------------------------------------------------------------------------------- 1 | {'url': 'https://search.jd.com/robots.txt', 'method': 'GET', 'status': 302, 'response_url': 'https://search.jd.com/robots.txt', 'timestamp': 1553413101.8445067} -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommodityInfo/45/45cac7f372c45331146d2b7d528302ca34ed63d7/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommodityInfo/45/45cac7f372c45331146d2b7d528302ca34ed63d7/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommodityInfo/45/45cac7f372c45331146d2b7d528302ca34ed63d7/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommodityInfo/45/45cac7f372c45331146d2b7d528302ca34ed63d7/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommodityInfo/45/45cac7f372c45331146d2b7d528302ca34ed63d7/request_headers: -------------------------------------------------------------------------------- 1 | Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 2 | Accept-Language: en 3 | User-Agent: Scrapy/1.3.3 (+http://scrapy.org) 4 | Accept-Encoding: gzip,deflate -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommodityInfo/45/45cac7f372c45331146d2b7d528302ca34ed63d7/response_body: -------------------------------------------------------------------------------- 1 | Found. 2 | 3 | -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommodityInfo/45/45cac7f372c45331146d2b7d528302ca34ed63d7/response_headers: -------------------------------------------------------------------------------- 1 | Server: jfe 2 | Date: Sun, 24 Mar 2019 07:38:21 GMT 3 | Content-Type: text/html; charset=utf-8 4 | Access-Control-Allow-Origin: * 5 | Location: https://www.jd.com/error.aspx 6 | X-Content-Type-Options: nosniff 7 | X-Frame-Options: DENY 8 | X-Xss-Protection: 1; mode=block 9 | Expires: Sun, 24 Mar 2019 07:38:21 GMT 10 | Cache-Control: max-age=0 11 | Strict-Transport-Security: max-age=86400 -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommodityInfo/6e/6e6780b78a9b420019fa37ce2b25ac8e941dc80f/meta: -------------------------------------------------------------------------------- 1 | {'url': 'https://search.jd.com/Search?keyword=%E6%89%8B%E6%9C%BA%E8%86%9C&enc=utf-8&qrst=1&rt=1&stop=1&vt=2&s=54&click=0&page=1', 'method': 'GET', 'status': 200, 'response_url': 'https://search.jd.com/Search?keyword=%E6%89%8B%E6%9C%BA%E8%86%9C&enc=utf-8&qrst=1&rt=1&stop=1&vt=2&s=54&click=0&page=1', 'timestamp': 1553430918.291901} -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommodityInfo/6e/6e6780b78a9b420019fa37ce2b25ac8e941dc80f/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommodityInfo/6e/6e6780b78a9b420019fa37ce2b25ac8e941dc80f/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommodityInfo/6e/6e6780b78a9b420019fa37ce2b25ac8e941dc80f/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommodityInfo/6e/6e6780b78a9b420019fa37ce2b25ac8e941dc80f/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommodityInfo/6e/6e6780b78a9b420019fa37ce2b25ac8e941dc80f/request_headers: -------------------------------------------------------------------------------- 1 | Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 2 | Accept-Language: en 3 | User-Agent: Scrapy/1.3.3 (+http://scrapy.org) 4 | Accept-Encoding: gzip,deflate -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommodityInfo/6e/6e6780b78a9b420019fa37ce2b25ac8e941dc80f/response_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommodityInfo/6e/6e6780b78a9b420019fa37ce2b25ac8e941dc80f/response_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommodityInfo/91/91d1feee2fb8d255ffc5358d869b2def6fd8fb89/meta: -------------------------------------------------------------------------------- 1 | {'url': 'https://search.jd.com/Search?keyword=nike&enc=utf-8&qrst=1&rt=1&stop=1&vt=2&s=54&click=0&page=1', 'method': 'GET', 'status': 200, 'response_url': 'https://search.jd.com/Search?keyword=nike&enc=utf-8&qrst=1&rt=1&stop=1&vt=2&s=54&click=0&page=1', 'timestamp': 1553413193.2940364} -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommodityInfo/91/91d1feee2fb8d255ffc5358d869b2def6fd8fb89/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommodityInfo/91/91d1feee2fb8d255ffc5358d869b2def6fd8fb89/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommodityInfo/91/91d1feee2fb8d255ffc5358d869b2def6fd8fb89/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommodityInfo/91/91d1feee2fb8d255ffc5358d869b2def6fd8fb89/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommodityInfo/91/91d1feee2fb8d255ffc5358d869b2def6fd8fb89/request_headers: -------------------------------------------------------------------------------- 1 | Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 2 | Accept-Language: en 3 | User-Agent: Scrapy/1.3.3 (+http://scrapy.org) 4 | Accept-Encoding: gzip,deflate -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommodityInfo/91/91d1feee2fb8d255ffc5358d869b2def6fd8fb89/response_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommodityInfo/91/91d1feee2fb8d255ffc5358d869b2def6fd8fb89/response_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommodityInfo/9d/9d0ba8b3fa355d7d57844e9cec039fb9089bb209/meta: -------------------------------------------------------------------------------- 1 | {'url': 'https://search.jd.com/Search?keyword=airpods&enc=utf-8&qrst=1&rt=1&stop=1&vt=2&s=54&click=0&page=1', 'method': 'GET', 'status': 200, 'response_url': 'https://search.jd.com/Search?keyword=airpods&enc=utf-8&qrst=1&rt=1&stop=1&vt=2&s=54&click=0&page=1', 'timestamp': 1553413102.5281124} -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommodityInfo/9d/9d0ba8b3fa355d7d57844e9cec039fb9089bb209/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommodityInfo/9d/9d0ba8b3fa355d7d57844e9cec039fb9089bb209/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommodityInfo/9d/9d0ba8b3fa355d7d57844e9cec039fb9089bb209/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommodityInfo/9d/9d0ba8b3fa355d7d57844e9cec039fb9089bb209/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommodityInfo/9d/9d0ba8b3fa355d7d57844e9cec039fb9089bb209/request_headers: -------------------------------------------------------------------------------- 1 | Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 2 | Accept-Language: en 3 | User-Agent: Scrapy/1.3.3 (+http://scrapy.org) 4 | Accept-Encoding: gzip,deflate -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommodityInfo/9d/9d0ba8b3fa355d7d57844e9cec039fb9089bb209/response_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommodityInfo/9d/9d0ba8b3fa355d7d57844e9cec039fb9089bb209/response_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommodityInfo/a1/a1d1c46c76ac3802722e3dac162e51a9218ec55d/meta: -------------------------------------------------------------------------------- 1 | {'url': 'https://www.jd.com/error.aspx', 'method': 'GET', 'status': 200, 'response_url': 'https://www.jd.com/error.aspx', 'timestamp': 1553413102.1193488} -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommodityInfo/a1/a1d1c46c76ac3802722e3dac162e51a9218ec55d/pickled_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommodityInfo/a1/a1d1c46c76ac3802722e3dac162e51a9218ec55d/pickled_meta -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommodityInfo/a1/a1d1c46c76ac3802722e3dac162e51a9218ec55d/request_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommodityInfo/a1/a1d1c46c76ac3802722e3dac162e51a9218ec55d/request_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommodityInfo/a1/a1d1c46c76ac3802722e3dac162e51a9218ec55d/request_headers: -------------------------------------------------------------------------------- 1 | Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 2 | Accept-Language: en 3 | User-Agent: Scrapy/1.3.3 (+http://scrapy.org) 4 | Accept-Encoding: gzip,deflate -------------------------------------------------------------------------------- /spiderApp/JDSpider/.scrapy/httpcache/getCommodityInfo/a1/a1d1c46c76ac3802722e3dac162e51a9218ec55d/response_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/.scrapy/httpcache/getCommodityInfo/a1/a1d1c46c76ac3802722e3dac162e51a9218ec55d/response_body -------------------------------------------------------------------------------- /spiderApp/JDSpider/JDSpider/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/JDSpider/__init__.py -------------------------------------------------------------------------------- /spiderApp/JDSpider/JDSpider/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/JDSpider/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /spiderApp/JDSpider/JDSpider/__pycache__/items.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/JDSpider/__pycache__/items.cpython-36.pyc -------------------------------------------------------------------------------- /spiderApp/JDSpider/JDSpider/__pycache__/pipelines.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/JDSpider/__pycache__/pipelines.cpython-36.pyc -------------------------------------------------------------------------------- /spiderApp/JDSpider/JDSpider/__pycache__/settings.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/JDSpider/__pycache__/settings.cpython-36.pyc -------------------------------------------------------------------------------- /spiderApp/JDSpider/JDSpider/entrypoint.py: -------------------------------------------------------------------------------- 1 | # -*- coding:utf-8 -*- 2 | """ 3 | @author:ZheYu 4 | @file:entrypoint.py 5 | @time:2018/4/2210:47 6 | """ 7 | 8 | from scrapy.cmdline import execute 9 | # execute(['scrapy','crawl','getCommodityInfo','-a','searchKey=手机','-a','category=electronics','-a','num=60']) 10 | execute(['scrapy','crawl','getCommentDetail','-a','uniqueId=43172916757']) 11 | # execute(['scrapy','crawl','getCommentSummary','-a','uniqueId=6157652']) 12 | # -------------------------------------------------------------------------------- /spiderApp/JDSpider/JDSpider/spiders/__init__.py: -------------------------------------------------------------------------------- 1 | # This package will contain the spiders of your Scrapy project 2 | # 3 | # Please refer to the documentation for information on how to create and manage 4 | # your spiders. 5 | -------------------------------------------------------------------------------- /spiderApp/JDSpider/JDSpider/spiders/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/JDSpider/spiders/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /spiderApp/JDSpider/JDSpider/spiders/__pycache__/getCommentDetail.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/JDSpider/spiders/__pycache__/getCommentDetail.cpython-36.pyc -------------------------------------------------------------------------------- /spiderApp/JDSpider/JDSpider/spiders/__pycache__/getCommentSummary.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/JDSpider/spiders/__pycache__/getCommentSummary.cpython-36.pyc -------------------------------------------------------------------------------- /spiderApp/JDSpider/JDSpider/spiders/__pycache__/getCommodityInfo.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/JDSpider/spiders/__pycache__/getCommodityInfo.cpython-36.pyc -------------------------------------------------------------------------------- /spiderApp/JDSpider/build/lib/JDSpider/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZheYuuu/Commodity-Comment-crawler-with-analysis/7c5f5edc6f01a60f6aa4f0972cd21c609467ebee/spiderApp/JDSpider/build/lib/JDSpider/__init__.py -------------------------------------------------------------------------------- /spiderApp/JDSpider/build/lib/JDSpider/entrypoint.py: -------------------------------------------------------------------------------- 1 | # -*- coding:utf-8 -*- 2 | """ 3 | @author:ZheYu 4 | @file:entrypoint.py 5 | @time:2018/4/2210:47 6 | """ 7 | 8 | from scrapy.cmdline import execute 9 | # execute(['scrapy','crawl','getCommodityInfo','-a','searchKey=手机','-a','category=electronics','-a','num=60']) 10 | execute(['scrapy','crawl','getCommentDetail','-a','uniqueId=43172916757']) 11 | # execute(['scrapy','crawl','getCommentSummary','-a','uniqueId=6157652']) 12 | # -------------------------------------------------------------------------------- /spiderApp/JDSpider/build/lib/JDSpider/spiders/__init__.py: -------------------------------------------------------------------------------- 1 | # This package will contain the spiders of your Scrapy project 2 | # 3 | # Please refer to the documentation for information on how to create and manage 4 | # your spiders. 5 | -------------------------------------------------------------------------------- /spiderApp/JDSpider/project.egg-info/PKG-INFO: -------------------------------------------------------------------------------- 1 | Metadata-Version: 1.0 2 | Name: project 3 | Version: 1.0 4 | Summary: UNKNOWN 5 | Home-page: UNKNOWN 6 | Author: UNKNOWN 7 | Author-email: UNKNOWN 8 | License: UNKNOWN 9 | Description: UNKNOWN 10 | Platform: UNKNOWN 11 | -------------------------------------------------------------------------------- /spiderApp/JDSpider/project.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /spiderApp/JDSpider/project.egg-info/entry_points.txt: -------------------------------------------------------------------------------- 1 | [scrapy] 2 | settings = JDSpider.settings 3 | 4 | -------------------------------------------------------------------------------- /spiderApp/JDSpider/project.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | JDSpider 2 | -------------------------------------------------------------------------------- /spiderApp/JDSpider/scrapy.cfg: -------------------------------------------------------------------------------- 1 | # Automatically created by: scrapy startproject 2 | # 3 | # For more information about the [deploy] section see: 4 | # https://scrapyd.readthedocs.org/en/latest/deploy.html 5 | 6 | [settings] 7 | default = JDSpider.settings 8 | 9 | [deploy:JD] 10 | url = http://localhost:6800/ 11 | project = JDSpider 12 | -------------------------------------------------------------------------------- /spiderApp/JDSpider/setup.py: -------------------------------------------------------------------------------- 1 | # Automatically created by: scrapyd-deploy 2 | 3 | from setuptools import setup, find_packages 4 | 5 | setup( 6 | name = 'project', 7 | version = '1.0', 8 | packages = find_packages(), 9 | entry_points = {'scrapy': ['settings = JDSpider.settings']}, 10 | ) 11 | --------------------------------------------------------------------------------