Skip to main content

This package help to convert your excel files (xlsx,xls,csv) to Postgresql database.

Project description

Introduction

This package help to convert your excel files (xlsx,xls,csv) to postgresql database.

Installation

exceltopostgresql can be installed as:

pip install exceltopostgresql

Dependency

👍 pandas

👍 psycopg2

👍 sqlalchemy

QuickStart

import exceltosqlserver as ep
# generate the class instance

# STEP One, prepare your input pareameters

yourFile  = "test01.xls"  # available for xlsx, xls,csv
yourUsrID = ""  
yourPWD   = ""
yourDBname= ""
save2tableName = False  
	# False: save your file name as table name onto posgtresql 
	# or 
	# customize your table, like: "test"

# get your local host name
# this will return your local computer name for your sql server database
host_name = ep.hostname   
or 
host_name = "localhost"

# get your local ip address 
# this will return your local ip address (if your sql server can be accessed by DNS)
ip = ep.local_ip  

# you need to change your host if needed, dns: local ip address
#yourHostORip  = "localhost"   
# yourHostORip  = host_name
yourHostORip  = ip


# STEP Two  convert your data to sql server
ep.exceltoDBtable(yourFile,yourHostORip,yourUsrID,yourPWD,yourDBname,save2tableName)
output:
Successfully load excel data...
Secessfully connected to SQL Server...
Secessfully saved 'yourtable' onto Posggresql...

API Reference

exceltopostgresql.exceltoDBtable(filePath,host_ip=False,usrID =False,pwd=False,database_name=False,port:str= "5432",save2tableName=False)

Args:
            filePath (str): [path of your input file name]
            host_ip (bool, optional): [description]. Defaults to False.
            usrID (bool, optional): [description]. Defaults to False.
            pwd (bool, optional): [description]. Defaults to False.
            database_name (bool, optional): [description]. Defaults to False.
            port (str, optional): [description]. Defaults to "5432".
            save2tableName (bool, optional): [description]. Defaults to False.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

exceltopostgresql-0.0.9.tar.gz (4.0 kB view hashes)

Uploaded Source

Built Distribution

exceltopostgresql-0.0.9-py3-none-any.whl (4.9 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page