Sathwikchowdary commited on
Commit
60c23c2
1 Parent(s): 6a34ea2

Update pages/Info_of_Json.py

Browse files
Files changed (1) hide show
  1. pages/Info_of_Json.py +7 -1
pages/Info_of_Json.py CHANGED
@@ -80,5 +80,11 @@ st.markdown(
80
  "</p>",
81
  unsafe_allow_html=True
82
  )
83
-
 
 
 
 
 
 
84
 
 
80
  "</p>",
81
  unsafe_allow_html=True
82
  )
83
+ st.markdown("<h2 style='text-align: left; color: Black;'>📈How to Read Json Files </h2>", unsafe_allow_html=True)
84
+ st.markdown(
85
+ "<p style='font-size: 16px; color: White; font-style: italic;'>"
86
+ "JSON data files can be categorized into two types: structured and semi-structured. For structured data, the pd.read_json() function is used, while for semi-structured data, the pd.json_normalize() function is utilized to flatten and extract nested information."
87
+ "</p>",
88
+ unsafe_allow_html=True
89
+ )
90