@@ -84,14 +84,14 @@ async def db_query_create_table(
8484 Generates a create table query in the database.
8585
8686 Parameters
87- ++++++++++
87+ ----------
8888 table_name : str
8989 The name of the table to be created.
9090 cols : list[str]
9191 Columns of the table.
9292
9393 Examples
94- ++++++++
94+ --------
9595
9696 >>> import asyncio
9797 >>> from dffml import *
@@ -141,14 +141,14 @@ async def db_query_insert(self, *, table_name: str, data: Dict[str, Any]):
141141 Generates an insert query in the database.
142142
143143 Parameters
144- ++++++++++
144+ ----------
145145 table_name : str
146146 The name of the table to insert data in to.
147147 data : dict
148148 Data to be inserted into the table.
149149
150150 Examples
151- ++++++++
151+ --------
152152
153153 >>> import asyncio
154154 >>> from dffml import *
@@ -223,7 +223,7 @@ async def db_query_update(
223223 Generates an Update table query in the database.
224224
225225 Parameters
226- ++++++++++
226+ ----------
227227 table_name : str
228228 The name of the table to insert data in to.
229229 data : dict
@@ -232,7 +232,7 @@ async def db_query_update(
232232 List of query conditions.
233233
234234 Examples
235- ++++++++
235+ --------
236236
237237 >>> import asyncio
238238 >>> from dffml import *
@@ -313,14 +313,14 @@ async def db_query_remove(
313313 Generates a remove table query in the database.
314314
315315 Parameters
316- ++++++++++
316+ ----------
317317 table_name : str
318318 The name of the table to insert data in to.
319319 conditions : Conditions
320320 Query conditions.
321321
322322 Examples
323- ++++++++
323+ --------
324324
325325 >>> import asyncio
326326 >>> from dffml import *
@@ -395,7 +395,7 @@ async def db_query_lookup(
395395 Generates a lookup query in the database.
396396
397397 Parameters
398- ++++++++++
398+ ----------
399399 table_name : str
400400 The name of the table.
401401 cols : list[str]
@@ -404,7 +404,7 @@ async def db_query_lookup(
404404 Query conditions.
405405
406406 Examples
407- ++++++++
407+ --------
408408
409409 >>> import asyncio
410410 >>> from dffml import *
@@ -466,14 +466,14 @@ async def db_query_insert_or_update(
466466 Automatically uses the better suited operation, insert query or update query.
467467
468468 Parameters
469- ++++++++++
469+ ----------
470470 table_name : str
471471 The name of the table to insert data in to.
472472 data : dict
473473 Data to be inserted or updated into the table.
474474
475475 Examples
476- ++++++++
476+ --------
477477
478478 >>> import asyncio
479479 >>> from dffml import *
0 commit comments