Metadata-Version: 2.1
Name: streamlit-get-protocol
Version: 0.1.0
Summary: Get window.location.protocol
Home-page: https://github.com/phamxtien/streamlit-get-protocol
Author: Pham Xuan Tien
Author-email: phamxtien@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE

# streamlit_get_protocol

Get window.location.protocol

## Example:

import streamlit as st  
from streamlit_get_protocol import get_protocol

protocol = get_protocol()

if protocol:  
    st.write(protocol)
    


