Metadata-Version: 2.1
Name: anole
Version: 0.2.1
Summary: Like a anole, fake everything.
Home-page: https://leesoar.com
Author: leesoar
Author-email: secure@tom.com
License: MIT
Description: 
        ## Anole
        
        Like a anole, fake everything.
        
        Currently support user agent fake, other will be coming soon.
        
        Thanks for use.
        
        
        ### How to use
        ```python
        from anole import UserAgent
        
        
        # Suppose this is the request headers
        headers = {
            "referer": "https://leesoar.com"
        }
        user_agent = UserAgent()
        user_agent.fake(headers)
        ```
        
        > It will check if there is "user-agent" in headers. If not, "user-agent" will update with random.
        
        ### Use as fake_useragent
        ```python
        from anole import UserAgent
        
        
        user_agent = UserAgent()
        user_agent.random
        # or user_agent.chrome
        # or other browsers
        ```
        
Keywords: user,agent,user agent,useragent,fake,fake useragent,fake user agent,anole
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Python: >=3.3.0
Description-Content-Type: text/markdown
