This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name Better Blic! | |
| // @version 1 | |
| // @grant none | |
| // @include https://*.blic.rs/* | |
| // @include https://blic.rs/* | |
| // ==/UserScript== | |
| blacklist = ["kij.?", "kijin", "kijom", "anabel.?", "lun.?", "lunin"] | |
| re = new RegExp("\\b(" + blacklist.join("|") + ")\\b", "i"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # -*- coding: utf-8 -*- | |
| import requests | |
| import bs4 | |
| import re | |
| import datetime | |
| from matplotlib import pyplot | |
| replacements = str.maketrans({ | |
| 'а':'a', | |
| 'е':'e', |
NewerOlder