Skip to content

Commit

Permalink
Merge pull request #89 from p1ngul1n0/feature/docs-change
Browse files Browse the repository at this point in the history
Added Properties to documentation
  • Loading branch information
p1ngul1n0 authored Jun 13, 2024
2 parents 133d668 + 399a83a commit 179995f
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion docs/advanced-usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,17 @@ The `filter` command allows you to filter the sites to be searched based on vari
python blackbird.py --filter "name~Mastodon and cat=social or e_code<=200" --username crash
```

#### Supported Operators
#### Properties

* `name` The name of the site being checked.
* `cat` Category of the site.
* `uri_check` The URL used to check for the existence of an account.
* `e_code` Expected HTTP status code when an account exists.
* `e_string` A string expected in the response when an account exists.
* `m_string` A string expected in the response when an account does not exist.
* `m_code` Expected HTTP status code when an account does not exist.

#### Operators

* `=` Equal to
* `~` Contains (substring match)
Expand Down

0 comments on commit 179995f

Please sign in to comment.