Showing results 3801-3810 of >3,881 (page 381)
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

http://eikke.com/couchdb-with-python/index.html

Skip to content Ikke's blog 'cause this is what I do CouchDB with Python Today I’ve been investigating CouchDB a little better (only heard some rumors about it before). It’s actually a pretty nice technology which can, in some places, be pretty useful… I tend to compare it to caching serialized PHP associative arrays or Python dict’s in a Memcached server using some specific prefixes, except it’s not really memory-based (it’s persistent), you get a complete query interface (views), there’s

https://www.danilchenko.dev/posts/python-lazy-imports/

Python lazy imports (PEP 810) land in Python 3.15. I benchmarked boto3, requests and pydantic startup: the real speedup, and how to get most of it today

https://shocksolution.com/microfluidics-and-biotechnology/calculating-the-pair-correlation-function-in-python/

Python routines to compute the pair correlation function (radial distribution function) in two or three dimensions

https://reason.town/python-code-for-linear-regression-in-machine-learning/

Python Code for Linear Regression in Machine Learning: In this post, we'll be walking through the Python code for a linear regression machine learning

https://twisted.org/pipermail/twisted-python/2004-December/041747.html

[Twisted-Python] Moving sandbox out of the trunk. Itamar Shtull-Trauring itamar at itamarst.org Sun Dec 26 09:06:51 MST 2004 Previous message (by thread): [Twisted-Python] Moving sandbox out of the trunk. Next message (by thread): [Twisted-Python] Moving sandbox out of the trunk. Messages sorted by: [ date ] [ thread ] [ subject ] [ author ] On Sun, 2004-12-26 at 15:42 +0200, Tommi Virtanen wrote: > If no one yells at me during the next 24 hours, > tomorrow I will run > > svn commit -m 'Move sandbox outside

https://superfastpython.com/parent-process-vs-child-process-in-python/

SuperFastPython Tutorial Archive Parent Process vs Child Process in Python June 5, 2022 Python Multiprocessing Parent processes have one or more child processes, whereas child processes do not have any child processes. In this tutorial you will discover the difference between the Parent and Child processes and when to use each in your Python projects. Let's get started. What is a Parent Process A parent process is a process that is capable of starting child processes. Typically, we would not refer to a proc

https://mail.python.org/pipermail/python-dev/2017-May/147919.html

[Python-Dev] PEP 484 proposal: don't default to Optional if argument default is None Ivan Levkivskyi levkivskyi at gmail.com Wed May 10 06:31:20 EDT 2017 Previous message (by thread): [Python-Dev] PEP 484 proposal: don't default to Optional if argument default is None Next message (by thread): [Python-Dev] python docs Messages sorted by: [ date ] [ thread ] [ subject ] [ author ] There is a discrepancy now between PEP 484 and PEP 526: def f(x: int = None): ... # OK x: int = None # Error I think the two rule

‹ Prev Next ›