I hereby claim:
- I am elbaschid on github.
- I am elbaschid (https://keybase.io/elbaschid) on keybase.
- I have a public key whose fingerprint is C370 5CCB 418A D14A DD16 469D 474F 998F 42CE BD1E
To claim this, I am signing this object:
| # -*- coding: utf-8 -*- | |
| from __future__ import print_function | |
| import re | |
| import feedparser | |
| from collections import defaultdict | |
| MOBIF_REGEX = re.compile(r'(?i)mobif\w+') |
I hereby claim:
To claim this, I am signing this object:
| # -*- encoding: utf-8 -*- | |
| from __future__ import print_function | |
| from enum import Enum | |
| class PrintableValue(object): | |
| def __init__(self, value, printable_name): | |
| self.value = value | |
| self.printable_name = printable_name |
| #! /usr/bin/env python | |
| import re | |
| import sys | |
| import difflib | |
| import requests | |
| from purl import URL | |
| URL_REGEX = re.compile( |
| {% load staticfiles %} | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <style type="text/css"> | |
| @page { | |
| size: a4 portrait; | |
| margin: 1cm; | |
| margin-left:2cm; | |
| margin-right:2cm; |
| from xhtml2pdf import pisa | |
| from xhtml2pdf.pdf import pisaPDF | |
| class OrderListView(ListView, BulkEditMixin): | |
| ... | |
| actions = ( | |
| 'generate_packing_slips', | |
| ... |
| ====================================================================== | |
| ERROR: upload devices from inventory file | |
| ---------------------------------------------------------------------- | |
| File "/usr/lib/python2.7/unittest/case.py", line 332, in run | |
| testMethod() | |
| File "/home/elbaschid/Worx/Tangent/vodafone/tests/eshop/functional/test_upload_inventory.py", line 114, in test_upload_inventory | |
| after_save_page = save_form.submit().maybe_follow() | |
| File "/home/elbaschid/.virtualenvs/vodafone/local/lib/python2.7/site-packages/webtest/forms.py", line 538, in submit | |
| params=fields, **args) | |
| File "/home/elbaschid/.virtualenvs/vodafone/local/lib/python2.7/site-packages/webtest/response.py", line 293, in goto |
| import xml | |
| from boto.mws import response | |
| from boto.handler import XmlHandler | |
| from boto.mws.connection import MWSConnection | |
| from unittest import TestCase | |
| NESTED_MEMBER_LIST_XML = """<GetTestResponse> |
| from myproject.utils import loaddata | |
| class Migration(DataMigration): | |
| def forwards(self, orm): | |
| loaddata(orm, 'some_fancy_fixture.json') |
| """ | |
| The following mixins and views are borrowed and adapted from the following | |
| gist: | |
| https://gist.github.com/michelts/1029336 | |
| """ | |
| from functools import partial | |
| from django.views.generic.base import TemplateResponseMixin | |
| from django.views.generic.edit import ProcessFormView, FormMixin |