파이썬의 엘릭서 파이프
6669 단어 pythonprogrammingfunctional
Python을 더 자주 사용하면서 몇 줄의 코드로 Python에서 해당 파이프 기능을 구현하려고 했습니다.
from functools import reduce
def pipe(*fn_list):
return reduce(
lambda x, f: f(x) if not isinstance(x, list) else f(*x),
fn_list,
)
사용 방법?
예시 -
import json
from dataclasses import dataclass
import requests
@dataclass
class Request:
url: str
method: str
def parse_request(req: str):
return pipe(
req,
json.loads,
lambda x: Request(**x),
)
def validate_url(req: Request):
return req if req.url.startswith("http") else None
def validate_method(req: Request):
return req if req.method in ["GET", "POST", "PUT", "DELETE"] else None
def get_content(req: Request):
return requests.get(req.url).content
def check_content_type(content: str, content_type: str):
return content if content.startswith(content_type) else None
print(
pipe(
"""{"url": "https://google.com", "method": "GET"}""",
parse_request,
validate_url,
validate_method,
get_content,
lambda content: content.decode("utf-8"),
lambda content: check_content_type(content, "<!doctype html>"),
)
)
lambda
및 pipe
의 함수를 사용할 수 있습니다.파이프의 마지막 함수
check_content_type
는 두 개의 인수를 취합니다. 첫 번째 함수content
는 이전 파이프 함수에서 전달되므로 람다 인수에서 이를 취한 다음 check_content_type
및 다른 인수와 함께 content
를 호출합니다. .네 생각을 말해봐!
**표지 이미지는 here에서 가져왔습니다.
Reference
이 문제에 관하여(파이썬의 엘릭서 파이프), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/ananto30/elixir-pipe-in-python-2h88텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)