- The Manual of Detection - Jedediah Berry
- The Half-Made World - Felix Gilman
- Old Man's War (and sequals, if you like the first) - John Scalzi
- Swamplandia! - Karen Russell
- Ghostwritten - David Mitchel (and if you like that, basically everything else he's written besides Jacob de Zoot)
- Never Let Me Go - Kazuo Ishiguro
- Wind-up Bird Chronicle - Haruki Murakami
- The Amazing Adventures of Kavalier & Clay - Michael Chabon
- The Savage Detectives - Roberto Bolaño
- A Visit From The Goon Squad - Jennifer Egan
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
def search(request): | |
search_string=request.POST['search_string'] | |
if re.match(r'^\s*$',search_string): return redirect('home') | |
results=[] | |
search_fields=('id','name') | |
equipment_models = \ | |
[model for model in django.db.models.get_models() if\ | |
model._meta.db_table.startswith("equipment_")] | |
for model in equipment_models: | |
query=halipsearch.get_query(search_string,search_fields) |