We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0006ed3 commit e5cff3eCopy full SHA for e5cff3e
3 files changed
src/__init__.py
@@ -4,6 +4,7 @@
4
5
6
def main():
7
+ """Move data between sources."""
8
rows = bqc.fetch_rows(analytics_query)
9
updated = dbc.insert_rows(rows, replace=True)
10
print(updated)
src/queries/read.py
@@ -2,7 +2,7 @@
2
3
def read_query(path):
- """Read contents of file."""
+ """Read contents of a .sql file."""
file = open(path, 'r')
query = file.read()
file.close()
src/sources/client.py
@@ -1,4 +1,4 @@
1
-"""Base Client."""
+"""Base Data Client."""
import logging
from sqlalchemy import Table
0 commit comments