disinfoRG / FbScraper

MIT License
3 stars 2 forks source link

Reduce facebook #26

Closed dieface closed 4 years ago

dieface commented 4 years ago

Tested with scripts below:

discover article urls of site 87 without login

python3 fb_handler.py --discover --page --max 1 --chunk-size 1 --cpu 1 --site 87 --timeout 60 --between 0

discover article urls of site 87 as logined

python3 fb_handler.py --discover --page --max 1 --chunk-size 1 --cpu 1 --site 87 --timeout 60 --between 0 --login

update one article of site 87 without login

python3 fb_handler.py --update --page --max 1 --chunk-size 1 --cpu 1 --site 87 --timeout 60 --between 0

update one article of site 87 as logined

python3 fb_handler.py --update --page --max 1 --chunk-size 1 --cpu 1 --site 87 --timeout 60 --between 0 --login

dieface commented 4 years ago

Tested with scripts below:

discover article urls of site 90 without login

python3 fb_handler.py --discover --page --max 1 --chunk-size 1 --cpu 1 --timeout 60 --between 0 --site 90

discover article urls of site 20 as logined

python3 fb_handler.py --discover --page --max 1 --chunk-size 1 --cpu 1 --timeout 60 --between 0 --site 20 --login

update one article of all sites without login

python3 fb_handler.py --update --page --max 1 --chunk-size 1 --cpu 1 --timeout 60 --between 0

update one article of all sites as logined

python3 fb_handler.py --update --page --max 1 --chunk-size 1 --cpu 1 --timeout 60 --between 0 --login

dieface commented 4 years ago

done