Showing results 3931-3940 of >4,014 (page 394)
https://www.reneshbedre.com/blog/dbscan-python.html

Learn the basics of DBSCAN and implement DBSCAN clustering in Python

https://www.thepacketologist.com/2021/10/power-conversion-in-python/

Skip to content # The Packetologist Menu # Building a power conversion tool in Python I’ve been doing less and less Python development since moving to a new company back in June. At my previous employer, I worked on Python command-line scripts and a custom-built web app fairly often that assisted with daily, monotonous tasks as well as troubleshooting. I really enjoyed the process of learning more about Python and developing tools that helped not just myself, but also my team. A couple of months ago, I

https://twisted.org/pipermail/twisted-python/2005-May/010491.html

# [Twisted-Python] how to write an interactive client? Jp Calderone exarkun at divmod.com Fri May 20 19:26:00 EDT 2005 - Previous message: [Twisted-Python] how to write an interactive client? - Next message: [Twisted-Python] generating and handling events - Messages sorted by: - [ date ] - [ thread ] - [ subject ] - [ author ] On Fri, 20 May 2005 16:04:50 -0700, theshz < theshz at gmail.com > wrote: >Hi, I've written a simple twisted server, which accepts client connections, >and respond with some simpl

http://max2.physics.sunysb.edu/itp/computing/doc/python/python-texinfo/rand.html

rand -- Python library reference Next: regsub Prev: os Up: Standard Modules Top: Top 4.3. Standard Module rand This module implements a pseudo-random number generator with an interface similar to rand() in C. It defines the following functions: rand () -- function of module rand Returns an integer random number in the range [0 ... 32768). choice (s) -- function of module rand Returns a random element from the sequence (string, tuple or list) s. srand (seed) -- function of module rand Initializes the random

https://www.javonet.com/guides/v2/python/perl-package/exceptions/exceptions

This article provides an overview of working with exceptions from Perl package in Python application

https://modpython.org/pipermail/mod_python/2006-July/021562.html

[mod_python] weird request.connection.remote_ip value David Harvey dmharvey at math.harvard.edu Sun Jul 9 06:41:49 EDT 2006 Previous message: [mod_python] weird request.connection.remote_ip value Next message: [mod_python] outputting to apache log Messages sorted by: [ date ] [ thread ] [ subject ] [ author ] On Jul 8, 2006, at 10:48 PM, Graham Dumpleton wrote: > After more digging, '::1' means loopback interface under IPv6. > > Further information can be found at: > > http://www.juniper.net/techpubs/softwa

https://mail.python.org/pipermail/python-3000/2007-April/006781.html

# [Python-3000] PEP to change how the main module is delineated Steven Bethard steven.bethard at gmail.com Mon Apr 23 21:49:01 CEST 2007 On 4/23/07, Brett Cannon < brett at python.org > wrote: > On 4/22/07, Steven Bethard < steven.bethard at gmail.com > wrote: > > On 4/22/07, Brett Cannon < brett at python.org > wrote: > > > Implementation > > > ============== > > > > > > When the ``-m`` option is used, ``sys.main`` will be set to the > > > argument passed in. ``sys.argv`` will be adjusted as it is curre

https://wipdev.netlify.app/posts/automating-git-with-python/

Overthinking Development Automating Git With Python September 16, 2020 Programmers are lazy! This is why I wrote a Python script to write one command instead of three in my Git workflow. Context This website is made with the static site generator Hugo . Once the layout and theme of the site are chosen, all I needed then was writing new posts. This is done by writing Markdown documents. I also have it version-controlled so that I can host it on Netlify through the GitHub repo. So this is what happens with th

https://slinkp.com/python-thread-locals-20171201.html

slinkp blog Thread Locals in Python: Mostly easy December 01, 2017 By Paul Winkler Thread locals are an interesting idea: a way to give each thread its own storage, useful for global state that you don't want to share between threads. The obvious caveat is that threadlocals are still effectively global (for the current thread), and like all global state, should be treated with great suspicion. If you can do without one, you're probably better off. Let's look at the Python official docs about threading.local

https://words.filippo.io/building-python-modules-with-go-1-5/

25 Aug 2015 Building Python modules with Go 1.5 tl;dr: with Go 1.5 you can build .so objects and import them as Python modules, running Go code (instead of C) directly from Python. Here’s the code . The Go 1.5 release brings a number of nifty changes . The one we will be playing with today is the ability of the standard toolchain to build libraries (.so, .a) exporting a C ABI . (This is just one of an exciting series of new and planned buildmodes .) The ABI is the low-level binary interface that functions

‹ Prev Next ›