This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Xampp Project Finder (xpf) | |
* Author: Maniflames <[email protected]> | |
* | |
* Not a front-ender | |
* Styling Cred: https://codepen.io/acjdesigns/pen/vZKLyX | |
*/ | |
//Load CSS |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3.3' | |
services: | |
qbittorrent: | |
image: lscr.io/linuxserver/qbittorrent:latest | |
container_name: qbittorrent | |
environment: | |
- PUID=0 | |
- PGID=0 | |
- TZ=Africa/Casablanca | |
- WEBUI_PORT=8080 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import re | |
import requests | |
from bs4 import BeautifulSoup | |
import html2text | |
from langflow.custom import Component | |
from langflow.io import MessageTextInput, Output | |
from langflow.schema.message import Message | |
class WebContentFetcher(Component): | |
display_name = "Web Content Fetcher" |