[python] URL에서 프로토콜 + 호스트 이름 가져 오기

Django 앱에서 다음 request.META.get('HTTP_REFERER')과 같은 URL에서 프로토콜과 함께 리퍼러에서 호스트 이름을 가져와야 합니다.

나는 얻어야한다 :

다른 관련 질문을 살펴보고 urlparse에 대해 찾았지만 그 이후로는 속임수가 없었습니다.

>>> urlparse(request.META.get('HTTP_REFERER')).hostname
'docs.google.com'



답변

당신은 그것을 할 수 있어야합니다 urlparse(docs : python2 , python3 ) :

from urllib.parse import urlparse
# from urlparse import urlparse  # Python 2
parsed_uri = urlparse('http://stackoverflow.com/questions/1234567/blah-blah-blah-blah' )
result = '{uri.scheme}://{uri.netloc}/'.format(uri=parsed_uri)
print(result)

# gives
'http://stackoverflow.com/'


답변

https://github.com/john-kurkowski/tldextract

이것은 더 장황한 urlparse 버전입니다. 도메인과 하위 도메인을 감지합니다.

그들의 문서에서 :

>>> import tldextract
>>> tldextract.extract('http://forums.news.cnn.com/')
ExtractResult(subdomain='forums.news', domain='cnn', suffix='com')
>>> tldextract.extract('http://forums.bbc.co.uk/') # United Kingdom
ExtractResult(subdomain='forums', domain='bbc', suffix='co.uk')
>>> tldextract.extract('http://www.worldbank.org.kg/') # Kyrgyzstan
ExtractResult(subdomain='www', domain='worldbank', suffix='org.kg')

ExtractResult 명명 된 튜플이므로 원하는 부분에 간단하게 액세스 할 수 있습니다.

>>> ext = tldextract.extract('http://forums.bbc.co.uk')
>>> ext.domain
'bbc'
>>> '.'.join(ext[:2]) # rejoin subdomain and domain
'forums.bbc'


답변

urlsplit을 사용하는 Python3 :

from urllib.parse import urlsplit
url = "http://stackoverflow.com/questions/9626535/get-domain-name-from-url"
base_url = "{0.scheme}://{0.netloc}/".format(urlsplit(url))
print(base_url)
# http://stackoverflow.com/


답변

순수한 문자열 연산 🙂 :

>>> url = "http://stackoverflow.com/questions/9626535/get-domain-name-from-url"
>>> url.split("//")[-1].split("/")[0].split('?')[0]
'stackoverflow.com'
>>> url = "stackoverflow.com/questions/9626535/get-domain-name-from-url"
>>> url.split("//")[-1].split("/")[0].split('?')[0]
'stackoverflow.com'
>>> url = "http://foo.bar?haha/whatever"
>>> url.split("//")[-1].split("/")[0].split('?')[0]
'foo.bar'

그게 다야 사람들.


답변

>>> import urlparse
>>> url = 'http://stackoverflow.com/questions/1234567/blah-blah-blah-blah'
>>> urlparse.urljoin(url, '/')
'http://stackoverflow.com/'


답변

URL이 유효하다고 생각되면 항상 작동합니다.

domain = "http://google.com".split("://")[1].split("/")[0] 


답변

순수한 문자열 연산에 문제가 있습니까?

url = 'http://stackoverflow.com/questions/9626535/get-domain-name-from-url'
parts = url.split('//', 1)
print parts[0]+'//'+parts[1].split('/', 1)[0]
>>> http://stackoverflow.com

후행 슬래시를 추가하려면이 스크립트를 다음과 같이 확장하십시오.

parts = url.split('//', 1)
base = parts[0]+'//'+parts[1].split('/', 1)[0]
print base + (len(url) > len(base) and url[len(base)]=='/'and'/' or '')

아마 조금 최적화 될 수 있습니다 …