JMESPath 日期过滤

JMESPath date filtering

我正在尝试将 Ansible 脚本转换为 Python AWS lambda 函数。在我的 Python 脚本中,我使用 jmespath library 按日期过滤,它以 ISO 8601 格式的字符串形式给出。

我的过滤器在我的 Ansible 脚本中工作,也使用 JMESPath website tool。我不明白为什么我的 Python 版本不起作用; Ansible 写成 Python 所以我希望它能以同样的方式工作。

这在 Ansible 中有效:

 - name: parse groups
      debug:
        msg: "{{ results_gitlabGroupsProjects | to_json | from_json  | json_query(projects_query) }}"
      vars:
        projects_query: "json[?last_activity_at > `{{gitlab_date}}`].{name: name, id: id, last_activity_at: last_activity_at }"
      register: gitlabGroupsProjects2

当我尝试在 Python 中做同样的事情时,我得到一个空列表,[]:

compareTime="2020-01-15T17:55:3S.390Z"
plist2 = jmespath.search('[?last_activity_at > `str(compareTime)`]', project_data )
with open('plist2.json', 'w') as json_file:
    json.dump(plist2, json_file)

示例 JSON 数据:

[
  {
    "name": "test",
    "id": 16340975,
    "last_activity_at": "2020-01-15T20:12:49.775Z"
  },
  {
    "name": "test1",
    "id": 11111111,
    "last_activity_at": "2020-01-15T15:57:29.670Z"
  },
  {
    "name": "test2",
    "id": 222222,
    "last_activity_at": "2020-01-15T23:08:22.313Z"
  },
  {
    "name": "test3",
    "id": 133333,
    "last_activity_at": "2020-01-15T22:28:42.628Z"
  },
  {
    "name": "test4",
    "id": 444444,
    "last_activity_at": "2020-01-14T02:20:47.496Z"
  },
  {
    "name": "test5",
    "id": 555555,
    "last_activity_at": "2020-01-13T04:54:18.353Z"
  },
  {
    "name": "test6",
    "id": 66666666,
    "last_activity_at": "2020-01-12T07:12:05.858Z"
  },
  {
    "name": "test7",
    "id": 7777777,
    "last_activity_at": "2020-01-10T20:52:32.269Z"
  }
]

使用 Ansible,在 JMESPath 网站上我得到了这个输出:

[
  {
    "name": "test",
    "id": 16340975,
    "last_activity_at": "2020-01-15T20:12:49.775Z"
  },
  {
    "name": "test2",
    "id": 222222,
    "last_activity_at": "2020-01-15T23:08:22.313Z"
  },
  {
    "name": "test3",
    "id": 133333,
    "last_activity_at": "2020-01-15T22:28:42.628Z"
  }
]

您不能只将 str(compareTime) 表达式作为字符串文字放入并让 Python 理解这就是您想要替换的内容。

字符串中

'[?last_activity_at > `str(compareTime)`]'

没有什么是动态的;字符 str(compareTime) 对 Python 没有特殊含义。

Ansible 中,您使用了特殊语法 {{gitlab_date}} 来告诉 Ansible 以不同的方式处理字符串,并且 gitlab_date 变量的值为在将其用作 JMESPath 查询之前,将其放入字符串中。

在 Python 中,您需要类似的东西。例如。你可以使用 formatted string literal, or f-string:

plist2 = jmespath.search(f"[?last_activity_at > `{compareTime}`]", project_data)

字符串字面量之前的 f 告诉 Python 查找 {...} 大括号之间的任何表达式,因此 compareTime 在细绳。这很像 Ansible 语法。

以上会产生您预期的输出:

>>> jmespath.search(f"[?last_activity_at > `{compareTime}`]", project_data)
[{'name': 'test', 'id': 16340975, 'last_activity_at': '2020-01-15T20:12:49.775Z'}, {'name': 'test2', 'id': 222222, 'last_activity_at': '2020-01-15T23:08:22.313Z'}, {'name': 'test3', 'id': 133333, 'last_activity_at': '2020-01-15T22:28:42.628Z'}]
>>> from pprint import pprint
>>> pprint(_)
[{'id': 16340975,
  'last_activity_at': '2020-01-15T20:12:49.775Z',
  'name': 'test'},
 {'id': 222222,
  'last_activity_at': '2020-01-15T23:08:22.313Z',
  'name': 'test2'},
 {'id': 133333,
  'last_activity_at': '2020-01-15T22:28:42.628Z',
  'name': 'test3'}]