Git Product home page Git Product logo

newssearch's Introduction

NewsSearch

Python program that searches for provided keywords on local file hscic-news containing a list of News Articles.

Usage

The program can be executed with the following command:

python NewsSearch.py [-h] keyword_list [keyword_list ...] {and,or,AND,OR}

where [keyword_list ...\] is the list of keywords to search, separated by whitespace ( ), followed by the type of search, AND or OR. Both lower-case and upper-case versions are valid.

Running the following

NewsSearch.py [-h]

will display the usage information on the console.

Examples

To search for September AND 2004:

python NewsSearch.py September 2004 AND

the output should be the following:

[9]

to search for the words June, July OR December:

pyton NewsSearch June July December or

with the result

[0, 1, 2, 3, 4, 8]

Design Considerations

It was assumed that the search is case-sensitive. This way searching for september should return different results than searching for September.

No major performance considerations were taken over code simplicity and readability. It was assumed that the file and set operations have no negative impact on the desired performance.

Unit tests

The provided acceptance criteria were implemented as unit tests on the file NewsSearchTest.py. Two extra negative tests were added as first TDD iterations.

To execute the unit tests simply run

python NewsSearchTest.py

and the output should be:

.......
----------------------------------------------------------------------
Ran 7 tests in 0.010s

OK

newssearch's People

Contributors

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