Showing results 4011-4020 of >4,093 (page 402)
https://schinckel.net/2014/09/14/generating-dummy-abns-in-python/

Schinckel.net Generating dummy ABNs in Python Posted: 2014 - 09 - 14 @ 00:16:30 Tags: Comments: here . I had the need to generate a fake ABN the other day. Here’s a python function to do it: #! /usr/bin/python import sys import random weighting = [10, 1, 3, 5, 7, 9, 11, 13, 15, 17, 19] def validate(abn): """ Validate that the provided number is indeed an ABN. """ values = map(int, list(abn)) values[0] -= 1 total = sum([x * w for (x, w) in zip(values, weighting)]) return total % 89 == 0 def abn

https://twisted.org/pipermail/twisted-python/2007-March/047427.html

[Twisted-Python] using a reactor in a loop Tom Brown brown at esteem.com Thu Mar 1 10:21:50 MST 2007 Previous message (by thread): [Twisted-Python] factory class has no __class__ attribute! Next message (by thread): [Twisted-Python] using a reactor in a loop Messages sorted by: [ date ] [ thread ] [ subject ] [ author ] Hello, I am trying to use a reactor in a loop. The application will go through the loop twice then hang when trying to stop the protocol. Here's my loop: def main(): factory = Factory() fact

https://reason.town/tensorflow-neural-network-python/

TensorFlow is a powerful tool for building neural networks in Python. This blog post will show you how to get started with TensorFlow and build a simple

https://bugs.python.org/issue28070

Issue28070 This issue has been migrated to GitHub: https://github.com/python/cpython/issues/72257 classification Title : 3.6 regression: re.compile not handling flags with X correctly Type : behavior Stage : resolved Components : Regular Expressions Versions : Python 3.7, Python 3.6 process Status : closed Resolution : fixed Assigned To : Nosy List : SilentGhost, ezio.melotti, mrabarnett, python-dev, serhiy.storchaka, yan12125 Priority : normal Keywords : Created on 2016-09-10 22:07 by yan12125, l

https://riverqueue.com/docs/python

River supports inserting jobs from Python and having them worked in Go, a feature that may be desirable in performance sensitive cases so that jobs can take advantage of Go's considerably faster runtime speed

https://snarky.ca/lazy-importing-in-python-3-7/

Tall, Snarky Canadian 16 Apr 2018 3 min read Python # An approach to lazy importing in Python 3.7 [Please note that the code in this blog post is now up on PyPI as part of the modutil library ] One of the new features in Python 3.7 is PEP 562 which adds support for __getattr__() and __dir__() on modules. Both open up some interesting possibilities. For instance, with __dir__() you can now have dir() only show what __all__ defines. But being so immersed in Python's import system, my interest lies with

https://trainedmonkey.com/tag/Python

trainedmonkey by Jim Winstead Jr. Entries tagged 'Python' Using AutocompleteSelect in a Django Admin form I was building an action for a Django Admin changelist view to allow associating models to a related model. But to select the related model on the form, a regular ModelChoiceField would load all of the possibilities to populate the <select> form field, which was pretty terrible when there are thousands to tens of thousands of options. Within the change view of the model, you can just add that field to a

https://earezki.com/python-imports/

A comprehensive guide to Python's module system: best practices, common pitfalls, circular imports, and performance optimizations with real-world examples

https://getstream.io/activity-feeds/docs/python/feeds/

Activity Feeds Quick search...⌘K Ask AI Python Client Side SDKs JavaScript iOS Android React React Native Flutter Server Side SDKs Node Go .NET PHP Java Python Ruby v3 — latest v3 — latest v2 — legacy Basics Quick Start Installation Architecture & Benchmark Roadmap & Changelog Client Side Client-Side Overview Feed Groups Feeds and Follows Activities Features Reactions Bookmarks Comments File Uploads User Mentions URL Previews Pins Polls Event Handling Moderation Collections Audit Logs Translation

https://www.linuxtut.com/en/4ea66c1bf6627eab2345/

Python, Python3

‹ Prev Next ›