python 7个好用的装饰器分享

python爬虫知识分享 来源:python爬虫知识分享 作者:python爬虫知识分享 2022-06-15 16:46 次阅读

1、dispach

Python 天然支持多态,但使用 dispatch 可以让你的代码更加容易阅读。

安装:

pipinstallmultipledispatch

使用:

>>> from multipledispatch import dispatch

>>> @dispatch(int, int)
... def add(x, y):
...     return x + y

>>> @dispatch(object, object)
... def add(x, y):
...     return "%s + %s" % (x, y)

>>> add(1, 2)
3

>>> add(1, 'hello')
'1 + hello'

2、click

click 可以很方便地让你实现命令行工具。

安装:

pipinstallclick

使用:demo2.py :

import click

@click.command()
@click.option('--count', default=1, help='Number of greetings.')
@click.option('--name', prompt='Your name',
              help='The person to greet.')
def hello(count, name):
    """Simple program that greets NAME for a total of COUNT times."""
    for x in range(count):
        click.echo(f"Hello {name}!")

if __name__ == '__main__':
    hello()

运行结果:

❯ python demo2.py --count=3 --name=joih
Hello joih!
Hello joih!
Hello joih!
❯ python demo2.py --count=3
Your name: somenzz
Hello somenzz!
Hello somenzz!
Hello somenzz!

3、celery

分布式的任务队列,非 Celery 莫属。

from celery import Celery

app = Celery('tasks', broker='pyamqp://guest@localhost//')

@app.task
def add(x, y):
    return x + y

4、deprecated

这个相信大家在使用别的包时都遇到过,当要下线一个老版本的函数的时候就可以使用这个装饰器。

安装:

pipinstallDeprecated

使用:demo4.py

from deprecated import deprecated
@deprecated ("This function is deprecated, please do not use it")
def func1():
    pass

func1()

运行效果如下:

❯ python demo4.py
demo4.py:6: DeprecationWarning: Call to deprecated function (or staticmethod) func1. (This function is deprecated, please do not use it)
  func1()

5、deco.concurrent

安装:

pipinstalldeco

使用 DECO 就像在 Python 程序中查找或创建两个函数一样简单。我们可以用 @concurrent 装饰需要并行运行的函数,用 @synchronized 装饰调用并行函数的函数,使用举例:

from deco import concurrent, synchronized 
@concurrent # We add this for the concurrent function
def process_url(url, data):
  #Does some work which takes a while
  return result

@synchronized # And we add this for the function which calls the concurrent function
def process_data_set(data):
  results = {}
  for url in urls:
    results[url] = process_url(url, data)
  return results

6、cachetools

缓存工具

安装:

pipinstallcachetools

使用:

from cachetools import cached, LRUCache, TTLCache

# speed up calculating Fibonacci numbers with dynamic programming
@cached(cache={})
def fib(n):
    return n if n < 2 else fib(n - 1) + fib(n - 2)

# cache least recently used Python Enhancement Proposals
@cached(cache=LRUCache(maxsize=32))
def get_pep(num):
    url = 'http://www.python.org/dev/peps/pep-%04d/' % num
    with urllib.request.urlopen(url) as s:
        return s.read()

# cache weather data for no longer than ten minutes
@cached(cache=TTLCache(maxsize=1024, ttl=600))
def get_weather(place):
    return owm.weather_at_place(place).get_weather()

7、retry

重试装饰器,支持各种各样的重试需求。

安装:

pipinstalltenacity

使用:

import random
from tenacity import retry

@retry
def do_something_unreliable():
    if random.randint(0, 10) > 1:
        raise IOError("Broken sauce, everything is hosed!!!111one")
    else:
        return "Awesome sauce!"

@retry(stop=stop_after_attempt(7))
def stop_after_7_attempts():
    print("Stopping after 7 attempts")
    raise Exception


@retry(stop=stop_after_delay(10))
def stop_after_10_s():
    print("Stopping after 10 seconds")
    raise Exception

@retry(stop=(stop_after_delay(10) | stop_after_attempt(5)))
def stop_after_10_s_or_5_retries():
    print("Stopping after 10 seconds or 5 retries")
    raise Exception

审核编辑:符乾江
声明:本文内容及配图由入驻作者撰写或者入驻合作网站授权转载。文章观点仅代表作者本人,不代表电子发烧友网立场。文章及其配图仅供工程师学习之用,如有内容侵权或者其他违规问题,请联系本站处理。 举报投诉
  • 代码
    +关注

    关注

    30

    文章

    4708

    浏览量

    68176
  • python
    +关注

    关注

    54

    文章

    4763

    浏览量

    84339
收藏 人收藏

    评论

    相关推荐

    python学习:三测试库的装饰实现思路

    Python 中实现参数化测试的几个库,并留下一问题: 它们是如何做到把一方法变成多个方法,并且将每个方法与相应的参数绑定起来的呢? 我们再提炼一下,原问题等于是:在一类中,
    的头像 发表于 09-27 11:44 3099次阅读
    <b class='flag-5'>python</b>学习:三<b class='flag-5'>个</b>测试库的<b class='flag-5'>装饰</b><b class='flag-5'>器</b>实现思路

    理解Python装饰及其工作原理

    Python 是一种对新手很友好的语言。但是,它也有很多较难掌握的高级功能,比如装饰(decorator)。很多初学者一直不理解装饰及其
    发表于 10-08 11:39 2193次阅读

    好用python解释

    解释: CPython当从Python官方网站下载并安装好Python2.7后,就直接获得了一官方版本的解释:Cpython,这个解释
    发表于 04-13 14:54

    分享python 7好用装饰

    ): return x + y4、deprecated这个相信大家在使用别的包时都遇到过,当要下线一老版本的函数的时候就可以使用这个装饰。安装:pip install Deprecated
    发表于 06-15 16:54

    一文读懂Python装饰

    装饰前,还要先要明白一件事,Python 中的函数和 Java、C++不太一样,Python 中的函数可以像普通变量一样当做参数传递给另外一
    发表于 04-28 10:48 3413次阅读
    一文读懂<b class='flag-5'>Python</b><b class='flag-5'>装饰</b><b class='flag-5'>器</b>

    7Python调试通过的代码详细资料分析

    "Python的应用十分广泛,今天我们来分享7Python实战项目代码,希望你有所收获。
    的头像 发表于 10-14 09:46 3410次阅读

    让你学写Python装饰的五大理由

    你必须学写Python装饰的五理由
    的头像 发表于 03-02 10:06 1869次阅读

    Python的函数装饰器使用方法

    Python中的装饰是一种可以装饰其它对象的工具,简单地说,他们是修改其他函数的功能的函数。该工具本质上是一可调用的对象(callabl
    的头像 发表于 01-21 11:36 1549次阅读
    <b class='flag-5'>Python</b>的函数<b class='flag-5'>装饰</b>器使用方法

    Python装饰的原理和案例

    Python中的装饰器用于扩展可调用对象的功能,而无需修改其结构。基本上,装饰函数包装另一函数以增强或修改其行为。我们可以通过一
    的头像 发表于 07-01 11:35 2191次阅读

    Python装饰的使用

    定义 首先我们先来了解下装饰的定义。顾名思义,在Python中,装饰本质上就是一函数,它可
    的头像 发表于 06-21 16:54 713次阅读

    8 好用的VS Code Python 扩展

    今天为大家分享 8 好用的 VS Code Python 扩展。 1. Python extension for Visual Studio Code 这个扩展是由微软官方提供的,支
    的头像 发表于 10-16 11:11 995次阅读
    8 <b class='flag-5'>个</b><b class='flag-5'>好用</b>的VS Code <b class='flag-5'>Python</b> 扩展

    Python自制简单实用的日志装饰

    在写代码的时候,往往会漏掉日志这个关键因素,导致功能在使用的时候出错却无法溯源。 其实,只需要写一非常简单的日志装饰,我们就能大大提升排查问题的效率。 1.简陋版装饰
    的头像 发表于 10-21 14:39 678次阅读
    <b class='flag-5'>Python</b>自制简单实用的日志<b class='flag-5'>装饰</b><b class='flag-5'>器</b>

    Python 自制简单实用的日志装饰

    在写代码的时候,往往会漏掉日志这个关键因素,导致功能在使用的时候出错却无法溯源。 其实,只需要写一非常简单的日志装饰,我们就能大大提升排查问题的效率。 1.简陋版装饰
    的头像 发表于 10-31 15:05 462次阅读
    <b class='flag-5'>Python</b> 自制简单实用的日志<b class='flag-5'>装饰</b><b class='flag-5'>器</b>

    如何写一简单的装饰

    今天介绍的是一已经存在十三年,但是依旧不红的库 decorator,好像很少有人知道他的存在一样。 这个库可以帮你做什么呢 ? 其实很简单,就是可以帮你更方便地写python装饰
    的头像 发表于 11-01 09:54 454次阅读
    如何写一<b class='flag-5'>个</b>简单的<b class='flag-5'>装饰</b><b class='flag-5'>器</b>

    【每天学点AI】一例子带你了解Python装饰到底在干嘛!

    进行“加料”呢?Python装饰提供了一更为优雅的方式来增强现有函数的行为,并且不需要修改现有的函数代码及调用方式。接下来通过一案例来
    的头像 发表于 09-20 16:54 501次阅读
    【每天学点AI】一<b class='flag-5'>个</b>例子带你了解<b class='flag-5'>Python</b><b class='flag-5'>装饰</b><b class='flag-5'>器</b>到底在干嘛!