New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

SQLConn

Package Overview
Dependencies
Maintainers
1
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

SQLConn - pypi Package Compare versions

Comparing version
0.0.15
to
0.0.16
+6
-1
PKG-INFO
Metadata-Version: 2.1
Name: SQLConn
Version: 0.0.15
Version: 0.0.16
Summary: This package facilitates easy SQL database integration.

@@ -13,2 +13,7 @@ Home-page: https://github.com/janyoungjin/SQLConn

Description-Content-Type: text/markdown
Requires-Dist: pandas
Requires-Dist: sqlalchemy
Requires-Dist: pymysql
Requires-Dist: pymssql
Requires-Dist: psycopg2-binary

@@ -15,0 +20,0 @@ # SQLConn

+1
-1

@@ -8,3 +8,3 @@ from setuptools import setup, find_packages

name='SQLConn',
version='0.0.15',
version='0.0.16',
description='This package facilitates easy SQL database integration.',

@@ -11,0 +11,0 @@ long_description=long_description,

Metadata-Version: 2.1
Name: SQLConn
Version: 0.0.15
Version: 0.0.16
Summary: This package facilitates easy SQL database integration.

@@ -13,2 +13,7 @@ Home-page: https://github.com/janyoungjin/SQLConn

Description-Content-Type: text/markdown
Requires-Dist: pandas
Requires-Dist: sqlalchemy
Requires-Dist: pymysql
Requires-Dist: pymssql
Requires-Dist: psycopg2-binary

@@ -15,0 +20,0 @@ # SQLConn

@@ -66,6 +66,6 @@ from pandas import read_sql

warnings.warn(str(e))
def to_HTML(self,cmd:str):
def to_HTML(self,cmd:str,escape:bool=True):
if not (cmd.lower().startswith('select') or cmd.lower().startswith('show')):
raise ValueError("to_HTML does only supports 'select' or 'show' commands.")
return self.to_DataFrame(cmd).to_html(index=False)
return self.to_DataFrame(cmd).to_html(index=False,escape=escape)
@property

@@ -72,0 +72,0 @@ def conn(self):