victormiller
commited on
Commit
•
ccfaf0a
1
Parent(s):
0c6549d
Update curated.py
Browse files- curated.py +13 -13
curated.py
CHANGED
@@ -138,7 +138,7 @@ wikipedia_filter = pd.DataFrame(
|
|
138 |
)
|
139 |
|
140 |
table_html_wikipedia = wikipedia_filter.to_html(index=False, border=0)
|
141 |
-
table_div_wikipedia = Div(NotStr(table_html_wikipedia), style="margin:
|
142 |
|
143 |
freelaw_filter = pd.DataFrame(
|
144 |
{
|
@@ -167,7 +167,7 @@ freelaw_filter = pd.DataFrame(
|
|
167 |
)
|
168 |
|
169 |
table_html_freelaw = freelaw_filter.to_html(index=False, border=0)
|
170 |
-
table_div_freelaw = Div(NotStr(table_html_freelaw), style="margin:
|
171 |
|
172 |
dmm_filter = pd.DataFrame(
|
173 |
{
|
@@ -196,7 +196,7 @@ dmm_filter = pd.DataFrame(
|
|
196 |
)
|
197 |
|
198 |
table_html_dmm = dmm_filter.to_html(index=False, border=0)
|
199 |
-
table_div_dmm = Div(NotStr(table_html_dmm), style="margin:
|
200 |
|
201 |
|
202 |
uspto_filter = pd.DataFrame(
|
@@ -226,7 +226,7 @@ uspto_filter = pd.DataFrame(
|
|
226 |
)
|
227 |
|
228 |
table_html_uspto = uspto_filter.to_html(index=False, border=0)
|
229 |
-
table_div_uspto = Div(NotStr(table_html_uspto), style="margin:
|
230 |
|
231 |
pg19_filter = pd.DataFrame(
|
232 |
{
|
@@ -255,7 +255,7 @@ pg19_filter = pd.DataFrame(
|
|
255 |
)
|
256 |
|
257 |
table_html_pg19 = pg19_filter.to_html(index=False, border=0)
|
258 |
-
table_div_pg19 = Div(NotStr(table_html_pg19), style="margin:
|
259 |
|
260 |
|
261 |
hn_filter = pd.DataFrame(
|
@@ -285,7 +285,7 @@ hn_filter = pd.DataFrame(
|
|
285 |
)
|
286 |
|
287 |
table_html_hn = hn_filter.to_html(index=False, border=0)
|
288 |
-
table_div_hn = Div(NotStr(table_html_hn), style="margin:
|
289 |
|
290 |
|
291 |
uirc_filter = pd.DataFrame(
|
@@ -315,7 +315,7 @@ uirc_filter = pd.DataFrame(
|
|
315 |
)
|
316 |
|
317 |
table_html_uirc = uirc_filter.to_html(index=False, border=0)
|
318 |
-
table_div_uirc = Div(NotStr(table_html_uirc), style="margin:
|
319 |
|
320 |
up_filter = pd.DataFrame(
|
321 |
{
|
@@ -344,7 +344,7 @@ up_filter = pd.DataFrame(
|
|
344 |
)
|
345 |
|
346 |
table_html_up = up_filter.to_html(index=False, border=0)
|
347 |
-
table_div_up = Div(NotStr(table_html_up), style="margin:
|
348 |
|
349 |
se_filter = pd.DataFrame(
|
350 |
{
|
@@ -373,7 +373,7 @@ se_filter = pd.DataFrame(
|
|
373 |
)
|
374 |
|
375 |
table_html_se = se_filter.to_html(index=False, border=0)
|
376 |
-
table_div_se = Div(NotStr(table_html_se), style="margin:
|
377 |
|
378 |
arx_filter = pd.DataFrame(
|
379 |
{
|
@@ -402,7 +402,7 @@ arx_filter = pd.DataFrame(
|
|
402 |
)
|
403 |
|
404 |
table_html_arx = arx_filter.to_html(index=False, border=0)
|
405 |
-
table_div_arx = Div(NotStr(table_html_arx), style="margin:
|
406 |
|
407 |
s2o_filter = pd.DataFrame(
|
408 |
{
|
@@ -431,7 +431,7 @@ s2o_filter = pd.DataFrame(
|
|
431 |
)
|
432 |
|
433 |
table_html_s2o = s2o_filter.to_html(index=False, border=0)
|
434 |
-
table_div_s2o = Div(NotStr(table_html_s2o), style="margin:
|
435 |
|
436 |
med_filter = pd.DataFrame(
|
437 |
{
|
@@ -460,7 +460,7 @@ med_filter = pd.DataFrame(
|
|
460 |
)
|
461 |
|
462 |
table_html_med = med_filter.to_html(index=False, border=0)
|
463 |
-
table_div_med = Div(NotStr(table_html_med), style="margin:
|
464 |
|
465 |
phil_filter = pd.DataFrame(
|
466 |
{
|
@@ -489,7 +489,7 @@ phil_filter = pd.DataFrame(
|
|
489 |
)
|
490 |
|
491 |
table_html_phil = phil_filter.to_html(index=False, border=0)
|
492 |
-
table_div_phil = Div(NotStr(table_html_phil), style="margin:
|
493 |
## end individual tables showing filterin
|
494 |
|
495 |
|
|
|
138 |
)
|
139 |
|
140 |
table_html_wikipedia = wikipedia_filter.to_html(index=False, border=0)
|
141 |
+
table_div_wikipedia = Div(NotStr(table_html_wikipedia), style="margin-left: auto; width: 80%; align: center;")
|
142 |
|
143 |
freelaw_filter = pd.DataFrame(
|
144 |
{
|
|
|
167 |
)
|
168 |
|
169 |
table_html_freelaw = freelaw_filter.to_html(index=False, border=0)
|
170 |
+
table_div_freelaw = Div(NotStr(table_html_freelaw), style="margin-left: auto; width: 80%; align: center;")
|
171 |
|
172 |
dmm_filter = pd.DataFrame(
|
173 |
{
|
|
|
196 |
)
|
197 |
|
198 |
table_html_dmm = dmm_filter.to_html(index=False, border=0)
|
199 |
+
table_div_dmm = Div(NotStr(table_html_dmm), style="margin-left: auto; width: 80%; align: center;")
|
200 |
|
201 |
|
202 |
uspto_filter = pd.DataFrame(
|
|
|
226 |
)
|
227 |
|
228 |
table_html_uspto = uspto_filter.to_html(index=False, border=0)
|
229 |
+
table_div_uspto = Div(NotStr(table_html_uspto), style="margin-left: auto; width: 80%; align: center;")
|
230 |
|
231 |
pg19_filter = pd.DataFrame(
|
232 |
{
|
|
|
255 |
)
|
256 |
|
257 |
table_html_pg19 = pg19_filter.to_html(index=False, border=0)
|
258 |
+
table_div_pg19 = Div(NotStr(table_html_pg19), style="margin-left: auto; width: 80%; align: center;")
|
259 |
|
260 |
|
261 |
hn_filter = pd.DataFrame(
|
|
|
285 |
)
|
286 |
|
287 |
table_html_hn = hn_filter.to_html(index=False, border=0)
|
288 |
+
table_div_hn = Div(NotStr(table_html_hn), style="margin-left: auto; width: 80%; align: center;")
|
289 |
|
290 |
|
291 |
uirc_filter = pd.DataFrame(
|
|
|
315 |
)
|
316 |
|
317 |
table_html_uirc = uirc_filter.to_html(index=False, border=0)
|
318 |
+
table_div_uirc = Div(NotStr(table_html_uirc), style="margin-left: auto; width: 80%; align: center;")
|
319 |
|
320 |
up_filter = pd.DataFrame(
|
321 |
{
|
|
|
344 |
)
|
345 |
|
346 |
table_html_up = up_filter.to_html(index=False, border=0)
|
347 |
+
table_div_up = Div(NotStr(table_html_up), style="margin-left: auto; width: 80%; align: center;")
|
348 |
|
349 |
se_filter = pd.DataFrame(
|
350 |
{
|
|
|
373 |
)
|
374 |
|
375 |
table_html_se = se_filter.to_html(index=False, border=0)
|
376 |
+
table_div_se = Div(NotStr(table_html_se), style="margin-left: auto; width: 80%; align: center;")
|
377 |
|
378 |
arx_filter = pd.DataFrame(
|
379 |
{
|
|
|
402 |
)
|
403 |
|
404 |
table_html_arx = arx_filter.to_html(index=False, border=0)
|
405 |
+
table_div_arx = Div(NotStr(table_html_arx), style="margin-left: auto; width: 80%; align: center;")
|
406 |
|
407 |
s2o_filter = pd.DataFrame(
|
408 |
{
|
|
|
431 |
)
|
432 |
|
433 |
table_html_s2o = s2o_filter.to_html(index=False, border=0)
|
434 |
+
table_div_s2o = Div(NotStr(table_html_s2o), style="margin-left: auto; width: 80%; align: center;")
|
435 |
|
436 |
med_filter = pd.DataFrame(
|
437 |
{
|
|
|
460 |
)
|
461 |
|
462 |
table_html_med = med_filter.to_html(index=False, border=0)
|
463 |
+
table_div_med = Div(NotStr(table_html_med), style="margin-left: auto; width: 80%; align: center;")
|
464 |
|
465 |
phil_filter = pd.DataFrame(
|
466 |
{
|
|
|
489 |
)
|
490 |
|
491 |
table_html_phil = phil_filter.to_html(index=False, border=0)
|
492 |
+
table_div_phil = Div(NotStr(table_html_phil), style="margin-left: auto; width: 80%; align: center;")
|
493 |
## end individual tables showing filterin
|
494 |
|
495 |
|