Closed TiiTcHY closed 1 year ago
Hi @TiiTcHY,
Are you talking about wrongTld
? If it is, then .uk
is already in the algorithm.
In case of domain like circl.co.uk
, there will be variations like circl.co.lu
and circl.lu
.
One by removing uk
and an other by removing co.uk
.
Is it what you are asking ?
Hi @DavidCruciani
Yes. However, if you did circl.com
it would do different variations like circl.sx
and circl.lu
but not circl.uk
or circl.co.uk
.
I did a test minutes ago with circl.com
and it give me circl.uk
. It's normal that co.uk
is not added in this algorithm cause it's using this TLD list.
Are you sure you do not see circl.uk
?
This is the command I typed in poetry shell: python typo.py -dn circl.com -wt -o -
Hi @DavidCruciani it would appear that i missed it then. However, would it be possible to get the .co.uk added?
Hello @TiiTcHY,
Find changes here.
Compose TLD will be added only when the current tld match:
circl.lu
-> circl.blogspot.lu
circl.uk
-> circl.ac.uk
, circl.co.uk
...
If each sld is added the list for the wrongTld algorithm will be very long.
Regards.
Hi @DavidCruciani Thank you.
Would it be possible to add .uk to the TLD Swap algorithm