You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"Extract a domain string into its parts\n\nextract(domain)\nArguments:\n\tdomain(str): the domain string to extract\nReturn:\n\tdict[str, str] -> The extracted parts as 'subdomain', 'domain', 'suffix'\n\n"
519
498
},
520
499
{
521
500
"extract_from_url",
522
501
(PyCFunction)DomainExtractor_extract_from_url,
523
-
METH_FASTCALL,
502
+
METH_O,
524
503
"Extract a domain from a url into its parts\n\nextract_from_url(url)\nArguments:\n\turl(str): the url string to extract\nReturn:\n\tdict[str, str] -> The extracted parts as 'subdomain', 'domain', 'suffix'\n\n"
525
504
},
526
505
{
527
506
"is_valid_domain",
528
507
(PyCFunction)DomainExtractor_is_valid_domain,
529
-
METH_FASTCALL,
508
+
METH_O,
530
509
"Checks whether a domain is a valid domain\n\nis_valid_domain(domain)\nArguments:\n\tdomain(str): the domain string to validate\nReturn:\n\tbool: True if valid or False if invalid\n\n"
0 commit comments