用法:
clx.dns.dns_extractor.generate_tld_cols(hostname_split_df, hostnames, col_len)
此函數生成 tld 列。
- hostname_split_df:(
cudf.DataFrame
) - 主機名拆分。 - hostnames:(
cudf.DataFrame
) - 主機名。 - col_len:- 主機名拆分數據幀列的長度。
- hostname_split_df:(
具有所有組合的 Tld 列。
cudf.DataFrame
參數:
返回:
返回類型:
例子:
>>> import cudf >>> from clx.dns import dns_extractor as dns >>> hostnames = cudf.Series(["www.google.com", "pandas.pydata.org"]) >>> hostname_splits = dns.get_hostname_split_df(hostnames) >>> print(hostname_splits) 2 1 0 0 com google www 1 org pydata pandas >>> col_len = len(hostname_split_df.columns) - 1 >>> col_len = len(hostname_splits.columns) - 1 >>> dns.generate_tld_cols(hostname_splits, hostnames, col_len) 2 1 0 tld2 tld1 tld0 0 com google www com google.com www.google.com 1 org pydata pandas org pydata.org pandas.pydata.org
相關用法
- Python clx.dns.dns_extractor.extract_hostnames用法及代碼示例
- Python clx.dns.dns_extractor.parse_url用法及代碼示例
- Python clx.ip.is_ip用法及代碼示例
- Python clx.analytics.anomaly_detection.dbscan用法及代碼示例
- Python clx.ip.hostmask用法及代碼示例
- Python clx.osi.virus_total.VirusTotalClient.file_rescan用法及代碼示例
- Python clx.osi.virus_total.VirusTotalClient.url_report用法及代碼示例
- Python clx.ip.is_global用法及代碼示例
- Python clx.osi.virus_total.VirusTotalClient.ipaddress_report用法及代碼示例
- Python clx.ip.ip_to_int用法及代碼示例
- Python clx.osi.virus_total.VirusTotalClient.file_scan用法及代碼示例
- Python clx.osi.virus_total.VirusTotalClient.scan_big_file用法及代碼示例
- Python clx.ip.is_private用法及代碼示例
- Python clx.osi.slashnext.SlashNextClient.host_reputation用法及代碼示例
- Python clx.analytics.asset_classification.AssetClassification.predict用法及代碼示例
- Python clx.eda.EDA用法及代碼示例
- Python clx.analytics.loda.Loda.score用法及代碼示例
- Python clx.osi.slashnext.SlashNextClient.api_quota用法及代碼示例
- Python clx.ip.is_reserved用法及代碼示例
- Python clx.ip.is_unspecified用法及代碼示例
注:本文由純淨天空篩選整理自rapids.ai大神的英文原創作品 clx.dns.dns_extractor.generate_tld_cols。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。