rgwfuncs 0.0.63__tar.gz → 0.0.64__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {rgwfuncs-0.0.63/src/rgwfuncs.egg-info → rgwfuncs-0.0.64}/PKG-INFO +1 -1
- {rgwfuncs-0.0.63 → rgwfuncs-0.0.64}/pyproject.toml +1 -1
- {rgwfuncs-0.0.63 → rgwfuncs-0.0.64}/setup.cfg +1 -1
- {rgwfuncs-0.0.63 → rgwfuncs-0.0.64}/src/rgwfuncs/df_lib.py +1 -2
- {rgwfuncs-0.0.63 → rgwfuncs-0.0.64/src/rgwfuncs.egg-info}/PKG-INFO +1 -1
- {rgwfuncs-0.0.63 → rgwfuncs-0.0.64}/LICENSE +0 -0
- {rgwfuncs-0.0.63 → rgwfuncs-0.0.64}/README.md +0 -0
- {rgwfuncs-0.0.63 → rgwfuncs-0.0.64}/src/rgwfuncs/__init__.py +0 -0
- {rgwfuncs-0.0.63 → rgwfuncs-0.0.64}/src/rgwfuncs/algebra_lib.py +0 -0
- {rgwfuncs-0.0.63 → rgwfuncs-0.0.64}/src/rgwfuncs/docs_lib.py +0 -0
- {rgwfuncs-0.0.63 → rgwfuncs-0.0.64}/src/rgwfuncs/interactive_shell_lib.py +0 -0
- {rgwfuncs-0.0.63 → rgwfuncs-0.0.64}/src/rgwfuncs/str_lib.py +0 -0
- {rgwfuncs-0.0.63 → rgwfuncs-0.0.64}/src/rgwfuncs.egg-info/SOURCES.txt +0 -0
- {rgwfuncs-0.0.63 → rgwfuncs-0.0.64}/src/rgwfuncs.egg-info/dependency_links.txt +0 -0
- {rgwfuncs-0.0.63 → rgwfuncs-0.0.64}/src/rgwfuncs.egg-info/entry_points.txt +0 -0
- {rgwfuncs-0.0.63 → rgwfuncs-0.0.64}/src/rgwfuncs.egg-info/requires.txt +0 -0
- {rgwfuncs-0.0.63 → rgwfuncs-0.0.64}/src/rgwfuncs.egg-info/top_level.txt +0 -0
@@ -1946,8 +1946,7 @@ def insert_dataframe_in_sqlite_database(
|
|
1946
1946
|
cursor = conn.cursor()
|
1947
1947
|
|
1948
1948
|
if not table_exists(cursor, tablename):
|
1949
|
-
columns_with_types = ', '.join(
|
1950
|
-
f'"{col}" {map_dtype(dtype)}' for col, dtype in zip(df.columns, df.dtypes))
|
1949
|
+
columns_with_types = ', '.join(f'"{col}" {map_dtype(dtype)}' for col, dtype in zip(df.columns, df.dtypes))
|
1951
1950
|
create_table_query = f'CREATE TABLE "{tablename}" ({columns_with_types})'
|
1952
1951
|
conn.execute(create_table_query)
|
1953
1952
|
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|