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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: rgwfuncs
3
- Version: 0.0.63
3
+ Version: 0.0.64
4
4
  Summary: A functional programming paradigm for mathematical modelling and data science
5
5
  Home-page: https://github.com/ryangerardwilson/rgwfunc
6
6
  Author: Ryan Gerard Wilson
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "rgwfuncs"
7
- version = "0.0.63"
7
+ version = "0.0.64"
8
8
  authors = [
9
9
  { name = "Ryan Gerard Wilson", email = "ryangerardwilson@gmail.com" },
10
10
  ]
@@ -1,6 +1,6 @@
1
1
  [metadata]
2
2
  name = rgwfuncs
3
- version = 0.0.63
3
+ version = 0.0.64
4
4
  author = Ryan Gerard Wilson
5
5
  author_email = ryangerardwilson@gmail.com
6
6
  description = A functional programming paradigm for mathematical modelling and data science
@@ -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
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: rgwfuncs
3
- Version: 0.0.63
3
+ Version: 0.0.64
4
4
  Summary: A functional programming paradigm for mathematical modelling and data science
5
5
  Home-page: https://github.com/ryangerardwilson/rgwfunc
6
6
  Author: Ryan Gerard Wilson
File without changes
File without changes