Skip to content
Closed

test #54

Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
384be63
specific C901 ignore
mboot-github Apr 18, 2026
80f3fb1
initial tests whodap
mboot-github Apr 18, 2026
b24eba3
testing
mboot-github Apr 18, 2026
c401596
use dataresponse with message in case of error
mboot-github Apr 18, 2026
fcbf21f
remove pylint, simplefy ruff
mboot-github Apr 19, 2026
991702e
test whoisdomain formatting with raw
mboot-github Apr 20, 2026
e128dc0
move classes to files
mboot-github Apr 20, 2026
d3d22de
testing
mboot-github Apr 20, 2026
a2b01a4
set ruff checks more explicit on items
mboot-github Apr 20, 2026
4605228
cleanup ruff rule errors in the code
mboot-github Apr 20, 2026
35d78a1
lint clean again
mboot-github Apr 20, 2026
c49573f
more ruff rules clarify
mboot-github Apr 20, 2026
52623ab
diocument all exceptions in ruff rules
mboot-github Apr 20, 2026
452d329
rdap info first , if none try whois
mboot-github Apr 24, 2026
a0e0225
cleanup tld db
mboot-github Apr 24, 2026
7230950
testing
mboot-github Apr 24, 2026
9172de4
update readme
mboot-github Apr 24, 2026
148500f
update readme
mboot-github Apr 24, 2026
99a72be
update readme
mboot-github Apr 24, 2026
00e32b3
update readme
mboot-github Apr 24, 2026
eaedcde
update ci cd gh-action
mboot-github Apr 24, 2026
fed70f1
add flags rdapOnly and whoisOnly
mboot-github May 6, 2026
afa29f0
main now has --whoisOnly and --rdapOnly for testing it
mboot-github May 6, 2026
f929d9e
version 2.20260522.1
mboot-github May 22, 2026
ee592e2
round one Claude code review
mboot-github May 22, 2026
6e61371
replace parametercontext
mboot-github May 22, 2026
ee6bf57
add __lookup__ rdap/whois
mboot-github May 22, 2026
691f231
format
mboot-github May 22, 2026
2e35043
Merge branch 'master' into dev-v2
mboot-github May 22, 2026
ee1c82e
make run
mboot-github May 22, 2026
946b13f
remove ruff format
mboot-github May 22, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,6 @@ jobs:
python -m pip install --upgrade pip
pip install ruff tld types-redis types-requests python-dateutil whodap

- name: Run ruff format check
run: ruff format --check whoisdomain/

- name: Run ruff lint
run: ruff check whoisdomain/

Expand Down
2 changes: 1 addition & 1 deletion whoisdomain/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ def q2(
if dd.status:
with_rdap_whois = True
d: dict[str, Any] = wr.map_data_to_whoisdomain(dd.data, with_rdap_whois=with_rdap_whois)
d['__lookup__'] = 'rdap'
d["__lookup__"] = "rdap"

rr = Domain(pc=pc, dc=dc)
rr.from_whodap_dict(d)
Expand Down
1 change: 0 additions & 1 deletion whoisdomain/context/parameterContext.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
import json
import logging
from dataclasses import asdict, dataclass
from typing import Any

log = logging.getLogger(__name__)

Expand Down
1 change: 1 addition & 0 deletions whoisdomain/domain.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@

log = logging.getLogger(__name__)


class Domain:
def __init__(
self,
Expand Down
Loading