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.7
to
0.0.8
+19
-5
PKG-INFO
Metadata-Version: 2.1
Name: SQLConn
Version: 0.0.7
Version: 0.0.8
Summary: This package facilitates easy SQL database integration.

@@ -9,8 +9,10 @@ Home-page: https://github.com/janyoungjin/SQLConn

Description-Content-Type: text/markdown
Requires-Dist: mysqlclient
Requires-Dist: pandas
Requires-Dist: cx_oracle
Requires-Dist: sqlalchemy
Requires-Dist: MySQL-python
Requires-Dist: pymssql
Requires-Dist: psycopg2
Requires-Dist: pymssql
Requires-Dist: sqlalchemy
Requires-Dist: sqlite3
Provides-Extra: oracle
Requires-Dist: cx_Oracle; extra == "oracle"

@@ -47,2 +49,8 @@ # SQLConn

만약 OracleConn클래스를 쓰고 싶다면 아래와 같이 설치해야합니다:
```bash
pip install SQLConn['oracle']
```
### 클래스 소개

@@ -150,2 +158,8 @@

If you want to use the OracleConn class, you must install it as follows:
```bash
pip install SQLConn['oracle']
```
### class info

@@ -152,0 +166,0 @@

@@ -31,2 +31,8 @@ # SQLConn

만약 OracleConn클래스를 쓰고 싶다면 아래와 같이 설치해야합니다:
```bash
pip install SQLConn['oracle']
```
### 클래스 소개

@@ -134,2 +140,8 @@

If you want to use the OracleConn class, you must install it as follows:
```bash
pip install SQLConn['oracle']
```
### class info

@@ -136,0 +148,0 @@

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

name='SQLConn',
version='0.0.7',
version='0.0.8',
description='This package facilitates easy SQL database integration.',

@@ -14,3 +14,13 @@ long_description=long_description,

author='janyoungjin',
install_requires=['mysqlclient', 'pandas', 'cx_oracle', 'psycopg2', 'pymssql','sqlalchemy'],
install_requires=[
'pandas',
'sqlalchemy',
'MySQL-python',
'pymssql',
'psycopg2',
'sqlite3'
],
extras_require={
'oracle': ['cx_Oracle']
},
packages=find_packages(exclude=[]),

@@ -17,0 +27,0 @@ url='https://github.com/janyoungjin/SQLConn',

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

@@ -9,8 +9,10 @@ Home-page: https://github.com/janyoungjin/SQLConn

Description-Content-Type: text/markdown
Requires-Dist: mysqlclient
Requires-Dist: pandas
Requires-Dist: cx_oracle
Requires-Dist: sqlalchemy
Requires-Dist: MySQL-python
Requires-Dist: pymssql
Requires-Dist: psycopg2
Requires-Dist: pymssql
Requires-Dist: sqlalchemy
Requires-Dist: sqlite3
Provides-Extra: oracle
Requires-Dist: cx_Oracle; extra == "oracle"

@@ -47,2 +49,8 @@ # SQLConn

만약 OracleConn클래스를 쓰고 싶다면 아래와 같이 설치해야합니다:
```bash
pip install SQLConn['oracle']
```
### 클래스 소개

@@ -150,2 +158,8 @@

If you want to use the OracleConn class, you must install it as follows:
```bash
pip install SQLConn['oracle']
```
### class info

@@ -152,0 +166,0 @@

@@ -1,6 +0,9 @@

mysqlclient
pandas
cx_oracle
sqlalchemy
MySQL-python
pymssql
psycopg2
pymssql
sqlalchemy
sqlite3
[oracle]
cx_Oracle