xlsx2dict 0.1.0__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.
- xlsx2dict-0.1.0/.gitignore +10 -0
- xlsx2dict-0.1.0/.python-version +1 -0
- xlsx2dict-0.1.0/.vscode/settings.json +3 -0
- xlsx2dict-0.1.0/LICENSE +21 -0
- xlsx2dict-0.1.0/PKG-INFO +129 -0
- xlsx2dict-0.1.0/README.md +116 -0
- xlsx2dict-0.1.0/pyproject.toml +22 -0
- xlsx2dict-0.1.0/requirements.md +6 -0
- xlsx2dict-0.1.0/src/xlsx2dict/__init__.py +129 -0
- xlsx2dict-0.1.0/src/xlsx2dict/cli.py +14 -0
- xlsx2dict-0.1.0/uv.lock +287 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
3.12
|
xlsx2dict-0.1.0/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2024 Your Name
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
xlsx2dict-0.1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,129 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: xlsx2dict
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: A Python library for reading and writing Excel files, converting between xlsx and dictionaries or text.
|
|
5
|
+
Author-email: Your Name <your.email@example.com>
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
License-File: LICENSE
|
|
8
|
+
Requires-Python: >=3.8
|
|
9
|
+
Requires-Dist: python-calamine
|
|
10
|
+
Requires-Dist: tabulate
|
|
11
|
+
Requires-Dist: xlsxwriter
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
|
|
14
|
+
# xlsx2dict
|
|
15
|
+
|
|
16
|
+
A Python library for reading and writing Excel files, converting between xlsx and dictionaries or text.
|
|
17
|
+
|
|
18
|
+
## Installation
|
|
19
|
+
|
|
20
|
+
```bash
|
|
21
|
+
pip install xlsx2dict
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
## Usage
|
|
25
|
+
|
|
26
|
+
### Reading sheets
|
|
27
|
+
|
|
28
|
+
```python
|
|
29
|
+
from xlsx2dict import sheets
|
|
30
|
+
|
|
31
|
+
sheet_names = sheets('example.xlsx')
|
|
32
|
+
print(sheet_names)
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
#### Parameters
|
|
36
|
+
|
|
37
|
+
| Parameter | Type | Description |
|
|
38
|
+
|------------|------------|------------------------------|
|
|
39
|
+
| xlsx_file | str or Path| Path to the Excel file |
|
|
40
|
+
|
|
41
|
+
### Reading data as list of lists
|
|
42
|
+
|
|
43
|
+
```python
|
|
44
|
+
from xlsx2dict import read
|
|
45
|
+
|
|
46
|
+
table = read('example.xlsx', 'Sheet1')
|
|
47
|
+
print(table)
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
#### Parameters
|
|
51
|
+
|
|
52
|
+
| Parameter | Type | Default | Description |
|
|
53
|
+
|---------------|-------------|---------|--------------------------------------------------|
|
|
54
|
+
| xlsx_file | str or Path | - | Path to the Excel file |
|
|
55
|
+
| sheet_name | str or int | - | Name or index of the sheet to read |
|
|
56
|
+
| remove_comment| bool | True | Whether to remove rows starting with '#' |
|
|
57
|
+
|
|
58
|
+
### Reading data as dictionary
|
|
59
|
+
|
|
60
|
+
```python
|
|
61
|
+
from xlsx2dict import read_dict
|
|
62
|
+
|
|
63
|
+
data = read_dict('example.xlsx', 'Sheet1')
|
|
64
|
+
print(data)
|
|
65
|
+
```
|
|
66
|
+
|
|
67
|
+
#### Parameters
|
|
68
|
+
|
|
69
|
+
| Parameter | Type | Default | Description |
|
|
70
|
+
|---------------|-------------|---------|--------------------------------------------------|
|
|
71
|
+
| xlsx_file | str or Path | - | Path to the Excel file |
|
|
72
|
+
| sheet_name | str or int | None | Name or index of the sheet to read (default: first sheet) |
|
|
73
|
+
| strip | bool | True | Whether to strip whitespace from cell values |
|
|
74
|
+
| key_map | dict | None | Mapping to rename column headers |
|
|
75
|
+
| remove_comment| bool | True | Whether to remove rows starting with '#' |
|
|
76
|
+
| save_list | bool | False | Whether to save the entire row as '__list__' |
|
|
77
|
+
| head_rows | int | 1 | Number of header rows |
|
|
78
|
+
| row_offset | int | 0 | Row offset for numbering |
|
|
79
|
+
|
|
80
|
+
### Writing data
|
|
81
|
+
|
|
82
|
+
```python
|
|
83
|
+
from xlsx2dict import write
|
|
84
|
+
|
|
85
|
+
table = [['A', 'B'], [1, 2], [3, 4]]
|
|
86
|
+
write(table, 'output.xlsx', 'Sheet1')
|
|
87
|
+
```
|
|
88
|
+
|
|
89
|
+
#### Parameters
|
|
90
|
+
|
|
91
|
+
| Parameter | Type | Default | Description |
|
|
92
|
+
|------------|-------------|---------|--------------------------------------|
|
|
93
|
+
| table | list | - | Data as list of lists |
|
|
94
|
+
| xlsx_file | str or Path | - | Path to the output Excel file |
|
|
95
|
+
| sheet_name | str | None | Name of the sheet (default: 'Sheet1')|
|
|
96
|
+
|
|
97
|
+
### Writing dictionary data
|
|
98
|
+
|
|
99
|
+
```python
|
|
100
|
+
from xlsx2dict import write_dict
|
|
101
|
+
|
|
102
|
+
data = {'Sheet1': [['A', 'B'], [1, 2]]}
|
|
103
|
+
write_dict('output.xlsx', data)
|
|
104
|
+
```
|
|
105
|
+
|
|
106
|
+
#### Parameters
|
|
107
|
+
|
|
108
|
+
| Parameter | Type | Description |
|
|
109
|
+
|------------|-------------|--------------------------------------|
|
|
110
|
+
| xlsx_file | str or Path | Path to the output Excel file |
|
|
111
|
+
| data | dict | Dictionary with sheet names as keys |
|
|
112
|
+
|
|
113
|
+
### Converting to text
|
|
114
|
+
|
|
115
|
+
```bash
|
|
116
|
+
xlsx2text example.xlsx -o output.txt
|
|
117
|
+
```
|
|
118
|
+
|
|
119
|
+
#### Parameters
|
|
120
|
+
|
|
121
|
+
| Parameter | Type | Default | Description |
|
|
122
|
+
|-------------|-------------|---------|--------------------------------------------------|
|
|
123
|
+
| xlsx_file | str or Path | - | Path to the Excel file |
|
|
124
|
+
| index | int or str | None | Index of the sheet to convert (1-based, default: all) |
|
|
125
|
+
| output_file | str or Path | None | Path to the output text file (default: print to console) |
|
|
126
|
+
|
|
127
|
+
## License
|
|
128
|
+
|
|
129
|
+
MIT
|
|
@@ -0,0 +1,116 @@
|
|
|
1
|
+
# xlsx2dict
|
|
2
|
+
|
|
3
|
+
A Python library for reading and writing Excel files, converting between xlsx and dictionaries or text.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
pip install xlsx2dict
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Usage
|
|
12
|
+
|
|
13
|
+
### Reading sheets
|
|
14
|
+
|
|
15
|
+
```python
|
|
16
|
+
from xlsx2dict import sheets
|
|
17
|
+
|
|
18
|
+
sheet_names = sheets('example.xlsx')
|
|
19
|
+
print(sheet_names)
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
#### Parameters
|
|
23
|
+
|
|
24
|
+
| Parameter | Type | Description |
|
|
25
|
+
|------------|------------|------------------------------|
|
|
26
|
+
| xlsx_file | str or Path| Path to the Excel file |
|
|
27
|
+
|
|
28
|
+
### Reading data as list of lists
|
|
29
|
+
|
|
30
|
+
```python
|
|
31
|
+
from xlsx2dict import read
|
|
32
|
+
|
|
33
|
+
table = read('example.xlsx', 'Sheet1')
|
|
34
|
+
print(table)
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
#### Parameters
|
|
38
|
+
|
|
39
|
+
| Parameter | Type | Default | Description |
|
|
40
|
+
|---------------|-------------|---------|--------------------------------------------------|
|
|
41
|
+
| xlsx_file | str or Path | - | Path to the Excel file |
|
|
42
|
+
| sheet_name | str or int | - | Name or index of the sheet to read |
|
|
43
|
+
| remove_comment| bool | True | Whether to remove rows starting with '#' |
|
|
44
|
+
|
|
45
|
+
### Reading data as dictionary
|
|
46
|
+
|
|
47
|
+
```python
|
|
48
|
+
from xlsx2dict import read_dict
|
|
49
|
+
|
|
50
|
+
data = read_dict('example.xlsx', 'Sheet1')
|
|
51
|
+
print(data)
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
#### Parameters
|
|
55
|
+
|
|
56
|
+
| Parameter | Type | Default | Description |
|
|
57
|
+
|---------------|-------------|---------|--------------------------------------------------|
|
|
58
|
+
| xlsx_file | str or Path | - | Path to the Excel file |
|
|
59
|
+
| sheet_name | str or int | None | Name or index of the sheet to read (default: first sheet) |
|
|
60
|
+
| strip | bool | True | Whether to strip whitespace from cell values |
|
|
61
|
+
| key_map | dict | None | Mapping to rename column headers |
|
|
62
|
+
| remove_comment| bool | True | Whether to remove rows starting with '#' |
|
|
63
|
+
| save_list | bool | False | Whether to save the entire row as '__list__' |
|
|
64
|
+
| head_rows | int | 1 | Number of header rows |
|
|
65
|
+
| row_offset | int | 0 | Row offset for numbering |
|
|
66
|
+
|
|
67
|
+
### Writing data
|
|
68
|
+
|
|
69
|
+
```python
|
|
70
|
+
from xlsx2dict import write
|
|
71
|
+
|
|
72
|
+
table = [['A', 'B'], [1, 2], [3, 4]]
|
|
73
|
+
write(table, 'output.xlsx', 'Sheet1')
|
|
74
|
+
```
|
|
75
|
+
|
|
76
|
+
#### Parameters
|
|
77
|
+
|
|
78
|
+
| Parameter | Type | Default | Description |
|
|
79
|
+
|------------|-------------|---------|--------------------------------------|
|
|
80
|
+
| table | list | - | Data as list of lists |
|
|
81
|
+
| xlsx_file | str or Path | - | Path to the output Excel file |
|
|
82
|
+
| sheet_name | str | None | Name of the sheet (default: 'Sheet1')|
|
|
83
|
+
|
|
84
|
+
### Writing dictionary data
|
|
85
|
+
|
|
86
|
+
```python
|
|
87
|
+
from xlsx2dict import write_dict
|
|
88
|
+
|
|
89
|
+
data = {'Sheet1': [['A', 'B'], [1, 2]]}
|
|
90
|
+
write_dict('output.xlsx', data)
|
|
91
|
+
```
|
|
92
|
+
|
|
93
|
+
#### Parameters
|
|
94
|
+
|
|
95
|
+
| Parameter | Type | Description |
|
|
96
|
+
|------------|-------------|--------------------------------------|
|
|
97
|
+
| xlsx_file | str or Path | Path to the output Excel file |
|
|
98
|
+
| data | dict | Dictionary with sheet names as keys |
|
|
99
|
+
|
|
100
|
+
### Converting to text
|
|
101
|
+
|
|
102
|
+
```bash
|
|
103
|
+
xlsx2text example.xlsx -o output.txt
|
|
104
|
+
```
|
|
105
|
+
|
|
106
|
+
#### Parameters
|
|
107
|
+
|
|
108
|
+
| Parameter | Type | Default | Description |
|
|
109
|
+
|-------------|-------------|---------|--------------------------------------------------|
|
|
110
|
+
| xlsx_file | str or Path | - | Path to the Excel file |
|
|
111
|
+
| index | int or str | None | Index of the sheet to convert (1-based, default: all) |
|
|
112
|
+
| output_file | str or Path | None | Path to the output text file (default: print to console) |
|
|
113
|
+
|
|
114
|
+
## License
|
|
115
|
+
|
|
116
|
+
MIT
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "xlsx2dict"
|
|
3
|
+
version = "0.1.0"
|
|
4
|
+
description = "A Python library for reading and writing Excel files, converting between xlsx and dictionaries or text."
|
|
5
|
+
readme = "README.md"
|
|
6
|
+
license = "MIT"
|
|
7
|
+
requires-python = ">=3.8"
|
|
8
|
+
authors = [
|
|
9
|
+
{name = "Your Name", email = "your.email@example.com"},
|
|
10
|
+
]
|
|
11
|
+
dependencies = [
|
|
12
|
+
"xlsxwriter",
|
|
13
|
+
"python-calamine",
|
|
14
|
+
"tabulate",
|
|
15
|
+
]
|
|
16
|
+
|
|
17
|
+
[project.scripts]
|
|
18
|
+
xlsx2text = "xlsx2dict.cli:main"
|
|
19
|
+
|
|
20
|
+
[build-system]
|
|
21
|
+
requires = ["hatchling"]
|
|
22
|
+
build-backend = "hatchling.build"
|
|
@@ -0,0 +1,129 @@
|
|
|
1
|
+
import xlsxwriter
|
|
2
|
+
from pathlib import Path
|
|
3
|
+
from collections import OrderedDict
|
|
4
|
+
from python_calamine import CalamineWorkbook
|
|
5
|
+
import tabulate
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
def sheets(xlsx_file):
|
|
9
|
+
"""Returns a list of sheet names in the given xlsx file."""
|
|
10
|
+
if not Path(xlsx_file).is_file():
|
|
11
|
+
raise FileNotFoundError(f"File '{xlsx_file}' does not exist.")
|
|
12
|
+
workbook = CalamineWorkbook.from_path(xlsx_file)
|
|
13
|
+
return workbook.sheet_names
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
def read(xlsx_file:str | Path, sheet_name: str | int, remove_comment: bool = True) -> list[list]:
|
|
17
|
+
"""Reads the specified sheet from the given xlsx file and returns its content as a list of lists."""
|
|
18
|
+
if not Path(xlsx_file).is_file():
|
|
19
|
+
raise FileNotFoundError(f"File '{xlsx_file}' does not exist.")
|
|
20
|
+
workbook = CalamineWorkbook.from_path(xlsx_file)
|
|
21
|
+
if isinstance(sheet_name, int):
|
|
22
|
+
sheet_names = workbook.sheet_names
|
|
23
|
+
if sheet_name < 0 or sheet_name >= len(sheet_names):
|
|
24
|
+
raise ValueError(f"Sheet index {sheet_name} is out of range. Available sheets: {sheet_names}")
|
|
25
|
+
sheet_name = sheet_names[sheet_name]
|
|
26
|
+
if sheet_name not in workbook.sheet_names:
|
|
27
|
+
raise ValueError(f"Sheet '{sheet_name}' does not exist in the workbook. Available sheets: {workbook.sheet_names}")
|
|
28
|
+
data = workbook.get_sheet_by_name(sheet_name).to_python(skip_empty_area=False)
|
|
29
|
+
# Remove comment rows if requested, assuming comments are indicated by a leading '#' in the first cell of the row.
|
|
30
|
+
if remove_comment:
|
|
31
|
+
data = [([] if len(cell_value) > 0 and cell_value[0].startswith("#") else cell_value) for cell_value in data]
|
|
32
|
+
# replace '’', '‘', '“', '”' with "'" and '"'
|
|
33
|
+
data = [[cell.replace('’', "'").replace('‘', "'").replace('“', '"').replace('”', '"') if isinstance(cell, str) else cell for cell in row] for row in data]
|
|
34
|
+
# replace str "xx.0" with "xx" for numeric cells
|
|
35
|
+
data = [[cell[:-2] if isinstance(cell, str) and cell.endswith('.0') and cell[:-2].isdigit() else cell for cell in row] for row in data]
|
|
36
|
+
return data
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
def read_dict(xlsx_file: str | Path, sheet_name: str = None, strip: bool = True, key_map: dict = None, remove_comment: bool = True, save_list: bool = False, head_rows: int = 1, row_offset: int = 0) -> OrderedDict:
|
|
40
|
+
"""Reads the specified sheet from the given xlsx file and returns its content as an ordered dictionary."""
|
|
41
|
+
data = read(xlsx_file, sheet_name, remove_comment)
|
|
42
|
+
if not data or len(data) <= head_rows:
|
|
43
|
+
return OrderedDict()
|
|
44
|
+
data_dict = OrderedDict()
|
|
45
|
+
# Process header rows to create keys for the dictionary.
|
|
46
|
+
# If head_rows is 1, use the first row as keys.
|
|
47
|
+
# If head_rows > 1, combine the header rows to create keys.
|
|
48
|
+
if head_rows == 1:
|
|
49
|
+
headers = [str(cell_value).strip() for cell_value in data[0]]
|
|
50
|
+
else:
|
|
51
|
+
header_rows = data[0:head_rows].copy()
|
|
52
|
+
for header_row_index in range(head_rows-1, -1, -1):
|
|
53
|
+
header_row = header_rows[header_row_index]
|
|
54
|
+
for col_index, cell_value in enumerate(header_row):
|
|
55
|
+
if col_index == 0:
|
|
56
|
+
continue
|
|
57
|
+
if not cell_value:
|
|
58
|
+
if header_row_index > 0 and "".join([header_rows[y][col_index] for y in range(header_row_index)]):
|
|
59
|
+
continue
|
|
60
|
+
header_row[col_index] = header_row[col_index-1]
|
|
61
|
+
headers = ["_".join(cell_value) for cell_value in zip(*header_rows)]
|
|
62
|
+
# Apply key mapping if provided
|
|
63
|
+
if key_map:
|
|
64
|
+
headers = [key_map.get(cell_value, cell_value) for cell_value in headers]
|
|
65
|
+
for row_index, row in enumerate(data[head_rows:]):
|
|
66
|
+
row_number = row_index + 2 + row_offset
|
|
67
|
+
if not row or all(cell is None for cell in row):
|
|
68
|
+
continue
|
|
69
|
+
# Initialize the dictionary for the current row. If save_list is True, store the entire row under a special key "__list__".
|
|
70
|
+
data_dict[row_number] = {"__list__": row} if save_list else {}
|
|
71
|
+
for header, cell_value in zip(headers, row):
|
|
72
|
+
if not header: # skip columns without header
|
|
73
|
+
continue
|
|
74
|
+
cell_value = str(cell_value).strip() if strip else str(cell_value)
|
|
75
|
+
if header in data_dict[row_number]: # if the key already exists, convert it to a list and append the new value
|
|
76
|
+
if isinstance(data_dict[row_number][header], str):
|
|
77
|
+
data_dict[row_number][header] = [data_dict[row_number][header]]
|
|
78
|
+
data_dict[row_number][header].append(cell_value)
|
|
79
|
+
else:
|
|
80
|
+
data_dict[row_number][header] = cell_value
|
|
81
|
+
return data_dict
|
|
82
|
+
|
|
83
|
+
|
|
84
|
+
def write(table: list, xlsx_file: str | Path, sheet_name: str = None):
|
|
85
|
+
"""Writes the given table (list of lists) to the specified sheet in the xlsx file."""
|
|
86
|
+
workbook = xlsxwriter.Workbook(xlsx_file)
|
|
87
|
+
if not sheet_name:
|
|
88
|
+
sheet_name = "Sheet1"
|
|
89
|
+
worksheet = workbook.add_worksheet(sheet_name)
|
|
90
|
+
for row_index, row in enumerate(table):
|
|
91
|
+
for col_index, cell in enumerate(row):
|
|
92
|
+
worksheet.write(row_index, col_index, cell)
|
|
93
|
+
workbook.close()
|
|
94
|
+
|
|
95
|
+
|
|
96
|
+
def write_dict(xlsx_file: str | Path, data: dict):
|
|
97
|
+
"""Writes the given dictionary to the specified xlsx file. The dictionary should be in the format returned by read_dict."""
|
|
98
|
+
# data is expected to be a dictionary:
|
|
99
|
+
# {
|
|
100
|
+
# sheet1_name: {[[...], ...], ...},
|
|
101
|
+
# sheet2_name: {[[...], ...], ...},
|
|
102
|
+
# ...
|
|
103
|
+
#}
|
|
104
|
+
if not data:
|
|
105
|
+
return
|
|
106
|
+
workbook = xlsxwriter.Workbook(xlsx_file)
|
|
107
|
+
for sheet_name, table in data.items():
|
|
108
|
+
worksheet = workbook.add_worksheet(sheet_name)
|
|
109
|
+
for row_index, row in enumerate(table):
|
|
110
|
+
for col_index, cell in enumerate(row):
|
|
111
|
+
worksheet.write(row_index, col_index, cell)
|
|
112
|
+
workbook.close()
|
|
113
|
+
|
|
114
|
+
|
|
115
|
+
def xlsx2text(xlsx_file: str | Path, index: int | str = None, output_file: str | Path = None):
|
|
116
|
+
"""Converts the specified sheet from the given xlsx file to a text file. If output_file is not provided, prints the content to the console."""
|
|
117
|
+
sheets_list = sheets(xlsx_file)
|
|
118
|
+
output = ""
|
|
119
|
+
for sheet_index, sheet_name in enumerate(sheets_list):
|
|
120
|
+
if not index or int(index) == sheet_index + 1:
|
|
121
|
+
output += "="*70 + f"\n{sheet_name}\n" + "="*70 + "\n"
|
|
122
|
+
table = read(xlsx_file, sheet_name, remove_comment=False)
|
|
123
|
+
output += tabulate.tabulate(table, tablefmt="pretty", stralign="left")
|
|
124
|
+
output += "\n"
|
|
125
|
+
if output_file:
|
|
126
|
+
with open(output_file, "w", encoding="utf-8") as f:
|
|
127
|
+
f.write(output)
|
|
128
|
+
else:
|
|
129
|
+
print(output)
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import sys
|
|
2
|
+
import argparse
|
|
3
|
+
from xlsx2dict import xlsx2text
|
|
4
|
+
|
|
5
|
+
def main():
|
|
6
|
+
parser = argparse.ArgumentParser(description="Convert xlsx file to text format.")
|
|
7
|
+
parser.add_argument("xlsx_file", help="Path to the xlsx file.")
|
|
8
|
+
parser.add_argument("-i", "--index", help="Index of the sheet to convert, if not provided, all sheets will be converted.")
|
|
9
|
+
parser.add_argument("-o", "--output", help="Path to the output text file, if not provided, prints to console.")
|
|
10
|
+
args = parser.parse_args()
|
|
11
|
+
xlsx2text(args.xlsx_file, index=args.index, output_file=args.output)
|
|
12
|
+
|
|
13
|
+
if __name__ == "__main__":
|
|
14
|
+
main()
|
xlsx2dict-0.1.0/uv.lock
ADDED
|
@@ -0,0 +1,287 @@
|
|
|
1
|
+
version = 1
|
|
2
|
+
revision = 3
|
|
3
|
+
requires-python = ">=3.8"
|
|
4
|
+
resolution-markers = [
|
|
5
|
+
"python_full_version >= '3.10'",
|
|
6
|
+
"python_full_version < '3.10'",
|
|
7
|
+
]
|
|
8
|
+
|
|
9
|
+
[[package]]
|
|
10
|
+
name = "packaging"
|
|
11
|
+
version = "26.0"
|
|
12
|
+
source = { registry = "https://pypi.org/simple" }
|
|
13
|
+
sdist = { url = "https://files.pythonhosted.org/packages/65/ee/299d360cdc32edc7d2cf530f3accf79c4fca01e96ffc950d8a52213bd8e4/packaging-26.0.tar.gz", hash = "sha256:00243ae351a257117b6a241061796684b084ed1c516a08c48a3f7e147a9d80b4", size = 143416, upload-time = "2026-01-21T20:50:39.064Z" }
|
|
14
|
+
wheels = [
|
|
15
|
+
{ url = "https://files.pythonhosted.org/packages/b7/b9/c538f279a4e237a006a2c98387d081e9eb060d203d8ed34467cc0f0b9b53/packaging-26.0-py3-none-any.whl", hash = "sha256:b36f1fef9334a5588b4166f8bcd26a14e521f2b55e6b9de3aaa80d3ff7a37529", size = 74366, upload-time = "2026-01-21T20:50:37.788Z" },
|
|
16
|
+
]
|
|
17
|
+
|
|
18
|
+
[[package]]
|
|
19
|
+
name = "python-calamine"
|
|
20
|
+
version = "0.4.0"
|
|
21
|
+
source = { registry = "https://pypi.org/simple" }
|
|
22
|
+
resolution-markers = [
|
|
23
|
+
"python_full_version < '3.10'",
|
|
24
|
+
]
|
|
25
|
+
dependencies = [
|
|
26
|
+
{ name = "packaging", marker = "python_full_version < '3.10'" },
|
|
27
|
+
]
|
|
28
|
+
sdist = { url = "https://files.pythonhosted.org/packages/cc/03/269f96535705b2f18c8977fa58e76763b4e4727a9b3ae277a9468c8ffe05/python_calamine-0.4.0.tar.gz", hash = "sha256:94afcbae3fec36d2d7475095a59d4dc6fae45829968c743cb799ebae269d7bbf", size = 127737, upload-time = "2025-07-04T06:05:28.626Z" }
|
|
29
|
+
wheels = [
|
|
30
|
+
{ url = "https://files.pythonhosted.org/packages/8e/06/885c73fd472cb76af4c4650174a7c11b77a8bc40585044bc445ac694e5e6/python_calamine-0.4.0-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:06011f11fd8d2dbfe0bc9bd8bd135c191aafe66f2d0c9eecf0ae3cb38f42f888", size = 832924, upload-time = "2025-07-04T06:03:13.192Z" },
|
|
31
|
+
{ url = "https://files.pythonhosted.org/packages/2d/76/28c704d875046cc1ca92d8c6e680f6bc38d83735397fee821929691fd57f/python_calamine-0.4.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:12e350e5967bf3206a8b472d9b6c348ff37ae791dba1a1715e076b2c39328557", size = 812087, upload-time = "2025-07-04T06:03:14.781Z" },
|
|
32
|
+
{ url = "https://files.pythonhosted.org/packages/ff/71/dc00e6d9187044d15c85cd0875d8aba2b3e0d3051ceabd47d859f40f69c8/python_calamine-0.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:35be298f69006e86b0311a538c1c9694ce3012237c33572d3dfe2bea6b5b9820", size = 874841, upload-time = "2025-07-04T06:03:16.403Z" },
|
|
33
|
+
{ url = "https://files.pythonhosted.org/packages/4b/f6/be5e35263ceec21e77810d7900235124a9a83fd3c0afbbbb79da658d535c/python_calamine-0.4.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7abb10367aea435ca473b9b698636db912f2ab164f19a6c9675710ed926f33ac", size = 878236, upload-time = "2025-07-04T06:03:18.016Z" },
|
|
34
|
+
{ url = "https://files.pythonhosted.org/packages/9c/61/0068297ec0000b2c0755a608c8068a1070b8193675d2ff603d390291aa45/python_calamine-0.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:58c2c4440982ec6db64c826136661f84f84bc0d8ee0cdd64a38128cd217797eb", size = 1015229, upload-time = "2025-07-04T06:03:19.714Z" },
|
|
35
|
+
{ url = "https://files.pythonhosted.org/packages/d1/1d/8a9c7d491d31db1def335f4d90b85ea29940d84c59a27a88a442b840fda7/python_calamine-0.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e58cd89154fd1b5ef77c609f63dce108d390ece5a5f3225ca3ebedc8d343e9d5", size = 924810, upload-time = "2025-07-04T06:03:20.922Z" },
|
|
36
|
+
{ url = "https://files.pythonhosted.org/packages/40/87/a104c11b320d3fb7f1997d97207addce0fe5e1d41e5fd2e8adb0fb8b1325/python_calamine-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1f90f85e04c281d96c6dc5551176fc4e32c95257c3a2d384a947b3e68275c7d6", size = 887826, upload-time = "2025-07-04T06:03:22.607Z" },
|
|
37
|
+
{ url = "https://files.pythonhosted.org/packages/8c/a5/9580de7758950b39c5048787909b639771c92ad6ea7f909a48dca1dbc6fe/python_calamine-0.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:d5f8408b01d8097b2e662d0205ca09695788fb5f3492ade27de4ad4160cb6bd4", size = 929943, upload-time = "2025-07-04T06:03:24.272Z" },
|
|
38
|
+
{ url = "https://files.pythonhosted.org/packages/25/a1/2b8282ec4acdf1879f9d46d84a6907843d2a331639719a2cfc90356345b5/python_calamine-0.4.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:3d61957c10d37e6bf508fafdf52e6bb3112db8196e30bca8bc4b4560db2cc5f5", size = 1052980, upload-time = "2025-07-04T06:03:26.022Z" },
|
|
39
|
+
{ url = "https://files.pythonhosted.org/packages/95/03/ae56667a2a2eb273eea5f754212454c7073f8abe8e0fdca0edfbe5c0cf37/python_calamine-0.4.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:a5a58bbfcad9c1192dada189e367ed46e72037fcaec585e970fa919b92e07a57", size = 1058045, upload-time = "2025-07-04T06:03:27.342Z" },
|
|
40
|
+
{ url = "https://files.pythonhosted.org/packages/52/60/d7aaa39977ab401de33ae975dd704805ec9c76117f0fe3a53e45b718822c/python_calamine-0.4.0-cp310-cp310-win32.whl", hash = "sha256:f06415096bcd9218b6c15d39ee2006ec0f32282e3d08605391d2a8a52187f9ca", size = 663988, upload-time = "2025-07-04T06:03:29.004Z" },
|
|
41
|
+
{ url = "https://files.pythonhosted.org/packages/6a/f5/fdfeccd7d66e5c9c834288df6a657858a046d94a6e4cd624418cb5bb96dd/python_calamine-0.4.0-cp310-cp310-win_amd64.whl", hash = "sha256:e457d1e07acb2798b72e70bd4e88f07cd486ca5129a19fadc6aa19a2cd4e76e8", size = 692422, upload-time = "2025-07-04T06:03:30.624Z" },
|
|
42
|
+
{ url = "https://files.pythonhosted.org/packages/d4/a5/bcd82326d0ff1ab5889e7a5e13c868b483fc56398e143aae8e93149ba43b/python_calamine-0.4.0-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:d1687f8c4d7852920c7b4e398072f183f88dd273baf5153391edc88b7454b8c0", size = 833019, upload-time = "2025-07-04T06:03:32.214Z" },
|
|
43
|
+
{ url = "https://files.pythonhosted.org/packages/f6/1a/a681f1d2f28164552e91ef47bcde6708098aa64a5f5fe3952f22362d340a/python_calamine-0.4.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:258d04230bebbbafa370a15838049d912d6a0a2c4da128943d8160ca4b6db58e", size = 812268, upload-time = "2025-07-04T06:03:33.855Z" },
|
|
44
|
+
{ url = "https://files.pythonhosted.org/packages/3d/92/2fc911431733739d4e7a633cefa903fa49a6b7a61e8765bad29a4a7c47b1/python_calamine-0.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c686e491634934f059553d55f77ac67ca4c235452d5b444f98fe79b3579f1ea5", size = 875733, upload-time = "2025-07-04T06:03:35.154Z" },
|
|
45
|
+
{ url = "https://files.pythonhosted.org/packages/f4/f0/48bfae6802eb360028ca6c15e9edf42243aadd0006b6ac3e9edb41a57119/python_calamine-0.4.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4480af7babcc2f919c638a554b06b7b145d9ab3da47fd696d68c2fc6f67f9541", size = 878325, upload-time = "2025-07-04T06:03:36.638Z" },
|
|
46
|
+
{ url = "https://files.pythonhosted.org/packages/a4/dc/f8c956e15bac9d5d1e05cd1b907ae780e40522d2fd103c8c6e2f21dff4ed/python_calamine-0.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e405b87a8cd1e90a994e570705898634f105442029f25bab7da658ee9cbaa771", size = 1015038, upload-time = "2025-07-04T06:03:37.971Z" },
|
|
47
|
+
{ url = "https://files.pythonhosted.org/packages/54/3f/e69ab97c7734fb850fba2f506b775912fd59f04e17488582c8fbf52dbc72/python_calamine-0.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a831345ee42615f0dfcb0ed60a3b1601d2f946d4166edae64fd9a6f9bbd57fc1", size = 924969, upload-time = "2025-07-04T06:03:39.253Z" },
|
|
48
|
+
{ url = "https://files.pythonhosted.org/packages/79/03/b4c056b468908d87a3de94389166e0f4dba725a70bc39e03bc039ba96f6b/python_calamine-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9951b8e4cafb3e1623bb5dfc31a18d38ef43589275f9657e99dfcbe4c8c4b33e", size = 888020, upload-time = "2025-07-04T06:03:41.099Z" },
|
|
49
|
+
{ url = "https://files.pythonhosted.org/packages/86/4f/b9092f7c970894054083656953184e44cb2dadff8852425e950d4ca419af/python_calamine-0.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:a6619fe3b5c9633ed8b178684605f8076c9d8d85b29ade15f7a7713fcfdee2d0", size = 930337, upload-time = "2025-07-04T06:03:42.89Z" },
|
|
50
|
+
{ url = "https://files.pythonhosted.org/packages/64/da/137239027bf253aabe7063450950085ec9abd827d0cbc5170f585f38f464/python_calamine-0.4.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:2cc45b8e76ee331f6ea88ca23677be0b7a05b502cd4423ba2c2bc8dad53af1be", size = 1054568, upload-time = "2025-07-04T06:03:44.153Z" },
|
|
51
|
+
{ url = "https://files.pythonhosted.org/packages/80/96/74c38bcf6b6825d5180c0e147b85be8c52dbfba11848b1e98ba358e32a64/python_calamine-0.4.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:1b2cfb7ced1a7c80befa0cfddfe4aae65663eb4d63c4ae484b9b7a80ebe1b528", size = 1058317, upload-time = "2025-07-04T06:03:45.873Z" },
|
|
52
|
+
{ url = "https://files.pythonhosted.org/packages/33/95/9d7b8fe8b32d99a6c79534df3132cfe40e9df4a0f5204048bf5e66ddbd93/python_calamine-0.4.0-cp311-cp311-win32.whl", hash = "sha256:04f4e32ee16814fc1fafc49300be8eeb280d94878461634768b51497e1444bd6", size = 663934, upload-time = "2025-07-04T06:03:47.407Z" },
|
|
53
|
+
{ url = "https://files.pythonhosted.org/packages/7c/e3/1c6cd9fd499083bea6ff1c30033ee8215b9f64e862babf5be170cacae190/python_calamine-0.4.0-cp311-cp311-win_amd64.whl", hash = "sha256:a8543f69afac2213c0257bb56215b03dadd11763064a9d6b19786f27d1bef586", size = 692535, upload-time = "2025-07-04T06:03:48.699Z" },
|
|
54
|
+
{ url = "https://files.pythonhosted.org/packages/94/1c/3105d19fbab6b66874ce8831652caedd73b23b72e88ce18addf8ceca8c12/python_calamine-0.4.0-cp311-cp311-win_arm64.whl", hash = "sha256:54622e35ec7c3b6f07d119da49aa821731c185e951918f152c2dbf3bec1e15d6", size = 671751, upload-time = "2025-07-04T06:03:49.979Z" },
|
|
55
|
+
{ url = "https://files.pythonhosted.org/packages/63/60/f951513aaaa470b3a38a87d65eca45e0a02bc329b47864f5a17db563f746/python_calamine-0.4.0-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:74bca5d44a73acf3dcfa5370820797fcfd225c8c71abcddea987c5b4f5077e98", size = 826603, upload-time = "2025-07-04T06:03:51.245Z" },
|
|
56
|
+
{ url = "https://files.pythonhosted.org/packages/76/3f/789955bbc77831c639890758f945eb2b25d6358065edf00da6751226cf31/python_calamine-0.4.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:cf80178f5d1b0ee2ccfffb8549c50855f6249e930664adc5807f4d0d6c2b269c", size = 805826, upload-time = "2025-07-04T06:03:52.482Z" },
|
|
57
|
+
{ url = "https://files.pythonhosted.org/packages/00/4c/f87d17d996f647030a40bfd124fe45fe893c002bee35ae6aca9910a923ae/python_calamine-0.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:65cfef345386ae86f7720f1be93495a40fd7e7feabb8caa1df5025d7fbc58a1f", size = 874989, upload-time = "2025-07-04T06:03:53.794Z" },
|
|
58
|
+
{ url = "https://files.pythonhosted.org/packages/47/d2/3269367303f6c0488cf1bfebded3f9fe968d118a988222e04c9b2636bf2e/python_calamine-0.4.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:f23e6214dbf9b29065a5dcfd6a6c674dd0e251407298c9138611c907d53423ff", size = 877504, upload-time = "2025-07-04T06:03:55.095Z" },
|
|
59
|
+
{ url = "https://files.pythonhosted.org/packages/f9/6d/c7ac35f5c7125e8bd07eb36773f300fda20dd2da635eae78a8cebb0b6ab7/python_calamine-0.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d792d304ee232ab01598e1d3ab22e074a32c2511476b5fb4f16f4222d9c2a265", size = 1014171, upload-time = "2025-07-04T06:03:56.777Z" },
|
|
60
|
+
{ url = "https://files.pythonhosted.org/packages/f0/81/5ea8792a2e9ab5e2a05872db3a4d3ed3538ad5af1861282c789e2f13a8cf/python_calamine-0.4.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:bf813425918fd68f3e991ef7c4b5015be0a1a95fc4a8ab7e73c016ef1b881bb4", size = 926737, upload-time = "2025-07-04T06:03:58.024Z" },
|
|
61
|
+
{ url = "https://files.pythonhosted.org/packages/cc/6e/989e56e6f073fc0981a74ba7a393881eb351bb143e5486aa629b5e5d6a8b/python_calamine-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbe2a0ccb4d003635888eea83a995ff56b0748c8c76fc71923544f5a4a7d4cd7", size = 887032, upload-time = "2025-07-04T06:03:59.298Z" },
|
|
62
|
+
{ url = "https://files.pythonhosted.org/packages/5d/92/2c9bd64277c6fe4be695d7d5a803b38d953ec8565037486be7506642c27c/python_calamine-0.4.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:a7b3bb5f0d910b9b03c240987560f843256626fd443279759df4e91b717826d2", size = 929700, upload-time = "2025-07-04T06:04:01.388Z" },
|
|
63
|
+
{ url = "https://files.pythonhosted.org/packages/64/fa/fc758ca37701d354a6bc7d63118699f1c73788a1f2e1b44d720824992764/python_calamine-0.4.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:bd2c0fc2b5eabd08ceac8a2935bffa88dbc6116db971aa8c3f244bad3fd0f644", size = 1053971, upload-time = "2025-07-04T06:04:02.704Z" },
|
|
64
|
+
{ url = "https://files.pythonhosted.org/packages/65/52/40d7e08ae0ddba331cdc9f7fb3e92972f8f38d7afbd00228158ff6d1fceb/python_calamine-0.4.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:85b547cb1c5b692a0c2406678d666dbc1cec65a714046104683fe4f504a1721d", size = 1057057, upload-time = "2025-07-04T06:04:04.014Z" },
|
|
65
|
+
{ url = "https://files.pythonhosted.org/packages/16/de/e8a071c0adfda73285d891898a24f6e99338328c404f497ff5b0e6bc3d45/python_calamine-0.4.0-cp312-cp312-win32.whl", hash = "sha256:4c2a1e3a0db4d6de4587999a21cc35845648c84fba81c03dd6f3072c690888e4", size = 665540, upload-time = "2025-07-04T06:04:05.679Z" },
|
|
66
|
+
{ url = "https://files.pythonhosted.org/packages/5e/f2/7fdfada13f80db12356853cf08697ff4e38800a1809c2bdd26ee60962e7a/python_calamine-0.4.0-cp312-cp312-win_amd64.whl", hash = "sha256:b193c89ffcc146019475cd121c552b23348411e19c04dedf5c766a20db64399a", size = 695366, upload-time = "2025-07-04T06:04:06.977Z" },
|
|
67
|
+
{ url = "https://files.pythonhosted.org/packages/20/66/d37412ad854480ce32f50d9f74f2a2f88b1b8a6fbc32f70aabf3211ae89e/python_calamine-0.4.0-cp312-cp312-win_arm64.whl", hash = "sha256:43a0f15e0b60c75a71b21a012b911d5d6f5fa052afad2a8edbc728af43af0fcf", size = 670740, upload-time = "2025-07-04T06:04:08.656Z" },
|
|
68
|
+
{ url = "https://files.pythonhosted.org/packages/5a/10/f78218ccdc5bb5591a37d582c7e8723121d0fbe8196c5a4089110ec02f22/python_calamine-0.4.0-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:f8d6b2d2ae73acf91343f02756bdcb2fa6117db4eaf5cfab75ce50dfb54525ee", size = 826339, upload-time = "2025-07-04T06:04:10.254Z" },
|
|
69
|
+
{ url = "https://files.pythonhosted.org/packages/15/b1/d7d0dbbd0469db0fc628b1b9ee3a8f3b698391279f0d7aea96e2018a3863/python_calamine-0.4.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:aca7e019f42ca16806fef53e3028fa158005c0e68eabda577c3f3c2bea9735fd", size = 805473, upload-time = "2025-07-04T06:04:11.557Z" },
|
|
70
|
+
{ url = "https://files.pythonhosted.org/packages/46/52/033b902fb11f9b4bb59fa18621acbf5eaf4ecb0bce878d34fcb0020229df/python_calamine-0.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:aca67cb447ba8dcefa4d5a1131d1cfdd1e0d0a0f0c6470655ce9ad37b7cfa228", size = 874275, upload-time = "2025-07-04T06:04:13.318Z" },
|
|
71
|
+
{ url = "https://files.pythonhosted.org/packages/56/12/e6b589293314a5d10b2c309411542424ebefb77430cc715d7601d80349ae/python_calamine-0.4.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:e127d3b78d511d4f6fbdfed02fe666d83a722d73e27dd64d1718be9efafbabfe", size = 877061, upload-time = "2025-07-04T06:04:15.013Z" },
|
|
72
|
+
{ url = "https://files.pythonhosted.org/packages/64/24/0eeb583eb5d44f674ca9f7a846c665e33190431386d7c9f6d08ec9f09d3c/python_calamine-0.4.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e47891d9d62e3015448749ddb2ba60ab583a651d0fca9a3a1794936942ad7d5d", size = 1013946, upload-time = "2025-07-04T06:04:16.647Z" },
|
|
73
|
+
{ url = "https://files.pythonhosted.org/packages/c4/93/360cf58b8e24f760a3d4643423389dbc37bdca8b6fdda75ffc664ce622b5/python_calamine-0.4.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d4072bf9dcb8ec49f5b92688bd960b5d0e03e4826d227bbd66478a6f6b0aea06", size = 926462, upload-time = "2025-07-04T06:04:17.936Z" },
|
|
74
|
+
{ url = "https://files.pythonhosted.org/packages/5a/5d/3b8c46ccc62d020858bc52f2d792208910eb68682c6ebf8d6706593d7a88/python_calamine-0.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eabc9dc770f753c4227aacedd8390056937e67af0bf65d6696c584d3054f1287", size = 886319, upload-time = "2025-07-04T06:04:19.33Z" },
|
|
75
|
+
{ url = "https://files.pythonhosted.org/packages/66/cf/73241714800bddb277f827c4683f579b81915406bf7dc643dc185cef7eb2/python_calamine-0.4.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:6a4bcf36dc77674892616b66cffba432f5fd62df3e0adb0487ec245036b50041", size = 929044, upload-time = "2025-07-04T06:04:20.689Z" },
|
|
76
|
+
{ url = "https://files.pythonhosted.org/packages/7c/6b/71e30ee568ce1ea6676be66f1a42c6397946859effc471cc102922fb4792/python_calamine-0.4.0-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:f81518d4b49c47054cb1861badf5bcef44b0a49959968fb2e9c9cb89645c76af", size = 1053084, upload-time = "2025-07-04T06:04:22.414Z" },
|
|
77
|
+
{ url = "https://files.pythonhosted.org/packages/75/19/87b42fe975f8952754562785a545f6d2eec17c353befdf33a8e16c046ce0/python_calamine-0.4.0-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:18375eb3ac1362fcbf3a9fcad0672d8dc054001247bc52f063e0054a3e01a8d1", size = 1056735, upload-time = "2025-07-04T06:04:23.903Z" },
|
|
78
|
+
{ url = "https://files.pythonhosted.org/packages/04/db/ecee6e5d6ed4f3725312580a83c4cb1758c9060aa08bf2d8512d3396cea1/python_calamine-0.4.0-cp313-cp313-win32.whl", hash = "sha256:c7e98c7e531bafdf719414d0c428f25f933a82640fb92e6e84864a85e758aecc", size = 665282, upload-time = "2025-07-04T06:04:25.274Z" },
|
|
79
|
+
{ url = "https://files.pythonhosted.org/packages/cb/0b/26337e0a0e2b335c1d6225bda8de259a21fea129a06009c1471deda28e1f/python_calamine-0.4.0-cp313-cp313-win_amd64.whl", hash = "sha256:6ec081b874e78f4dbcbe70804644281366814289956755575a5871f725592d4e", size = 694982, upload-time = "2025-07-04T06:04:26.573Z" },
|
|
80
|
+
{ url = "https://files.pythonhosted.org/packages/90/26/f72c2b2fe70f2901abb41fcdf8249181133ddd72b9392cfb63d030393b3e/python_calamine-0.4.0-cp313-cp313-win_arm64.whl", hash = "sha256:3f9bdf570023138ee4090a51b1e34786978d6e649852ccc3b83ac9729f125ca2", size = 670283, upload-time = "2025-07-04T06:04:28.434Z" },
|
|
81
|
+
{ url = "https://files.pythonhosted.org/packages/70/0a/7d6051719ba13a832358c7cbe603ae0459c3c843af69b68d16d00c7d59c5/python_calamine-0.4.0-cp38-cp38-macosx_10_12_x86_64.whl", hash = "sha256:19443389894fc1bce068409591e6926d4a4f7402fdef8d4012dd4ac7837d7dfd", size = 833954, upload-time = "2025-07-04T06:04:29.927Z" },
|
|
82
|
+
{ url = "https://files.pythonhosted.org/packages/de/0a/a823655096ee52a6e09ac19f7e743ec887be17c60bbbf3f71395c9c82bfb/python_calamine-0.4.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:fe32075cb329f765a10fd1ee7fd0e0012cd5e65856132710812af6aff1652447", size = 813152, upload-time = "2025-07-04T06:04:31.642Z" },
|
|
83
|
+
{ url = "https://files.pythonhosted.org/packages/69/01/2e58c7efcecec11d051736bb32f5f6774e26dd0d688467834841e751a880/python_calamine-0.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ad3c7123dc92169f1d856e9a1652815115bc0c9d5299200fc598ef3993b0f845", size = 875729, upload-time = "2025-07-04T06:04:33.426Z" },
|
|
84
|
+
{ url = "https://files.pythonhosted.org/packages/1d/7c/5d49bf0e3e36c3240af668401c19508c52801e153c10cf3f9b73a41b4801/python_calamine-0.4.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:51cb79689bed1f8a6a331381034101fc32aafa5b73afc22873672ea957659ef4", size = 879236, upload-time = "2025-07-04T06:04:34.69Z" },
|
|
85
|
+
{ url = "https://files.pythonhosted.org/packages/59/82/d304c6f6bc12fc448db9aac58feec7a8efe10c8a2e94a0b93f636398ce82/python_calamine-0.4.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d76694000cd2e46de36a3963a2f2bb3abd9d4a949cab7cce877faa51a5249e11", size = 1015483, upload-time = "2025-07-04T06:04:35.958Z" },
|
|
86
|
+
{ url = "https://files.pythonhosted.org/packages/ef/6f/ce025bfe3699de84bae91595ffc7e150d24dec45087784ae94c02ff7b4b8/python_calamine-0.4.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e34062474d353bfff3b44bc3d0aa1230ed97bebfed34d3168447b3e24fdcedfd", size = 926046, upload-time = "2025-07-04T06:04:37.323Z" },
|
|
87
|
+
{ url = "https://files.pythonhosted.org/packages/77/d8/f440e51c0372488df91e7a7ff9285050a28a6cbb88d4069831f85daa0166/python_calamine-0.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:01a8a75f428882ea9636f5d8dd2282f0e69616c6c2e054342996dd5363acc1b1", size = 888892, upload-time = "2025-07-04T06:04:38.783Z" },
|
|
88
|
+
{ url = "https://files.pythonhosted.org/packages/03/1c/a7f40de7e21e29cadc4b14556f5cdf035b8ccc05aa5bbd60662222e7030f/python_calamine-0.4.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:cbf3ee6452fbefa2857053c58913058e152ecdddd90f69b923d9d7920db1cbd4", size = 931085, upload-time = "2025-07-04T06:04:40.752Z" },
|
|
89
|
+
{ url = "https://files.pythonhosted.org/packages/95/74/3bf083951d2230ee9ae7e2b2ae1926f645958473a6b7ed3d53e185ee7f8a/python_calamine-0.4.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:24fd78cab78c9fff3db34c326a14d776d9d97376d4ec03fb413adc36e50f9d5a", size = 1054551, upload-time = "2025-07-04T06:04:42.066Z" },
|
|
90
|
+
{ url = "https://files.pythonhosted.org/packages/dd/15/e48eff0995042a8b60e7d2454b004a136cfc6b0e28edcd9d4e1f02da2b06/python_calamine-0.4.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:0ccfe7198de140c93a0d07ca84d10bc4d07fa6628c3e48a765287307b1083af3", size = 1059210, upload-time = "2025-07-04T06:04:43.47Z" },
|
|
91
|
+
{ url = "https://files.pythonhosted.org/packages/c1/ad/a5778758e7bf54faca2def878a37b36e3e88b1ab66d84e7ec670afa0b2b7/python_calamine-0.4.0-cp38-cp38-win32.whl", hash = "sha256:7e859cdbf0089c09b1cfc097951bfdb2867aaae727737e13c7c2f2209974d320", size = 664168, upload-time = "2025-07-04T06:04:44.828Z" },
|
|
92
|
+
{ url = "https://files.pythonhosted.org/packages/58/61/9317d9f3f6f5b0154340683572b2cb667c8afa8083140d62659e7d1ab3a6/python_calamine-0.4.0-cp38-cp38-win_amd64.whl", hash = "sha256:dad42188a948fe057eb524ae68d12bef5d388d9b31f9efcbf3aae0ed8ccb2538", size = 692702, upload-time = "2025-07-04T06:04:46.151Z" },
|
|
93
|
+
{ url = "https://files.pythonhosted.org/packages/ee/f4/fc9f5b96f2f3555b479004c7fc9fa52996339808935333a45aa88cc253b5/python_calamine-0.4.0-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:7ed314602023b05a9637d78b53ea112df151751b72b1ae4249e6acadf106daf7", size = 833680, upload-time = "2025-07-04T06:04:47.796Z" },
|
|
94
|
+
{ url = "https://files.pythonhosted.org/packages/08/31/1ca460cbe65bebb0de7e784a5ee64a9652b2abb6a57dba9aea0ae3fbdd00/python_calamine-0.4.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a283f538a404080eb6bd2e1108d9696c16238e98edc94ec6e7762ba1f1d83351", size = 812618, upload-time = "2025-07-04T06:04:49.512Z" },
|
|
95
|
+
{ url = "https://files.pythonhosted.org/packages/76/00/7a30eda6407de405fc41f952abba647f267e29113ef869964a8209daecfb/python_calamine-0.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:513d3494f5dcebb9cfac3b075431c6d6e83ffb8827593fcbf5efb5b4161acf21", size = 875418, upload-time = "2025-07-04T06:04:50.799Z" },
|
|
96
|
+
{ url = "https://files.pythonhosted.org/packages/06/1f/50a30bc290b6cf611611bdfad3fc4feb8cbaf5ab391f5b9c8d9fd717ec3e/python_calamine-0.4.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:f951ff667b2e3ae2e18f9abd0893d7c309aad2d9f3d0272f273d73c4f9965c4e", size = 878480, upload-time = "2025-07-04T06:04:52.235Z" },
|
|
97
|
+
{ url = "https://files.pythonhosted.org/packages/c6/11/01b1d463d165a4c6fc0ab0d85c2d3f58989e1571ea08c5e50fb1e69fad17/python_calamine-0.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e2cc3edd08656ba0aaf01df0c0c49e6089a3164286de8c78739794eeeaf05d77", size = 1015772, upload-time = "2025-07-04T06:04:53.529Z" },
|
|
98
|
+
{ url = "https://files.pythonhosted.org/packages/37/0d/b8c53c3e22d052a782a642666ab09aa4bf5e87f45ea7ff5a8dddc1a52b71/python_calamine-0.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9538133b3bf2a7ffbb8e2ae0c45b915e2d6f412043623a09a20d5274fc8e69c8", size = 925726, upload-time = "2025-07-04T06:04:55.435Z" },
|
|
99
|
+
{ url = "https://files.pythonhosted.org/packages/3a/e8/a51614110b1f6211a65085d3ee57ee332a69813c41469a9a7ed700b01f04/python_calamine-0.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:42da196f7c7b4ad603fd380c87c479c141e7f9ada4c98c03e9b3e1b18178c8b0", size = 888095, upload-time = "2025-07-04T06:04:57.077Z" },
|
|
100
|
+
{ url = "https://files.pythonhosted.org/packages/d8/75/2d8adf138c22c05ff5f7c1b09c37dc30ef46009e96be4beae867dad6e567/python_calamine-0.4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:65a30c6fca7f0e5ef4f45ed30b61108a358049268aa3cd0d8b168fec77c6db00", size = 930813, upload-time = "2025-07-04T06:04:58.471Z" },
|
|
101
|
+
{ url = "https://files.pythonhosted.org/packages/87/d3/68dbc7a66fba3bb3aa5115ac442c2bfefd5c971b3369ae3320cf7ed02ca1/python_calamine-0.4.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:07252575340301cd62db505820179f299dc703ab4fb11221df3b9183c4c740a4", size = 1053703, upload-time = "2025-07-04T06:04:59.781Z" },
|
|
102
|
+
{ url = "https://files.pythonhosted.org/packages/37/1b/23e8c005dcf7c993cea857fa1b4170e3f9bb594e72f6142b750b3f768151/python_calamine-0.4.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:6943e5856d759902b0cbf4314a09f0f09fda4c4450071ca2d16fc427983e8720", size = 1058130, upload-time = "2025-07-04T06:05:01.301Z" },
|
|
103
|
+
{ url = "https://files.pythonhosted.org/packages/d4/1f/eade71d18121c160335eec2759191aca0324d40c0b7ebca851688677192b/python_calamine-0.4.0-cp39-cp39-win32.whl", hash = "sha256:b65c99650946912ce601d67f519e771bce93ba2cdd2511b1a0e40aa287f273ca", size = 664008, upload-time = "2025-07-04T06:05:02.774Z" },
|
|
104
|
+
{ url = "https://files.pythonhosted.org/packages/a4/e2/fcbcf63a7174e151830a4522a5331f70bea9317953dcf8f139cc5a8523ca/python_calamine-0.4.0-cp39-cp39-win_amd64.whl", hash = "sha256:c80cfe589bd8dc027a38925f71b70f34151b762c974d9ea3de180d76f2740072", size = 692581, upload-time = "2025-07-04T06:05:04.202Z" },
|
|
105
|
+
{ url = "https://files.pythonhosted.org/packages/a1/8c/120a1128ff422dba43d6f2d1d19520bca95abf1e5135bbe3b84a782d3927/python_calamine-0.4.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:4f9a44015de9e19a876babf707dc55708881930024220c8ae926ea0255f705fe", size = 835210, upload-time = "2025-07-04T06:05:05.543Z" },
|
|
106
|
+
{ url = "https://files.pythonhosted.org/packages/db/62/6062945b8d5fc73d0a0c44b25ee5f4037cc32d62b57688a0d0ca6763006d/python_calamine-0.4.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:2c10bb42e0d0810368e78ee9359902f999a1f09bcc2391b060f91f981f75ae21", size = 816045, upload-time = "2025-07-04T06:05:06.86Z" },
|
|
107
|
+
{ url = "https://files.pythonhosted.org/packages/9f/7b/597470e5349056a1dd7b0e3a7e838da53cba9186771ca5501a264446f4ad/python_calamine-0.4.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:494c5dd1dcee25935ff9d7a9eef6b0f629266d1670aef3ee5e0d38370dcb3352", size = 875895, upload-time = "2025-07-04T06:05:08.259Z" },
|
|
108
|
+
{ url = "https://files.pythonhosted.org/packages/4b/e9/fabdd376713409e6ae6a8fee41293304798d794a64c9d407ba90f765f3d4/python_calamine-0.4.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5f04fb24e70ab4403fc367b9b779eaa3bf61c140908d9115ddfe1e221372d5d4", size = 889049, upload-time = "2025-07-04T06:05:09.717Z" },
|
|
109
|
+
{ url = "https://files.pythonhosted.org/packages/80/8e/cc09cc14276662cea1f161a20bdce46d8bfd409e84027a0a0515a00b63f5/python_calamine-0.4.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:49dce56dbd1efc024b63b913595f1a9bef6f66a6467aefad7dcd548654fedb5b", size = 931721, upload-time = "2025-07-04T06:05:11.086Z" },
|
|
110
|
+
{ url = "https://files.pythonhosted.org/packages/7b/b4/44f560b0ab4dcb49845f5c5361641885f8dc2b7e9b35fbf59242191c2eeb/python_calamine-0.4.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:7dc1755cd0b10ce5e2d80e77e9f19c13ed405b354178c3547ba5a11d34fce6ea", size = 1054521, upload-time = "2025-07-04T06:05:12.497Z" },
|
|
111
|
+
{ url = "https://files.pythonhosted.org/packages/9b/4b/ee4ac45d500bd2ae189f84adf3338dbd32579fa2198a05ad180666578575/python_calamine-0.4.0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:9d981efa53ddfd8733555ad4c9368c8c1254bd8d1e162c93b8d341ead6acc5a9", size = 1059692, upload-time = "2025-07-04T06:05:13.857Z" },
|
|
112
|
+
{ url = "https://files.pythonhosted.org/packages/74/99/835a9cd3ed503cb51fd15039b6404c536d201a6f3d16a6e069ce1079c5e4/python_calamine-0.4.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:b370998567de0cd7a36a8ac73acabefea8397ad2d9aad3cf245b5d35f74cb990", size = 694046, upload-time = "2025-07-04T06:05:15.16Z" },
|
|
113
|
+
{ url = "https://files.pythonhosted.org/packages/ce/c7/5634fc5b2c555eefd2221715588877a55b0a785ba2b06bb763fd963681a8/python_calamine-0.4.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:c076627f5532d1b40cb48ee80af2f625a9c6f58b24dad776406c7f1c3c339b41", size = 835281, upload-time = "2025-07-04T06:05:16.493Z" },
|
|
114
|
+
{ url = "https://files.pythonhosted.org/packages/81/a4/cbc5e0027c6fb6e23f9b84d1485425be63ae5d1300d574b004e916792c60/python_calamine-0.4.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:bafea0e6ae20156a5bb20abfa6b7ba2c8c8716cf8f7afbf365b2133be4bd0ec4", size = 815585, upload-time = "2025-07-04T06:05:17.931Z" },
|
|
115
|
+
{ url = "https://files.pythonhosted.org/packages/6a/66/9a155483587d2db6a4f69cb3a5d9c83963a4db82c7e1cf7f335a486a8d78/python_calamine-0.4.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:78fe6a871b5234db52fb328dab866ef112162e29f8ca193e11a2bdcad3dfa3a2", size = 876146, upload-time = "2025-07-04T06:05:19.645Z" },
|
|
116
|
+
{ url = "https://files.pythonhosted.org/packages/c3/5d/fe17ca00b257e5fe92c38b7d6083c2e1995e916190f0af604d1912fad744/python_calamine-0.4.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4f62da1115fd7a103e013f151bcbde3c07dde398a55eccb2d66b0d1e95a010bb", size = 889936, upload-time = "2025-07-04T06:05:21.058Z" },
|
|
117
|
+
{ url = "https://files.pythonhosted.org/packages/47/44/da2782e6429afe7bf9361b931d5a7aa91aa9d82992243a015179d5da1b0e/python_calamine-0.4.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:a623372781849d664a4c9116334c22336caed0fd58a1b065b4865c01af29f5de", size = 932360, upload-time = "2025-07-04T06:05:22.556Z" },
|
|
118
|
+
{ url = "https://files.pythonhosted.org/packages/ba/8c/73d13cb477b9e8cd1815d6dbf687a1a9ca702f2ee3433ddbfbd7d15b6b89/python_calamine-0.4.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:d311df409e091c9664290b017f5d8d36365c354a87b103a333ae110238206c0f", size = 1054733, upload-time = "2025-07-04T06:05:23.927Z" },
|
|
119
|
+
{ url = "https://files.pythonhosted.org/packages/c5/92/81e57dd920f072627d2be39875558a1b8f35db0b54ad0deb4b63a3e521f8/python_calamine-0.4.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:703c905e2a50049099f91a5dff6fe47df88e50003d0152a1ab9c0581ed44489f", size = 1059935, upload-time = "2025-07-04T06:05:25.312Z" },
|
|
120
|
+
{ url = "https://files.pythonhosted.org/packages/70/bb/b42279197ea4dbd514ec6eaa1587b6bf396539f7e0c1b2d87ce1c7543175/python_calamine-0.4.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:9f0908cf2b12b7271b6309a0def56fff9ae4628fa9a4c2eea148717605b7a8c8", size = 693901, upload-time = "2025-07-04T06:05:26.866Z" },
|
|
121
|
+
]
|
|
122
|
+
|
|
123
|
+
[[package]]
|
|
124
|
+
name = "python-calamine"
|
|
125
|
+
version = "0.6.2"
|
|
126
|
+
source = { registry = "https://pypi.org/simple" }
|
|
127
|
+
resolution-markers = [
|
|
128
|
+
"python_full_version >= '3.10'",
|
|
129
|
+
]
|
|
130
|
+
sdist = { url = "https://files.pythonhosted.org/packages/01/18/e1e53ade001b30a3c6642d876e5defe8431da8c31fb7798909e6c8ab8c34/python_calamine-0.6.2.tar.gz", hash = "sha256:2c90e5224c5e92db9fcd8f22b6085ce63b935cfe7a893ac9a1c3c56793bafd9d", size = 138000, upload-time = "2026-02-18T13:38:17.389Z" }
|
|
131
|
+
wheels = [
|
|
132
|
+
{ url = "https://files.pythonhosted.org/packages/3d/ee/e9b26f9e83702bd76ebe8c452802ca2fc5d9e9617f79b34fc25a2556d7ff/python_calamine-0.6.2-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:4eecdff86896e974ba12c37abb5497c61c1e32b5cb94999c5fb24509bf5aa338", size = 879947, upload-time = "2026-02-18T13:35:37.566Z" },
|
|
133
|
+
{ url = "https://files.pythonhosted.org/packages/7b/b4/8aea94176fa8532f78df091c34583e9abaa84cc458baee651275dc8b489f/python_calamine-0.6.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:14fdeb66e7d00eb06ed66f6a2db53accaa9c5237479843b0c96c15f6cdb89bcf", size = 858690, upload-time = "2026-02-18T13:35:39.522Z" },
|
|
134
|
+
{ url = "https://files.pythonhosted.org/packages/81/8a/0b52721b2d83ba5efc989497b34671949d428147b019d93beeb4cbbfcdfb/python_calamine-0.6.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c6615ad69c29fa447d4b44c51c21e073c6bf08f4d7c9b85db4b7afdff03ba408", size = 929435, upload-time = "2026-02-18T13:35:40.785Z" },
|
|
135
|
+
{ url = "https://files.pythonhosted.org/packages/c7/59/65fb329ae1cf0a950698594d5d23e247ca434113dec326cf5377692ad298/python_calamine-0.6.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:3110bcc26bc5b61f4f61e82f5cbeab7c4a046d1805af1effff1e277a004ba038", size = 905877, upload-time = "2026-02-18T13:35:42.552Z" },
|
|
136
|
+
{ url = "https://files.pythonhosted.org/packages/10/b4/1dcc77a01fa6f09135819347f985e6da8073ebe47437f01bac70ee49da2c/python_calamine-0.6.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:18f7aa4c0358bf2cc17b48c918e360211ff3398ff164433532cc33c7a810a29a", size = 1064564, upload-time = "2026-02-18T13:35:43.818Z" },
|
|
137
|
+
{ url = "https://files.pythonhosted.org/packages/a9/d2/f5b1c41682ab35638a50422956cabfd034d0239deacec3558cbb2553072c/python_calamine-0.6.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8bb6b42c5c99ad2e527ad00014811865332ac8798e5af4f6252d4ecd1862a853", size = 969832, upload-time = "2026-02-18T13:35:45.535Z" },
|
|
138
|
+
{ url = "https://files.pythonhosted.org/packages/94/2a/1268d174e3cb6221acc1576c3ff20e3dc54d184fc691b6512c65e20cf939/python_calamine-0.6.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba6b14aad3d8455bb7ef5ea0cd1216e20ef94bfdd34f1d96a65cf932c20b45b6", size = 937405, upload-time = "2026-02-18T13:35:47.095Z" },
|
|
139
|
+
{ url = "https://files.pythonhosted.org/packages/c6/34/5882e1eb6000eaf1a1ed3273240abfbac6d5b56390745553f24717cd720a/python_calamine-0.6.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:49df78181e2a706c066211fb785eeed50608bfb0d6a7c5d953fd0749f841f430", size = 978458, upload-time = "2026-02-18T13:35:48.835Z" },
|
|
140
|
+
{ url = "https://files.pythonhosted.org/packages/32/02/f6a6dca801c2b297be1a306c74e4a31906a768daac9eb9d01080184f3bef/python_calamine-0.6.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:2d46b08efe555f7cf3b6821e7799dbaa0cb9f1e7664cd1ba45843000ba8f4857", size = 1106307, upload-time = "2026-02-18T13:35:50.776Z" },
|
|
141
|
+
{ url = "https://files.pythonhosted.org/packages/2c/3e/6a518d4e38fa2bad0c5e73a7093a0950297d891265903edff68bb4d2e0bb/python_calamine-0.6.2-cp310-cp310-musllinux_1_1_armv7l.whl", hash = "sha256:15a6494c04f72bb1e49d25d268f8b1c383d699f14d093f8fbfa262ab7aaaef63", size = 1181387, upload-time = "2026-02-18T13:35:51.992Z" },
|
|
142
|
+
{ url = "https://files.pythonhosted.org/packages/61/d3/354a84d1d1078c688751eeb03718566e2e6141be350c2e8528e44c556292/python_calamine-0.6.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:0d39413ad470bd04054fa25dc1bb8c24d08a4e6641e7cb96fb26c7e30c8b190d", size = 1148159, upload-time = "2026-02-18T13:35:53.246Z" },
|
|
143
|
+
{ url = "https://files.pythonhosted.org/packages/f3/a6/c1534f0c039b9dd0748c5e7997e25beb9d7abd7a09e51bb240c9b49fddec/python_calamine-0.6.2-cp310-cp310-win32.whl", hash = "sha256:70f275d2e63004a37ca68f4c210022b1ac3d51d131af037e690a9e2870f2b331", size = 699293, upload-time = "2026-02-18T13:35:54.565Z" },
|
|
144
|
+
{ url = "https://files.pythonhosted.org/packages/82/80/1b36aaa3e0dad968a31b48b6d478eeb80390d2e7bcdff37f5fe7d902b335/python_calamine-0.6.2-cp310-cp310-win_amd64.whl", hash = "sha256:8bf00a752dd0f14ee7483fccb5894cbb465146f16ab7abffe5f495922fab295b", size = 751383, upload-time = "2026-02-18T13:35:56.445Z" },
|
|
145
|
+
{ url = "https://files.pythonhosted.org/packages/b8/89/739bf1033d7ec4d01f62b5a60a7ea2017f985f724baec95c39628a840ea3/python_calamine-0.6.2-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:626a9b342d3df5596e8a4c7410ad65d05447e77f915ef14cb0a9dd90f2d42608", size = 879847, upload-time = "2026-02-18T13:35:58.633Z" },
|
|
146
|
+
{ url = "https://files.pythonhosted.org/packages/29/e3/5f62d3e6cafb9a99290791f2206a2d752f9bffe65d19673b0f8e3e9c7320/python_calamine-0.6.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:65f427b50e659b3752b6a088bd703f1c4161e491b6745d849fe8cc997adbe296", size = 858617, upload-time = "2026-02-18T13:35:59.869Z" },
|
|
147
|
+
{ url = "https://files.pythonhosted.org/packages/49/01/683d0233c86d44ffe568ab627a6e99259f2fc868a8b3d343a8fd2f3ce6ec/python_calamine-0.6.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:316e41a9bc1fc0ee6c3e01f1e252112fae7cc3eba698870f11e0ef5d63d37b7c", size = 929696, upload-time = "2026-02-18T13:36:01.184Z" },
|
|
148
|
+
{ url = "https://files.pythonhosted.org/packages/e6/78/98d69f46db4adeab662463e119f5ac68ebfdc4f6122356c8db3e1442e8a6/python_calamine-0.6.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:a9c0fa9138f2c3e9aff604744c78e8558c88f5e57ad5da23a3b6472d01b13696", size = 905627, upload-time = "2026-02-18T13:36:02.964Z" },
|
|
149
|
+
{ url = "https://files.pythonhosted.org/packages/e0/5f/9c4641e93c600e8bc52d19ad5b680baff242844cabee55f4625ec56ee6c1/python_calamine-0.6.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:fc42307129e59e48993ca974cf0d5402464690a15c87e5e5e879eb4a4d8ea362", size = 1064524, upload-time = "2026-02-18T13:36:07.778Z" },
|
|
150
|
+
{ url = "https://files.pythonhosted.org/packages/b6/48/907e98853008f21a2c77c12c9515903d2891572d453269f052bbd9a14c6a/python_calamine-0.6.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:aff0652a0d87d68de25c628338fb5c06e07f9d28d7120c5987e094282acf6d7a", size = 969734, upload-time = "2026-02-18T13:36:09.076Z" },
|
|
151
|
+
{ url = "https://files.pythonhosted.org/packages/01/f8/576d245d278ea3e13058a99cb2e3ab27eacf51a4ed6e387556e11e532114/python_calamine-0.6.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7a170adfa3abb4724884617d12664c8518cd9eccb03522838553a06e353ed698", size = 937397, upload-time = "2026-02-18T13:36:10.695Z" },
|
|
152
|
+
{ url = "https://files.pythonhosted.org/packages/66/0e/bfe248e6d9e53b143ad371200613322e39c907598aed2e4915031c1d1635/python_calamine-0.6.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:ee3f210e84eca9d8337cf0ea2f02757b2e0d123a07ecb43186dc5fd63c5c9d0b", size = 979083, upload-time = "2026-02-18T13:36:12.842Z" },
|
|
153
|
+
{ url = "https://files.pythonhosted.org/packages/9d/ad/4fa49ac4ee0a1fd97749149e4742f20146c706e31bc1ffac19d074a70817/python_calamine-0.6.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:20e0c2f28688786ea713f48dcc54a6877432da4ed277ae886a10a5ed802fcad6", size = 1106237, upload-time = "2026-02-18T13:36:14.084Z" },
|
|
154
|
+
{ url = "https://files.pythonhosted.org/packages/42/d4/ecd096f77bdf5927806591fe60b2937f301f098268ea97e045d9a552c7f4/python_calamine-0.6.2-cp311-cp311-musllinux_1_1_armv7l.whl", hash = "sha256:c743582bef238ea98176e47dffd9027d096df2bff5c4ad8bfad03920921aa021", size = 1180994, upload-time = "2026-02-18T13:36:15.253Z" },
|
|
155
|
+
{ url = "https://files.pythonhosted.org/packages/29/14/3128c1beddb5c12dc1eb0a7f0704a7f3fdd46ac1c79ae60f67cbc895707e/python_calamine-0.6.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:8ddd518c62cb14e4ec5c81f8f389fd021d9a2ed6a5ab9348fbafb810c57f7717", size = 1148215, upload-time = "2026-02-18T13:36:16.45Z" },
|
|
156
|
+
{ url = "https://files.pythonhosted.org/packages/6b/7b/244514d60c41b65b2c1b16f9ffba01b48e0d323c61085bd1a98f6a49ab97/python_calamine-0.6.2-cp311-cp311-win32.whl", hash = "sha256:14f4fdb50ac7bcfe59b415bae865cdc958edff6a9adf85735dab4f7fa9f153f3", size = 699276, upload-time = "2026-02-18T13:36:17.755Z" },
|
|
157
|
+
{ url = "https://files.pythonhosted.org/packages/c4/67/749b482001d3c9ec601b6785ff715a8613e8bb6311ccd3d953485e08c6b3/python_calamine-0.6.2-cp311-cp311-win_amd64.whl", hash = "sha256:ec90a5d8358c0139bbcbf7f3a61d44baf41846a54367d4b34d5329102c4d4f59", size = 751919, upload-time = "2026-02-18T13:36:19.257Z" },
|
|
158
|
+
{ url = "https://files.pythonhosted.org/packages/65/a4/f2cc3243b836256d0bbb254cc9f766270813c4df77f45e8971d24c936bab/python_calamine-0.6.2-cp311-cp311-win_arm64.whl", hash = "sha256:a6112601f889e951333ff79ab0b6aa814a18df247d861db58d4272ad7be263d5", size = 719281, upload-time = "2026-02-18T13:36:20.469Z" },
|
|
159
|
+
{ url = "https://files.pythonhosted.org/packages/7a/ec/e111c1a3a4c138ebc41e416e33730ee6d7c54e714af21c2a4e59b41715a5/python_calamine-0.6.2-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:857e4cddadba9b55c76dc583c58c5dc101a6cd5320190c10f8b2ab98d66c9040", size = 879539, upload-time = "2026-02-18T13:36:21.674Z" },
|
|
160
|
+
{ url = "https://files.pythonhosted.org/packages/53/26/fe4c2138ff21542e2f1130a4d83c330d7f9486b62775196e998b88a03de6/python_calamine-0.6.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:cd89d6a53e4b22328cd685fc054c31d359cb3ae67bd24bc57e1c1db62a4cfc97", size = 858642, upload-time = "2026-02-18T13:36:23.847Z" },
|
|
161
|
+
{ url = "https://files.pythonhosted.org/packages/6a/b0/bfeaf45ac5e2f6553723dd2fbe127d1d17c6f26496db5781de42a933776a/python_calamine-0.6.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4d6c9af39db39e0c70710ae79cd1b5d980f9c0aea55fc16d194460c1561a0c6a", size = 925242, upload-time = "2026-02-18T13:36:25.236Z" },
|
|
162
|
+
{ url = "https://files.pythonhosted.org/packages/fe/6e/81106aa80609075015d400584030605b05f5e12931717160dcc58fdc4980/python_calamine-0.6.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9a2382dbc410dd48c99d89ee460662cc70892fe1b2901ab982604b923e8eb8f6", size = 905295, upload-time = "2026-02-18T13:36:27.152Z" },
|
|
163
|
+
{ url = "https://files.pythonhosted.org/packages/4d/ba/6311b24f9889246be63b664630c5601039ef771f7ed04c8f51aace39b7a9/python_calamine-0.6.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3ebb93255709874ede5b5e62828cb5758e60097e5390b6c9a3eb7751b617b12e", size = 1063473, upload-time = "2026-02-18T13:36:29.226Z" },
|
|
164
|
+
{ url = "https://files.pythonhosted.org/packages/23/e4/027a1b046d30768872307ebe808dc4cdc5357295cdcda98b30b3ea924904/python_calamine-0.6.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:837bca19bd945cb83aded433f4cf76e80d70a5400404d876400ca7e88e5ea311", size = 965355, upload-time = "2026-02-18T13:36:31.376Z" },
|
|
165
|
+
{ url = "https://files.pythonhosted.org/packages/5c/4d/da8716a1b3a66938aaabe36873f6fa210fa063bab1b20c2ec236013de6b3/python_calamine-0.6.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:723990a47668cb819f307ccc634741370d3cd3804a0ee8cda392a522ae6d5016", size = 935091, upload-time = "2026-02-18T13:36:32.777Z" },
|
|
166
|
+
{ url = "https://files.pythonhosted.org/packages/36/40/9521e8da5496cbc4b18027626a40018301f546b3e9802ca2f3a6cb5b4739/python_calamine-0.6.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b067630d693e1d7de41e3d44a99c7dd3feebb52db8dda8636ac3f70d8b6a4ad6", size = 974070, upload-time = "2026-02-18T13:36:34.055Z" },
|
|
167
|
+
{ url = "https://files.pythonhosted.org/packages/cd/b0/7a63963512c5ba7e9539b7452e2b1561625e63e4e29c044e487e2e93dcbe/python_calamine-0.6.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:6ab09c9da53a2b33633e9f940aed11c08e083810a0fd6885826cdc52ba4f86a5", size = 1100321, upload-time = "2026-02-18T13:36:35.475Z" },
|
|
168
|
+
{ url = "https://files.pythonhosted.org/packages/22/81/e2bc38a5cf9629f656adcdabe8e134028f60c236e4bb96375dda90db3fdd/python_calamine-0.6.2-cp312-cp312-musllinux_1_1_armv7l.whl", hash = "sha256:ae08e1308a0d0c6b8b4cc0a039ed8a85fc9ee2f8a3ca9ea57b1af9f97ed68fe4", size = 1181039, upload-time = "2026-02-18T13:36:37.195Z" },
|
|
169
|
+
{ url = "https://files.pythonhosted.org/packages/b1/ea/513117015fd5903ca6dde9c8fb8502af60af6965642f4e3311623943e673/python_calamine-0.6.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:c441a20c7aff0e904ca01b5cdc1e5be2c6d4a41a24a0ea4d5ea6d211343bb95f", size = 1144843, upload-time = "2026-02-18T13:36:38.393Z" },
|
|
170
|
+
{ url = "https://files.pythonhosted.org/packages/a2/14/8846478dacf31535f5f15448ade3bc688b51f3183f1b52844451aa27b0e6/python_calamine-0.6.2-cp312-cp312-win32.whl", hash = "sha256:39cae8e66f8bce499f5f965f4575ddf61e30184cc97f02e1c7031a57abe0903b", size = 692411, upload-time = "2026-02-18T13:36:39.741Z" },
|
|
171
|
+
{ url = "https://files.pythonhosted.org/packages/bb/e2/2d2dcf4ec7e5ec08e33bf966ab010a7be178a4b623bd5f7601d47f2c734c/python_calamine-0.6.2-cp312-cp312-win_amd64.whl", hash = "sha256:1617efa24532f2420934a8cf77e6d33ff1740cae1d39355cab4f4cf141fdab49", size = 748960, upload-time = "2026-02-18T13:36:40.922Z" },
|
|
172
|
+
{ url = "https://files.pythonhosted.org/packages/f1/eb/2f50f3395c0435e6186cab56c36d04c06581ba827264bca1f1acae523aa3/python_calamine-0.6.2-cp312-cp312-win_arm64.whl", hash = "sha256:c2b378db494740e540e8157a7e5fe61dadae69ad2d988a7c80f9583f434acf07", size = 718992, upload-time = "2026-02-18T13:36:42.671Z" },
|
|
173
|
+
{ url = "https://files.pythonhosted.org/packages/15/db/f409c3ffa5d452b8184978c94440b48c933c79232c5e40fe9ce3608ff06d/python_calamine-0.6.2-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:4c6e68c233841604fa3f63899d13bd2e47cddf0787c4b4b8188f74c3be452045", size = 878907, upload-time = "2026-02-18T13:36:44.039Z" },
|
|
174
|
+
{ url = "https://files.pythonhosted.org/packages/66/fe/8cf4309a00ad5628c45e69f13352d6a1e0e0a3148a2fc28d7a43a8cefec9/python_calamine-0.6.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:0fd5bcbd904d05f8b9f127a93706fdbb0a5934efdc9677b402a82d91e6e3f920", size = 858314, upload-time = "2026-02-18T13:36:45.28Z" },
|
|
175
|
+
{ url = "https://files.pythonhosted.org/packages/b8/cc/c5edfb89a99d19c66b029e2e6dc0db052709888753fc0a771bf28343c5e5/python_calamine-0.6.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cef6454aa1b3b2137d7a202c9f84b87dffdd187ff218f2cee459480c102c20a3", size = 924748, upload-time = "2026-02-18T13:36:46.462Z" },
|
|
176
|
+
{ url = "https://files.pythonhosted.org/packages/0a/bd/d0504a0e85b1588ad4ddb97f2ba003d22d9ae7cd719b82a5be2e71d97519/python_calamine-0.6.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:19c55c35edaf89b4d18d5d3cfaac619362f2e8339e4c876f9f0c80640d990db3", size = 903646, upload-time = "2026-02-18T13:36:47.737Z" },
|
|
177
|
+
{ url = "https://files.pythonhosted.org/packages/94/1d/7cf92a77e83f62b8a106af36aa6b314f4b42abc7959787e5a746de4b0525/python_calamine-0.6.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d29984496a22286f511668ea6483293c0e58ac0f25916e1d88125e5e1d83313b", size = 1063499, upload-time = "2026-02-18T13:36:48.998Z" },
|
|
178
|
+
{ url = "https://files.pythonhosted.org/packages/0a/2b/1d90207328fa7f8e74ce13337ae2965669e762877846dab3db8a6f90dec3/python_calamine-0.6.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b0c4deabc2646c6c07abb3620088c5d6d2af26f8954726938ebcdbc6c56a8bd", size = 964671, upload-time = "2026-02-18T13:36:50.289Z" },
|
|
179
|
+
{ url = "https://files.pythonhosted.org/packages/30/2a/7a58828ef14801b4efb323ad9b1ae3d2d2e82e1c5ce35502189e7a201a14/python_calamine-0.6.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fc536feb86c948b330c4db8a9f1d9f9094f8d70a981d04de87ece9d9b9300458", size = 935016, upload-time = "2026-02-18T13:36:51.628Z" },
|
|
180
|
+
{ url = "https://files.pythonhosted.org/packages/ba/63/08c63af2d5074d96b808ad7ae4cb04a3ab59d8d6260223b4d03d99b9cf49/python_calamine-0.6.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:7c0f9e769c735cfb0564aefb4273c6dfeee9fbab1db69b9099cb19cfb8208ddf", size = 973549, upload-time = "2026-02-18T13:36:52.913Z" },
|
|
181
|
+
{ url = "https://files.pythonhosted.org/packages/5f/91/ea25bd171222b9bab1f79e5cb923b891903afbcb19c5241528f9d87b80a9/python_calamine-0.6.2-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:e3824c211eb9505461a9820ed893cf6e39a3af8024fd1892d2cc174ce8329955", size = 1100508, upload-time = "2026-02-18T13:36:54.497Z" },
|
|
182
|
+
{ url = "https://files.pythonhosted.org/packages/d5/21/79f4095e53b4935e36e9e2ed5c7d9683fb448dd9c1bba69144277df9b3a6/python_calamine-0.6.2-cp313-cp313-musllinux_1_1_armv7l.whl", hash = "sha256:8323edededa282cace538805cfa7cab30ad9dd19bca4a23215ea975c73ce9f26", size = 1177921, upload-time = "2026-02-18T13:36:56.339Z" },
|
|
183
|
+
{ url = "https://files.pythonhosted.org/packages/67/02/d0328a96f2cac5cd7d13e50691207b6c06f33b22010d70d3dafde13e50fd/python_calamine-0.6.2-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:f64b93e41dd878a317f958fbf9bfa64342ef9aea58956a93a52d4b9d646a6ef4", size = 1144850, upload-time = "2026-02-18T13:36:57.812Z" },
|
|
184
|
+
{ url = "https://files.pythonhosted.org/packages/28/8c/97012240a29ad22a8a2fb69097d4de52e48a05b7e6cddda9916eec439c83/python_calamine-0.6.2-cp313-cp313-win32.whl", hash = "sha256:91fbfa837aaa6f7fc72e9277678aa0c95b0c3c7df76c7c7bac4ab4a128834a70", size = 691860, upload-time = "2026-02-18T13:36:59.156Z" },
|
|
185
|
+
{ url = "https://files.pythonhosted.org/packages/9e/35/f505780ba2228510412837a56bd9fb1721b021c2203afa10e25aebe67751/python_calamine-0.6.2-cp313-cp313-win_amd64.whl", hash = "sha256:0b2464e036819ecce50181220e120d674b1caac806a31e48eed2e2183acf9a69", size = 748488, upload-time = "2026-02-18T13:37:01.432Z" },
|
|
186
|
+
{ url = "https://files.pythonhosted.org/packages/12/67/309ec85184f189709d238c9f2ec1b056354a8310a4eacefbfdd17b47061c/python_calamine-0.6.2-cp313-cp313-win_arm64.whl", hash = "sha256:64b1ce2bd452a9d2ae00a97e2629e3444b9669ce348e1f534f3a91f55694de15", size = 718567, upload-time = "2026-02-18T13:37:02.773Z" },
|
|
187
|
+
{ url = "https://files.pythonhosted.org/packages/66/a4/0be8520de23b10d3e9179fe620e22ea7ef5f864152cd7ce322df1c9f707a/python_calamine-0.6.2-cp313-cp313t-macosx_10_12_x86_64.whl", hash = "sha256:050f0b830fcdf209826e98849432fb6ee1328895949bf7c63632fd34130cef8d", size = 877980, upload-time = "2026-02-18T13:37:03.932Z" },
|
|
188
|
+
{ url = "https://files.pythonhosted.org/packages/72/92/c6f3e47f84bd9b0298f63dca7a47136121c8a180b09660728ba381eb10a4/python_calamine-0.6.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:f3636e14736cd2ab2377418aeb2ef8c17d1ce7e19bbbe52e445027cf43a2a745", size = 857296, upload-time = "2026-02-18T13:37:05.14Z" },
|
|
189
|
+
{ url = "https://files.pythonhosted.org/packages/4b/60/bb3cc5a7bfd5618307262c1234c38a137532ac17c4c385364a6594c59d91/python_calamine-0.6.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f86a51485f93264679eb449dc93dc498553f449322c81936eac47ace45365e89", size = 923713, upload-time = "2026-02-18T13:37:06.333Z" },
|
|
190
|
+
{ url = "https://files.pythonhosted.org/packages/20/b9/156223f20a685071223bff0f9d220511ed9012e6ba96cede417dde13abcb/python_calamine-0.6.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:b44fbdd11ac44dc5eecf49c1597e7234633cbc9f38c73521ce00278cf0bd8976", size = 902503, upload-time = "2026-02-18T13:37:07.696Z" },
|
|
191
|
+
{ url = "https://files.pythonhosted.org/packages/fb/5b/64f62bbdaaaf7b8fec3c509038edc3cecf7f6dd8539828baf03ba45854ee/python_calamine-0.6.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a0d5fd48c92ae04bf8ef1f326d7ec23295545d171f4b810dc8fa08f28932900f", size = 1061675, upload-time = "2026-02-18T13:37:09.006Z" },
|
|
192
|
+
{ url = "https://files.pythonhosted.org/packages/be/7e/0c440a6aac2b35328e6de7055ea20424456118e67f934ee778a79060f9f3/python_calamine-0.6.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:19363504d08c5c2c7aca188a5c4ded89a47cbba1cbc9a083cd230839f977c5a8", size = 962969, upload-time = "2026-02-18T13:37:10.248Z" },
|
|
193
|
+
{ url = "https://files.pythonhosted.org/packages/66/25/fcbe045e5595a6bc734e6e091909b64099a69725f8335596a6493c21aa05/python_calamine-0.6.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:72078b550a871249c07b71fe5b94fbd30857604ff99380304d273d84a8bcd7c8", size = 934205, upload-time = "2026-02-18T13:37:11.649Z" },
|
|
194
|
+
{ url = "https://files.pythonhosted.org/packages/e4/44/361972390dea31d700b8a8974510cf7d5cac0a0bc563fa1726879b801e2f/python_calamine-0.6.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:e18e524ef1532f8269739b63ca9c6ab7dbd75e9dff20ca7e2e2d8d13c59964b2", size = 971168, upload-time = "2026-02-18T13:37:12.95Z" },
|
|
195
|
+
{ url = "https://files.pythonhosted.org/packages/e7/f8/635566a955138d14fd1ecbc49be48f9add3e2107861507ce1fefd92192a9/python_calamine-0.6.2-cp313-cp313t-musllinux_1_1_aarch64.whl", hash = "sha256:b665c55d5d03b5cc205e4b68c711712cff8aac273f2aa930ab8ab5960b9dc90f", size = 1099592, upload-time = "2026-02-18T13:37:14.312Z" },
|
|
196
|
+
{ url = "https://files.pythonhosted.org/packages/57/12/6b02a3adba57ed2ef7f2ed5ffa557f6a29a06a77f1fd40770ab3d530d2c9/python_calamine-0.6.2-cp313-cp313t-musllinux_1_1_armv7l.whl", hash = "sha256:dc21843a6fca8ae5a722e66bde14324da4f43be98b772b0689ac75dd89d888fd", size = 1176734, upload-time = "2026-02-18T13:37:15.581Z" },
|
|
197
|
+
{ url = "https://files.pythonhosted.org/packages/e1/fb/b6ffd03dc468b0e3bb5747b747bcb4cdd6a98fea7b0f444d8600f2ebaa4e/python_calamine-0.6.2-cp313-cp313t-musllinux_1_1_x86_64.whl", hash = "sha256:e16192fbbb3a3009c89aa62530d807bca272e68a67b362da5c9d156a8950cd51", size = 1143744, upload-time = "2026-02-18T13:37:18.425Z" },
|
|
198
|
+
{ url = "https://files.pythonhosted.org/packages/0d/95/ca5d3f09c98d0420fb03643aea3897c2d68e77df7d3108ad660e9024c277/python_calamine-0.6.2-cp313-cp313t-win_amd64.whl", hash = "sha256:a94a560c0b7ec791f6edfb3fede6ade35b048a61be80e584de8411bf930a8902", size = 749291, upload-time = "2026-02-18T13:37:19.842Z" },
|
|
199
|
+
{ url = "https://files.pythonhosted.org/packages/73/b3/a9ee154d185e64edfeb5bb0c5621a650bc946c071a7be5a2ccfe81da413e/python_calamine-0.6.2-cp313-cp313t-win_arm64.whl", hash = "sha256:2574072b9e26aeae26ebd051a1661bb72fd202ce2904f920f9c605de9555c057", size = 716122, upload-time = "2026-02-18T13:37:21.172Z" },
|
|
200
|
+
{ url = "https://files.pythonhosted.org/packages/86/c3/30e8ebbc5813d332edc6733c63f861bb87b61ad8a71fc97f39d687fb0195/python_calamine-0.6.2-cp314-cp314-macosx_10_12_x86_64.whl", hash = "sha256:630d32f10b16bafbca86fb9373e7a4eccbd0268bc9e80dac923b731a8e472704", size = 878817, upload-time = "2026-02-18T13:37:22.358Z" },
|
|
201
|
+
{ url = "https://files.pythonhosted.org/packages/5f/b7/2c0c82c1d3938bee3972fe97103da158ef9cf2b3bd2ba88ef1fa7e766564/python_calamine-0.6.2-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:39de4d8c1f9db34d02a2d9b7eaad55cdd013b5881cf0a5ab281e2167d090b22e", size = 857826, upload-time = "2026-02-18T13:37:23.856Z" },
|
|
202
|
+
{ url = "https://files.pythonhosted.org/packages/d9/b0/260135d30b0c5e1b723bb5d450426614a20409b27b9e5cdd17076abe1516/python_calamine-0.6.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:36148e9c5022494fd6a2c111fb51d24e6e39cbf3027a3ddedad44545598609ca", size = 925839, upload-time = "2026-02-18T13:37:25.276Z" },
|
|
203
|
+
{ url = "https://files.pythonhosted.org/packages/04/d1/6cc11c5287020a04326da01e46a7a4169d4496d462f94c69ac993e4b6c1d/python_calamine-0.6.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:2526bddc75829b4376a515cad83afeab4019bbe5b770a892852de66b0017527b", size = 902844, upload-time = "2026-02-18T13:37:27.015Z" },
|
|
204
|
+
{ url = "https://files.pythonhosted.org/packages/9c/56/c2197448e66cf8369ecc3ed6450fc26085404b8ddf3f3409958d82a44908/python_calamine-0.6.2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:711a664b8cf1e4f6c55fbd5e15e70fc5792e382e3866416044c23b0d3ffdd055", size = 1063688, upload-time = "2026-02-18T13:37:28.824Z" },
|
|
205
|
+
{ url = "https://files.pythonhosted.org/packages/fd/68/c26b811cf88b39afc107af73fab1a42af56d7ea19e33b80eddc3e869a6e7/python_calamine-0.6.2-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8d449b6130f1469810ebe9f423f9efecaabc60e110db7a5a56d0f098ea78b22f", size = 963750, upload-time = "2026-02-18T13:37:30.655Z" },
|
|
206
|
+
{ url = "https://files.pythonhosted.org/packages/35/d8/4f4bee70187f148661f6112b6cff572c199518b943b4821d9303c3d5084d/python_calamine-0.6.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8f3841986cf512893e8871555ef586387e5e36484cebd0d9398046c3bde1e13c", size = 933485, upload-time = "2026-02-18T13:37:32.082Z" },
|
|
207
|
+
{ url = "https://files.pythonhosted.org/packages/08/67/5f9826d9ee2cb167fa86a496f3dd6551aa727c8dcef8041eb7362c0eeb80/python_calamine-0.6.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:7a8f437273c8dee9d9ae89cc766b6c313a1a99155b74a1a6560a01b82db89b51", size = 973008, upload-time = "2026-02-18T13:37:33.36Z" },
|
|
208
|
+
{ url = "https://files.pythonhosted.org/packages/8d/20/8384433127d4bef3b663e71285d9c5f21d2e312e6b9ae37170290ec28566/python_calamine-0.6.2-cp314-cp314-musllinux_1_1_aarch64.whl", hash = "sha256:6a2dfcfbf1907f37e6a13e2dffff409f79cff911e44e1ce7deb65510b8bbb0de", size = 1101447, upload-time = "2026-02-18T13:37:34.678Z" },
|
|
209
|
+
{ url = "https://files.pythonhosted.org/packages/57/ab/f86f30f3f72a930e6787c7a28b1042458045572c785b6362a77e42920fb1/python_calamine-0.6.2-cp314-cp314-musllinux_1_1_armv7l.whl", hash = "sha256:0c4a6131835f28897cdf36942067220e2c8c6c23f4b7747a094dca6748190c12", size = 1176774, upload-time = "2026-02-18T13:37:37.256Z" },
|
|
210
|
+
{ url = "https://files.pythonhosted.org/packages/ce/2a/3a4d0332b5a30604c6e2645f3a3a54d443ee78ba45d4ad2be015e32bab4a/python_calamine-0.6.2-cp314-cp314-musllinux_1_1_x86_64.whl", hash = "sha256:e8f50885c5042fb3bdd9ad820e4b871e6a1758e15957964acf0515b5d0fb3984", size = 1143674, upload-time = "2026-02-18T13:37:39.007Z" },
|
|
211
|
+
{ url = "https://files.pythonhosted.org/packages/1c/e1/28254dc423f63a62d1c0da649e673ca492ac84250adcc63f90547b83bfbf/python_calamine-0.6.2-cp314-cp314-win32.whl", hash = "sha256:d4b6fe3564596b1a85fdb7dea60ae7dda2bd56898e88128e0306ebfca29d3659", size = 691485, upload-time = "2026-02-18T13:37:40.64Z" },
|
|
212
|
+
{ url = "https://files.pythonhosted.org/packages/17/24/3954b1279ea1b4e25368bccd139098d1abeb3188f4100f2604555be67bae/python_calamine-0.6.2-cp314-cp314-win_amd64.whl", hash = "sha256:39a6703c80e71c9df2eefa4b9aedd994c27d6ae1fda07a48ee3306414d76d39b", size = 749519, upload-time = "2026-02-18T13:37:41.871Z" },
|
|
213
|
+
{ url = "https://files.pythonhosted.org/packages/ae/be/e103f840b48677a85085eaca4667fb2f7c0828c7c49b3ea9e1300d5074bc/python_calamine-0.6.2-cp314-cp314-win_arm64.whl", hash = "sha256:cedae91678a016690775a815c7dc66288b3f0968451bf2161689846b5b330b84", size = 718799, upload-time = "2026-02-18T13:37:43.692Z" },
|
|
214
|
+
{ url = "https://files.pythonhosted.org/packages/0f/36/08e98171718cec3a22e0c4082714894d9ae71c8aaba2ca47dabc5dbf4cf0/python_calamine-0.6.2-cp314-cp314t-macosx_10_12_x86_64.whl", hash = "sha256:5c3ca40133330cccdafb7326c39f7dd60247ad1995d9b92fdcd5052853fc31e5", size = 876825, upload-time = "2026-02-18T13:37:44.933Z" },
|
|
215
|
+
{ url = "https://files.pythonhosted.org/packages/bf/06/327a49b20cd2565457a1eb361b8e078aeb2eb8c2473358924563fc737701/python_calamine-0.6.2-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:5599d12fa06ad42694255fecb1de48f6eb2d074fa55b2f532a93158ae1cc3958", size = 857368, upload-time = "2026-02-18T13:37:46.798Z" },
|
|
216
|
+
{ url = "https://files.pythonhosted.org/packages/c1/fc/b0d380ea649833acc79ecc829470cb632565b865713865c6ba995e505e55/python_calamine-0.6.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fb50c1f6303650d5712a707c8c13842eeebcd433bd660dcdaebc8aedd9085d37", size = 922634, upload-time = "2026-02-18T13:37:50.205Z" },
|
|
217
|
+
{ url = "https://files.pythonhosted.org/packages/50/b7/89128cca52c80c8b9649176bac374356f1923997af0b262a7b5547479fb1/python_calamine-0.6.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:42f1b3172fc2c916990a9749c30f5c2aad5351a807c6597febf7b5b9444eaf4d", size = 901578, upload-time = "2026-02-18T13:37:52.108Z" },
|
|
218
|
+
{ url = "https://files.pythonhosted.org/packages/78/40/bf06d465c761d59beab8d42cb4f5b648862a8ef0a1d900790b7efce1fa5f/python_calamine-0.6.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5f3bb6370d855c9035e8727e6d8685775d411e5f5a3b114e0048bacd2efc2dc5", size = 1062802, upload-time = "2026-02-18T13:37:53.383Z" },
|
|
219
|
+
{ url = "https://files.pythonhosted.org/packages/b9/fd/87792c5f5c5822036ee4bdb01853bd7cb854f982f88cb7fdf6405a36072d/python_calamine-0.6.2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8d790fa2065c3c5d07de27ead53486b6afa64b935036444e5593c670baaf7394", size = 964571, upload-time = "2026-02-18T13:37:54.754Z" },
|
|
220
|
+
{ url = "https://files.pythonhosted.org/packages/31/6c/9981f4ca131d104e7e2d275c97a22026984c766009ec98269fb3b23a8a9f/python_calamine-0.6.2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba4ac4bc59fb16e76d57bbbb2b5567e9d78f99e0b7d6cf27b1fc968dddad9e52", size = 934577, upload-time = "2026-02-18T13:37:56.03Z" },
|
|
221
|
+
{ url = "https://files.pythonhosted.org/packages/19/02/7c1fe7038f9921d520b4bf52299c260db4e21cbba7d3df29ed960ebb31c6/python_calamine-0.6.2-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:16750f933fd68d6796c24390d5379abe02cc592b8cb5c2c715d09885a4e4db78", size = 971699, upload-time = "2026-02-18T13:37:57.303Z" },
|
|
222
|
+
{ url = "https://files.pythonhosted.org/packages/06/10/9da5009d84154e6d86dd73c7f35fe6402803eb054c198a22605d74ab07a0/python_calamine-0.6.2-cp314-cp314t-musllinux_1_1_aarch64.whl", hash = "sha256:0c3a65ee5e1bbed8d32225882b6fae147c187a5019b895bd1a9631fb1e8ebd1b", size = 1098043, upload-time = "2026-02-18T13:37:59.168Z" },
|
|
223
|
+
{ url = "https://files.pythonhosted.org/packages/2f/d0/53238c2185ad59659245d8bc7a86e4902860bd3c73303744b039a35ae517/python_calamine-0.6.2-cp314-cp314t-musllinux_1_1_armv7l.whl", hash = "sha256:80f54662715b25078e90794d792df6ef45154f1affea472c9e802c5d3dda5a9e", size = 1175384, upload-time = "2026-02-18T13:38:00.542Z" },
|
|
224
|
+
{ url = "https://files.pythonhosted.org/packages/3e/40/c421fe66af1e94267a66735940dfc01f7e423eb8c0217a9bc97b03927de6/python_calamine-0.6.2-cp314-cp314t-musllinux_1_1_x86_64.whl", hash = "sha256:7568800d967b7b7b56d1a139d8d6c343b70d88695c8f3c3906aaa1b8bff76900", size = 1144251, upload-time = "2026-02-18T13:38:01.881Z" },
|
|
225
|
+
{ url = "https://files.pythonhosted.org/packages/16/ed/def5e5fa257658894ca2ca3f9c532064056cd1b686f3bc2861f6313ccac7/python_calamine-0.6.2-cp314-cp314t-win_amd64.whl", hash = "sha256:aab8ef96f19feb5df3704dc04805b1e0d6e82827546bea92d660344c674ed9e1", size = 748446, upload-time = "2026-02-18T13:38:03.35Z" },
|
|
226
|
+
{ url = "https://files.pythonhosted.org/packages/f6/24/3587fb169ddd82e78fcd4cd7b2e3eb3ecaa9b28dbee1da18dd0db13b27e6/python_calamine-0.6.2-cp314-cp314t-win_arm64.whl", hash = "sha256:514b3b0ccba57cf807bd4869a76020eb53e2d797f35c95fceb274a5208da1651", size = 714386, upload-time = "2026-02-18T13:38:04.643Z" },
|
|
227
|
+
{ url = "https://files.pythonhosted.org/packages/42/8c/6b72c1eebbcd922feb1597751bbce4bdea569128b7e06f7983f0b6ad0cf0/python_calamine-0.6.2-pp311-pypy311_pp73-macosx_10_12_x86_64.whl", hash = "sha256:0c6dc23fe9a00df4909db603966e020116742fbc2a998a121f2a9bf092ab9529", size = 883251, upload-time = "2026-02-18T13:38:05.881Z" },
|
|
228
|
+
{ url = "https://files.pythonhosted.org/packages/07/ef/5655a616e3d74ef74de0f32d0736357e3dc2982875823ac405e861c1d799/python_calamine-0.6.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:4f434d5db2a015ef1368fd633375844a6897a9b19df2cbdd6337ef3af2326a8e", size = 862349, upload-time = "2026-02-18T13:38:07.204Z" },
|
|
229
|
+
{ url = "https://files.pythonhosted.org/packages/77/54/cc754259fb1e56eff23792b5724d612689736176b98d09b755e6d9837676/python_calamine-0.6.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fc2f65c8edacf36f76d108d760413abccf2ace7478d9c2eafa795a0e01a89c44", size = 931049, upload-time = "2026-02-18T13:38:08.504Z" },
|
|
230
|
+
{ url = "https://files.pythonhosted.org/packages/af/05/c415832f625c94bc1d91e579e7f092a7109c83dd4841e033429db0621619/python_calamine-0.6.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c56d68cf4cc13e2865c66508b1ffde75de610c539603354240d366d3764968fc", size = 938030, upload-time = "2026-02-18T13:38:10.02Z" },
|
|
231
|
+
{ url = "https://files.pythonhosted.org/packages/f0/cb/ef5c257a52dd9d1c927f32048c4c254025012dd74ca96044c7dac9e8d9eb/python_calamine-0.6.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:8e5f3e959793f697101a96857e3e3e2e84b27847eb3b80370675483eeea5b07f", size = 980050, upload-time = "2026-02-18T13:38:11.515Z" },
|
|
232
|
+
{ url = "https://files.pythonhosted.org/packages/cb/5e/7437b7a9106bf331c7f802ec29d4c0208519203b56a3517fa1ba743d8398/python_calamine-0.6.2-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:bb705b9acf993002bce5d2cab182cd04e539ae712be51f31a33a64528792869d", size = 1108010, upload-time = "2026-02-18T13:38:12.746Z" },
|
|
233
|
+
{ url = "https://files.pythonhosted.org/packages/c9/d8/58cb7ac7ba2b937abc1b95e0c3cf6124b2d001d2bd03a62b1049afdb5c20/python_calamine-0.6.2-pp311-pypy311_pp73-musllinux_1_1_armv7l.whl", hash = "sha256:03faea1948e6cf82382819cb3f330616e0ec4b622e98102fd9a0522d260b1161", size = 1182431, upload-time = "2026-02-18T13:38:14.077Z" },
|
|
234
|
+
{ url = "https://files.pythonhosted.org/packages/12/2a/38ed80df1a21f27c4682d4855f42f78b19e96b77efbb80519c242780c161/python_calamine-0.6.2-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:b149def7d77c8bc9e2d7b2a6c75215367426a0be430906fd6ea9803ae1c63e14", size = 1149093, upload-time = "2026-02-18T13:38:15.315Z" },
|
|
235
|
+
]
|
|
236
|
+
|
|
237
|
+
[[package]]
|
|
238
|
+
name = "tabulate"
|
|
239
|
+
version = "0.9.0"
|
|
240
|
+
source = { registry = "https://pypi.org/simple" }
|
|
241
|
+
resolution-markers = [
|
|
242
|
+
"python_full_version < '3.10'",
|
|
243
|
+
]
|
|
244
|
+
sdist = { url = "https://files.pythonhosted.org/packages/ec/fe/802052aecb21e3797b8f7902564ab6ea0d60ff8ca23952079064155d1ae1/tabulate-0.9.0.tar.gz", hash = "sha256:0095b12bf5966de529c0feb1fa08671671b3368eec77d7ef7ab114be2c068b3c", size = 81090, upload-time = "2022-10-06T17:21:48.54Z" }
|
|
245
|
+
wheels = [
|
|
246
|
+
{ url = "https://files.pythonhosted.org/packages/40/44/4a5f08c96eb108af5cb50b41f76142f0afa346dfa99d5296fe7202a11854/tabulate-0.9.0-py3-none-any.whl", hash = "sha256:024ca478df22e9340661486f85298cff5f6dcdba14f3813e8830015b9ed1948f", size = 35252, upload-time = "2022-10-06T17:21:44.262Z" },
|
|
247
|
+
]
|
|
248
|
+
|
|
249
|
+
[[package]]
|
|
250
|
+
name = "tabulate"
|
|
251
|
+
version = "0.10.0"
|
|
252
|
+
source = { registry = "https://pypi.org/simple" }
|
|
253
|
+
resolution-markers = [
|
|
254
|
+
"python_full_version >= '3.10'",
|
|
255
|
+
]
|
|
256
|
+
sdist = { url = "https://files.pythonhosted.org/packages/46/58/8c37dea7bbf769b20d58e7ace7e5edfe65b849442b00ffcdd56be88697c6/tabulate-0.10.0.tar.gz", hash = "sha256:e2cfde8f79420f6deeffdeda9aaec3b6bc5abce947655d17ac662b126e48a60d", size = 91754, upload-time = "2026-03-04T18:55:34.402Z" }
|
|
257
|
+
wheels = [
|
|
258
|
+
{ url = "https://files.pythonhosted.org/packages/99/55/db07de81b5c630da5cbf5c7df646580ca26dfaefa593667fc6f2fe016d2e/tabulate-0.10.0-py3-none-any.whl", hash = "sha256:f0b0622e567335c8fabaaa659f1b33bcb6ddfe2e496071b743aa113f8774f2d3", size = 39814, upload-time = "2026-03-04T18:55:31.284Z" },
|
|
259
|
+
]
|
|
260
|
+
|
|
261
|
+
[[package]]
|
|
262
|
+
name = "xlsx2dict"
|
|
263
|
+
version = "0.1.0"
|
|
264
|
+
source = { editable = "." }
|
|
265
|
+
dependencies = [
|
|
266
|
+
{ name = "python-calamine", version = "0.4.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" },
|
|
267
|
+
{ name = "python-calamine", version = "0.6.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10'" },
|
|
268
|
+
{ name = "tabulate", version = "0.9.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" },
|
|
269
|
+
{ name = "tabulate", version = "0.10.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10'" },
|
|
270
|
+
{ name = "xlsxwriter" },
|
|
271
|
+
]
|
|
272
|
+
|
|
273
|
+
[package.metadata]
|
|
274
|
+
requires-dist = [
|
|
275
|
+
{ name = "python-calamine" },
|
|
276
|
+
{ name = "tabulate" },
|
|
277
|
+
{ name = "xlsxwriter" },
|
|
278
|
+
]
|
|
279
|
+
|
|
280
|
+
[[package]]
|
|
281
|
+
name = "xlsxwriter"
|
|
282
|
+
version = "3.2.9"
|
|
283
|
+
source = { registry = "https://pypi.org/simple" }
|
|
284
|
+
sdist = { url = "https://files.pythonhosted.org/packages/46/2c/c06ef49dc36e7954e55b802a8b231770d286a9758b3d936bd1e04ce5ba88/xlsxwriter-3.2.9.tar.gz", hash = "sha256:254b1c37a368c444eac6e2f867405cc9e461b0ed97a3233b2ac1e574efb4140c", size = 215940, upload-time = "2025-09-16T00:16:21.63Z" }
|
|
285
|
+
wheels = [
|
|
286
|
+
{ url = "https://files.pythonhosted.org/packages/3a/0c/3662f4a66880196a590b202f0db82d919dd2f89e99a27fadef91c4a33d41/xlsxwriter-3.2.9-py3-none-any.whl", hash = "sha256:9a5db42bc5dff014806c58a20b9eae7322a134abb6fce3c92c181bfb275ec5b3", size = 175315, upload-time = "2025-09-16T00:16:20.108Z" },
|
|
287
|
+
]
|