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    
fiona / compat.py
Size: Mime:
from collections import UserDict
from collections.abc import Mapping

DICT_TYPES = (dict, Mapping, UserDict)


def strencode(instr, encoding="utf-8"):
    try:
        instr = instr.encode(encoding)
    except (UnicodeDecodeError, AttributeError):
        pass
    return instr