https://github.com/dataprofessor/excel-file-merge-app
https://github.com/dataprofessor/excel-file-merge-app
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/dataprofessor/excel-file-merge-app
- Owner: dataprofessor
- Created: 2021-03-20T03:58:42.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2021-06-09T17:13:52.000Z (about 5 years ago)
- Last Synced: 2025-04-05T07:41:32.594Z (over 1 year ago)
- Language: Python
- Size: 6.41 MB
- Stars: 13
- Watchers: 1
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# excel-file-merge-app
# Watch the tutorial video
[How to build an app for combining the contents of multiple spreadsheet files | Streamlit #23](https://youtu.be/xt4hrtG4t3s)
# Demo
Launch the web app:
[](https://share.streamlit.io/dataprofessor/excel-file-merge-app/main/app.py)
# Reproducing this web app
To recreate this web app on your own computer, do the following.
### Create conda environment
Firstly, we will create a conda environment called *excel*
```
conda create -n excel python=3.7.9
```
Secondly, we will login to the *excel* environement
```
conda activate excel
```
### Install prerequisite libraries
Download requirements.txt file
```
wget https://raw.githubusercontent.com/dataprofessor/excel-file-merge-app/main/requirements.txt
```
Pip install libraries
```
pip install -r requirements.txt
```
### Download and unzip contents from GitHub repo
Download and unzip contents from https://github.com/dataprofessor/excel-file-merge-app/archive/main.zip
### Launch the app
```
streamlit run app.py
```
