Metadata-Version: 1.1
Name: MacPacbot
Version: 1.0.6
Summary: MacPacbot is a Python toolkit of PAC(auto proxy configuration) for Mac OS X
Home-page: http://dexteryy.github.com/MacPacbot
Author: dexteryy
Author-email: dexter.yy@gmail.com
License: UNKNOWN
Description: MacPacbot is a Python toolkit of PAC(auto proxy configuration) for Mac OS X, which makes it much easier to create, edit and enable PAC script.
        It could transform a simple YAML config into a valid PAC script. 
        
        ## Usage
        
        Transform YAML info PAC:
        
            sudo pacbot <yaml_file> -o <pac_file>
        
        Automatically detect network-service and update auto proxy configuration:
        
            sudo pacbot -u [-o <pac_file>]
        
        Disable auto proxy in current network-service:
        
            sudo pacbot -s off
        
        Vim plugin:
        
            function! EnablePAC()
                if &filetype == 'javascript'
                    !sudo pacbot -u -o %
                elseif &filetype == 'yaml'
                    !sudo pacbot %
                endif
            endfunction
        
            command! PACenable call EnablePAC() 
            autocmd! bufwritepost *.pac :PACenable
            autocmd! bufwritepost *.ypac :PACenable
        
        
Keywords: PAC,proxy,mac,GFW
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: MacOS X
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Topic :: System :: Systems Administration
