Skip to content

Instantly share code, notes, and snippets.

@Lothiraldan
Lothiraldan / str_encode_thread.py
Created June 14, 2016 15:05
Str encode in a thread
import time
import threading
def to_latin_1(event, value):
print(time.time(), "Before encode")
value.encode('latin-1', 'ignore')
print(time.time(), "After encode")
event.set()
print(time.time(), "Event set")
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class
# C extensions
*.so
# Distribution / packaging
.Python
def wrapped(request, *args, **kwargs):
""" Call the lifecycles methods with these arguments:
Pyramid pre callbacks will receive these arguments:
(None, request)
Flask post callbacks will receive these arguments:
(None, response)
Flask failing callbacks will receive these arguments:
(None, exception)
"""
from pyramid.response import Response

Keybase proof

I hereby claim:

  • I am lothiraldan on github.
  • I am lothiraldan (https://keybase.io/lothiraldan) on keybase.
  • I have a public key ASAwij8gw4koGC6oQJDJb9VuNVrP7MwRY9jJhqrwZT4Cgwo

To claim this, I am signing this object:

[tool.poetry]
name = "balto"
version = "0.1.2"
description = ""
authors = ["Boris Feld <lothiraldan@gmail.com>"]
include = ["balto/**/*.py", "balto/web_interfaces/balto_react/build/**/*"]
exclude = ["balto/web_interfaces/balto_react/node_modules/**/*"]
[tool.poetry.dependencies]
python = "^3.6 || ^3.7"
[tool.poetry]
name = "balto"
version = "0.1.2"
description = ""
authors = ["Boris Feld <lothiraldan@gmail.com>"]
packages = [
{include = "balto/**/*.py"}
]
include = ["balto/web_interfaces/balto_react/build/**/*"]
exclude = ["balto/web_interfaces/balto_react/node_modules/**/*", "balto/web_interfaces/simple/src/elm-stuff/**/*"]