Skip to content

Commit ac3b4d5

Browse files
authored
Merge pull request #193 from bee-san/bee-unix-timestamp
Set unix timestamp to 0.1 and 4.3.0 release
2 parents 4cc2f19 + 48bac32 commit ac3b4d5

File tree

3 files changed

+32
-31
lines changed

3 files changed

+32
-31
lines changed

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "pywhat"
3-
version = "4.2.0"
3+
version = "4.3.0"
44
description = "What is that thing?"
55
authors = ["Bee <[email protected]>"]
66
license = "MIT"

pywhat/Data/regex.json

+30-29
Original file line numberDiff line numberDiff line change
@@ -1716,12 +1716,38 @@
17161716
"Amazon"
17171717
]
17181718
},
1719+
{
1720+
"Name": "Turkish Identification Number",
1721+
"Regex": "^([1-9]{1}[0-9]{9}[02468]{1})$",
1722+
"plural_name": false,
1723+
"Description": null,
1724+
"Rarity": 0.2,
1725+
"URL": null,
1726+
"Tags": [
1727+
"Credentials",
1728+
"Identifiers",
1729+
"Turkish"
1730+
]
1731+
},
1732+
{
1733+
"Name": "ObjectID",
1734+
"Regex": "^([0-9a-fA-F]{24})$",
1735+
"plural_name": false,
1736+
"Description": null,
1737+
"Rarity": 0.1,
1738+
"URL": null,
1739+
"Tags": [
1740+
"Identifiers",
1741+
"ObjectID"
1742+
]
1743+
},
1744+
17191745
{
17201746
"Name": "Recent Unix Timestamp",
17211747
"Regex": "^([0-9]{10})$",
17221748
"plural_name": false,
17231749
"Description": "Seconds elapsed since unix epoch: 1970, between year 2001 and 2286",
1724-
"Rarity": 0.2,
1750+
"Rarity": 0.1,
17251751
"URL": null,
17261752
"Tags": [
17271753
"UNIX Timestamp",
@@ -1734,7 +1760,7 @@
17341760
"Regex": "^([0-9]{13})$",
17351761
"plural_name": false,
17361762
"Description": "Milliseconds elapsed since unix epoch: 1970, between year 2001 and 2286",
1737-
"Rarity": 0.2,
1763+
"Rarity": 0.1,
17381764
"URL": null,
17391765
"Tags": [
17401766
"UNIX Timestamp",
@@ -1747,7 +1773,7 @@
17471773
"Regex": "^([0-9]{8,10})$",
17481774
"plural_name": false,
17491775
"Description": "Seconds elapsed since unix epoch: 1970",
1750-
"Rarity": 0.2,
1776+
"Rarity": 0.1,
17511777
"URL": null,
17521778
"Tags": [
17531779
"UNIX Timestamp",
@@ -1760,39 +1786,14 @@
17601786
"Regex": "^([0-9]{11,13})$",
17611787
"plural_name": false,
17621788
"Description": "Milliseconds elapsed since unix epoch: 1970",
1763-
"Rarity": 0.2,
1789+
"Rarity": 0.1,
17641790
"URL": null,
17651791
"Tags": [
17661792
"UNIX Timestamp",
17671793
"Timestamp",
17681794
"UNIX"
17691795
]
17701796
},
1771-
{
1772-
"Name": "Turkish Identification Number",
1773-
"Regex": "^([1-9]{1}[0-9]{9}[02468]{1})$",
1774-
"plural_name": false,
1775-
"Description": null,
1776-
"Rarity": 0.2,
1777-
"URL": null,
1778-
"Tags": [
1779-
"Credentials",
1780-
"Identifiers",
1781-
"Turkish"
1782-
]
1783-
},
1784-
{
1785-
"Name": "ObjectID",
1786-
"Regex": "^([0-9a-fA-F]{24})$",
1787-
"plural_name": false,
1788-
"Description": null,
1789-
"Rarity": 0.1,
1790-
"URL": null,
1791-
"Tags": [
1792-
"Identifiers",
1793-
"ObjectID"
1794-
]
1795-
},
17961797
{
17971798
"Name": "ULID",
17981799
"Regex": "^([0-9A-HJKMNP-TV-Z]{26})$",

pywhat/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from pywhat.helper import AvailableTags, Keys
33
from pywhat.identifier import Identifier
44

5-
__version__ = "4.2.0"
5+
__version__ = "4.3.0"
66

77
tags = AvailableTags().get_tags()
88
pywhat_tags = tags # left for backward compatibility purposes

0 commit comments

Comments
 (0)