Code Monkey home page Code Monkey logo

anna-karenina's Introduction

Anna Karenina


Simple django-based app that allows Boolean searching (AND, OR, NOT) through Russian version of 'Anna Karenina' by Leo Tolstoy.

Query example:

word1 AND word2 AND NOT ( word3 OR word4 )

Precedence levels (high to low): parentheses, NOT, AND, OR. All query tokens must be separated by spaces (however parser allows you to omit them around parens).

Built on top of Django 1.9.4, MySQL 5.7 and Zurb Foundation 6.

Setup

  1. $ git clone https://github.com/sergeynikiforov/anna-karenina.git

  2. $ pip install -r requirements.txt within your virtualenv

  3. App assumes you have full unicode support in MySQL; typical settings in /etc/my.cnf:

    [client]
    default-character-set = utf8mb4
    
    [mysql]
    default-character-set = utf8mb4
    
    [mysqld]
    transaction-isolation = READ-COMMITTED
    innodb_file_per_table = TRUE
    character-set-client-handshake = FALSE
    character-set-server = utf8mb4
    collation-server = utf8mb4_unicode_ci
    
  4. Create user and database in MySQL:

    mysql> CREATE DATABASE anna_db;
    mysql> CREATE USER 'anna_app'@'localhost' IDENTIFIED BY 'qwertY1!';
    mysql> GRANT ALL ON anna_db.* TO 'anna_app'@'localhost';
    
  5. Get the database from the dump:

    $ mysql -uanna_app -p anna_db < anna_db.sql

anna-karenina's People

Contributors

sergeynikiforov avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.