当前位置: 首页>>代码示例>>Python>>正文


Python RiakObject.set_content_type方法代码示例

本文整理汇总了Python中riak_object.RiakObject.set_content_type方法的典型用法代码示例。如果您正苦于以下问题:Python RiakObject.set_content_type方法的具体用法?Python RiakObject.set_content_type怎么用?Python RiakObject.set_content_type使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在riak_object.RiakObject的用法示例。


在下文中一共展示了RiakObject.set_content_type方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: new

# 需要导入模块: from riak_object import RiakObject [as 别名]
# 或者: from riak_object.RiakObject import set_content_type [as 别名]
    def new(self, key=None, data=None, content_type='application/json'):
        """
        Create a new :class:`RiakObject <riak.riak_object.RiakObject>`
        that will be stored as JSON. A shortcut for manually
        instantiating a :class:`RiakObject
        <riak.riak_object.RiakObject>`.

        :param key: Name of the key. Leaving this to be None (default)
                    will make Riak generate the key on store.
        :type key: string
        :param data: The data to store.
        :type data: object
        :rtype: :class:`RiakObject <riak.riak_object.RiakObject>`
        """
        try:
            if isinstance(data, basestring):
                data = data.encode('ascii')
        except UnicodeError:
            raise TypeError('Unicode data values are not supported.')

        obj = RiakObject(self._client, self, key)
        obj.set_data(data)
        obj.set_content_type(content_type)
        obj._encode_data = True
        return obj
开发者ID:aventurella,项目名称:riak-python-client,代码行数:27,代码来源:bucket.py

示例2: new

# 需要导入模块: from riak_object import RiakObject [as 别名]
# 或者: from riak_object.RiakObject import set_content_type [as 别名]
 def new(self, key, data=None, content_type='application/json'):
     """
     Create a new Riak object that will be stored as JSON.
     @param string key - Name of the key.
     @param object data - The data to store. (default None)
     @return RiakObject
     """
     obj = RiakObject(self._client, self, key)
     obj.set_data(data)
     obj.set_content_type(content_type)
     obj._encode_data = True
     return obj
开发者ID:PharkMillups,项目名称:riak-python-client,代码行数:14,代码来源:bucket.py

示例3: new_binary

# 需要导入模块: from riak_object import RiakObject [as 别名]
# 或者: from riak_object.RiakObject import set_content_type [as 别名]
 def new_binary(self, key, data, content_type='application/octet-stream'):
     """
     Create a new Riak object that will be stored as plain text/binary.
     @param string key - Name of the key.
     @param object data - The data to store.
     @param string content_type - The content type of the object.
            (default 'application/octet-stream')
     @return RiakObject
     """
     obj = RiakObject(self._client, self, key)
     obj.set_data(data)
     obj.set_content_type(content_type)
     obj._encode_data = False
     return obj
开发者ID:PharkMillups,项目名称:riak-python-client,代码行数:16,代码来源:bucket.py

示例4: new

# 需要导入模块: from riak_object import RiakObject [as 别名]
# 或者: from riak_object.RiakObject import set_content_type [as 别名]
    def new(self, key, data=None, content_type='application/json'):
        """
        Create a new :class:`RiakObject <riak.riak_object.RiakObject>` that will be stored as JSON. A shortcut for
        manually instantiating a :class:`RiakObject <riak.riak_object.RiakObject>`.

        :param key: Name of the key.
        :type key: string
        :param data: The data to store.
        :type data: object
        :rtype: :class:`RiakObject <riak.riak_object.RiakObject>`
        """
        obj = RiakObject(self._client, self, key)
        obj.set_data(data)
        obj.set_content_type(content_type)
        obj._encode_data = True
        return obj
开发者ID:allancaffee,项目名称:riak-python-client,代码行数:18,代码来源:bucket.py

示例5: new_binary

# 需要导入模块: from riak_object import RiakObject [as 别名]
# 或者: from riak_object.RiakObject import set_content_type [as 别名]
    def new_binary(self, key, data, content_type="application/octet-stream"):
        """
        Create a new :class:`RiakObject <riak.riak_object.RiakObject>` that will be stored as plain text/binary.
        A shortcut for manually instantiating a :class:`RiakObject <riak.riak_object.RiakObject>`.

        :param key: Name of the key.
        :type key: string
        :param data: The data to store.
        :type data: object
        :param content_type: The content type of the object.
        :type content_type: string
        :rtype: :class:`RiakObject <riak.riak_object.RiakObject>`
        """
        obj = RiakObject(self._client, self, key)
        obj.set_data(data)
        obj.set_content_type(content_type)
        obj._encode_data = False
        return obj
开发者ID:semk,项目名称:riak-python-client,代码行数:20,代码来源:bucket.py


注:本文中的riak_object.RiakObject.set_content_type方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。