Sfoglia il codice sorgente

Better logging.

master
Trey Del Bonis 2 anni fa
parent
commit
823aacad33
1 ha cambiato i file con 4 aggiunte e 1 eliminazioni
  1. 4
    1
      main.py

+ 4
- 1
main.py Vedi File

@@ -142,7 +142,6 @@ def query_tops(config):
if post['kind'] != 't3':
print('found post of kind', post['kind'])


p = process_post(post)

lt = p['title'].lower()
@@ -164,8 +163,12 @@ def filter_posts(config, posts, filt):
if p['rid'] not in filt:
ok.append(p)
newfilt.add(p['rid'])
else:
print('filtered out:', p['rid'], p['title'])
elif p['rid'] in filt:
newfilt.add(p['rid'])
else:
print('skipped:', p['rid'], p['title'])

return ok, list(newfilt)


Loading…
Annulla
Salva