To add a watermark to an image using Python, you can use libraries like Pillow (PIL). However, integrating this functionality with Streamlit for web deployment requires a different approach. Here's a basic outline of how you can achieve this: Pillow for Watermarking: Use the Pillow library to add a watermark to the image. Streamlit for Web Interface: Use Streamlit to create a web interface where..
Linking an external HTML file in a Streamlit application can be done in a few ways, depending on how you want to integrate the HTML content into your app. Streamlit provides several methods to display HTML content. Here are some common methods: 1. Using st.markdown with HTML: If you have a small HTML file or HTML content that you want to render directly in your Streamlit app, you can read the HT..
(너무 긴 시간 동안 티스토리 업데이트를 안했더니, 끼갈나게 바뀐 티스토리 Editor가 어색하다. 매우 엄청난 기능에 고맙고 황송함도 플러스 ) 반백살이 되어갈 동안 너무 IIS/Apche에만 의존해 온 것 같아 "끼깔나게 성능 좋(다고 알려져 있)다는 NginX를 배워보기로 했다. Ubuntu 리눅스 서버에 설치하는 것을 기준으로 대부분의 설명(구글링)이 나와있지만, 클라이언트의 시스템 환경이 Windows인 탓에, Windows 환경을 기준으로 구축/운영하는 방법을 기록해 두기로 한다. Nginx는 사용자의 요청에 의해 정적/동적인 웹 페이지를 반환하는 웹서버다. Nginx는 일반적인 HTTP의 웹서버의 역할 외에도 proxy, reverse proxy 서버의 역할 또한 가능해 매력적인 것 같다. ..