bbdd-utils 0.3.7__tar.gz → 0.3.8__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,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: bbdd_utils
3
- Version: 0.3.7
3
+ Version: 0.3.8
4
4
  Summary: insertar datos en una base de datos SQL o NoSQL
5
5
  Author: Luis_J_Domingo
6
6
  Description-Content-Type: text/markdown
@@ -78,6 +78,7 @@ def Insert(conn, data):
78
78
  # Verifica el tipo de base de datos con la que estamos trabajando
79
79
  import sqlite3
80
80
  from mysql.connector.connection import MySQLConnection
81
+ import mysql.connector
81
82
  from pymongo.database import Database
82
83
  ############# SQLite ################
83
84
  if isinstance(conn, sqlite3.Connection):
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: bbdd_utils
3
- Version: 0.3.7
3
+ Version: 0.3.8
4
4
  Summary: insertar datos en una base de datos SQL o NoSQL
5
5
  Author: Luis_J_Domingo
6
6
  Description-Content-Type: text/markdown
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name='bbdd_utils',
5
- version='0.3.7',
5
+ version='0.3.8',
6
6
  packages=find_packages(),
7
7
  install_requires=[],
8
8
  author='Luis_J_Domingo',
File without changes
File without changes
File without changes
File without changes