pandas_query_sql 0.8.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pandas_query_sql-0.8.2.dist-info/METADATA +110 -0
- pandas_query_sql-0.8.2.dist-info/RECORD +10 -0
- pandas_query_sql-0.8.2.dist-info/WHEEL +4 -0
- pandas_query_sql-0.8.2.dist-info/licenses/LICENSE.txt +7 -0
- pandasql/__init__.py +23 -0
- pandasql/data/births.csv +64 -0
- pandasql/data/births_by_month.csv +409 -0
- pandasql/data/meat.csv +828 -0
- pandasql/py.typed +0 -0
- pandasql/sqldf.py +241 -0
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: pandas_query_sql
|
|
3
|
+
Version: 0.8.2
|
|
4
|
+
Summary: sqldf for pandas
|
|
5
|
+
Author: Alexander Plavin, Greg Lamp, Michael Dempsey
|
|
6
|
+
Author-email: Alexander Plavin <alexander@plav.in>, Greg Lamp <lamp.greg@gmail.com>, Michael Dempsey <bluestealth@bluestealth.pw>
|
|
7
|
+
License-Expression: MIT
|
|
8
|
+
License-File: LICENSE.txt
|
|
9
|
+
Requires-Dist: numpy
|
|
10
|
+
Requires-Dist: packaging
|
|
11
|
+
Requires-Dist: pandas
|
|
12
|
+
Requires-Dist: sqlalchemy
|
|
13
|
+
Requires-Dist: psycopg2 ; extra == 'postgresql'
|
|
14
|
+
Requires-Dist: psycopg2-binary ; extra == 'postgresql-binary'
|
|
15
|
+
Requires-Python: >=3.10
|
|
16
|
+
Project-URL: Homepage, https://github.com/bluestealth/pandasql/
|
|
17
|
+
Provides-Extra: postgresql
|
|
18
|
+
Provides-Extra: postgresql-binary
|
|
19
|
+
Description-Content-Type: text/markdown
|
|
20
|
+
|
|
21
|
+
pandasql
|
|
22
|
+
========
|
|
23
|
+
|
|
24
|
+
This is a fork of the original `pandasql`, with support of multiple SQL
|
|
25
|
+
backends and more convenient interface. See below for more info.
|
|
26
|
+
|
|
27
|
+
`pandasql` allows you to query `pandas` DataFrames using SQL syntax. It works
|
|
28
|
+
similarly to `sqldf` in R. `pandasql` seeks to provide a more familiar way of
|
|
29
|
+
manipulating and cleaning data for people new to Python or `pandas`.
|
|
30
|
+
|
|
31
|
+
## Installation
|
|
32
|
+
```
|
|
33
|
+
$ pip install -U pandasql
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
## Basics
|
|
37
|
+
In addition to the original pandasql's ``sqldf`` function this fork has
|
|
38
|
+
a class ``PandaSQL``, which new users are encouraged to use.
|
|
39
|
+
|
|
40
|
+
`PandaSQL` Class
|
|
41
|
+
---
|
|
42
|
+
The class is more convenient when you need to perform multiple queries. `PandaSQL` takes 2 arguments:
|
|
43
|
+
- `db_uri`: an optional SQLAlchemy connection string (defaults to in-memory SQLite database)
|
|
44
|
+
- `persist`: an optional boolean to determine if loaded tables are persisted in the database (holds connection open, default False)
|
|
45
|
+
|
|
46
|
+
`sqldf` Function
|
|
47
|
+
---
|
|
48
|
+
The main function used in pandasql is `sqldf`. `sqldf` accepts 3 parameters:
|
|
49
|
+
- an sql query string
|
|
50
|
+
- an optional SQLAlchemy connection string (defaults to in-memory SQLite database)
|
|
51
|
+
- an optional dict of session/environment variables (defaults to `**locals()`,`**globals()`)
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
## Querying
|
|
55
|
+
`pandasql` uses [SQLite syntax](http://www.sqlite.org/lang.html). Any `pandas`
|
|
56
|
+
dataframes will be automatically detected by `pandasql`. You can query them as
|
|
57
|
+
you would any regular SQL table.
|
|
58
|
+
|
|
59
|
+
|
|
60
|
+
```
|
|
61
|
+
$ python
|
|
62
|
+
>>> from pandasql import PandaSQL, load_meat, load_birth
|
|
63
|
+
>>> meat = load_meat()
|
|
64
|
+
>>> births = load_births()
|
|
65
|
+
>>> pdsql = PandaSQL()
|
|
66
|
+
>>> print pysqldf("SELECT * FROM meat LIMIT 10;").head()
|
|
67
|
+
date beef veal pork lamb_and_mutton broilers other_chicken turkey
|
|
68
|
+
0 1944-01-01 00:00:00 751 85 1280 89 None None None
|
|
69
|
+
1 1944-02-01 00:00:00 713 77 1169 72 None None None
|
|
70
|
+
2 1944-03-01 00:00:00 741 90 1128 75 None None None
|
|
71
|
+
3 1944-04-01 00:00:00 650 89 978 66 None None None
|
|
72
|
+
4 1944-05-01 00:00:00 681 106 1029 78 None None None
|
|
73
|
+
```
|
|
74
|
+
|
|
75
|
+
joins and aggregations are also supported
|
|
76
|
+
```
|
|
77
|
+
>>> q = """SELECT
|
|
78
|
+
m.date, m.beef, b.births
|
|
79
|
+
FROM
|
|
80
|
+
meats m
|
|
81
|
+
INNER JOIN
|
|
82
|
+
births b
|
|
83
|
+
ON m.date = b.date;"""
|
|
84
|
+
>>> joined = pyqldf(q)
|
|
85
|
+
>>> print joined.head()
|
|
86
|
+
date beef births
|
|
87
|
+
403 2012-07-01 00:00:00 2200.8 368450
|
|
88
|
+
404 2012-08-01 00:00:00 2367.5 359554
|
|
89
|
+
405 2012-09-01 00:00:00 2016.0 361922
|
|
90
|
+
406 2012-10-01 00:00:00 2343.7 347625
|
|
91
|
+
407 2012-11-01 00:00:00 2206.6 320195
|
|
92
|
+
|
|
93
|
+
>>> q = "select
|
|
94
|
+
strftime('%Y', date) as year
|
|
95
|
+
, SUM(beef) as beef_total
|
|
96
|
+
FROM
|
|
97
|
+
meat
|
|
98
|
+
GROUP BY
|
|
99
|
+
year;"
|
|
100
|
+
>>> print pysqldf(q).head()
|
|
101
|
+
year beef_total
|
|
102
|
+
0 1944 8801
|
|
103
|
+
1 1945 9936
|
|
104
|
+
2 1946 9010
|
|
105
|
+
3 1947 10096
|
|
106
|
+
4 1948 8766
|
|
107
|
+
```
|
|
108
|
+
---
|
|
109
|
+
## More Info
|
|
110
|
+
More information and code samples available in the [examples](https://github.com/bluestealth/pandasql/blob/master/examples/demo.py) folder.
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
pandasql/__init__.py,sha256=M5-Oxu9RIWpM17I_swaH-urfrPdk3zB8Q_coscFKmt4,571
|
|
2
|
+
pandasql/data/births.csv,sha256=Hrdtbf8Um3cQEy0bp76xcWv30bN8NHYGpWla0IyURCw,1141
|
|
3
|
+
pandasql/data/births_by_month.csv,sha256=P---jKcuWe6Nvbag9WNUWjEl1essQZzFNYeL_bKb8mQ,11028
|
|
4
|
+
pandasql/data/meat.csv,sha256=HCKDtcCk6D6x8LcNFem2zQTpPYqtch5TY9Ir8q4fJ_Q,62608
|
|
5
|
+
pandasql/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
6
|
+
pandasql/sqldf.py,sha256=7jGl-d1HZvle8wf1nqV1nCS7xRQ0ntWuvUUNEypMhJg,8142
|
|
7
|
+
pandas_query_sql-0.8.2.dist-info/licenses/LICENSE.txt,sha256=ssEFpdOkYKVBgk208kurMZNcZm5ljtP60Oox3xRdyac,1053
|
|
8
|
+
pandas_query_sql-0.8.2.dist-info/WHEEL,sha256=CoDSoyhtC_eO_tlxRYzsTraPv1fPJRXFx91k6ISeAvA,81
|
|
9
|
+
pandas_query_sql-0.8.2.dist-info/METADATA,sha256=WwjXoyfxyqghFulfYFYf_4lv5psCMtBXqgl6EiIGLjQ,3856
|
|
10
|
+
pandas_query_sql-0.8.2.dist-info/RECORD,,
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
Copyright (c) 2013 Yhat, Inc.
|
|
2
|
+
|
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
4
|
+
|
|
5
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
6
|
+
|
|
7
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
pandasql/__init__.py
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import pathlib
|
|
2
|
+
|
|
3
|
+
import pandas as pd
|
|
4
|
+
|
|
5
|
+
from .sqldf import PandaSQL, PandaSQLException, sqldf
|
|
6
|
+
|
|
7
|
+
__all__ = ["PandaSQL", "PandaSQLException", "sqldf"]
|
|
8
|
+
|
|
9
|
+
_ROOT = pathlib.Path(__file__).absolute().parent
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
def get_data(path: str) -> pathlib.Path:
|
|
13
|
+
return _ROOT.joinpath("data", path)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
def load_meat() -> pd.DataFrame:
|
|
17
|
+
filename = get_data("meat.csv")
|
|
18
|
+
return pd.read_csv(filepath_or_buffer=filename, parse_dates=[0])
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
def load_births() -> pd.DataFrame:
|
|
22
|
+
filename = get_data("births_by_month.csv")
|
|
23
|
+
return pd.read_csv(filepath_or_buffer=filename, parse_dates=[0])
|
pandasql/data/births.csv
ADDED
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
year,births,rate
|
|
2
|
+
1910,2777000,30.1
|
|
3
|
+
1915,2965000,29.5
|
|
4
|
+
1920,2950000,27.7
|
|
5
|
+
1925,2909000,25.1
|
|
6
|
+
1930,2618000,21.3
|
|
7
|
+
1935,2377000,18.7
|
|
8
|
+
1940,2559000,19.4
|
|
9
|
+
1945,2858000,20.4
|
|
10
|
+
1950,3632000,24.1
|
|
11
|
+
1952,3913000,25.1
|
|
12
|
+
1953,3965000,25.1
|
|
13
|
+
1954,4078000,25.3
|
|
14
|
+
1955,4104000,25
|
|
15
|
+
1956,4218000,25.2
|
|
16
|
+
1957,4308000,25.3
|
|
17
|
+
1958,4255000,24.5
|
|
18
|
+
1959,4295000,24.3
|
|
19
|
+
1960,4257850,23.7
|
|
20
|
+
1961,4268326,23.3
|
|
21
|
+
1962,4167362,22.4
|
|
22
|
+
1963,4098020,21.7
|
|
23
|
+
1964,4027490,21
|
|
24
|
+
1965,3760358,19.4
|
|
25
|
+
1966,3606274,18.4
|
|
26
|
+
1967,3520959,17.8
|
|
27
|
+
1968,3501564,17.5
|
|
28
|
+
1969,3600206,17.8
|
|
29
|
+
1970,3731386,18.4
|
|
30
|
+
1971,3555970,17.2
|
|
31
|
+
1972,3258411,15.6
|
|
32
|
+
1973,3136965,14.9
|
|
33
|
+
1974,3159958,14.9
|
|
34
|
+
1975,3144198,14.8
|
|
35
|
+
1976,3167788,14.8
|
|
36
|
+
1977,3326632,15.4
|
|
37
|
+
1978,3333279,15.3
|
|
38
|
+
1979,3494398,15.9
|
|
39
|
+
1980,3612258,15.9
|
|
40
|
+
1982,3680537,15.9
|
|
41
|
+
1983,3638933,15.5
|
|
42
|
+
1984,3669141,15.5
|
|
43
|
+
1985,3760561,15.8
|
|
44
|
+
1986,3731000,15.5
|
|
45
|
+
1987,3829000,15.7
|
|
46
|
+
1988,3913000,15.9
|
|
47
|
+
1989,4021000,16.2
|
|
48
|
+
1990,4179000,16.7
|
|
49
|
+
1991,4111000,16.2
|
|
50
|
+
1992,4084000,16
|
|
51
|
+
1993,4039000,15.7
|
|
52
|
+
1994,3979000,15.3
|
|
53
|
+
1995,3892000,14.8
|
|
54
|
+
1996,3899000,14.7
|
|
55
|
+
1997,3882000,14.5
|
|
56
|
+
1998,3941553,14.6
|
|
57
|
+
1999,3959417,14.5
|
|
58
|
+
2000,4058814,14.7
|
|
59
|
+
2001,4025933,14.1
|
|
60
|
+
2002,4021726,13.9
|
|
61
|
+
2003,4089950,14.1
|
|
62
|
+
2004,4112052,14
|
|
63
|
+
2005,4138349,14
|
|
64
|
+
2009,4131019,13.8
|
|
@@ -0,0 +1,409 @@
|
|
|
1
|
+
date,births
|
|
2
|
+
1975-01-01 00:00:00,265775
|
|
3
|
+
1975-02-01 00:00:00,241045
|
|
4
|
+
1975-03-01 00:00:00,268849
|
|
5
|
+
1975-04-01 00:00:00,247455
|
|
6
|
+
1975-05-01 00:00:00,254545
|
|
7
|
+
1975-06-01 00:00:00,254096
|
|
8
|
+
1975-07-01 00:00:00,275163
|
|
9
|
+
1975-08-01 00:00:00,281300
|
|
10
|
+
1975-09-01 00:00:00,270738
|
|
11
|
+
1975-10-01 00:00:00,265494
|
|
12
|
+
1975-11-01 00:00:00,251973
|
|
13
|
+
1975-12-01 00:00:00,260532
|
|
14
|
+
1976-01-01 00:00:00,259173
|
|
15
|
+
1976-01-01 00:00:00,257455
|
|
16
|
+
1976-02-01 00:00:00,238153
|
|
17
|
+
1976-02-01 00:00:00,236551
|
|
18
|
+
1976-03-01 00:00:00,261608
|
|
19
|
+
1976-03-01 00:00:00,257951
|
|
20
|
+
1976-04-01 00:00:00,250992
|
|
21
|
+
1976-04-01 00:00:00,246469
|
|
22
|
+
1976-05-01 00:00:00,261572
|
|
23
|
+
1976-05-01 00:00:00,256986
|
|
24
|
+
1976-06-01 00:00:00,255734
|
|
25
|
+
1976-06-01 00:00:00,250525
|
|
26
|
+
1976-07-01 00:00:00,279744
|
|
27
|
+
1976-07-01 00:00:00,279630
|
|
28
|
+
1976-08-01 00:00:00,279937
|
|
29
|
+
1976-08-01 00:00:00,286496
|
|
30
|
+
1976-09-01 00:00:00,273750
|
|
31
|
+
1976-09-01 00:00:00,283718
|
|
32
|
+
1976-10-01 00:00:00,267841
|
|
33
|
+
1976-10-01 00:00:00,280280
|
|
34
|
+
1976-11-01 00:00:00,249907
|
|
35
|
+
1976-11-01 00:00:00,258011
|
|
36
|
+
1976-12-01 00:00:00,265787
|
|
37
|
+
1976-12-01 00:00:00,265886
|
|
38
|
+
1979-01-01 00:00:00,270695
|
|
39
|
+
1979-02-01 00:00:00,249898
|
|
40
|
+
1979-03-01 00:00:00,276584
|
|
41
|
+
1979-04-01 00:00:00,254585
|
|
42
|
+
1979-05-01 00:00:00,270818
|
|
43
|
+
1979-06-01 00:00:00,270704
|
|
44
|
+
1979-07-01 00:00:00,294704
|
|
45
|
+
1979-08-01 00:00:00,302805
|
|
46
|
+
1979-09-01 00:00:00,293903
|
|
47
|
+
1979-10-01 00:00:00,288965
|
|
48
|
+
1979-11-01 00:00:00,274679
|
|
49
|
+
1979-12-01 00:00:00,284939
|
|
50
|
+
1982-01-01 00:00:00,292009
|
|
51
|
+
1982-02-01 00:00:00,279961
|
|
52
|
+
1982-03-01 00:00:00,297309
|
|
53
|
+
1982-04-01 00:00:00,286780
|
|
54
|
+
1982-05-01 00:00:00,293687
|
|
55
|
+
1982-06-01 00:00:00,293018
|
|
56
|
+
1982-07-01 00:00:00,321836
|
|
57
|
+
1982-08-01 00:00:00,323129
|
|
58
|
+
1982-09-01 00:00:00,320536
|
|
59
|
+
1982-10-01 00:00:00,311312
|
|
60
|
+
1982-11-01 00:00:00,289580
|
|
61
|
+
1982-12-01 00:00:00,303101
|
|
62
|
+
1983-01-01 00:00:00,311000
|
|
63
|
+
1983-01-01 00:00:00,294632
|
|
64
|
+
1983-02-01 00:00:00,281000
|
|
65
|
+
1983-02-01 00:00:00,273234
|
|
66
|
+
1983-03-01 00:00:00,298000
|
|
67
|
+
1983-03-01 00:00:00,301691
|
|
68
|
+
1983-04-01 00:00:00,287000
|
|
69
|
+
1983-04-01 00:00:00,285578
|
|
70
|
+
1983-05-01 00:00:00,305000
|
|
71
|
+
1983-05-01 00:00:00,296323
|
|
72
|
+
1983-06-01 00:00:00,302000
|
|
73
|
+
1983-06-01 00:00:00,297935
|
|
74
|
+
1983-07-01 00:00:00,339000
|
|
75
|
+
1983-07-01 00:00:00,326182
|
|
76
|
+
1983-08-01 00:00:00,323000
|
|
77
|
+
1983-08-01 00:00:00,329870
|
|
78
|
+
1983-09-01 00:00:00,315000
|
|
79
|
+
1983-09-01 00:00:00,319971
|
|
80
|
+
1983-10-01 00:00:00,323000
|
|
81
|
+
1983-10-01 00:00:00,309106
|
|
82
|
+
1983-11-01 00:00:00,300000
|
|
83
|
+
1983-11-01 00:00:00,290843
|
|
84
|
+
1983-12-01 00:00:00,320000
|
|
85
|
+
1983-12-01 00:00:00,303873
|
|
86
|
+
1986-01-01 00:00:00,292200
|
|
87
|
+
1986-01-01 00:00:00,297750
|
|
88
|
+
1986-02-01 00:00:00,281564
|
|
89
|
+
1986-02-01 00:00:00,276981
|
|
90
|
+
1986-03-01 00:00:00,303970
|
|
91
|
+
1986-03-01 00:00:00,310928
|
|
92
|
+
1986-04-01 00:00:00,285823
|
|
93
|
+
1986-04-01 00:00:00,293920
|
|
94
|
+
1986-05-01 00:00:00,299395
|
|
95
|
+
1986-05-01 00:00:00,303224
|
|
96
|
+
1986-06-01 00:00:00,298889
|
|
97
|
+
1986-06-01 00:00:00,303957
|
|
98
|
+
1986-07-01 00:00:00,325516
|
|
99
|
+
1986-07-01 00:00:00,317969
|
|
100
|
+
1986-08-01 00:00:00,335222
|
|
101
|
+
1986-08-01 00:00:00,323960
|
|
102
|
+
1986-09-01 00:00:00,326454
|
|
103
|
+
1986-09-01 00:00:00,314468
|
|
104
|
+
1986-10-01 00:00:00,321371
|
|
105
|
+
1986-10-01 00:00:00,305777
|
|
106
|
+
1986-11-01 00:00:00,296816
|
|
107
|
+
1986-11-01 00:00:00,290944
|
|
108
|
+
1986-12-01 00:00:00,301921
|
|
109
|
+
1986-12-01 00:00:00,299055
|
|
110
|
+
1987-01-01 00:00:00,304073
|
|
111
|
+
1987-02-01 00:00:00,281261
|
|
112
|
+
1987-03-01 00:00:00,310679
|
|
113
|
+
1987-04-01 00:00:00,301777
|
|
114
|
+
1987-05-01 00:00:00,317596
|
|
115
|
+
1987-06-01 00:00:00,308477
|
|
116
|
+
1987-07-01 00:00:00,333484
|
|
117
|
+
1987-08-01 00:00:00,336575
|
|
118
|
+
1987-09-01 00:00:00,331283
|
|
119
|
+
1987-10-01 00:00:00,322997
|
|
120
|
+
1987-11-01 00:00:00,301551
|
|
121
|
+
1987-12-01 00:00:00,310808
|
|
122
|
+
1988-01-01 00:00:00,306183
|
|
123
|
+
1988-02-01 00:00:00,282526
|
|
124
|
+
1988-03-01 00:00:00,312394
|
|
125
|
+
1988-04-01 00:00:00,304103
|
|
126
|
+
1988-05-01 00:00:00,315975
|
|
127
|
+
1988-06-01 00:00:00,307668
|
|
128
|
+
1988-07-01 00:00:00,334499
|
|
129
|
+
1988-08-01 00:00:00,333875
|
|
130
|
+
1988-09-01 00:00:00,334196
|
|
131
|
+
1988-10-01 00:00:00,319134
|
|
132
|
+
1988-11-01 00:00:00,293252
|
|
133
|
+
1988-12-01 00:00:00,312742
|
|
134
|
+
1990-01-01 00:00:00,310214
|
|
135
|
+
1990-01-01 00:00:00,305069
|
|
136
|
+
1990-02-01 00:00:00,298464
|
|
137
|
+
1990-02-01 00:00:00,283477
|
|
138
|
+
1990-03-01 00:00:00,321920
|
|
139
|
+
1990-03-01 00:00:00,317462
|
|
140
|
+
1990-04-01 00:00:00,309185
|
|
141
|
+
1990-04-01 00:00:00,307768
|
|
142
|
+
1990-05-01 00:00:00,325953
|
|
143
|
+
1990-05-01 00:00:00,319784
|
|
144
|
+
1990-06-01 00:00:00,328868
|
|
145
|
+
1990-06-01 00:00:00,321024
|
|
146
|
+
1990-07-01 00:00:00,346417
|
|
147
|
+
1990-07-01 00:00:00,336381
|
|
148
|
+
1990-08-01 00:00:00,354165
|
|
149
|
+
1990-08-01 00:00:00,331351
|
|
150
|
+
1990-09-01 00:00:00,346855
|
|
151
|
+
1990-09-01 00:00:00,334058
|
|
152
|
+
1990-10-01 00:00:00,331220
|
|
153
|
+
1990-10-01 00:00:00,326392
|
|
154
|
+
1990-11-01 00:00:00,314321
|
|
155
|
+
1990-11-01 00:00:00,306346
|
|
156
|
+
1990-12-01 00:00:00,321928
|
|
157
|
+
1990-12-01 00:00:00,320282
|
|
158
|
+
1991-01-01 00:00:00,330000
|
|
159
|
+
1991-01-01 00:00:00,320422
|
|
160
|
+
1991-01-01 00:00:00,284463
|
|
161
|
+
1991-02-01 00:00:00,316000
|
|
162
|
+
1991-02-01 00:00:00,308391
|
|
163
|
+
1991-02-01 00:00:00,260981
|
|
164
|
+
1991-03-01 00:00:00,342000
|
|
165
|
+
1991-03-01 00:00:00,339912
|
|
166
|
+
1991-03-01 00:00:00,288637
|
|
167
|
+
1991-04-01 00:00:00,330000
|
|
168
|
+
1991-04-01 00:00:00,318779
|
|
169
|
+
1991-04-01 00:00:00,271159
|
|
170
|
+
1991-05-01 00:00:00,368000
|
|
171
|
+
1991-05-01 00:00:00,336320
|
|
172
|
+
1991-05-01 00:00:00,287126
|
|
173
|
+
1991-06-01 00:00:00,361000
|
|
174
|
+
1991-06-01 00:00:00,330973
|
|
175
|
+
1991-06-01 00:00:00,282277
|
|
176
|
+
1991-07-01 00:00:00,364000
|
|
177
|
+
1991-07-01 00:00:00,356716
|
|
178
|
+
1991-07-01 00:00:00,311157
|
|
179
|
+
1991-08-01 00:00:00,362000
|
|
180
|
+
1991-08-01 00:00:00,366579
|
|
181
|
+
1991-08-01 00:00:00,318023
|
|
182
|
+
1991-09-01 00:00:00,362000
|
|
183
|
+
1991-09-01 00:00:00,357344
|
|
184
|
+
1991-09-01 00:00:00,306666
|
|
185
|
+
1991-10-01 00:00:00,361000
|
|
186
|
+
1991-10-01 00:00:00,344161
|
|
187
|
+
1991-10-01 00:00:00,304119
|
|
188
|
+
1991-11-01 00:00:00,333000
|
|
189
|
+
1991-11-01 00:00:00,325543
|
|
190
|
+
1991-11-01 00:00:00,288271
|
|
191
|
+
1991-12-01 00:00:00,350000
|
|
192
|
+
1991-12-01 00:00:00,335818
|
|
193
|
+
1991-12-01 00:00:00,291519
|
|
194
|
+
1993-01-01 00:00:00,334000
|
|
195
|
+
1993-01-01 00:00:00,335172
|
|
196
|
+
1993-02-01 00:00:00,304000
|
|
197
|
+
1993-02-01 00:00:00,309130
|
|
198
|
+
1993-03-01 00:00:00,360000
|
|
199
|
+
1993-03-01 00:00:00,344079
|
|
200
|
+
1993-04-01 00:00:00,330000
|
|
201
|
+
1993-04-01 00:00:00,335626
|
|
202
|
+
1993-05-01 00:00:00,361000
|
|
203
|
+
1993-05-01 00:00:00,353131
|
|
204
|
+
1993-06-01 00:00:00,333000
|
|
205
|
+
1993-06-01 00:00:00,334265
|
|
206
|
+
1993-07-01 00:00:00,352000
|
|
207
|
+
1993-07-01 00:00:00,362913
|
|
208
|
+
1993-08-01 00:00:00,350000
|
|
209
|
+
1993-08-01 00:00:00,366786
|
|
210
|
+
1993-09-01 00:00:00,357000
|
|
211
|
+
1993-09-01 00:00:00,356016
|
|
212
|
+
1993-10-01 00:00:00,345000
|
|
213
|
+
1993-10-01 00:00:00,348934
|
|
214
|
+
1993-11-01 00:00:00,332000
|
|
215
|
+
1993-11-01 00:00:00,323635
|
|
216
|
+
1993-12-01 00:00:00,326000
|
|
217
|
+
1993-12-01 00:00:00,341220
|
|
218
|
+
1995-01-01 00:00:00,323073
|
|
219
|
+
1995-02-01 00:00:00,304656
|
|
220
|
+
1995-03-01 00:00:00,342187
|
|
221
|
+
1995-04-01 00:00:00,327042
|
|
222
|
+
1995-05-01 00:00:00,335989
|
|
223
|
+
1995-06-01 00:00:00,335349
|
|
224
|
+
1995-07-01 00:00:00,352554
|
|
225
|
+
1995-08-01 00:00:00,350898
|
|
226
|
+
1995-09-01 00:00:00,348013
|
|
227
|
+
1995-10-01 00:00:00,332937
|
|
228
|
+
1995-11-01 00:00:00,316379
|
|
229
|
+
1995-12-01 00:00:00,331163
|
|
230
|
+
1996-01-01 00:00:00,320705
|
|
231
|
+
1996-02-01 00:00:00,301327
|
|
232
|
+
1996-03-01 00:00:00,339736
|
|
233
|
+
1996-04-01 00:00:00,317392
|
|
234
|
+
1996-05-01 00:00:00,330295
|
|
235
|
+
1996-06-01 00:00:00,329737
|
|
236
|
+
1996-07-01 00:00:00,345862
|
|
237
|
+
1996-08-01 00:00:00,352173
|
|
238
|
+
1996-09-01 00:00:00,339223
|
|
239
|
+
1996-10-01 00:00:00,330172
|
|
240
|
+
1996-11-01 00:00:00,319397
|
|
241
|
+
1996-12-01 00:00:00,326748
|
|
242
|
+
1997-01-01 00:00:00,316013
|
|
243
|
+
1997-02-01 00:00:00,295094
|
|
244
|
+
1997-03-01 00:00:00,328503
|
|
245
|
+
1997-04-01 00:00:00,309119
|
|
246
|
+
1997-05-01 00:00:00,334543
|
|
247
|
+
1997-06-01 00:00:00,329805
|
|
248
|
+
1997-07-01 00:00:00,340873
|
|
249
|
+
1997-08-01 00:00:00,350737
|
|
250
|
+
1997-09-01 00:00:00,339103
|
|
251
|
+
1997-10-01 00:00:00,330012
|
|
252
|
+
1997-11-01 00:00:00,310817
|
|
253
|
+
1997-12-01 00:00:00,314970
|
|
254
|
+
1998-01-01 00:00:00,314283
|
|
255
|
+
1998-02-01 00:00:00,301763
|
|
256
|
+
1998-03-01 00:00:00,322581
|
|
257
|
+
1998-04-01 00:00:00,312595
|
|
258
|
+
1998-05-01 00:00:00,325708
|
|
259
|
+
1998-06-01 00:00:00,318525
|
|
260
|
+
1998-07-01 00:00:00,345162
|
|
261
|
+
1998-08-01 00:00:00,346317
|
|
262
|
+
1998-09-01 00:00:00,336348
|
|
263
|
+
1998-10-01 00:00:00,336346
|
|
264
|
+
1998-11-01 00:00:00,309397
|
|
265
|
+
1998-12-01 00:00:00,322469
|
|
266
|
+
1999-01-01 00:00:00,317211
|
|
267
|
+
1999-02-01 00:00:00,291541
|
|
268
|
+
1999-03-01 00:00:00,321212
|
|
269
|
+
1999-04-01 00:00:00,314230
|
|
270
|
+
1999-05-01 00:00:00,330331
|
|
271
|
+
1999-06-01 00:00:00,321867
|
|
272
|
+
1999-07-01 00:00:00,346506
|
|
273
|
+
1999-08-01 00:00:00,339122
|
|
274
|
+
1999-09-01 00:00:00,333600
|
|
275
|
+
1999-10-01 00:00:00,328657
|
|
276
|
+
1999-11-01 00:00:00,307282
|
|
277
|
+
1999-12-01 00:00:00,329335
|
|
278
|
+
2000-01-01 00:00:00,319340
|
|
279
|
+
2000-02-01 00:00:00,298711
|
|
280
|
+
2000-03-01 00:00:00,329436
|
|
281
|
+
2000-04-01 00:00:00,319758
|
|
282
|
+
2000-05-01 00:00:00,330519
|
|
283
|
+
2000-06-01 00:00:00,327091
|
|
284
|
+
2000-07-01 00:00:00,348651
|
|
285
|
+
2000-08-01 00:00:00,344736
|
|
286
|
+
2000-09-01 00:00:00,343384
|
|
287
|
+
2000-10-01 00:00:00,332790
|
|
288
|
+
2000-11-01 00:00:00,313241
|
|
289
|
+
2000-12-01 00:00:00,333896
|
|
290
|
+
2001-01-01 00:00:00,330108
|
|
291
|
+
2001-01-01 00:00:00,319182
|
|
292
|
+
2001-02-01 00:00:00,317377
|
|
293
|
+
2001-02-01 00:00:00,297568
|
|
294
|
+
2001-03-01 00:00:00,340553
|
|
295
|
+
2001-03-01 00:00:00,332939
|
|
296
|
+
2001-04-01 00:00:00,317180
|
|
297
|
+
2001-04-01 00:00:00,316889
|
|
298
|
+
2001-05-01 00:00:00,341207
|
|
299
|
+
2001-05-01 00:00:00,328526
|
|
300
|
+
2001-06-01 00:00:00,341206
|
|
301
|
+
2001-06-01 00:00:00,332201
|
|
302
|
+
2001-07-01 00:00:00,348975
|
|
303
|
+
2001-07-01 00:00:00,349812
|
|
304
|
+
2001-08-01 00:00:00,360080
|
|
305
|
+
2001-08-01 00:00:00,351371
|
|
306
|
+
2001-09-01 00:00:00,347609
|
|
307
|
+
2001-09-01 00:00:00,349409
|
|
308
|
+
2001-10-01 00:00:00,343921
|
|
309
|
+
2001-10-01 00:00:00,332980
|
|
310
|
+
2001-11-01 00:00:00,333811
|
|
311
|
+
2001-11-01 00:00:00,315289
|
|
312
|
+
2001-12-01 00:00:00,336787
|
|
313
|
+
2001-12-01 00:00:00,333251
|
|
314
|
+
2002-01-01 00:00:00,335198
|
|
315
|
+
2002-02-01 00:00:00,303534
|
|
316
|
+
2002-03-01 00:00:00,338684
|
|
317
|
+
2002-04-01 00:00:00,323613
|
|
318
|
+
2002-05-01 00:00:00,344017
|
|
319
|
+
2002-06-01 00:00:00,331085
|
|
320
|
+
2002-07-01 00:00:00,351047
|
|
321
|
+
2002-08-01 00:00:00,361802
|
|
322
|
+
2002-09-01 00:00:00,342564
|
|
323
|
+
2002-10-01 00:00:00,344074
|
|
324
|
+
2002-11-01 00:00:00,323746
|
|
325
|
+
2002-12-01 00:00:00,326569
|
|
326
|
+
2003-01-01 00:00:00,330674
|
|
327
|
+
2003-02-01 00:00:00,303977
|
|
328
|
+
2003-03-01 00:00:00,331505
|
|
329
|
+
2003-04-01 00:00:00,324432
|
|
330
|
+
2003-05-01 00:00:00,339007
|
|
331
|
+
2003-06-01 00:00:00,327588
|
|
332
|
+
2003-07-01 00:00:00,357669
|
|
333
|
+
2003-08-01 00:00:00,359417
|
|
334
|
+
2003-09-01 00:00:00,348814
|
|
335
|
+
2003-10-01 00:00:00,345814
|
|
336
|
+
2003-11-01 00:00:00,318573
|
|
337
|
+
2003-12-01 00:00:00,334256
|
|
338
|
+
2005-01-01 00:00:00,334000
|
|
339
|
+
2005-01-01 00:00:00,329803
|
|
340
|
+
2005-02-01 00:00:00,317000
|
|
341
|
+
2005-02-01 00:00:00,307248
|
|
342
|
+
2005-03-01 00:00:00,347000
|
|
343
|
+
2005-03-01 00:00:00,336920
|
|
344
|
+
2005-04-01 00:00:00,334000
|
|
345
|
+
2005-04-01 00:00:00,330106
|
|
346
|
+
2005-05-01 00:00:00,339000
|
|
347
|
+
2005-05-01 00:00:00,346754
|
|
348
|
+
2005-06-01 00:00:00,346000
|
|
349
|
+
2005-06-01 00:00:00,337425
|
|
350
|
+
2005-07-01 00:00:00,360000
|
|
351
|
+
2005-07-01 00:00:00,364226
|
|
352
|
+
2005-08-01 00:00:00,357000
|
|
353
|
+
2005-08-01 00:00:00,360103
|
|
354
|
+
2005-09-01 00:00:00,357000
|
|
355
|
+
2005-09-01 00:00:00,359644
|
|
356
|
+
2005-10-01 00:00:00,337000
|
|
357
|
+
2005-10-01 00:00:00,354048
|
|
358
|
+
2005-11-01 00:00:00,345000
|
|
359
|
+
2005-11-01 00:00:00,320094
|
|
360
|
+
2005-12-01 00:00:00,348000
|
|
361
|
+
2005-12-01 00:00:00,343579
|
|
362
|
+
2007-01-01 00:00:00,331478
|
|
363
|
+
2007-02-01 00:00:00,309620
|
|
364
|
+
2007-03-01 00:00:00,349321
|
|
365
|
+
2007-04-01 00:00:00,332477
|
|
366
|
+
2007-05-01 00:00:00,346276
|
|
367
|
+
2007-06-01 00:00:00,350879
|
|
368
|
+
2007-07-01 00:00:00,357053
|
|
369
|
+
2007-08-01 00:00:00,369316
|
|
370
|
+
2007-09-01 00:00:00,363369
|
|
371
|
+
2007-10-01 00:00:00,344639
|
|
372
|
+
2007-11-01 00:00:00,335667
|
|
373
|
+
2007-12-01 00:00:00,348254
|
|
374
|
+
2008-01-01 00:00:00,340297
|
|
375
|
+
2008-02-01 00:00:00,319235
|
|
376
|
+
2008-03-01 00:00:00,356786
|
|
377
|
+
2008-04-01 00:00:00,329809
|
|
378
|
+
2008-05-01 00:00:00,355437
|
|
379
|
+
2008-06-01 00:00:00,358251
|
|
380
|
+
2008-07-01 00:00:00,367934
|
|
381
|
+
2008-08-01 00:00:00,387798
|
|
382
|
+
2008-09-01 00:00:00,374711
|
|
383
|
+
2008-10-01 00:00:00,367354
|
|
384
|
+
2008-11-01 00:00:00,351832
|
|
385
|
+
2008-12-01 00:00:00,356111
|
|
386
|
+
2011-01-01 00:00:00,356457
|
|
387
|
+
2011-02-01 00:00:00,338521
|
|
388
|
+
2011-03-01 00:00:00,350630
|
|
389
|
+
2011-04-01 00:00:00,346397
|
|
390
|
+
2011-05-01 00:00:00,354886
|
|
391
|
+
2011-06-01 00:00:00,348587
|
|
392
|
+
2011-07-01 00:00:00,375384
|
|
393
|
+
2011-08-01 00:00:00,373333
|
|
394
|
+
2011-09-01 00:00:00,367965
|
|
395
|
+
2011-10-01 00:00:00,357875
|
|
396
|
+
2011-11-01 00:00:00,323788
|
|
397
|
+
2011-12-01 00:00:00,353871
|
|
398
|
+
2012-01-01 00:00:00,337980
|
|
399
|
+
2012-02-01 00:00:00,316641
|
|
400
|
+
2012-03-01 00:00:00,347803
|
|
401
|
+
2012-04-01 00:00:00,337272
|
|
402
|
+
2012-05-01 00:00:00,345257
|
|
403
|
+
2012-06-01 00:00:00,346971
|
|
404
|
+
2012-07-01 00:00:00,368450
|
|
405
|
+
2012-08-01 00:00:00,359554
|
|
406
|
+
2012-09-01 00:00:00,361922
|
|
407
|
+
2012-10-01 00:00:00,347625
|
|
408
|
+
2012-11-01 00:00:00,320195
|
|
409
|
+
2012-12-01 00:00:00,340995
|