linkarchivetools 0.1.16__py3-none-any.whl → 0.1.17__py3-none-any.whl
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.
- linkarchivetools/utils/reflected.py +10 -0
- {linkarchivetools-0.1.16.dist-info → linkarchivetools-0.1.17.dist-info}/METADATA +1 -1
- {linkarchivetools-0.1.16.dist-info → linkarchivetools-0.1.17.dist-info}/RECORD +5 -5
- {linkarchivetools-0.1.16.dist-info → linkarchivetools-0.1.17.dist-info}/LICENSE +0 -0
- {linkarchivetools-0.1.16.dist-info → linkarchivetools-0.1.17.dist-info}/WHEEL +0 -0
|
@@ -42,6 +42,11 @@ class ReflectedTable(object):
|
|
|
42
42
|
|
|
43
43
|
index.create(bind=self.engine)
|
|
44
44
|
|
|
45
|
+
def enable_sqlite_wal(self, table_name):
|
|
46
|
+
sql_text = f"PRAGMA journal_mode=WAL;"
|
|
47
|
+
self.connection.execute(text(sql_text))
|
|
48
|
+
self.connection.commit()
|
|
49
|
+
|
|
45
50
|
def vacuum(self):
|
|
46
51
|
self.connection.execute(text("VACUUM"))
|
|
47
52
|
|
|
@@ -129,6 +134,11 @@ class ReflectedGenericTable(object):
|
|
|
129
134
|
self.connection.execute(text(sql_text))
|
|
130
135
|
self.connection.commit()
|
|
131
136
|
|
|
137
|
+
def enable_sqlite_wal(self):
|
|
138
|
+
sql_text = f"PRAGMA journal_mode=WAL;"
|
|
139
|
+
self.connection.execute(text(sql_text))
|
|
140
|
+
self.connection.commit()
|
|
141
|
+
|
|
132
142
|
def create_index(self, column_name):
|
|
133
143
|
index_name = f"idx_{self.table.name}_{column_name}"
|
|
134
144
|
index = Index(index_name, getattr(table.c, column_name))
|
|
@@ -11,8 +11,8 @@ linkarchivetools/json2db.py,sha256=IF01_KhMmHcdm4jfagU_kuJGCEtRwgwjZDuxLtlT7EQ,7
|
|
|
11
11
|
linkarchivetools/tableconfig.py,sha256=TsYYl2kbAkP035XElHUmeJqH5Kugl7bwi4ClIwJ6MSA,1731
|
|
12
12
|
linkarchivetools/utils/alchemysearch.py,sha256=voUDEBP4RShlGj8E0iHg83jP8JYJQKLOaJjCZNi4LMY,5689
|
|
13
13
|
linkarchivetools/utils/omnisearch.py,sha256=7HVzz8LesS3Yo6exdlPf4WdPbi2DQekPR2CmkJcfBbI,10115
|
|
14
|
-
linkarchivetools/utils/reflected.py,sha256=
|
|
15
|
-
linkarchivetools-0.1.
|
|
16
|
-
linkarchivetools-0.1.
|
|
17
|
-
linkarchivetools-0.1.
|
|
18
|
-
linkarchivetools-0.1.
|
|
14
|
+
linkarchivetools/utils/reflected.py,sha256=o0_DOMNAF8b1dbOz3gFFB5YyTuqRYsiIQPA9v2fPQUQ,16076
|
|
15
|
+
linkarchivetools-0.1.17.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
|
16
|
+
linkarchivetools-0.1.17.dist-info/METADATA,sha256=UvRtshlyJZZJ2fg9D7mMafKr9NNVpaYQ_uk9UIs7mRw,1203
|
|
17
|
+
linkarchivetools-0.1.17.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
18
|
+
linkarchivetools-0.1.17.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|