MCPcopy Index your code
hub / github.com/clintecker/python-googleanalytics / get_configuration

Function get_configuration

src/googleanalytics/config.py:5–12  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

3
4
5def 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
15def get_google_credentials():

Callers 2

get_google_credentialsFunction · 0.85
get_valid_profilesFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected