Error: Protocol error (Runtime.callFunctionOn): Target closed
Browserless v2.6.1 running on Docker
I don't know why this happens, but it doesn't matter if you set your
TIMEOUT
environment variable, like so:
services:
browserless:
# https://gist.github.com/danni/f55c4ce19598b2b345ef | |
from django import forms | |
from django.contrib.postgres.fields import ArrayField | |
class MultipleChoiceArrayField(ArrayField): | |
def formfield(self, **kwargs): | |
defaults = { | |
"form_class": forms.MultipleChoiceField, | |
"choices": self.base_field.choices, |
FROM python:3.12-alpine | |
# Python specific settings | |
# sends output directly to terminal | |
# https://docs.python.org/3/using/cmdline.html#cmdoption-u | |
ENV PYTHONUNBUFFERED=1 | |
# Python packages build dependencies | |
RUN apk add --no-cache --virtual .build-dependencies \ | |
# Essentials |
import requests | |
# API GATEWAY URL | |
browserless_url = "https://..../config" | |
url = "https://example.com/" | |
# token: BROWSERLESS TOKEN | |
querystring = {"token":"XYZ", "timeout":"1200000"} | |
response = requests.get( |
Error: Protocol error (Runtime.callFunctionOn): Target closed
Browserless v2.6.1 running on Docker
I don't know why this happens, but it doesn't matter if you set your
TIMEOUT
environment variable, like so:
services:
browserless:
If you don't wanna turn off USE_THOUSAND_SEPARATOR
.
https://docs.djangoproject.com/en/5.0/ref/settings/#use-thousand-separator
you can:
https://docs.djangoproject.com/en/5.0/ref/templates/builtins/#safe
https://docs.djangoproject.com/en/5.0/topics/i18n/formatting/#unlocalize
# https://documentation.mailgun.com/docs/mailgun/user-manual/tracking-messages/#webhooks | |
# Securing Webhooks | |
# To ensure the authenticity of event requests, Mailgun signs them and posts the signature alongside the webhook's event-data. | |
# A signature takes the following form: | |
# Parameter Type Description | |
# timestamp int Number of seconds passed since January 1, 1970. | |
# token string Randomly generated string with length of 50. | |
# signature string String with hexadecimal digits generated by an HMAC algorithm |
Lets say you have a form, with multiple submit buttons: | |
<form method="POST"> | |
<button type="submit" name="save"> | |
save | |
</button> | |
<button type="submit" name="send-all"> | |
send all | |
</button> | |
</form> |
import urllib | |
# 'a=%3F' | |
urllib.urlencode({'a': 'Á'}, 'utf-8') |
It's much better simply implementing the callbacks on_success
/ on_failure
.
import dramatiq
@dramatiq.actor
def identity(x):
return x