0
votes
2answers
37 views

How do I search a field for a substring?

Number1 Number2 Info1 1) 19124451932~18374913342~0- 9124441932 2) 18436889349~17064219321~0- 2024281123 3) 13352808654~19703842247~0- 9703842247 I'm looking for an if-clause which ...
1
vote
1answer
74 views

Python speeding up the search for a value in a dictionary of ranges

I have a file with a column of values I would like to use to compare with a dictionary that contains two values that together form a range. for instance: File A: Chr1 200 .... Chr3 300 ...
0
votes
2answers
59 views

Searching words from a file in another file

I have got 2 files: access.log.13 : a simple access log from a web server. bots.txt : that contains spider's and crawlers names, each one in a different line, for example: googlebot mj12bot baidu ...
1
vote
3answers
49 views

How to use regular expressions do revers search?

For example: My string is: 123456789 nn nn oo nn nn mlm nn203. My target is: nn. Than I match string from bottom to front,and return the first match result and its postion. In this examlpe, the ...
2
votes
1answer
32 views

Find changed or new rows in two lists of lists

I have two lists of lists which I call old_rows and new_rows. Each row is a list of exactly 30 items. There may be a very large (and unknown) number of rows in each list. The two lists may contain ...
1
vote
1answer
52 views

Searching a continuous string for matches in Python

I am trying to search through a hex dump for matching hex strings, ie in testHexData.txt there might ...
-1
votes
1answer
21 views

Descriptions in google search results [closed]

i was just wondering from where did google fetch the description of the pages in the search results where the page doesn't have a meta description tag and the page has no entry in the open directory ...
0
votes
0answers
34 views

Searching a file for matches between two values and outputting search hits in Python

I am (attempting) to write a program that searches through a hex file for instances of a hex string between two values, eg. Between D4135B and D414AC, incrementing between the first value until the ...
-1
votes
1answer
32 views

How to extract information from ODP accurately? [closed]

i am building a search engine in python.I have heard that Google fetches the description of pages from the ODP (Open Directory Project) in case Google can't figure out the description using the meta ...
0
votes
4answers
61 views

compare two file and find matching words in python

I have a two file: the first one includes terms and their frequency: table 2 apple 4 pencil 89 The second file is a dictionary: abroad apple bread ... I want to check whether the first file ...
0
votes
1answer
109 views

Calculating Manhattan Distance in Python in an 8-Puzzle game

I am trying to code a simple A* solver in Python for a simple 8-Puzzle game. I have represented the goal of my game in this way: goal = [[1, 2, 3], [8, 0, 4], [7, 6, 5]] My problem ...
0
votes
3answers
54 views

Python search script in an HTML webpage

I have an HTML webpage. It has a search textbox. I want to allow the user to search within a dataset. The dataset is represented by a bunch of files on my server. I wrote a python script which can ...
-2
votes
1answer
27 views

Boldening parts of string ignoring case python,HTML [closed]

i want to bold parts of text for my search engine... The major engine is in python.. i have the search term in a var called q (for query)... for this example lets assume that the search term is "BlOg" ...
1
vote
2answers
52 views

Search value in tree of dicts in python

I have a giant dict with a lot of nested dicts -- like a giant tree, and depth in unknown. I need a function, something like find_value(), that takes dict, value (as string), and returns list of ...
0
votes
4answers
52 views

Searching for duplicate values in a 2D array

I am figuring a method to search the duplicated parts in a 2D array. Taking the below array for example: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 ...
1
vote
3answers
37 views

Improving django search

I have the following search: titles = Title.objects.filter(title__icontains=search) If this is a search to find: Thomas: Splish, Splash, Splosh I can type in something like "Thomas" or "Thomas: ...
1
vote
1answer
42 views

Beautiful Soup and searching in results

These are my first steps with python, please bear with me. Basically I want to parse a Table of Contents from a single Dokuwiki page with Beautiful Soup. The TOC looks like this: <div ...
-2
votes
0answers
28 views

SQLite Datastructures [closed]

i have just build a search engine in python and am looking for a way to store it... i found that the best way to store it is in a database... my web index looks like: ...
-1
votes
0answers
38 views

Variable storage in python [closed]

i am building a search engine in python and i have a crawler. The crawler and the search mechanism are in the same file. When my crawler finishes crawling the web, it stores the web index in a python ...
1
vote
1answer
32 views

Search for files by name in multiple directories?

OK so here's my problem. I work out of two directories and all of the sub folders in the directories while at work. I want to write a program that will prompt me for a file name, after the file name ...
-2
votes
2answers
35 views

Synonyms for improving web search [closed]

i'm building a search engine using Python as the core engine and PHP and Apache Server on Ubuntu as the web interface and have realized that Google searches for the words you typed in and the synonyms ...
2
votes
1answer
80 views

regular expression dictionary [Google type search and match with regular expressions]

EDIT: One of the main problems with the code below is due to storing regular expression objects in dictionaries, and how to access them to see if they can match another string. But I will still leave ...
0
votes
0answers
26 views

ArcGIS: SQL expression with Search Cursor

How do you pass a python SQL expression within a search cursor which will select the current record and make a feature layer based on the value within the field.
0
votes
0answers
30 views

django-haystack - auto-complete with tokens

I'm using django-haystack to create some search functionality. I want to auto-complete on the search input with common tokens. How can I do that? Example: If I have in the index 3 documents with: ...
-1
votes
2answers
30 views

How to do search when in interactive python shell [closed]

Sometimes, I need to use dir(obj) to find which members and methods belong to obj. Then I got a lot of methods, i.e. a big list like the following: ['__class__', '__delattr__', '__delitem__', ...
0
votes
2answers
55 views

Workin with binary in python

Is there an easy way to work in binary with Python? I have a file of data I am receiving (in 1's and 0's) and would like to scan through it and look for certain patterns in binary. It has to be in ...
0
votes
3answers
60 views

Python next substring search

I am transmitting a message with a pre/postamble multiple times. I want to be able to extract the message between two valid pre/postambles. My curent code is print(msgfile[msgfile.find(preamble) + ...
0
votes
1answer
65 views

Advanced search list index out of range error

this is a code i wrote to give the result of advanced search for some subchannels that have there attributes and the values of the attributes each in a different table it gives me this error: list ...
0
votes
2answers
89 views

python binary search tree

For some reason, I can't seem to get the "find" method to work. I think it has to do with a scoping issue... the root.val doesn't seem to update globally. I get an error message saying AtributeError: ...
0
votes
0answers
93 views

similarity between query and document - vector space model - python

I am a newbie about Vector Space Model and now i'm using python Pattern 2.5 or Gensim . I read a lot of TFIDF, LSA and LDA but I have a bit 'of confusion. I'm currently using this code to find the ...
0
votes
1answer
59 views

Python - Altering my binary search function

I wrote the following code: def binary_search(key,lst): """ iterative binary search lst better be sorted for binary search to work""" n=len(lst) lower=0 upper=n-1 ...
1
vote
1answer
54 views

Searching one file from list in second file with Python

this is my first time posting here and I'm just learning python so please bear with me. I've had a good look on here and elsewhere on-line trying to find an answer to this, but alas, the web seems ...
1
vote
1answer
35 views

Search for specific string, only copy part of string into another textfile

I want my python program to search a text file for a specific portion of a string. For example, my text file looks like this: VERSION_1_0001 VERSION_2_0012 VERSION_3_0391 These are just examples. I ...
0
votes
1answer
82 views

Library to 'draw' binary trees in Python and Ruby

I'm trying to draw some binary trees in Python and Ruby and I was wondering if I can do it (in Python) with Tkinter or SymPy. In Ruby I have absolutely no idea on how to do it. What I'm trying to ...
1
vote
3answers
56 views

Extract longest strings from sublist within list . Python

so i have a list of sublists and within the sublists, there are strings. the strings are usually at different lengths, but can be the same length as well. below is an example of the list sequences ...
2
votes
2answers
76 views

search client's computer for specific files

what is the fastest way of searching the clients's computer (and other mounted drives) say for images. My clients will have a desktop app installed which is in Python but I can add C++ code if that is ...
0
votes
1answer
25 views

How to search for a list of file name on the server using linux bash shell tool

I am looking to see if the server has file name that i m looking for. I have list of file names on the text file and want to see whether these files existed in the server. Is there a way that I can do ...
0
votes
3answers
82 views

How to search internet with Python?

I want to write a program that searches through a fairly large website and extracts certain things. I've had a couple online Python courses, but neither said anything about how to access the internet ...
0
votes
2answers
43 views

insert tags in python string [closed]

I want to highlight search results in python: search_term = 'highlighted' text_string = 'A very long highlighted text' DO THE MAGIC print text_string Output: A very ...
0
votes
2answers
142 views

Python script to search and export results to .csv file

I'm trying to do the following in Python, also using some bash scripting. Unless there is an easier way in Python. I have a log file with data that looks like the following: 16:14:59.027003 - WARN ...
1
vote
2answers
100 views

Efficient way to store and search coordinates in python

I'm writing a simple game in python(2.7) in pygame. In this game, I have to store 2D coordinates. The number of these items will start from 0 and increase by 2 in each step. They will increase up to ...
0
votes
0answers
73 views

Example of 'Programming Collective Intelligence' doesn't work

I download source code from here. I try to run example from chapter 4 of the book 'Programming Collective Intelligence' by Toby Segaran. My version python 2.7.2 I type in interpreter this code: ...
0
votes
5answers
113 views

Python Search File And Find Exact Match And Print Line

I searched around but i couldn't find any post to help me fix this problem, I found similar but i couldn't find any thing addressing this alone anyway. Here's the the problem I have, I'm trying to ...
1
vote
3answers
74 views

Using python to search a text file for the occurence of specific characters

My question is similar to this one, except that I want to search for the occurrence of multiple chars, for example g, d and e, and then print the line in which ALL the specified characters exist. I ...
-2
votes
2answers
75 views

Identifying different forms of a word (search similar words) [closed]

I have text file with lot of words extracted from web. Now I'm planning to build a simple search to identify the matches from the text file. for example, if the SEARCH parameter is "3 Musketeers", m ...
0
votes
2answers
93 views

Performing binary search to guess a random number, but the number of guesses not matching

I have written a simple guessing game and a method to guess it... from gasp import * number = random_between(1, 1000) guesses = 0 while True: guess = input("Guess the ...
0
votes
1answer
38 views

To find the line number of the string searched in Python

def c1(): logfile = open("D:\myfile.txt", 'r') for num1, line in enumerate(logfile): if "request=100" in line: print num1 ...
0
votes
0answers
44 views

google search error

I don't understand why this code works: import urllib2 url = urllib2.urlopen('http://www.google.fr/search?hl=en&q=voiture').read() print url and not this one : import urllib2 url = ...
1
vote
1answer
63 views

Python dual- variable search algorithm

I have an algorithm which: takes two inputs (x, y), where x and y are the 'lambda' variables in two independent Poisson distributions (http://en.wikipedia.org/wiki/Poisson_distribution#Definition) ...
0
votes
2answers
43 views

Searching and deleting directories in python I made a big mistake

enter code here import os os.chdir('I:\\Movies') files = os.popen('dir').readlines() disk = raw_input("Enter the disk: ") while disk != "done": os.chdir(disk + ':\\' + 'Movies') files_in_disk ...

1 2 3 4 5 11