Skip to content

Commit

Permalink
Restructuring Athena's module (#325)
Browse files Browse the repository at this point in the history
* Splitting up athena's module in two files.

* General Athena's module refactoring.

* Updating tests.
  • Loading branch information
igorborgest authored Jul 16, 2020
1 parent 786ee91 commit 32c7b9f
Show file tree
Hide file tree
Showing 11 changed files with 1,354 additions and 1,165 deletions.
1,075 changes: 0 additions & 1,075 deletions awswrangler/athena.py

This file was deleted.

13 changes: 13 additions & 0 deletions awswrangler/athena/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
"""Amazon Athena Module."""

from awswrangler.athena._read import read_sql_query, read_sql_table # noqa
from awswrangler.athena._utils import ( # noqa
create_athena_bucket,
get_query_columns_types,
get_query_execution,
get_work_group,
repair_table,
start_query_execution,
stop_query_execution,
wait_query,
)
769 changes: 769 additions & 0 deletions awswrangler/athena/_read.py

Large diffs are not rendered by default.

Loading

0 comments on commit 32c7b9f

Please sign in to comment.