Skip to content

Commit

Permalink
Updated docs and bumped version to 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mcohoon committed Apr 18, 2016
1 parent f96f799 commit cd2e60a
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Google Analytics Reporting API V4 Compatibility Library [![Analytics](https://ga-beacon.appspot.com/UA-76561751-1/googleanalytics/gav4-python?pixel)](https://github.com/googleanalytics/gav4-python)
# GAV4 - Analytics Reporting API V4 Compatibility Library [![Analytics](https://ga-beacon.appspot.com/UA-76561751-1/googleanalytics/gav4-python?pixel)](https://github.com/googleanalytics/gav4-python)

A library for converting Google Analytics [Core Reporting API V3](https://developers.google.com/analytics/devguides/reporting/core/v3/) request to [Analytics Reporting API V4](https://developers.google.com/analytics/devguides/reporting/core/v4/) requests.
A library for converting Google Analytics [Core Reporting API V3](https://developers.google.com/analytics/devguides/reporting/core/v3/) requests to [Analytics Reporting API V4](https://developers.google.com/analytics/devguides/reporting/core/v4/) requests.

## Installation

Expand All @@ -17,7 +17,7 @@ There are two methods of using the gav4 library. You can `apply` the library to
gav4.apply_gav4(analyticsreporting)

# Call the gav4_get method with a V3 request and get a V3 response.
v3_response = analytics.gav4_get(v3_request).execute()
v3_response = analyticsreporting.gav4_get(v3_request).execute()

Alternatively, you can convert the requests and responses directly.

Expand Down
2 changes: 1 addition & 1 deletion gav4/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Google Analytics Reporting API V4 Compatibility Library [![Analytics](https://ga-beacon.appspot.com/UA-76561751-1/googleanalytics/gav4-python/gav4?pixel)](https://github.com/googleanalytics/gav4-python)
# GAV4 [![Analytics](https://ga-beacon.appspot.com/UA-76561751-1/googleanalytics/gav4-python/gav4?pixel)](https://github.com/googleanalytics/gav4-python)

## Contents

Expand Down
2 changes: 1 addition & 1 deletion gav4/gav4.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
gav4.apply_gav4(analyticsreporting)
# Call the gav4_get method with a V3 request and get a V3 response.
v3_response = analytics.gav4_get(v3_request).execute()
v3_response = analyticsreporting.gav4_get(v3_request).execute()
Alternatively, you can convert the requests and responses directly.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@

setup(
name='gav4',
version='0.1.0',
version='0.1.1',
description='Google Analytics V4 API Compatibility Library',
author='Google Analytics Platform',
author_email='[email protected]',
Expand Down

0 comments on commit cd2e60a

Please sign in to comment.