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

BigQuery: added methods for getting keys, items and dict #4393

Merged
merged 15 commits into from
Nov 17, 2017

Commits on Nov 14, 2017

  1. added methods for getting keys, items and dict

    This change enables to retrieve the row as a dict and iterate the keys and/or items, like with a normal dict; in other words, making the Row object a dict-like object:
    
    >>> row.dict()
    {'name': 'Isabel', 'profession': 'bridge builder'}
    >>> for k, v in row.items():
    >>> for k in row.keys():
    josefbarta authored Nov 14, 2017
    Configuration menu
    Copy the full SHA
    0356f10 View commit details
    Browse the repository at this point in the history
  2. fixed row length

    josefbarta authored Nov 14, 2017
    Configuration menu
    Copy the full SHA
    91d007d View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    deebcd1 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    8496453 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    f9b926b View commit details
    Browse the repository at this point in the history
  6. added docstrings

    josefbarta authored Nov 14, 2017
    Configuration menu
    Copy the full SHA
    b90326b View commit details
    Browse the repository at this point in the history
  7. update unit tests

    josefbarta authored Nov 14, 2017
    Configuration menu
    Copy the full SHA
    c07e0b1 View commit details
    Browse the repository at this point in the history
  8. Update test_table.py

    josefbarta authored Nov 14, 2017
    Configuration menu
    Copy the full SHA
    44b6610 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    53145bf View commit details
    Browse the repository at this point in the history

Commits on Nov 17, 2017

  1. get method for Row

    josef-artlogic committed Nov 17, 2017
    Configuration menu
    Copy the full SHA
    1f85f07 View commit details
    Browse the repository at this point in the history
  2. get method for Row

    josef-artlogic committed Nov 17, 2017
    Configuration menu
    Copy the full SHA
    20692e4 View commit details
    Browse the repository at this point in the history
  3. get method for Row

    josef-artlogic committed Nov 17, 2017
    Configuration menu
    Copy the full SHA
    ba9d772 View commit details
    Browse the repository at this point in the history
  4. Update table.py

    josefbarta authored Nov 17, 2017
    Configuration menu
    Copy the full SHA
    06775da View commit details
    Browse the repository at this point in the history
  5. Update test_table.py

    josefbarta authored Nov 17, 2017
    Configuration menu
    Copy the full SHA
    47e2d93 View commit details
    Browse the repository at this point in the history
  6. Update test_table.py

    josefbarta authored Nov 17, 2017
    Configuration menu
    Copy the full SHA
    190980e View commit details
    Browse the repository at this point in the history