Showing results 3791-3800 of >3,873 (page 380)
https://twisted.org/pipermail/twisted-python/2009-November/053425.html

[Twisted-Python] PyObjC and Twisted command line script Jonathan Stoppani jonathan at garetjax.info Mon Nov 9 10:43:15 MST 2009 Previous message (by thread): [Twisted-Python] PyObjC and Twisted command line script Next message (by thread): [Twisted-Python] Retrying function calls Messages sorted by: [ date ] [ thread ] [ subject ] [ author ] Hi David, I discovered this message in my "sent" (???) mailbox only today, sorry for the delay... Anyway, thanks for the response, very clear. The ticket I was referenc

https://refactoring.guru/es/design-patterns/abstract-factory/python/example

Patrón Abstract Factory en Python. Ejemplo de código completo en Python con comentarios y explicación detallada. Abstract Factory es un patrón de diseño creacional que resuelve el problema de crear familias enteras de productos sin especificar sus clases concretas

https://exchangetuts.com/python-ip-range-to-ip-range-match-1769225402280811

Python IP range to IP range matchIs there any method to check if some IP addresses from a network range

https://eli.thegreenplace.net/2025/decorator-jits-python-as-a-dsl/

# Decorator JITs - Python as a DSL February 03, 2025 at 06:22 Tags Python , Compilation , Machine Learning Spend enough time looking at Python programs and packages for machine learning, and you'll notice that the "JIT decorator" pattern is pretty popular. For example, this JAX snippet: import jax.numpy as jnp import jax @jax.jit def add(a, b): return jnp.add(a, b) # Use "add" as a regular Python function ... = add(...) Or the Triton language for writing GPU kernels directly in Python: import triton im

https://mail.python.org/pipermail/python-dev/2016-September/146216.html

# [Python-Dev] Do PEP 526 type declarations define the types of variables or not? Guido van Rossum guido at python.org Mon Sep 5 13:40:55 EDT 2016 - Previous message (by thread): [Python-Dev] Do PEP 526 type declarations define the types of variables or not? - Next message (by thread): [Python-Dev] Do PEP 526 type declarations define the types of variables or not? - Messages sorted by: - [ date ] - [ thread ] - [ subject ] - [ author ] On Mon, Sep 5, 2016 at 8:26 AM, Mark Shannon < mark at hotpy.org > w

https://www.lingoblog.dk/en/tag/python-en/

Skip to content Menu Python Rhyme and Reason 02/08/2022 by Gustav Styrbjørn Johannessen “A letter may be coded, and a word may be coded. A theatrical performance may be coded, and a sonnet may be coded, and there are times when it seems the entire world is in code.” This piece of philosophy comes from one of my favourite childhood authors, and it’s one which can often provide some comfort when the world feels mysterious and unreasonable: It’s not that the world doesn’t make sense, it’s that the

https://www.asksteved.com/2012/03/03/adventures-in-python/

Skip to content Steve Dougherty's Blog Adventures in Python I’ve been spending most of my waking hours with Python over break, and I really like the language. Unlike the standard C++ library schoolwork is limited to, in Python I can generally find a library to make my task a great deal simpler. I find assumptions that I make about syntax while figuring things out tend to hold and work as I would expect, and it’s incredibly convenient to pop open an interactive shell to try out an idea before dropping it

https://modpython.org/pipermail/mod_python/2007-May/023557.html

[mod_python] Pre and postprocess blocks (Publisher mode)? Graham Dumpleton graham.dumpleton at gmail.com Fri May 4 05:50:59 EDT 2007 Previous message: [mod_python] Pre and postprocess blocks (Publisher mode)? Next message: [mod_python] Pre and postprocess blocks (Publisher mode)? Messages sorted by: [ date ] [ thread ] [ subject ] [ author ] On 04/05/07, durumdara < durumdara at gmail.com > wrote: > Hi! > > I tried Pylons to see and check it... how to working, what I need to > learn about it... from it

https://opentelemetry-python.readthedocs.io/en/stable/examples/metrics/instruments/README.html

OpenTelemetry Python Core Packages More Auto-instrumentation Basic Context Basic Trace Declarative Configuration Django Instrumentation Global Error Handler Working With Fork Process Models OpenTelemetry Logs SDK OpenTelemetry Metrics SDK Prometheus Instrumentation MetricReader configuration scenarios View common scenarios Multi-Destination Exporting OpenCensus Exporter OpenCensus Shim OpenTracing Shim sqlcommenter OpenTelemetry Python Examples OpenTelemetry Metrics SDK View page source OpenTelemetry Metric

http://prometheus.github.io/client_python/instrumenting/summary/

A Summary samples observations and tracks the total count and sum. Use it when you want to track the size or duration of events and compute averages, but do not need per-bucket breakdown or quantiles in your Prometheus queries. The Python client does not compute quantiles locally. If you need p50/p95/p99, use a Histogram instead. from prometheus_client import Summary s = Summary('request_latency_seconds', 'Description of summary') s.observe(4.7) # Observe 4.7 (seconds in this case) A Summary exposes two tim

‹ Prev Next ›