Metadata-Version: 1.1
Name: fake-useragent
Version: 0.0.3
Summary: up to date simple useragent faker with real world database
Home-page: https://github.com/hellysmile/fake-useragent
Author: hellysmile
Author-email: hellysmile@gmail.com
License: http://www.apache.org/licenses/LICENSE-2.0
Description: fake-useragent
        ==============
        
        :Info: up to date simple useragent faker with real world database
        
        .. image:: https://api.travis-ci.org/hellysmile/fake-useragent.png
                :target: https://travis-ci.org/hellysmile/fake-useragent
        
        features
        ********
        
        * grabs up to date ``useragent`` from `useragentstring.com <http://useragentstring.com/>`_
        * randomize with real world statistic via `w3schools.com <http://www.w3schools.com/browsers/browsers_stats.asp>`_
        
        installation
        ------------
        
        .. code-block:: shell
        
            pip install fake-useragent
        
        usage
        -----
        
        .. code-block:: python
        
            from fake_useragent import UserAgent
            ua = UserAgent()
        
            ua.ie
            # Mozilla/5.0 (Windows; U; MSIE 9.0; Windows NT 9.0; en-US);
            ua.msie
            # Mozilla/5.0 (compatible; MSIE 10.0; Macintosh; Intel Mac OS X 10_7_3; Trident/6.0)'
            ua.opera
            # Opera/9.80 (X11; Linux i686; U; ru) Presto/2.8.131 Version/11.11
            ua.chrome
            # Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.2 (KHTML, like Gecko) Chrome/22.0.1216.0 Safari/537.2'
            ua.google
            # Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_4) AppleWebKit/537.13 (KHTML, like Gecko) Chrome/24.0.1290.1 Safari/537.13
            ua['google chrome']
            # Mozilla/5.0 (X11; CrOS i686 2268.111.0) AppleWebKit/536.11 (KHTML, like Gecko) Chrome/20.0.1132.57 Safari/536.11
            ua.firefox
            # Mozilla/5.0 (Windows NT 6.2; Win64; x64; rv:16.0.1) Gecko/20121011 Firefox/16.0.1
            ua.ff
            # Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:15.0) Gecko/20100101 Firefox/15.0.1
            ua.safari
            # Mozilla/5.0 (iPad; CPU OS 6_0 like Mac OS X) AppleWebKit/536.26 (KHTML, like Gecko) Version/6.0 Mobile/10A5355d Safari/8536.25
        
            # and the best one
            ua.random
        
        notes
        -----
        
        ``fake-useragent`` store collected data at your os temp dir, like ``/tmp``
        
        if you want to update saved database just
        
        .. code-block:: python
        
            from fake_useragent import UserAgent
            ua = UserAgent()
            ua.update()
        
        if you dont want cache database or no writable file system:
        
        .. code-block:: python
        
            from fake_useragent import UserAgent
            ua = UserAgent(cache=False)
        
        
        tests
        -----
        
        .. code-block:: shell
        
            pip install tox
            tox
        
Keywords: user,agent,user agent,user-agent,fake
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Software Development :: Libraries
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Development Status :: 5 - Production/Stable
Classifier: Natural Language :: English
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
