sas2parquet 0.1.0__tar.gz → 0.1.2__tar.gz
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.
- {sas2parquet-0.1.0 → sas2parquet-0.1.2}/PKG-INFO +2 -33
- {sas2parquet-0.1.0 → sas2parquet-0.1.2}/README.md +1 -32
- {sas2parquet-0.1.0 → sas2parquet-0.1.2}/pyproject.toml +1 -1
- {sas2parquet-0.1.0 → sas2parquet-0.1.2}/LICENSE +0 -0
- {sas2parquet-0.1.0 → sas2parquet-0.1.2}/src/sas2parquet/__init__.py +0 -0
- {sas2parquet-0.1.0 → sas2parquet-0.1.2}/src/sas2parquet/cli.py +0 -0
- {sas2parquet-0.1.0 → sas2parquet-0.1.2}/src/sas2parquet/convert.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: sas2parquet
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.2
|
|
4
4
|
Summary: SAS → Parquet Hybrid Converter & Validator
|
|
5
5
|
License-File: LICENSE
|
|
6
6
|
Author: Zaman Ziabakhshganji
|
|
@@ -32,7 +32,7 @@ Description-Content-Type: text/markdown
|
|
|
32
32
|
|
|
33
33
|
[](https://pypi.org/project/sas2parquet/)
|
|
34
34
|
[](https://pypi.org/project/sas2parquet/)
|
|
35
|
-
[](
|
|
35
|
+
[](LICENCE)
|
|
36
36
|
|
|
37
37
|
**The ultimate SAS (.sas7bdat) to Parquet converter** - handles problematic files that fail with standard tools. Automatic encoding detection, intelligent type inference, schema repair, and pixel-perfect validation.
|
|
38
38
|
|
|
@@ -128,37 +128,6 @@ Each file undergoes 4-stage validation:
|
|
|
128
128
|
3. Column order
|
|
129
129
|
4. Value comparison
|
|
130
130
|
|
|
131
|
-
## 💻 Development
|
|
132
|
-
```bash
|
|
133
|
-
git clone <repo>
|
|
134
|
-
cd sas2parquet
|
|
135
|
-
pip install -e .
|
|
136
|
-
```
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
## 🧪 Testing
|
|
140
|
-
|
|
141
|
-
This project includes a comprehensive **pytest** test suite covering:
|
|
142
|
-
|
|
143
|
-
- Schema inference and overrides
|
|
144
|
-
- SAS ↔ Parquet validation logic
|
|
145
|
-
- Error handling and retry behavior
|
|
146
|
-
- Directory mirroring (`sasdata/ → parquetdata/`)
|
|
147
|
-
- Logging and CLI execution paths
|
|
148
|
-
|
|
149
|
-
### Run tests
|
|
150
|
-
|
|
151
|
-
```bash
|
|
152
|
-
pip install -e .[dev]
|
|
153
|
-
pytest -q
|
|
154
|
-
```
|
|
155
|
-
|
|
156
|
-
## 📦 Dependencies
|
|
157
|
-
- pandas>=2.0
|
|
158
|
-
- polars>=0.20
|
|
159
|
-
- pyarrow>=15.0
|
|
160
|
-
- pyreadstat>=1.4
|
|
161
|
-
|
|
162
131
|
## 📄 License
|
|
163
132
|
MIT License
|
|
164
133
|
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
[](https://pypi.org/project/sas2parquet/)
|
|
4
4
|
[](https://pypi.org/project/sas2parquet/)
|
|
5
|
-
[](
|
|
5
|
+
[](LICENCE)
|
|
6
6
|
|
|
7
7
|
**The ultimate SAS (.sas7bdat) to Parquet converter** - handles problematic files that fail with standard tools. Automatic encoding detection, intelligent type inference, schema repair, and pixel-perfect validation.
|
|
8
8
|
|
|
@@ -98,36 +98,5 @@ Each file undergoes 4-stage validation:
|
|
|
98
98
|
3. Column order
|
|
99
99
|
4. Value comparison
|
|
100
100
|
|
|
101
|
-
## 💻 Development
|
|
102
|
-
```bash
|
|
103
|
-
git clone <repo>
|
|
104
|
-
cd sas2parquet
|
|
105
|
-
pip install -e .
|
|
106
|
-
```
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
## 🧪 Testing
|
|
110
|
-
|
|
111
|
-
This project includes a comprehensive **pytest** test suite covering:
|
|
112
|
-
|
|
113
|
-
- Schema inference and overrides
|
|
114
|
-
- SAS ↔ Parquet validation logic
|
|
115
|
-
- Error handling and retry behavior
|
|
116
|
-
- Directory mirroring (`sasdata/ → parquetdata/`)
|
|
117
|
-
- Logging and CLI execution paths
|
|
118
|
-
|
|
119
|
-
### Run tests
|
|
120
|
-
|
|
121
|
-
```bash
|
|
122
|
-
pip install -e .[dev]
|
|
123
|
-
pytest -q
|
|
124
|
-
```
|
|
125
|
-
|
|
126
|
-
## 📦 Dependencies
|
|
127
|
-
- pandas>=2.0
|
|
128
|
-
- polars>=0.20
|
|
129
|
-
- pyarrow>=15.0
|
|
130
|
-
- pyreadstat>=1.4
|
|
131
|
-
|
|
132
101
|
## 📄 License
|
|
133
102
|
MIT License
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|