This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
import asyncio | |
class AsyncThrottle(): | |
DEFAULT_THROTTLE = 3 | |
def __init__(self): | |
self.throttle = {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
import asyncio | |
class HTTPManager(): | |
def __init__(self): | |
self.cache = {} | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class SQLInserter: | |
def __init__(self): | |
self.queries = [] | |
self.values = [] | |
def storeDict( | |
self, | |
dict_object, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class SQLInserter: | |
def __init__(self): | |
self.queries = [] | |
self.values = [] | |
def storeDict( | |
self, | |
dict_object, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
////////////////// | |
// Requirements // | |
////////////////// | |
var chalk = require('chalk'); | |
///////////////////// | |
// Debug Functions // |