()
| 3 | |
| 4 | |
| 5 | def get_configuration(): |
| 6 | home_directory = os.path.expanduser('~') |
| 7 | config_file = os.path.join(home_directory, '.pythongoogleanalytics') |
| 8 | if not os.path.exists(config_file): |
| 9 | return None |
| 10 | config = ConfigParser.RawConfigParser() |
| 11 | config.read(config_file) |
| 12 | return config |
| 13 | |
| 14 | |
| 15 | def get_google_credentials(): |
no outgoing calls
no test coverage detected