This file contains hidden or 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
from __future__ import absolute_import, unicode_literals | |
from bs4 import BeautifulSoup, Tag | |
from django.db import models | |
from wagtail.wagtailadmin.edit_handlers import StreamFieldPanel | |
from wagtail.wagtailcore import blocks | |
from wagtail.wagtailcore.fields import StreamField | |
from wagtail.wagtailcore.models import Page | |
from wagtail.wagtailcore.rich_text import RichText |
This file contains hidden or 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
from collections import defaultdict | |
from collections.abc import Mapping | |
import html | |
import re | |
import warnings | |
from django.utils.html import conditional_escape, format_html | |
from django.utils.safestring import mark_safe | |
This file contains hidden or 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
On a real-world site with 3058 HTML fragments | |
with richtext-benchmark/original: | |
1. 13.098440 | |
2. 14.320241 | |
3. 13.525923 | |
with richtext-benchmark/loic: |
This file contains hidden or 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
# Encode inputfile.tar.gz as a series of video frames | |
# Frames are written to frames/frameNNNN.png | |
from PIL import Image | |
with open('inputfile.tar.gz', 'rb') as f: | |
data = f.read() | |
WIDTH = 120 | |
HEIGHT = 90 | |
CHUNK_SIZE = int((WIDTH * HEIGHT) / 8) |
This file contains hidden or 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 wave | |
from io import BytesIO | |
from PIL import Image | |
wave_buffer = BytesIO() | |
data_len = 0 | |
with wave.open('nevergonna-1920.wav', 'rb') as wav: |
OlderNewer