https://github.com/renardeinside/delta-sharing-download-as-csv
Sample UI app to download Delta Sharing tables as CSV files
https://github.com/renardeinside/delta-sharing-download-as-csv
csv delta-sharing
Last synced: about 1 year ago
JSON representation
Sample UI app to download Delta Sharing tables as CSV files
- Host: GitHub
- URL: https://github.com/renardeinside/delta-sharing-download-as-csv
- Owner: renardeinside
- Created: 2023-10-05T16:20:28.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-10-05T16:59:52.000Z (almost 3 years ago)
- Last Synced: 2025-03-30T23:42:17.059Z (over 1 year ago)
- Topics: csv, delta-sharing
- Language: Python
- Homepage: https://github.com/renardeinside/delta-sharing-download-as-csv
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Delta Sharing Download as CSV
Sample app to download a Delta Sharing table(s) as a CSV file.
## Prerequisites
- Python 3.10 or above
- [Hatch](https://hatch.pypa.io/latest/)
- Available Delta Sharing profile file (read [here](https://github.com/delta-io/delta-sharing/blob/main/PROTOCOL.md#profile-file-format) for details on file format)
## How to run
1. Clone this repository:
```bash
git clone https://github.com/renardeinside/delta-sharing-download-as-csv.git
```
2. Install the dependencies:
```bash
cd delta-sharing-download-as-csv
hatch env create
```
3. Activate the virtual environment:
```bash
hatch shell
```
4. Run the app:
```bash
streamlit run src/delta_sharing_download_as_csv/app.py
```
5. Open the app in your browser:
```bash
http://localhost:8501
```
6. Upload the Delta Sharing profile file and click the "Download" button for relevant table.
## Technologies used
- Python 3.10
- [Delta Sharing](https://github.com/delta-io/delta-sharing)
- [Streamlit](https://streamlit.io/)
- [Hatch](https://hatch.pypa.io/latest/)