Skip to content

Instantly share code, notes, and snippets.

with self.lock:
current_list = namespace[name]
new_list = []
for element in current_list:
element.do_the_stuff()
if element.isAlive():
new_list.append(element)
with self.lock:
class WrapperBase(abc.ABC):
def __init__(self, receiver_weak):
self.receiverWeak = receiver_weak
def __repr__(self):
return "<Wrapper: {receiver_weak}>".format(receiver_weak=self.receiverWeak)
@rendarz
rendarz / zip_longest_last.py
Last active December 5, 2020 02:37
Consume multiple iterators, filling each when exhausted with the last value they produced.
def zip_longest_last(*args):
"""Consume multiple iterators, filling each when exhausted with the last value they produced."""
line = []
# CREATE a list of iterators of iterable objects passed as args.
iters = [iter(it) for it in args]
active = len(iters)
lasts = [None]*active
# CREATE a generator that yields the last item forever.
def take_last(index):
while True:
#!/usr/bin/env python3
"""
Example of the fancy ZSH prompt that @anki-code was using.
The theme is coming from the xonsh plugin from the xhh project:
https://github.com/xxh/xxh-plugin-xonsh-theme-bar
See:
- https://github.com/xonsh/xonsh/issues/3356
- https://github.com/prompt-toolkit/python-prompt-toolkit/issues/1111
"""
import datetime
#!/usr/bin/env python3
import asyncio
class AsyncThrottle():
DEFAULT_THROTTLE_MAIN = 100
DEFAULT_THROTTLE_KEY = 3
def __init__(self, main_throttle=None):
if main_throttle is None: main_throttle = self.DEFAULT_THROTTLE_MAIN
#!/usr/bin/env python3
import asyncio
class AsyncThrottle():
DEFAULT_THROTTLE = 3
def __init__(self):
self.throttle = {}
#!/usr/bin/env python3
import asyncio
class HTTPManager():
def __init__(self):
self.cache = {}
class SQLInserter:
def __init__(self):
self.queries = []
self.values = []
def storeDict(
self,
dict_object,
class SQLInserter:
def __init__(self):
self.queries = []
self.values = []
def storeDict(
self,
dict_object,
//////////////////
// Requirements //
//////////////////
var chalk = require('chalk');
/////////////////////
// Debug Functions //