-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresult.html
162 lines (112 loc) · 4.4 KB
/
result.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
<!DOCTYPE html>
{% from urllib.parse import urlencode %}
<html>
<head>
<title>PythonQL: An Integrated Query Language for Python</title>
<meta charset="utf-8"/>
<meta name="description" content="PythonQL: An Integrated Query Language for Python"/>
<meta name="keywords" content="Python Query Language Data Databases"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/pages/css/normalize.css" type="text/css" media="all">
<link rel="stylesheet" href="/pages/css/layout.css" type="text/css" media="all">
<link rel="stylesheet" href="/pages/css/prettify.css">
<script src="/pages/js/jquery-3.1.0.min.js"></script>
<!--[if lt IE 9]>
<script src="/pages/js/html5shiv-printshiv.min.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
<script src="/pages/js/common.js"></script>
<script src="/pages/js/prettify.js"></script>
<script>
window.onload = (function(){ prettyPrint(); });
</script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-85752766-1', 'auto');
ga('send', 'pageview');
</script>
</head>
<body>
<!-- HEADER -->
<header class="header">
<div class="m-w1400">
<div class="header-content m-cfix">
<!-- logo -->
<div class="logo">
<a href="/main.html"><img src="/pages/img/misc/logo.png" alt="logo"></a>
</div>
<!-- logo end -->
<!-- menu -->
<nav class="main-nav m-cfix">
<a class="mobile-nav" href="javascript:;"><img src="/pages/img/icon/mobile_menu.png" alt="mobile_menu"></a>
<ul class="menu m-cfix">
<li>
<a href="/pages/team.html">PythonQL Team</a>
</li>
<li>
<a href="https://github.com/pythonql/pythonql">GitHub</a>
</li>
<li>
<a href="https://github.com/pythonql/pythonql/wiki/PythonQL-Intro-and-Tutorial">Documentation</a>
</li>
</ul>
</nav>
<!-- end menu -->
</div>
</div>
</header>
<!-- HEADER END -->
<!-- MAIN -->
<div class="main m-cfix">
<div class="m-w1400">
<!-- main info -->
<div class="main-info">
<h1>Welcome to the PythonQL Web Demo</h1>
<p>The Demo is organized into a number of scenarios that demonstrate the power and usability of PythonQL.<br> Each scenario illustrates a specific use case in data science that is addressed by PythonQL.</p>
</div>
<!-- main info end -->
<!-- main content -->
<div class="main-content row m-cfix">
<!-- column 100% -->
<div class="col m-w-100">
<!-- training section 1 -->
<section class="training-section">
<!-- section headline -->
<div class="headline">
<h5>Result</h5>
</div>
<!-- section headline end -->
<!-- inner content, run query -->
<div class="inner-content code-holder">
<!-- Results -->
<div class="tab-body">
<pre class="prettyprint lang-python">
{{output}}
</pre>
</div>
<!-- Run Query code end -->
</div>
<!-- inner content -->
</section>
<!-- training section 1 end -->
</div>
<!-- column 100% end -->
</div>
<!-- main content end -->
</div>
</div>
<!-- MAIN END -->
<!-- FOOTER -->
<footer class="footer">
<div class="m-w1400">
<div class="footer-content m-cfix">
<p class="copyright">© PythonQL 2016</p>
</div>
</div>
</footer>
<!-- FOOTER END -->
</body>
</html>