Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
keyword matching part2
#3
Tried below but it's seems not to be working :-

import os
import glob

def search_words(keyword,target_dir):
    files = glob.glob(target_dir+'/**', recursive=True)
    python_files = []
    results = []
    line_no = []
    #Isolate target files from folders and everything else
    for f in files:
        if f.endswith('.py'):
            python_files.append(f)

    for pyf in python_files:
        with open(pyf,'rb') as f:
            lines = f.readlines()
        for i,line in enumerate(lines):
            line = str(line)
            if line.find(keyword) > -1:
                line_no.append(i)

        results.append({'keyword':keyword,'lines':line_no,'target_file':pyf,'total_found':len(line_no)})
    return results
Reply


Messages In This Thread
Keyword matching - by janho - Dec-18-2018, 01:50 PM
RE: keyword matching part2 - by micseydel - Jan-02-2019, 11:04 PM
RE: Keyword matching - by buran - Dec-18-2018, 02:01 PM
RE: Keyword matching - by janho - Dec-21-2018, 04:02 AM
RE: Keyword matching - by micseydel - Dec-21-2018, 07:43 PM
RE: Keyword matching - by janho - Dec-25-2018, 10:38 AM
RE: Keyword matching - by janho - Dec-26-2018, 11:21 AM
RE: Keyword matching - by janho - Dec-27-2018, 11:00 AM
RE: Keyword matching - by janho - Dec-28-2018, 02:35 AM
RE: Keyword matching - by woooee - Dec-28-2018, 02:56 AM
RE: Keyword matching - by janho - Dec-28-2018, 01:07 PM
RE: Keyword matching - by janho - Dec-28-2018, 03:11 PM
RE: Keyword matching - by janho - Dec-31-2018, 04:27 AM
RE: Keyword matching - by janho - Dec-31-2018, 09:01 AM
RE: Keyword matching - by micseydel - Dec-31-2018, 05:19 PM
RE: Keyword matching - by janho - Jan-01-2019, 04:58 AM
RE: Keyword matching - by janho - Jan-01-2019, 06:55 AM
keyword matching part2 - by janho - Jan-01-2019, 12:35 PM
RE: Keyword matching - by janho - Jan-01-2019, 12:41 PM
RE: Keyword matching - by janho - Jan-02-2019, 05:36 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Find a specific keyword after another keyword and change the output sgtmcc 5 976 Oct-05-2023, 07:41 PM
Last Post: deanhystad

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020