Metadata-Version: 1.1
Name: pyga
Version: 2.3
Summary: Server side implemenation of Google Analytics in Python.
Home-page: http://kra3.github.com/py-ga-mob/
Author: Arun K.R.
Author-email: the1.arun@gmail.com
License: Simplified BSD
Description: ===================================================
        PYGA: Python Google Analytics - Data Collection API
        ===================================================
        .. image:: https://secure.travis-ci.org/kra3/py-ga-mob.png?branch=master
           :alt: Build Status
           :target: http://travis-ci.org/kra3/py-ga-mob
        
        pyga is an iplementation of Google Analytics in Python;so that it can be used at server side.
        This project only helps you with Data Collection part of Google Analytics.
        ie., You can consider this as a replacement for ga.js at client side.
        
        Google Provides Android SDK,iOS SDK + Flash SDK. 
        And left everybody else with a single page documentation about GIF request parameters. 
        Also with a basic sample of server side implementation in quite a few languages (perl, php, jsp).
        
        
        * PyPi Package Page: http://pypi.python.org/pypi/pyga
        * Main Repository: https://github.com/kra3/py-ga-mob
        * Copy Repository: https://bitbucket.org/kra3/pyga/overview
        * Documentation: http://readthedocs.org/docs/pyga-python-google-analytics-data-collection-api/en/latest/#
        
        
        Use Cases
        --------------
        
        1. You want to track data from server side
        2. You're developing a mobile site and have to support devices w/o JS support
        
        
        Supported Features    
        ----------------------
        
        * Page View
        * E-Commerce
        * Social Interaction
        * Custom Variables
        * Events
        * Campaigns
        
          not yet
        
        * Ad-Words
        * Search Engine
        
        
        
        To know more about mobiletracking see:
        https://developers.google.com/analytics/devguides/collection/other/mobileWebsites
        
        
        Example
        -------------------      
        ::
        
             from pyga.requests import Tracker, Page, Session, Visitor
        
             tracker = Tracker('MO-XXXXX-X', 'yourdomain.com')     
             visitor = Visitor()
             visitor.ip_address = '194.54.176.12'
             session = Session()
             page = Page('/path')
             tracker.track_pageview(page, session, visitor)
             
        
        
        Thanks to:
        ---------------------
        * `Expicient Inc <http://www.expicient.com>`_
        * `php-ga <http://code.google.com/p/php-ga>`_
        
        
        
Keywords: google analytics  mobile serverside
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Environment :: Web Environment
Classifier: Development Status :: 5 - Production/Stable
Classifier: Programming Language :: Python
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Internet
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI
