File tree 3 files changed +32
-31
lines changed
3 files changed +32
-31
lines changed Original file line number Diff line number Diff line change 1
1
[tool .poetry ]
2
2
name = " pywhat"
3
- version = " 4.2 .0"
3
+ version = " 4.3 .0"
4
4
description = " What is that thing?"
5
5
authors = [
" Bee <[email protected] >" ]
6
6
license = " MIT"
Original file line number Diff line number Diff line change 1716
1716
" Amazon"
1717
1717
]
1718
1718
},
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
+
1719
1745
{
1720
1746
"Name" : " Recent Unix Timestamp" ,
1721
1747
"Regex" : " ^([0-9]{10})$" ,
1722
1748
"plural_name" : false ,
1723
1749
"Description" : " Seconds elapsed since unix epoch: 1970, between year 2001 and 2286" ,
1724
- "Rarity" : 0.2 ,
1750
+ "Rarity" : 0.1 ,
1725
1751
"URL" : null ,
1726
1752
"Tags" : [
1727
1753
" UNIX Timestamp" ,
1734
1760
"Regex" : " ^([0-9]{13})$" ,
1735
1761
"plural_name" : false ,
1736
1762
"Description" : " Milliseconds elapsed since unix epoch: 1970, between year 2001 and 2286" ,
1737
- "Rarity" : 0.2 ,
1763
+ "Rarity" : 0.1 ,
1738
1764
"URL" : null ,
1739
1765
"Tags" : [
1740
1766
" UNIX Timestamp" ,
1747
1773
"Regex" : " ^([0-9]{8,10})$" ,
1748
1774
"plural_name" : false ,
1749
1775
"Description" : " Seconds elapsed since unix epoch: 1970" ,
1750
- "Rarity" : 0.2 ,
1776
+ "Rarity" : 0.1 ,
1751
1777
"URL" : null ,
1752
1778
"Tags" : [
1753
1779
" UNIX Timestamp" ,
1760
1786
"Regex" : " ^([0-9]{11,13})$" ,
1761
1787
"plural_name" : false ,
1762
1788
"Description" : " Milliseconds elapsed since unix epoch: 1970" ,
1763
- "Rarity" : 0.2 ,
1789
+ "Rarity" : 0.1 ,
1764
1790
"URL" : null ,
1765
1791
"Tags" : [
1766
1792
" UNIX Timestamp" ,
1767
1793
" Timestamp" ,
1768
1794
" UNIX"
1769
1795
]
1770
1796
},
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
- },
1796
1797
{
1797
1798
"Name" : " ULID" ,
1798
1799
"Regex" : " ^([0-9A-HJKMNP-TV-Z]{26})$" ,
Original file line number Diff line number Diff line change 2
2
from pywhat .helper import AvailableTags , Keys
3
3
from pywhat .identifier import Identifier
4
4
5
- __version__ = "4.2 .0"
5
+ __version__ = "4.3 .0"
6
6
7
7
tags = AvailableTags ().get_tags ()
8
8
pywhat_tags = tags # left for backward compatibility purposes
You can’t perform that action at this time.
0 commit comments