Skip to main content

My package description

Project description

pyproxypattern

根据peewee的proxy做的单独的python对象代理模式.

特性

  • 提供一个相对通用的代理类Proxy
  • 提供用于检测代理对象类型的回调函数attach_instance_check
  • 提供在初始化代理对象后的回调函数注册器attach_callback,回调函数回按注册的顺序执行
  • 可以代理上下文对象,迭代器对象
  • 可以代理异步上下文对象,异步迭代器对象

安装

pip install pyproxypattern

使用

两种方式:

  1. 直接使用Proxy的实例代理对象

    class Test_B:
        def get2(self) -> int:
            return 2
    B = Test_B()
    proxy = Proxy()
    proxy.attach_instance_check(lambda x: isinstance(x, Test_B))
    proxy.initialize(B)
    proxy.get2() == 2
    
  2. Proxy类作为父类构造一个更加负载的代理类,然后再用它的实例代理特定对象

    class AredisProxy(Proxy):
        """aredis的代理类."""
        __slots__ = ('instance', "_callbacks", "_instance_check", "url")
    
        def __init__(self, url: Optional[str] = None, decode_responses: bool = True, **kwargs: Any) -> None:
            if url:
                instance = self.new_instance(url, decode_responses, **kwargs)
                super().__init__(instance)
            else:
                super().__init__()
    
        def new_instance(self, url: str, decode_responses: bool, **kwargs: Any) -> Any:
            self.url = url
            return StrictRedis.from_url(url, decode_responses=decode_responses, **kwargs)
    
        def initialize_from_url(self, url: str, *, decode_responses: bool = False, **kwargs: Any) -> None:
            """初始化."""
            instance = self.new_instance(url, decode_responses, **kwargs)
            self.initialize(instance)
    

0.0.1

项目创建 MIT License

Copyright (c) 2020 Python-Tools

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.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pyproxypattern-0.0.1.tar.gz (4.2 kB view hashes)

Uploaded Source

Built Distributions

pyproxypattern-0.0.1-py3.9.egg (3.9 kB view hashes)

Uploaded Source

pyproxypattern-0.0.1-py3-none-any.whl (5.0 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page