Tweepy Python比较带有ID的两个列表

时间:2017-01-05 12:38:45

标签: python csv

我有一个csv文件作为初始列表和一个文本文件,其中使用Tweepy收集了Twitter ID。现在我想删除文本文件中不在csv文件中的所有ID。 我创建了一些代码,但我认为拆分存在问题,因为我只返回一个空文本文件。 我要过滤的列表格式为:名称,ID,[222286905,314205957,2216185789,102454880,3336328482,...]

{
  "type": "maps",
  "total": 3,
  "page": 1,
  "data": [
    {
      "id": "edited",
      "name": "Mapa de Mantención en Linea",
      "owner": "edited",
      "epsg": "900913",
      "active": "1",
      "copyright": "",
      "proj4": "+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0 +k=1.0 +units=m +nadgrids=@null +no_defs",
      "units": "meter",
      "maxzoom": "0",
      "mobileacess": "f",
      "bgcolor": "#417893",
      "wmsaccess": null,
      "modified": 1483563460,
      "accessed": 1483563460,
      "created": 1483021672,
      "description": "",
      "maptype": null,
      "assets": null,
      "rating": "0",
      "units_proj4": "meter",
      "visited": "31",
      "resource_id": "6102219",
      "measure_unit": "meter",
      "share": "f",
      "bounds": "    {\"xmin\":-8027875.3326789,\"xmax\":-7742459.4690621,\"ymin\":-4065685.5344885,\"ymax\":-3929474.7500843}"
    },
    {
      "id": "edited",
      "name": "Mapa de Operaciones",
      "owner": "edited",
      "epsg": "900913",
      "active": "1",
      "copyright": "",
      "proj4": "+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0 +k=1.0 +units=m +nadgrids=@null +no_defs",
      "units": "meter",
      "maxzoom": "0",
      "mobileacess": "f",
      "bgcolor": "#417893",
      "wmsaccess": null,
      "modified": 1483563473,
      "accessed": 1483563473,
      "created": 1483021672,
      "description": "",
      "maptype": null,
      "assets": null,
      "rating": "0",
      "units_proj4": "meter",
      "visited": "45",
      "resource_id": "6102603",
      "measure_unit": "meter",
      "share": "f",
      "bounds": "{\"xmin\":-8027263.8364526,\"xmax\":-7741847.9728358,\"ymin\":-4075469.474109,\"ymax\":-3939258.6897048}"
    },
    {
      "id": "edited",
      "name": "Mapa M&IC",
      "owner": "edited",
      "epsg": "900913",
      "active": "1",
      "copyright": "",
      "proj4": "+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0 +k=1.0 +units=m +nadgrids=@null +no_defs",
      "units": "meter",
      "maxzoom": "0",
      "mobileacess": "f",
      "bgcolor": "#417893",
      "wmsaccess": null,
      "modified": 1483563449,
      "accessed": 1483563449,
      "created": 1483021672,
      "description": "",
      "maptype": null,
      "assets": null,
      "rating": "0",
      "units_proj4": "meter",
      "visited": "35",
      "resource_id": "6102604",
      "measure_unit": "meter",
      "share": "f",
      "bounds": "{\"xmin\":-8028181.080792,\"xmax\":-7742765.2171752,\"ymin\":-4074552.2297696,\"ymax\":-3938341.4453654}"
    }
  ]
}

0 个答案:

没有答案