Python Forum
Python script - search Apache access_log.txt for all of the JavaScript (.js)
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Python script - search Apache access_log.txt for all of the JavaScript (.js)
#8
As a alterative an other regex,also using finditer() and compile() can speed stuff up,
not that make so much difference with this kind of file size.
import re

with open('access_log.txt') as f:
    log = f.read()

pattern = re.compile(r"/\w*.\.js.*\.js|\/\w*.\.js")
for match in pattern.finditer(log):
    print(match.group().lstrip('/'))
Output:
jquery.jshowoff.min.js jquery.js jquery.jshowoff.min.js jquery.js jquery.js jquery.js jquery.jshowoff2.js jquery.jshowoff.min.js jquery.js jquery.jshowoff.min.js jquery.js jquery.js jquery.js jquery.js
Reply


Messages In This Thread
RE: Python script - search Apache access_log.txt for all of the JavaScript (.js) - by snippsat - May-04-2020, 07:02 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Is there a *.bat DOS batch script to *.py Python Script converter? pstein 3 3,863 Jun-29-2023, 11:57 AM
Last Post: gologica
  install apache-airflow[postgres,google] on Python 3.8.12 virtual env ShahajaK 1 11,139 Oct-07-2021, 03:05 PM
Last Post: Larz60+
  Apache 2.0 Licensed Python code Furkan 0 1,710 Jul-26-2021, 11:12 PM
Last Post: Furkan
Photo Integration of apache spark and Kafka on eclipse pyspark aupres 1 3,913 Feb-27-2021, 08:38 AM
Last Post: Serafim
  How to kill a bash script running as root from a python script? jc_lafleur 4 6,234 Jun-26-2020, 10:50 PM
Last Post: jc_lafleur
  crontab on RHEL7 not calling python script wrapped in shell script benthomson 1 2,440 May-28-2020, 05:27 PM
Last Post: micseydel
  Package python script which has different libraries as a single executable or script tej7gandhi 1 2,742 May-11-2019, 08:12 PM
Last Post: keames
  Twitter listen script, dynamic search value? quitte74 0 1,984 Nov-01-2018, 01:09 PM
Last Post: quitte74
  Run Script written in javascript from python Scientifix 3 3,547 Apr-28-2018, 06:48 PM
Last Post: Gribouillis
  How to use python variable in javascript arun28sharma44 0 3,139 Nov-05-2017, 03:52 PM
Last Post: arun28sharma44

Forum Jump:

User Panel Messages

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