forked from thedataincubator/flask-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
45 lines (42 loc) · 3.99 KB
/
about.html
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
40
41
42
43
44
45
<!-- A Simple Stock Ticker Visualization Web App
Copyright (C) 2020 Matthew Chan
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.-->
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" href="{{ url_for('static', filename='favicon.ico') }}">
<link rel="icon" type="image/gif" href="{{ url_for('static', filename='favicon.ico') }}">
<link rel="stylesheet" href="{{ url_for('static', filename='default.css') }}">
<title>A simple stock price time series visualizer</title>
</head>
<body>
<div class="container">
<div class="pure-menu pure-menu-horizontal">
<a href="{{ url_for('index') }}" class="pure-menu-heading pure-menu-link">A Simple Stock Price Visualizer</a>
</ul>
</div>
<header>
<h2>About</h2>
<p>
Hello! This little stock ticker visualization web app was created by <a class="post-author" href="http://github.com/thewchan/">Matt Chan</a> as part of his adventure over the <a href="https://www.thedataincubator.com/">The Data Incubator Data Science Fellowship</a>. This app was the on-boarding assignment prior to the beginning of the actual fellowship program. Check out the source code of the app <a href="https://github.com/thewchan/stock-ticker-app">here</a>! This app is hosted by <a href="https://www.heroku.com/">Heroku.</a> Some skeleton file and code were provided by TDI themselves. The interactive visualization is powered by <a href="https://bokeh.org/">Bokeh</a>, an open source interactive visualization Python library. The stock price time series data is provided by <a href="https://www.alphavantage.co/">Alpha Vantage</a>, who provides free APIs for financial trends. The website itself is powered by <a href="https://flask.palletsprojects.com/en/1.1.x/">Flask</a>, a micro web framework written in Python which is in turn powered by <a href="https://palletsprojects.com/p/jinja/">Jinja</a> and <a href="https://werkzeug.palletsprojects.com/en/1.0.x/">Werkzeug</a>, a template engine and a web server gateway interface toolkit, respectively. The CSS of the web app is powered by <a href="https://purecss.io/">Pure.css</a>, a set of CSS modules designed by <a href="https://www.yahoo.com/">Yahoo</a>, with minor modification. The favicon was provided by <a href="https://freefavicon.com/">Free Favicon</a>. Enjoy!
</p>
</div>
</div>
<footer>
<p class="license">Copyright (C) 2020 Matthew Chan</p>
<p class="license">This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see <a href="https://www.gnu.org/licenses/">here</a>.</p>
<p class="license">This website is licensed under a <a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License.</a></p>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</body>
</html>