A Simple yet powerful bcp wrapper
Project description
Simple BCP
A Simple yet powerful Python bcp wrapper.
bcp (bulk copy program) is a command line tool that copies data from / into MSSQL.
You can read more about bcp here
Installation
Install the package using pip:
pip install simple_bcp
Usage
import simple_bcp
bcp = simple_bcp.BCP()
database_parameters = simple_bcp.MsSqlDatabaseParameters(
server_hostname="your-sql-server-hostname",
username="user",
password="pass"
)
output_file_path = bcp.download_table(table_name="your_table_name",
database_parameters=database_parameters)
print("downloaded table data is now available at ", output_file_path)
bcp.upload_into_table(table_name="dest_table_name",
database_parameters=database_parameters,
data_file_path=output_file_path)
print("the data is now copied to dest_table_name")
Requirements
- Python >= 3.10
bcpinstalled on your machine. How to install bcp
Repo & Author
Developed by Noam Fisher, You can see the project at https://gitlab.com/noamfisher/simple_bcp
Project details
Release history Release notifications | RSS feed
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file simple_bcp-1.1.2.tar.gz.
File metadata
- Download URL: simple_bcp-1.1.2.tar.gz
- Upload date:
- Size: 7.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fe0bdc820010fc12df43e71f4d9f50565fd2c061f7c12442bf4ebc51aedbe8fe
|
|
| MD5 |
663b9f4aac0b487d9d1adacee0c79ab8
|
|
| BLAKE2b-256 |
7caa5b88cf402179ebba754c18b5e12bc1e8862565e31668a926128c5cf6c13f
|
File details
Details for the file simple_bcp-1.1.2-py3-none-any.whl.
File metadata
- Download URL: simple_bcp-1.1.2-py3-none-any.whl
- Upload date:
- Size: 8.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
61b12b58ad514f8b84f79c53de18de3fcf392465a1bc73e9af3f2da4714e4650
|
|
| MD5 |
f7834de0bca32f9613fb6184e3c79853
|
|
| BLAKE2b-256 |
049b45fc42c9b306c804c1e01531addfd0828e743d79aad12480fd0faf68f30a
|