File size: 364 Bytes
839621c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import streamlit as st
import requests


readme_location = "https://raw.githubusercontent.com/huggingface/data-is-better-together/4d7848149dcfe575b86517ca15e4aaa09dc9db74/domain-specific-datasets/README.md"


def open_markdown_file(url):
    response = requests.get(url)
    return response.text


readme = open_markdown_file(readme_location)

st.markdown(readme)