ralike v0.1.0
ralike
A reddit-username-alike finder using pushshift comment data, written in crystal
Installation
Clone the repository. Requires crystal to run.
Usage
As there are no dependencies other than Crystal's standard library, you can just run the tool using something like
$ crystal run src/ralike.cr -- -i INPUT -c CONFIG
or after compilation using something like
$ ralike -i INPUT -c CONFIG
The input and config parameters are both mandatory, each represent a JSON file. You can see other available parameters by either giving no parameters or using -h
/--help
.
Config
The config describes, what should be matched. Multiple possible matches can be defined. So far, matching is possible using Levenshtein distance as well as defining a regex pattern to match. You can use either or both options simultaneously. If a config entry uses both options, only one of them has to be matched. An example config can be found here.
Input
ralike
uses search data provided by pushhift in the form of comment data. Currently, this must be done manually.
I suggest to use a tool like redditsearch.io to do this. Keep in mind, only comments are supported so far.
Development
There's nothing specific for now. Things will be changed as needed.
Hacking
If you feel that a config/matching option is missing, you can simply add it.
First, you'll have to adjust the JSON Mapping for the config, which is ConfigEntry
in mappings.cr. This will retain the tool's modularity. After that is done, you can add the feature definition in the most inner loop which iterates over config entries. Add code to validate your option using name
for the comment's author and append a string to reasons
if it matches. Everything else will be handled automatically. See the implementation of distance
in ralike.cr for a specific example.
Contributing
- Fork it (https://github.com/kyunal/ralike/fork)
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request
Contributors
- kyunal - creator and maintainer
ralike
- 2
- 0
- 0
- 0
- 0
- almost 4 years ago
- December 13, 2020
MIT License
Sun, 24 Nov 2024 09:21:17 GMT