Skip to content

Commit

Permalink
Set some regex to 0
Browse files Browse the repository at this point in the history
Too spammy, I set them to 0.1 earlier but I was meant to set to 0!
  • Loading branch information
bee-san committed Oct 9, 2021
1 parent e36b83a commit 7aa3879
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "pywhat"
version = "4.3.0"
version = "4.3.1"
description = "What is that thing?"
authors = ["Bee <github@skerritt.blog>"]
license = "MIT"
Expand Down
16 changes: 8 additions & 8 deletions pywhat/Data/regex.json
Original file line number Diff line number Diff line change
Expand Up @@ -1763,7 +1763,7 @@
"Regex": "^([0-9a-fA-F]{24})$",
"plural_name": false,
"Description": null,
"Rarity": 0.1,
"Rarity": 0,
"URL": null,
"Tags": [
"Identifiers",
Expand All @@ -1776,7 +1776,7 @@
"Regex": "^([0-9]{10})$",
"plural_name": false,
"Description": "Seconds elapsed since unix epoch: 1970, between year 2001 and 2286",
"Rarity": 0.1,
"Rarity": 0,
"URL": null,
"Tags": [
"UNIX Timestamp",
Expand All @@ -1789,7 +1789,7 @@
"Regex": "^([0-9]{13})$",
"plural_name": false,
"Description": "Milliseconds elapsed since unix epoch: 1970, between year 2001 and 2286",
"Rarity": 0.1,
"Rarity": 0,
"URL": null,
"Tags": [
"UNIX Timestamp",
Expand All @@ -1802,7 +1802,7 @@
"Regex": "^([0-9]{8,10})$",
"plural_name": false,
"Description": "Seconds elapsed since unix epoch: 1970",
"Rarity": 0.1,
"Rarity": 0,
"URL": null,
"Tags": [
"UNIX Timestamp",
Expand All @@ -1815,7 +1815,7 @@
"Regex": "^([0-9]{11,13})$",
"plural_name": false,
"Description": "Milliseconds elapsed since unix epoch: 1970",
"Rarity": 0.1,
"Rarity": 0,
"URL": null,
"Tags": [
"UNIX Timestamp",
Expand All @@ -1828,7 +1828,7 @@
"Regex": "^([0-9A-HJKMNP-TV-Z]{26})$",
"plural_name": false,
"Description": null,
"Rarity": 0.1,
"Rarity": 0,
"URL": null,
"Tags": [
"Identifiers",
Expand All @@ -1840,7 +1840,7 @@
"Regex": "^((?=.*[A-Z])(?=.*[a-z])[0-9A-Za-z_-]{10}[048AEIMQUYcgkosw]{1})$",
"plural_name": false,
"Description": null,
"Rarity": 0.1,
"Rarity": 0,
"URL": "https://www.youtube.com/watch?v=",
"Tags": [
"Media",
Expand All @@ -1853,7 +1853,7 @@
"Regex": "^([0-9]{10})$",
"plural_name": false,
"Description": null,
"Rarity": 0.1,
"Rarity": 0,
"URL": null,
"Tags": [
"Credentials",
Expand Down
2 changes: 1 addition & 1 deletion pywhat/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from pywhat.helper import AvailableTags, Keys
from pywhat.identifier import Identifier

__version__ = "4.3.0"
__version__ = "4.3.1"

tags = AvailableTags().get_tags()
pywhat_tags = tags # left for backward compatibility purposes
Expand Down

0 comments on commit 7aa3879

Please sign in to comment.