This package help convert your excel files (xlsx,xls,csv) to SQL Server Database.
Project description
Introduction
This package help to convert your excel files (xlsx,xls,csv) to SQL Server database.
Installation
exceltosqlserver can be installed as:
pip install exceltosqlserver
Dependency
👍 pandas
👍 pyodbc
QuickStart
from exceltosqlserver import ExcelToDB, hostname, local_ip
# STEP One, prepare your input pareameters
yourFile = "test01.xls" # available for xlsx, xls,csv
yourUsrID = ""
yourPWD = ""
yourDBname= ""
rename_table = "" # Use your filename as tablename onto SQL Server or user define the table name, e.g. :"test"
# get your local host name
# this will return your local computer name for your sql server database
host_name = hostname
# get your local ip address
# this will return your local ip address (if your sql server can be accessed by DNS)
ip = local_ip
# you need to change your host if needed, dns: local ip address
#yourHostORip = "localhost"
# yourHostORip = host_name
yourHostORip = ip
# STEP Two add your data to sql server
es = ExcelToDB(yourFile, yourHostORip, yourUsrID, yourPWD, yourDBname, rename_table)
es.save2db()
output:
Successfully load excel data...
Sucessfully connected to SQL Server...
Sucessfully saved 'yourtable' to SQL Server...
API Reference
exceltosqlserver.ExcelToDB(filePath,host_ip=False,usrID =False,pwd=False,db_name=False,rename_table
)
filePath: str
host_ip: str default: ""
usrID: str default: ""
pwd: str default: ""
db_name: str default: ""
rename_table: str default: "", will auto save your filename as table name to sql server database. If assignmed value, will change table name from your filename to the assigned value.
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
Built Distribution
File details
Details for the file exceltosqlserver-0.2.5.tar.gz
.
File metadata
- Download URL: exceltosqlserver-0.2.5.tar.gz
- Upload date:
- Size: 12.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7088f6cfc0b10e10c53d883ee41e698a5fa04b9d19796dccfe924595a09cd12f |
|
MD5 | 0771adebc2511ba22c0c278f2a433252 |
|
BLAKE2b-256 | 9491080fb88076e70f1c8bf73fa60b7eb2353f9ce7929baf54540f5180c946b0 |
File details
Details for the file exceltosqlserver-0.2.5-py3-none-any.whl
.
File metadata
- Download URL: exceltosqlserver-0.2.5-py3-none-any.whl
- Upload date:
- Size: 11.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b220404d0368d741303b7842a5e0458a3c36095d98b44bce3866d48baecd8b44 |
|
MD5 | 74e8ec22d6b010aaad5b020c81d70540 |
|
BLAKE2b-256 | 0777fa413cdc52b8acdbd9947c54803118f9e90331f44732ce628425c515c978 |