https://github.com/batteredbunny/discord_history_search
Searches discord server for mention of keywords
https://github.com/batteredbunny/discord_history_search
discord search
Last synced: 4 months ago
JSON representation
Searches discord server for mention of keywords
- Host: GitHub
- URL: https://github.com/batteredbunny/discord_history_search
- Owner: BatteredBunny
- License: gpl-3.0
- Created: 2021-06-23T12:46:29.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2024-05-07T10:59:31.000Z (about 1 year ago)
- Last Synced: 2025-02-05T23:02:52.266Z (5 months ago)
- Topics: discord, search
- Language: Python
- Homepage:
- Size: 13.7 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Discord History Search
Searches discord server for mention of keywords# How to use?
First install required python modules
```
python -m pip install -r requirements.txt
```You also need [geckodriver (firefox)](https://github.com/mozilla/geckodriver/releases) installed
```
from discord_search import search
``````
search(1234567891234567891, 'Example search', 'months', '2018-2-1', '2021-6-23')
```You can also search by days, so that would be
```
search(1234567891234567891, 'Example search', 'days', '2018-2-1', '2021-6-23')
```# .env
.env should have all of your discord login information and ratelimit time```
LOGIN="[email protected]"
PASSWORD="password"
RATELIMIT=0.01
```