Python Forum
Search for a text in a html file
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Search for a text in a html file
#1
Hi,

I need to search for the ip number from the file below. The problem is that the ip is dynamic so it changes often.

I appreciate any help.

This' the code I use to generate the text:

#!/usr/bin/env python3

import requests as req
import re

url = 'http://myurl'

def getmyip():
    r = req.get(url)
    if(r.status_code == req.codes.ok):
      t = r.elapsed # returns datetime.timedelta(0, 1, 666890)
      print('elapsed time: {}'.format(t))
      txt = r.text
      print(txt)

getmyip()
Reply


Messages In This Thread
Search for a text in a html file - by ebolisa - Feb-09-2019, 09:31 PM
RE: Search for a text in a html file - by snippsat - Feb-09-2019, 09:56 PM
RE: Search for a text in a html file - by ebolisa - Feb-09-2019, 10:12 PM
RE: Search for a text in a html file - by snippsat - Feb-09-2019, 10:36 PM
RE: Search for a text in a html file - by ebolisa - Feb-09-2019, 10:46 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Search Excel File with a list of values huzzug 4 1,321 Nov-03-2023, 05:35 PM
Last Post: huzzug
  Need to replace a string with a file (HTML file) tester_V 1 815 Aug-30-2023, 03:42 AM
Last Post: Larz60+
  Search for multiple unknown 3 (2) Byte combinations in a file. lastyle 7 1,476 Aug-14-2023, 02:28 AM
Last Post: deanhystad
  search file by regex SamLiu 1 962 Feb-23-2023, 01:19 PM
Last Post: deanhystad
  Tkinterweb (Browser Module) Appending/Adding Additional HTML to a HTML Table Row AaronCatolico1 0 986 Dec-25-2022, 06:28 PM
Last Post: AaronCatolico1
Thumbs Up Need to compare the Excel file name with a directory text file. veeran1991 1 1,179 Dec-15-2022, 04:32 PM
Last Post: Larz60+
  If function is false search next file mattbatt84 2 1,209 Sep-04-2022, 01:56 PM
Last Post: deanhystad
  Modify values in XML file by data from text file (without parsing) Paqqno 2 1,769 Apr-13-2022, 06:02 AM
Last Post: Paqqno
  Converted Pipe Delimited text file to CSV file atomxkai 4 7,136 Feb-11-2022, 12:38 AM
Last Post: atomxkai
  Search text in PDF and output its page number. atomxkai 21 9,318 Jan-21-2022, 06:20 AM
Last Post: snippsat

Forum Jump:

User Panel Messages

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