Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7578497
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T17:26:44+00:00 2026-05-30T17:26:44+00:00

I have a large text file ( data ) which has the following layout:

  • 0

I have a large text file (data) which has the following layout: a|b|c|d|e|f (although b can have pipes within it). I search the text file with the following code:

results = 0
Data_List = []
searchphrase = input("Search: ")
with open('data', 'r', encoding="utf8") as inF:
    for line in inF:
        if searchphrase in line:
            a, *b, c, d, e, f = line.strip().split('|')
            b = '|'.join(b)
            results += 1
            print("\n\n", results, "\n", "A: " + a + "\n", "B: " + b + "\n", "C: " + c + "\n", "D: " + d + "\n", "E: " + e + "\n", "F: " + f + "\n\n")
            Data_List.append(f)

b is a piece of text that contains the title which is what the user is really searching for in the code above (for example: The Lion King). However, the search is very specific and only returns exact results (in other words, if I searched The Lion King then the lion king would not be returned). How can I make the search be less specific and more generalised (think Google searches)?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-30T17:26:45+00:00Added an answer on May 30, 2026 at 5:26 pm

    You may take a look at Whoosh.

    Whoosh is a library of classes and functions for indexing text and then searching the index. It allows you to develop custom search engines for your content. For example, if you were creating blogging software, you could use Whoosh to add a search function to allow users to search blog entries.

    It can handle:

    • Stemming, variations, and accent folding
    • Suggest replacements for mis-typed words
    • N-gram indexing (search as you type)

    An much more… Whoosh is pure-Python and Python 3 compatible.

    Unfortunately fuzzy search is linked to NLP, one of the most complex subjects in CS, so it is not as easy as using some magic regular expression trick.

    NLP is hard, period. That is why Google uses a Pigeon Cluster to rank results instead of computer algorithms (LoL).

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a text file with a large amount of data which is tab
I have a rather large text file that has a bunch of missing newlines,
I have a large text file I am reading from and I need to
I have a a large text file (over 70mb) and need to count the
Okay, basically, I have a large list of phone numbers in a text file
I have a large file in my repository that is not text-mergeable and that
I have a large textfile, which has linebreaks at column 80 due to console
I have a large text template which needs tokenized sections replaced by other text.
So I have a Visual Studio 2008 project which has a large amount of
I have a string buffer of a huge text file. I have to search

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.