This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Public Domain CC0 license. https://creativecommons.org/publicdomain/zero/1.0/ | |
| """MongoDB Apache Beam IO utilities. | |
| Tested with google-cloud-dataflow package version 2.0.0 | |
| """ | |
| __all__ = ['ReadFromMongo'] | |
| import datetime |
OlderNewer