Geek7 commited on
Commit
ca6272e
·
1 Parent(s): ea4e380

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -0
app.py CHANGED
@@ -2,6 +2,12 @@ import streamlit as st
2
  from pytube import YouTube
3
 
4
 
 
 
 
 
 
 
5
 
6
  # Load Animation
7
  animation_symbol = "❄"
 
2
  from pytube import YouTube
3
 
4
 
5
+ def local_css(file_name):
6
+ with open(file_name) as f:
7
+ st.markdown(f"<style>{f.read()}</style>", unsafe_allow_html=True)
8
+
9
+
10
+ local_css("style/style.css")
11
 
12
  # Load Animation
13
  animation_symbol = "❄"