filters-maker/maker_abp.py

55 lines
2.2 KiB
Python
Raw Normal View History

2021-08-12 04:13:21 +00:00
import datetime
import pytz
UTC = pytz.utc
date = datetime.datetime.now(UTC)
def linecounter(incoming):
with open(incoming) as f:
for i, l in enumerate(f):
pass
return i + 1
2021-08-20 07:52:37 +00:00
def ABPbuilding(excluded,incoming,output,Version):
2021-08-12 04:13:21 +00:00
ankstanop = linecounter(incoming)
with open(excluded ,'r') as f:
exclude = f.read().split()
with open(incoming ,'r') as f:
lines = f.read().splitlines() # read lines
with open(output ,'w') as f:
f.write('! Title : Minoplhy Personal Blocklist\n')
f.write('! Description : My Very Personal DNS Blocklist plus crawling from the source\n')
f.write('! Source : Resources/Source.txt\n')
f.write('! Rule Counter : ' + str(ankstanop) +' Rules\n')
f.write('! Format : AdblockPlus\n')
2021-08-20 07:52:37 +00:00
f.write('! Type : Blocklist\n')
f.write('! Version : ' + str(Version) +'\n')
2021-08-12 04:13:21 +00:00
f.write('! Licenses : MIT\n')
f.write('! Compiled Date : ' + str(date) +'\n\n')
for line in lines:
if line.strip() and not line in exclude and not line.startswith(';'):
f.write('\n'.join(['||' + line + '^ \n']))
elif line.startswith((';','$','@',' IN')):
f.write('\n'.join([line + '\n']))
2021-08-20 07:52:37 +00:00
f.close()
def ABPallowlist(incoming,output,Version):
ankstanop = linecounter(incoming)
with open(incoming ,'r') as f:
lines = f.read().splitlines() # read lines
with open(output ,'w') as f:
f.write('! Title : Minoplhy Personal Blocklist\n')
f.write('! Description : My Very Personal DNS Blocklist plus crawling from the source\n')
f.write('! Source : Resources/Source.txt\n')
f.write('! Rule Counter : ' + str(ankstanop) +' Rules\n')
f.write('! Format : AdblockPlus\n')
f.write('! Type : Allowlist\n')
f.write('! Version : ' + str(Version) +'\n')
f.write('! Licenses : MIT\n')
f.write('! Compiled Date : ' + str(date) +'\n\n')
for line in lines:
if line.strip() and not line.startswith(';'):
f.write('\n'.join(['@@||' + line + '^ \n']))
elif line.startswith((';','$','@',' IN')):
f.write('\n'.join([line + '\n']))
2021-08-12 04:13:21 +00:00
f.close()