GithubHelp home page GithubHelp logo

lms's Introduction

The goal of the this test assignment is to do some basic Python and Django operations.

The main requirement is to import data via a user-uploaded csv or tsv file.

There are many ways you could spend extra time on this, but please follow the guidelines on what should be done and what should not be done at each stage.

Setup:
    Create or use a Python 3 environment of your choice
    Install Django
    Run migrate

Stage 1 is mandatory and you should do some portion of stage 2 before scheduling a technical interview.

Stage 1:
    Create a view and very simple html template with a form to upload a file. Please do not spend time on making the html look good at this stage.
    Assume the file is tab-separated.
    Allow the user to import good.tsv into the database, creating or updating Things and creating Items.
    If the import was not successful, display a generic error below the upload form.
    If the import was successful, display the created and updated records in two simple tables, one for each model, below the upload form.
    Do not display records that were already in the database and have not been updated.

Stage 2:
    Validate the data before creating any records.
    Inform the user of any errors.
    Besides the data formats and restrictions implied by the characteristics of the models' fields, apply the following restrictions:

    Thing:
        date:
            Should be a parsable date in YYYY-MM-DD (ISO format).
        stat_one:
            Should be one of the STAT_ONE_CHOICE_* literals
        stat_two:
            Should be one of the STAT_TWO_CHOICE_* literals
    Item:
        rating:
            Should be a string representation of a 5 star rating with two significant digits. I.e. '1.0' through '5.0'
        score:
            Should be an integer between 0 and 50, inclusive

    For any field, if the value is invalid but can be unambiguously transformed into a valid value, do so. E.g., you might accept dates in 'YYYY/MM/DD' format. Use your discretion in deciding how ambitious to be here.
    How and where in the code you accomplish the validation is completely up to you.

Stage 3:
    Anything you like that you have time for. Some options are, permitting other file delimiters such as commas, improving the error reporting, improving the result reporting, clever ways to clean up the data, etc.

lms's People

Contributors

satish24011993 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.