Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
fun-cmd / tools.py
Size: Mime:
def disable_contracts():
    try:
        import contracts
        contracts.disable_all()
    except ImportError:
        pass

def defuse_xml():
    try:
        from safe_lxml import defuse_xml_libs
        defuse_xml_libs()
    except ImportError:
        pass