Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PandasConnector #3492

Closed
wants to merge 39 commits into from
Closed
Show file tree
Hide file tree
Changes from 3 commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
b6c6cf1
Initial commit of PandasConnector - see #3302
rhunwicks Sep 19, 2017
44649de
remove temporary files - see #3302
rhunwicks Sep 19, 2017
48156e0
Fix PandasDatasource.baselink - see #3302
rhunwicks Sep 19, 2017
3bf0857
Rename PandasConnectors sqla tables for consistency
rhunwicks Sep 20, 2017
1520c9f
Remove redundant debug code
rhunwicks Sep 20, 2017
5960f49
Update PandasConnector for order_desc - see #3302
rhunwicks Sep 20, 2017
e2296ac
Add PandasConnector migration to main versions folder - see #3302
rhunwicks Sep 28, 2017
848a223
Add PandasConnector migration to main versions folder - see #3302
rhunwicks Sep 28, 2017
5375c59
Merge remote-tracking branch 'upstream/master' into 3302-pandas-connctor
rhunwicks Sep 28, 2017
9df1786
Add PandasConnector migration to main versions folder - see #3302
rhunwicks Sep 28, 2017
c015197
Renamed connector_tests.py - see #3302
rhunwicks Sep 28, 2017
4b47b75
Add lxml and bs4 to dev-reqs - see #3302
rhunwicks Sep 28, 2017
f8483b5
Update PandasMetric with warning_text - see #3302
rhunwicks Sep 28, 2017
d156430
More efficient PandasDatasource.get_metadata - see #3302
rhunwicks Sep 28, 2017
fa38256
Python27 compatibility for PandasConnector - see #3302
rhunwicks Sep 28, 2017
0e50319
Remove duplicate lxml from dev-reqs.txt - see #3302
rhunwicks Sep 28, 2017
ce7ff69
Use ChoiceType for PandasDatasource.format - see #3302
rhunwicks Oct 1, 2017
c69a161
Use ChoiceType for PandasDatasource.format - see #3302
rhunwicks Oct 1, 2017
fbfd685
Allow calculated PandasColumns and multi-column PandasMetrics - see #…
rhunwicks Oct 2, 2017
38d6c03
Support additional Pandas formats if dependencies are satisfied - see…
rhunwicks Oct 2, 2017
dd769ed
Flake8 fixes - see #3302
rhunwicks Oct 3, 2017
1df6237
Better tests for summary metrics - see #3302
rhunwicks Oct 3, 2017
878c7c4
Cache source dataframes in PandasDatasource - see #3302
rhunwicks Oct 5, 2017
2826876
Py2 fix for DataFrameCache - see #3302
rhunwicks Oct 5, 2017
b24a700
Py2 fix for DataFrameCache - see #3302
rhunwicks Oct 5, 2017
3610ac0
Py2 fix for DataFrameCache - see #3302
rhunwicks Oct 5, 2017
a0657a9
Configure dataframe cache from settings - see #3302
rhunwicks Oct 10, 2017
bb78be8
Fix import in contrib.tests.cache_tests - see #3302
rhunwicks Oct 15, 2017
97070aa
Merge branch 'master' into 3302-pandas-connctor
rhunwicks Nov 29, 2017
c892e50
Merge branch 'master' into 3302-pandas-connctor
rhunwicks Nov 30, 2017
0a24cb6
Support authentication against remote APIs for PandasConnector - see
rhunwicks Dec 4, 2017
e5fcc1d
Flake8 fixes - see #3302
rhunwicks Dec 5, 2017
15d91bb
Flake8 fixes - see #3302
rhunwicks Dec 5, 2017
0f98a55
Improved dataframe cache - see #3302
rhunwicks Dec 5, 2017
7c4a2d8
Restore datasource count metric for PandasDatasource - see #3302
rhunwicks Dec 5, 2017
4f15e07
Include dttm_cols in datasource.data - see #3302
rhunwicks Dec 15, 2017
ebeda44
Put deps at end of setup.py to reduce merge conflicts - see #3302
rhunwicks Dec 15, 2017
ce39029
Merge remote-tracking branch 'upstream/master' into 3302-pandas-connctor
rhunwicks Dec 19, 2017
62d9438
Flake8 fix for setup.py - see #3302
rhunwicks Dec 19, 2017
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Empty file added contrib/__init__.py
Empty file.
Empty file added contrib/connectors/__init__.py
Empty file.
2 changes: 2 additions & 0 deletions contrib/connectors/pandas/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
from . import models # noqa
from . import views # noqa
Loading