Skip to content

Instantly share code, notes, and snippets.

import json
def mock_api_call(path, schema):
with open(schema, 'r') as f:
data = json.loads(f.read())
if path == "http://test.net/products":
return data["properties"]["items"]
elif path == "http://test.net/products/0"
return data["properties"]["items"][0]
# This will return None if not found, as opposed to raising an exception
classroom = Classroom.objects.filter(pk=pk).first()
class _BaseDomainNameValidator(BaseValidator):
def __call__(self, form, field):
labels = get_labels(value)
if not labels:
return False
is_valid = True
for index, label in enumerate(labels):
if index == 0 and label == '*':
continue
if not label and index + 1 != len(labels):
Dictionary<string, string> playlists = new Dictionary<string, string>()
{
{"pop", "PL9tY0BWXOZFt2TyOofWG0XwA8IDC8SGIN"},
{"hip hop", "PL9tY0BWXOZFv-V7FvZP-PWuE-1x2Deqqe"},
{"rock", "PL9tY0BWXOZFvrS_oXmav-as9fy3lt1i34"},
{"r&b", "PL9tY0BWXOZFupYyrDriLYu3ba9oYMUJ65"},
{"edm", "PL9tY0BWXOZFvBK4oJZylITMXRxAPJvbr8"},
{"metal", "PL9tY0BWXOZFuErwY_it1HO20Da-13FfNz"},
{"country", "PL9tY0BWXOZFtUu1HrxtZ4hv8nNLKiRseN"},
};
from core.extensions import celery
app = Flask(__name__)
celery.init_app(app)
app.run()
@exit99
exit99 / 2to3
Created January 5, 2016 21:27
Bash cmd for upgrading all python files recursively to python3
find . -exec ls -dl \{\} \; | grep ".*\.py" | awk '{print $9}' | xargs 2to3 -w
@exit99
exit99 / instance_cache.py
Created September 4, 2015 14:28
Instance cache for classes python
def instance_cached(meth):
cached_name = '_' + meth.__name__
@functools.wraps(meth)
def _cached(self):
if not hasattr(self, cached_name):
setattr(self, cached_name, meth(self))
return getattr(self, cached_name)
return _cached
@exit99
exit99 / SQLAlchemy_speed_test.py
Created August 7, 2015 17:25
Getting a whole object or one object from a column
from datetime import datetime
from sqlalchemy import create_engine
from sqlalchemy import Column, Integer, String, ForeignKey
from sqlalchemy.ext.declarative import declarative_base
from sqlalchemy.orm import sessionmaker, relationship
engine = create_engine('sqlite:///:memory:')
@exit99
exit99 / gist:cb2d58234485310c7486
Last active August 29, 2015 14:25
SQLA Alchemy exists speed test
Assume `Ticket.query` == session.query(Ticket).
This is done a table with 400,000+ rows and 0-40 rows where there is identical client_id fields.
1. bool(Ticket.query.filter_by(client_id=1111).count())
2. Ticket.query.with_entities(exists().where(Ticket.client_id == 1111)).scalar()
Results
1. 2.
@exit99
exit99 / products.py
Last active August 29, 2015 14:23
On django==1.6
class ProductCategory(models.Model):
name = models.CharField(max_length=50)
priority = models.IntegerField()
slug = models.CharField(max_length=50, unique=True)
class Meta:
ordering = ['priority']
class AbstractProduct(models.Model):