Skip to content

Instantly share code, notes, and snippets.

"query": {
"bool": {
"must": [
{
"query_string": {
"query": "\"ruby\" OR \"rubi\" OR \"rubz\"",
"default_operator": "or"
}
}
],
# -*- coding: cp1250 -*-
class Halda():
"""halda - dokumentace
TYP 1A na vrcholu nejmenší hodnota, prosté položky
TYP 1B na vrcholu nejmenší hodnota, strukturované položky
TYP 2A na vrcholu největší hodnota, prosté položky
TYP 2B na vrcholu největší hodnota, strukturované položky
"""
### 0 Konstrukční procedury
'''
VERY HACKY, DO NOT USE OR DO NOT COMPLAIN.
It was written to deal with forms.fields tests and those tests only.
'''
f = open('forms.py', 'r')
out = open('out.py', 'w')
res_words = ['def', 'from', 'try', 'import']
class PageParserAndThumbnailer(object):
def __init__(self, url, http_response):
self.url = url
self.headers, self.body = self.parse(http_response)
@property
def thumbnail(self):
"create expensive thumbnail"
def parse(self, http_response):
#!/bin/sh
### BEGIN INIT INFO
# Provides: hookbox
# Required-Start:
# Required-Stop:
# Default-Start: 2 3 4 5
# Default-Stop: 1
# Short-Description: hookbox server
### END INIT INFO
@honzakral
honzakral / bootstrap.sh
Created November 3, 2011 14:30
Testable python code...
#!/bin/bash
curl -O https://raw.github.com/pypa/virtualenv/master/virtualenv.py
python virtualenv.py testing_in_python
. testing_in_python/bin/activate
pip install django mock
python testable_templatetag.py
@honzakral
honzakral / README.rst
Last active December 25, 2015 22:08
Coding Dojo

WTF Game

Created at PyCon PL as a coding dojo challenge

@honzakral
honzakral / doc.py
Created April 15, 2016 17:44
Dynamic template mappings in python DSL
from elasticsearch_dsl import DocType, Object, MetaField
class MyDoc(DocType):
inner = Object()
class Meta:
dynamic_templates = MetaField([
{
'strings_in_inner': {
'path_match': 'inner.*',

Keybase proof

I hereby claim:

  • I am honzakral on github.
  • I am honzakral (https://keybase.io/honzakral) on keybase.
  • I have a public key ASC44AI9qQetZNTdBWjaYJitFwRRI-X7g3dMXl6Pp0hQWQo

To claim this, I am signing this object:

@honzakral
honzakral / README.rst
Last active September 27, 2018 19:38
CLI for elaasticsearch-py helpers

Elasticsearch CLI

Experimental CLI interface for the helpers in the python library.

Main purpose is to expose the bulk functionality to enable rapid loading of data into an elasticsearch cluster. Combined with the scan command it can also be used to reindex data from elasticsearch into a different index or cluster.