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
| import vcr | |
| from django.conf import settings | |
| from django_twilio.settings import TWILIO_ACCOUNT_SID, TWILIO_AUTH_TOKEN | |
| from twilio.rest import Client | |
| twilio_vcr = vcr.VCR( | |
| cassette_library_dir="fixtures/cassettes", |
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 django.utils.safestring import mark_safe | |
| from markdown import markdown | |
| from pygments import highlight | |
| from pygments.formatters import get_formatter_by_name | |
| from pygments.lexers import get_lexer_by_name | |
| from wagtail.wagtailcore import blocks | |
| class CodeBlock(blocks.StructBlock): |
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
| import csv | |
| import re | |
| import unicodedata | |
| from unipath import Path | |
| DIR = Path.cwd() | |
| QB_FILE = Path(DIR, "from_qb.csv") |
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
| # Compiled source # | |
| ################### | |
| *.com | |
| *.class | |
| *.dll | |
| *.exe | |
| *.o | |
| *.so | |
| # Packages # |