pos3 0.1.0__py3-none-any.whl → 0.1.0rc1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pos3
3
- Version: 0.1.0
3
+ Version: 0.1.0rc1
4
4
  Summary: S3 Simple Sync - Make using S3 as simple as using local files
5
5
  Author-email: Positronic Robotics <hi@positronic.ro>
6
6
  License: Apache-2.0
@@ -24,9 +24,7 @@ Requires-Dist: pre-commit; extra == "dev"
24
24
 
25
25
  **PO**sitronic **S3** — Make using S3 as simple as using local files.
26
26
 
27
- `pos3` provides a Pythonic context manager for syncing directories and files with S3. It is designed for data processing pipelines and machine learning workflows where you need to integrate S3 with code that **only understands local files**.
28
-
29
- > The main value of `pos3` is enabling you to pass S3 data to **third-party libraries or legacy scripts** that expect local file paths (e.g., `opencv`, `pandas.read_csv`, or model training scripts). Instead of rewriting their I/O logic to support S3, `pos3` transparently bridges the gap.
27
+ `pos3` provides a Pythonic context manager for syncing directories and files with S3. It is designed for data processing pipelines and machine learning workflows where you want to work with local files but persist data in S3.
30
28
 
31
29
  ## Core Concepts
32
30
 
@@ -146,7 +144,7 @@ Why use `pos3` instead of other Python libraries?
146
144
  | **Lifecycle** | **Automated** (Open/Close) | Manual | Manual |
147
145
  | **Background Upload** | **Yes** (Non-blocking) | Manual Threading | No (Blocking) |
148
146
  | **Local I/O Speed** | **Native** (SSD) | Native | Network Bound (Virtual FS) |
149
- | **Use Case** | **ML / Pipelines / 3rd Party Code** | App Development | DataFrames / Interactive |
147
+ | **Use Case** | **ML / Pipelines** | App Development | DataFrames / Interactive |
150
148
 
151
149
  - **vs `boto3`**: `boto3` is the raw AWS SDK. `pos3` wraps it to provide "mirroring" logic, threading, and diffing out of the box.
152
150
  - **vs `s3fs`**: `s3fs` treats S3 as a filesystem. `pos3` treats S3 as a persistence layer for your high-speed local storage, ensuring you always get native IO performance.
@@ -0,0 +1,5 @@
1
+ pos3/__init__.py,sha256=rxcmD1K5M9zvBqDhIX1guSFxgcm6XOSBhLTbY5wNzkk,30453
2
+ pos3-0.1.0rc1.dist-info/METADATA,sha256=IpXNH8zCxJ1CbTxun7a6uNx1PmylSGGMRFXB2kHEbyU,6620
3
+ pos3-0.1.0rc1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
4
+ pos3-0.1.0rc1.dist-info/top_level.txt,sha256=JWOpXHz1F6cbH0nfanGWLaozt8RJFRmv5H3eKkxz7e8,5
5
+ pos3-0.1.0rc1.dist-info/RECORD,,
@@ -1,5 +0,0 @@
1
- pos3/__init__.py,sha256=rxcmD1K5M9zvBqDhIX1guSFxgcm6XOSBhLTbY5wNzkk,30453
2
- pos3-0.1.0.dist-info/METADATA,sha256=9XUDlEQjdkmJt7WX0PDeThq5X1ZplpEnJnNRrj03V7M,6940
3
- pos3-0.1.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
4
- pos3-0.1.0.dist-info/top_level.txt,sha256=JWOpXHz1F6cbH0nfanGWLaozt8RJFRmv5H3eKkxz7e8,5
5
- pos3-0.1.0.dist-info/RECORD,,
File without changes