forked from mediafutureseu/mediafutureseu.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdatascience.html
More file actions
39 lines (35 loc) · 1.34 KB
/
Copy pathdatascience.html
File metadata and controls
39 lines (35 loc) · 1.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
---
layout: default
title: Data science | MediaFutures
description: MediaFutures data science tools
keywords: mediafutures,datasets
url: https://mediafutureseu.github.io/datascience
custom_css: list.css
custom_js: list.js
---
<div class="header squad-header">
<div class="Grid container">
<div id="header-text" class="Grid-cell">
<h1 class="large-title">Data science</h1>
<h1 class="squad-subheading">Python packages for data science </h1>
<h5 class="squad-subheading">ⓘ This is a selection of open source tools recommended by Mediafutures mentors for the 1st Open Call. Participants are free to use these or other tools to develop their projects.</h5>
</div>
</div>
</div>
<div class="section">
<div class="Grid dataset-container container">
{% for item in site.data.datascience %}
<div class="Grid-cell sizeFull dataset">
<div>
<h2>{{ item["name"] }}</h2>
<h3>{{ item["provider"] }}</h3>
<br/>
{{ item["description"] }}
</div>
{% if item["project_url"] %}
<button onclick="window.open('{{ item["project_url"] }}')" type="" class="Button">View tool</button>
{% endif %}
</div>
{% endfor %}
</div>
</div>