Metadata-Version: 1.1
Name: py-blobbify
Version: 0.2
Summary: Create minified, gzip compressed and base64 encoded blobs from Python code
Home-page: https://github.com/NiklasRosenstein/py-require
Author: Niklas Rosenstein
Author-email: rosensteinniklas@gmail.com
License: UNKNOWN
Description: blobbify
        ========
        
        â€“ Create minified, gzip compressed and base64 encoded blobs from Python
        code.
        
        ::
        
            Î» py-blobbify blobbify.py -mc --store-method=direct
        
            import base64 as b, types as t, zlib as z; m=t.ModuleType('blobbify'); blob=b'\
            eJydVt9r4zgQfg/kf3D3HuSA4/Zg2btr0UNpXW5hm5Q2CwdtMbItNzpsy8jypmnp/34zI9vxZpvj9l4\
            SZTS/55tPUWWtjfWEeaqFaeR0opwgEY389HH4qZvh2LRJbXQqm5FouztbWda5KuRI8Gw3RtSD4KVQyX\
            QS/RVdxKvo+ubL+SrijLG90J5ovCTw7LaWDZ7tmVdyG17rrC3kCqT+ayVKeWTeZmdeUuiEJ+zhFQ+Zs\
            OIN3MlnmfpJmHz6mMlUZ9LHy1ngfYNC/XIGZq+N1UaW0q519nbmZbIgTwEFDrzybDqhxL7LNb5YXt/c\
            Rnd30eV/STugevH48v8qeAkx/bI20PEfyzlcz3SyX8/LqKS71fI2uo5Wfy4v48vPt9HFijNK542X+9f\
            R1fnXL3CPvhKVb2MKc99n/0gWmcy9BuZe2RhS0N+kjyhAldnpdOJZs8UvAFK4fw1i+ZzK2nrLu8gYbb\
            BZICF9leMxlMZU+ojTVxgtlotosaJ7zwiFsMXwpaogOx+bE+gkb5tUWMmvRNG4HPKaL3QlR9lslF0Pi\
            A0XkE22kjhOYbZXIPKhhXLwAWnltYua1+HGKCspWCgrGghrbf47m816jbTQjfTdT1iwht+zektJKmlY\
            ABpY/yPdQ51Dyi4EmYSqaqSx/q8Bmy+Zc1XrWlZ8t4bhDQp8VA8am+nWfnf5+SZCMbRuLL5bXS6/rpx\
            DQFZbWE5+Q4Ba2VYK8/Bn9yePYYe2rrhuJk7XSNsaqv2In4zG0Q/SH9ULY4R+Za7lO0Pv9QQgxMJcm1\
            JYf98vNTNXlSiKbY+HvPZU41XaejhNF3YPea6zaOtcdSV2MBGq8gkQRHmG9+QXnpuntgQ/NySnyTmVU\
            GRZLLpbnyFaWIA7vrNFuNBSM+Mg8K7lXDOY5BxmVLf2sIsNmwWQqsCxALmGbqyHvabktWcJFojUKl1x\
            RosaW9NKdti4JGO3PD9puhyZzgf8/qSTDTkpVCXnG5XZddcWVdmhB7/9cdi8IXOKNHfUx4J0rRXAnPs\
            sU0am0GnWuXKzoW3s3NEXOmxo4Mi9nFaPOMFIkZEcgEdSVyyhjlQ70sHziHRGqvEgHdzjxx5pjCL0Y9\
            zFwBdkEFMo2kMkrgKjHXqfkFmBuE4PK/cZuccLH5cuLQoy7L5oUqUoSdwrDiReC7sOm7pQ+Lz7u37R3\
            gFtjOpxIHCj8WD1hlEEuL+0iN7o4eLvvD09PVD04dEo3ovAeT/zf3dMb967fhGJDWcPDw8VC//WkHH/\
            FybEDzdqQqobM+rH9HvmGIfYtO/3DyGC/oXnFCgYZzg69zANHVd0z41zDndQehyjuzjm/EMcI6nF8Qe\
            sGQkDydZ3RAfKv3gXgGNk32TrjSjZX1tbN6fHx09Ayi1B7BiaanWeH+/UwMF08g+Li2In'
            exec(z.decompress(b.b64decode(blob)), vars(m)); blobbify=m
            del blob, b, t, z, m;
        
        Requirements
        ------------
        
        -  pyminifier
        
        Todo
        ----
        
        -  Support blobbifying complete Python packages
        
        Changelog
        ---------
        
        v1.2
        ~~~~
        
        -  add ``-e/--export-symbol`` option
        
        License
        -------
        
        The MIT License (MIT)
        
        Copyright (c) 2016 Niklas Rosenstein
        
        Permission is hereby granted, free of charge, to any person obtaining a
        copy of this software and associated documentation files (the
        "Software"), to deal in the Software without restriction, including
        without limitation the rights to use, copy, modify, merge, publish,
        distribute, sublicense, and/or sell copies of the Software, and to
        permit persons to whom the Software is furnished to do so, subject to
        the following conditions:
        
        The above copyright notice and this permission notice shall be included
        in all copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
        OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
        MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
        IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
        CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
        TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
        SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
        
Keywords: blob,blobbify,importer,loader,minify
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Other Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: Jython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Utilities
