We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Since we're only using the library to grab domain apex, we can just roll our own implementation here.
Pull down public_suffix_list.dat, store it in memory, and do look-ups/matches based on it.
public_suffix_list.dat
val publicSuffixes = scala.io.Source.fromURL("https://publicsuffix.org/list/public_suffix_list.dat", "utf-8").getLines.map(_.trim).filter(_.nonEmpty).filter(!_.startsWith("//")).toSet
The text was updated successfully, but these errors were encountered:
Follow-up issue to #520
Sorry, something went wrong.
Replace scala-uri library from ExtractDomain.
09ec587
- Pull down public_suffix_list.dat, and parse it to ExtractDomain instead of using scala-uri - Remove scala-uri - Remove cats shading - Resolves #521
Replace scala-uri library from ExtractDomain. (#524)
f2b4379
Successfully merging a pull request may close this issue.
Since we're only using the library to grab domain apex, we can just roll our own implementation here.
Pull down
public_suffix_list.dat
, store it in memory, and do look-ups/matches based on it.The text was updated successfully, but these errors were encountered: