A newer version of the Streamlit SDK is available:
1.44.0
title: Webseiten URL Extraktor
emoji: 🐠
colorFrom: indigo
colorTo: pink
sdk: streamlit
sdk_version: 1.40.2
app_file: app.py
pinned: false
short_description: URLs extrahieren
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
Installation and Setup
Clone the Repository
Open a terminal and run the following command to clone the repository:git clone https://huggingface.co/spaces/datenwerkzeuge/Webseiten-URL-Extraktor
Navigate to the Streamlit Application Directory
Change your directory to thestreamlit
folder where theapp.py
andrequirements.txt
files are located:cd Webseiten-URL-Extraktor
Create and Activate a Virtual Environment (Optional but Recommended)
It's a good practice to use a virtual environment to manage dependencies. To create and activate a virtual environment, use the following commands:# Create a virtual environment python -m venv venv # Activate the virtual environment # On Windows: .\venv\Scripts\activate # On macOS/Linux: source venv/bin/activate
Install the Required Packages
Install the dependencies listed inrequirements.txt
:pip install -r requirements.txt
Run the Streamlit Application
To start the Streamlit app, use the following command:streamlit run app.py
Access the Application
Once the server starts, you can access the web application by visiting:http://localhost:8501