amylonidis commited on
Commit
26957cf
·
verified ·
1 Parent(s): d425305

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +4 -4
README.md CHANGED
@@ -72,7 +72,7 @@ The following script can be used to load a sample version of the dataset, which
72
  that were published from March until April in 1985.
73
 
74
 
75
- '''
76
 
77
  def load_csvs_from_huggingface( start_date, end_date):
78
  """
@@ -145,9 +145,9 @@ def load_csvs_from_huggingface( start_date, end_date):
145
  else:
146
  return pd.DataFrame()
147
 
148
- '''
149
 
150
- '''
151
 
152
  start_date = "1985-03-01"
153
  end_date = "1985-04-30"
@@ -155,7 +155,7 @@ end_date = "1985-04-30"
155
  df = load_csvs_from_huggingface(start_date, end_date)
156
 
157
 
158
- '''
159
 
160
  ### Full
161
 
 
72
  that were published from March until April in 1985.
73
 
74
 
75
+ ```python
76
 
77
  def load_csvs_from_huggingface( start_date, end_date):
78
  """
 
145
  else:
146
  return pd.DataFrame()
147
 
148
+ ```
149
 
150
+ ```python
151
 
152
  start_date = "1985-03-01"
153
  end_date = "1985-04-30"
 
155
  df = load_csvs_from_huggingface(start_date, end_date)
156
 
157
 
158
+ ```
159
 
160
  ### Full
161