Skip to content

Commit

Permalink
Merge pull request #362 from yozachar/workshop
Browse files Browse the repository at this point in the history
fix: reduce memory footprint when loading TLDs
  • Loading branch information
yozachar committed Apr 4, 2024
2 parents 724262e + 9f5871b commit f89ddc2
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/validators/domain.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,11 @@


def _iana_tld():
"""Load IANA TLDs."""
"""Load IANA TLDs as a Generator."""
with Path(__file__).parent.joinpath("_tld.txt").open() as tld_f:
return (line.strip() for line in tld_f.readlines()[1:])
_ = next(tld_f) # ignore the first line
for line in tld_f:
yield line.strip()


@validator
Expand Down

0 comments on commit f89ddc2

Please sign in to comment.