aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
Commit message (Collapse)AuthorAgeFilesLines
* feature: custom timeperiod (#3)nico2019-11-041-1/+8
| | | | | | | | | | | | | + add ability to define a custom time period This feature enables users to further narrow the expected query result by customizing the time period. Every script feature is able to handle the custom timestamps, but beware no further consistency checks are done. Thus if you provide a stop timestamp that is prior to the start timestamp the output will be empty, no error whatsoever. Timestamps must be conformal to the Python [datetime](https://docs.python.org/3/library/datetime.html#strftime-strptime-behavior) module. The easiest way to achieve that is to use the ISO-8601 format from the unix date function: ```bash $date -Ins -d "3 weeks ago" $date --iso-8601 -d "3 weeks ago" ```
* spam time-bordernico2019-07-171-0/+1
| | | | | | | | | | | + add time-borders to all queries The JabberSpam manifesto states that the critical period for a server to be approved again is 14 days. Thus I adjusted all queries required for the report function to only count within these borders. Though if a domain is specified without the report argument the time border is increased to 1 month to increase visibility. misc: + add Codefactor badge
* further documentationnico2019-05-311-1/+23
| | | | | | | * add more docstrings to main.py * add README entry for no argument Thanks to @weiss
* readme config.py additionnico2019-05-301-0/+13
| | | | * update README to explain config.py
* readme updatenico2019-05-301-7/+30
| | | | * update README.md to the latest changes
* Don't set executable bit on documentationHolger Weiss2019-05-151-0/+0
|
* Initial working commitnico2019-05-141-0/+38
+ python3 ingest and db management + abusereport bash script