Registry / aws / snowflake-ingest

snowflake-ingest

JSON →
library1.0.13pypypiunverified

Official Snowflake SDK for bulk file ingestion via Snowpipe. Version 1.0.12 supports streaming ingest and historical file loading. Released monthly.

pip install snowflake-ingest
INSTALL
IMPORT
SIG · SNOWFLAKE-INGEST
S
snowflake-ingest
awspythonv1.0.13
Install
7.0s avg
Import
Disk
90MB
Pass rate
5/ 10
Env Coverage5 / 10
glibc
3.93.13
musl
3.93.13
Install & Compatibility
Where this runs
tested against v1.0.13 · pip install
no network on importno background threads
Install × environment matrix
Each cell = how many times install + import succeeded across repeated harness runs. Partial = flaky.
glibc = Debian/Ubuntu slim · musl = Alpine Linux
musl
py 3.103.95 runs
build_error
glibc
py 3.103.95 runs
installs and imports cleanly · install 7.0s · import 0.000s · 90MB
90MB installed
● package 90MB
Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

SnowflakeIngestManager
from snowflake.ingest import SnowflakeIngestManager
from snowflake.ingest import SnowflakeIngestManager

Initialize manager with key-pair auth and ingest a single file.

import os from snowflake.ingest import SnowflakeIngestManager, FileIngestionRequest manager = SnowflakeIngestManager( account=os.environ.get('SNOWFLAKE_ACCOUNT', ''), user=os.environ.get('SNOWFLAKE_USER', ''), private_key=open('/path/to/rsa_key.p8', 'rb').read(), database='MYDB', schema='PUBLIC' ) request = FileIngestionRequest( file='data.csv', stage='MYSTAGE', prefix='data/', pipe='MYPIPE' ) manager.ingest_file(request) print('File ingested successfully')
Debug
Known issues
breakingIn version 1.0.0, the authentication method changed from using 'private_key_file' to requiring a raw bytes private key.
fix
Replace 'private_key_file' parameter with 'private_key' and read the file as bytes.
affects: >=1.0.0
deprecatedThe method 'ingest_files' (plural) is deprecated in favor of 'ingest_file' (singular) with a batch parameter.
fix
Use manager.ingest_file(request) for single file, or call it in a loop for multiple files.
affects: >=1.0.5
gotchaSnowflakeIngestManager does not support account identifiers with hyphens. Use the full account name without dashes.
fix
Replace dashes with underscores or use the locator form (e.g., 'myorg-myaccount' -> 'myorg_myaccount').
affects: all
gotchaFile ingestion requests for historical files (files already in stage) must use the 'historical: true' flag, otherwise they are ignored.
fix
Set historical=True in FileIngestionRequest if the file already exists in the stage.
affects: all
Upgrade
Version history
1.0.13latest on PyPI · released Jun 18, 2026
Audit
Dependencies
cryptographyrequiredRequired for secure key-based authentication
Agent activity
24 hits · last 30 days
node
22
Resources
snowflake-ingest — pip install snowflake-ingest · libregistry