tracktolib 0.52.0__tar.gz → 0.54.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,8 +1,7 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.3
2
2
  Name: tracktolib
3
- Version: 0.52.0
3
+ Version: 0.54.0
4
4
  Summary: Utility library for python
5
- Home-page: https://github.com/tracktor/tracktolib
6
5
  License: MIT
7
6
  Keywords: utility
8
7
  Author: Julien Brayere
@@ -23,15 +22,16 @@ Provides-Extra: s3-minio
23
22
  Provides-Extra: tests
24
23
  Requires-Dist: aiobotocore (>=2.9.0) ; extra == "s3"
25
24
  Requires-Dist: asyncpg (>=0.27.0) ; extra == "pg"
26
- Requires-Dist: deepdiff (>=6.6.0) ; extra == "tests"
25
+ Requires-Dist: deepdiff (>=8.1.0) ; extra == "tests"
27
26
  Requires-Dist: fastapi (>=0.103.2) ; extra == "api"
28
27
  Requires-Dist: httpx (>=0.25.0) ; extra == "http"
29
28
  Requires-Dist: minio (>=7.2.0) ; extra == "s3-minio"
30
29
  Requires-Dist: psycopg (>=3.1.12) ; extra == "pg-sync"
31
30
  Requires-Dist: pycryptodome (>=3.20.0) ; extra == "s3-minio"
32
31
  Requires-Dist: pydantic (>=2) ; extra == "api"
33
- Requires-Dist: python-json-logger (>=2.0.4) ; extra == "logs"
32
+ Requires-Dist: python-json-logger (>=3.2.1) ; extra == "logs"
34
33
  Requires-Dist: rich (>=13.6.0) ; extra == "pg"
34
+ Project-URL: Homepage, https://github.com/tracktor/tracktolib
35
35
  Project-URL: Repository, https://github.com/tracktor/tracktolib
36
36
  Description-Content-Type: text/markdown
37
37
 
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "tracktolib"
3
- version = "0.52.0"
3
+ version = "0.54.0"
4
4
  description = "Utility library for python"
5
5
  authors = ["Julien Brayere <julien.brayere@tracktor.fr>"]
6
6
  license = "MIT"
@@ -18,13 +18,13 @@ include = [
18
18
  [tool.poetry.dependencies]
19
19
  python = ">=3.12,<4.0"
20
20
 
21
- python-json-logger = { version = ">=2.0.4", optional = true }
21
+ python-json-logger = { version = ">=3.2.1", optional = true }
22
22
  psycopg = { version = ">=3.1.12", optional = true }
23
23
  minio = { version = ">=7.2.0", optional = true }
24
24
  # Needed for minio, otherwise it raises ModuleNotFoundError: No module named 'Crypto.Cipher'
25
25
  pycryptodome = { version = ">=3.20.0", optional = true }
26
26
  aiobotocore = { version = ">=2.9.0", optional = true }
27
- deepdiff = { version = ">=6.6.0", optional = true }
27
+ deepdiff = { version = ">=8.1.0", optional = true }
28
28
  httpx = { version = ">=0.25.0", optional = true }
29
29
  fastapi = { version = ">=0.103.2", optional = true }
30
30
  pydantic = { version = ">=2", optional = true }
@@ -55,8 +55,7 @@ httpx = "^0.27.0"
55
55
  psycopg = "^3.2.1"
56
56
  minio = "^7.2.7"
57
57
  pycryptodome = "^3.20.0"
58
- aiobotocore = "^2.13.1"
59
- deepdiff = "^8.0.1"
58
+ aiobotocore = "2.15.2"
60
59
  python-json-logger = "^3.2.0"
61
60
 
62
61
 
@@ -84,7 +83,7 @@ pythonPlatform = "Linux"
84
83
 
85
84
  [tool.commitizen]
86
85
  name = "cz_conventional_commits"
87
- version = "0.52.0"
86
+ version = "0.54.0"
88
87
  tag_format = "$version"
89
88
  version_files = [
90
89
  "pyproject.toml:version"
@@ -3,7 +3,7 @@ from typing import Literal, overload, Any, TypeGuard
3
3
  from dataclasses import dataclass
4
4
 
5
5
  try:
6
- from pythonjsonlogger import jsonlogger
6
+ from pythonjsonlogger.json import JsonFormatter
7
7
  except ImportError:
8
8
  raise ImportError('Please install pythonjsonlogger or tracktolib with "log" to use this module')
9
9
 
@@ -11,7 +11,7 @@ LogFormat = Literal["json", "console"]
11
11
 
12
12
 
13
13
  @dataclass
14
- class CustomJsonFormatter(jsonlogger.JsonFormatter):
14
+ class CustomJsonFormatter(JsonFormatter):
15
15
  version: str
16
16
 
17
17
  def __init__(self, version: str, *args, **kwargs):
@@ -15,6 +15,21 @@ except ImportError:
15
15
  from .pg_utils import get_tmp_table_query
16
16
 
17
17
 
18
+ __all__ = (
19
+ "clean_tables",
20
+ "drop_db",
21
+ "fetch_all",
22
+ "fetch_count",
23
+ "fetch_one",
24
+ "get_insert_data",
25
+ "get_tables",
26
+ "insert_many",
27
+ "insert_one",
28
+ "insert_csv",
29
+ "set_seq_max",
30
+ )
31
+
32
+
18
33
  def fetch_all(engine: Connection, query: LiteralString, *data) -> list[dict]:
19
34
  with engine.cursor(row_factory=dict_row) as cur:
20
35
  resp = (cur.execute(query) if not data else cur.execute(query, data)).fetchall()
@@ -59,7 +74,7 @@ def _parse_value(v):
59
74
  return v
60
75
 
61
76
 
62
- def _get_insert_data(table: LiteralString, data: list[dict]) -> tuple[LiteralString, list[tuple[Any, ...]]]:
77
+ def get_insert_data(table: LiteralString, data: list[dict]) -> tuple[LiteralString, list[tuple[Any, ...]]]:
63
78
  keys = data[0].keys()
64
79
  _values = ",".join("%s" for _ in range(0, len(keys)))
65
80
  query = f"INSERT INTO {table} as t ({','.join(keys)}) VALUES ({_values})"
@@ -67,17 +82,37 @@ def _get_insert_data(table: LiteralString, data: list[dict]) -> tuple[LiteralStr
67
82
 
68
83
 
69
84
  def insert_many(engine: Connection, table: LiteralString, data: list[dict]):
70
- query, _data = _get_insert_data(table, data)
85
+ query, _data = get_insert_data(table, data)
71
86
  with engine.cursor() as cur:
72
87
  _ = cur.executemany(query, _data)
73
88
  engine.commit()
74
89
 
75
90
 
76
- def insert_one(engine: Connection, table: LiteralString, data: dict):
77
- query, _data = _get_insert_data(table, [data])
78
- with engine.cursor() as cur:
91
+ @overload
92
+ def insert_one(engine: Connection, table: LiteralString, data: dict, returning: None = None) -> None: ...
93
+
94
+
95
+ @overload
96
+ def insert_one(engine: Connection, table: LiteralString, data: dict, returning: list[LiteralString]) -> dict: ...
97
+
98
+
99
+ def insert_one(
100
+ engine: Connection, table: LiteralString, data: dict, returning: list[LiteralString] | None = None
101
+ ) -> dict | None:
102
+ query, _data = get_insert_data(table, [data])
103
+ _is_returning = False
104
+ if returning:
105
+ query = f"{query} RETURNING {','.join(returning)}"
106
+ _is_returning = True
107
+
108
+ with engine.cursor(row_factory=dict_row) as cur:
79
109
  _ = cur.execute(query, _data[0])
110
+ if _is_returning:
111
+ resp = cur.fetchone()
112
+ else:
113
+ resp = None
80
114
  engine.commit()
115
+ return resp
81
116
 
82
117
 
83
118
  def drop_db(conn: Connection, db_name: LiteralString):
@@ -150,6 +150,7 @@ async def list_files(
150
150
  search_query: str | None = None,
151
151
  max_items: int | None = None,
152
152
  page_size: int | None = None,
153
+ starting_token: str | None = None,
153
154
  ) -> list[S3Item]:
154
155
  """
155
156
  See https://jmespath.org/ for the search query syntax.
@@ -158,9 +159,11 @@ async def list_files(
158
159
  paginator = client.get_paginator("list_objects")
159
160
  config = {}
160
161
  if max_items is not None:
161
- config["max_items"] = max_items
162
+ config["MaxItems"] = max_items
162
163
  if page_size is not None:
163
- config["page_size"] = page_size
164
+ config["PageSize"] = page_size
165
+ if starting_token is not None:
166
+ config["StartingToken"] = starting_token
164
167
 
165
168
  page_iterator = paginator.paginate(Bucket=bucket, Prefix=path, PaginationConfig=config if config else {})
166
169
  filtered_iterator = page_iterator.search(search_query) if search_query else page_iterator
@@ -2,7 +2,7 @@ import pprint
2
2
  from typing import Iterable
3
3
 
4
4
  try:
5
- import deepdiff
5
+ import deepdiff.diff as deepdiff
6
6
  except ImportError:
7
7
  raise ImportError('Please install deepdiff or tracktolib with "tests" to use this module')
8
8
 
File without changes
File without changes