Skip to main content

URL - Uniform Resource Locator

What is URL?

A Uniform Resource Locator (URL),
colloquially termed a web address,is a
reference to a web resource that specifies
its location on a computer network and a
mechanism for retrieving it. 
A URL is a
specific type of Uniform Resource
Identifier (URI)


WEBSITE
https://url.spec.whatwg.org



HTTP uses Internet address in a special format called a Uniform Resource Locator Or URL.

URLs look like this:
type://address/path


The other example of URLs are:

ftp://ftp.prenhall.com,http://www.yahoo.com,news://alt.tennis ,www.Instagram.com,www.Facebook.com ,www.blogger.com etc.

A URL is also referred to as Web Address Sometimes.

Element of a URL

A URL(Uniform Resource Locator) is an address of a file on Internet . Let us discuss the components or syntax elements of URLs.

A file's Internet address , or URL, is determined by the following:

  • The type of server or protocol
  • The name/address of the server on the Internet
  • The location of the file on the server ( this location may be related as a "path" through the file hierarchy)
List the types of servers you may encounter, along with the protocol they use, and the type(s) of information they provide.


In any typical URL e.g., http://www.blogger.com, the "http" identifies both the protocol and server. (According to standard URL syntax , a colon(:) and two forward slashes (//) follow the protocol /server.)

Similarly , in URL ftp://www.Facebook.com, the "ftp" identifies both the protocol and server.Here it is FTP type of server. Refer to table for more types of servers.

Comments

Popular posts from this blog

Django in Python

What is Django? Django is a free and open source web application framework written in Python that encourages rapid development and clean pragmatic design. As you know  A framework is nothing more than a collection of modules that  make development easier. They are grouped together, and allow you to create applications or websites from an existing source, instead of from scratch. Some well known sites that use Django include PBS, Instagram, Disqus, Washington Times, Bitbucket and Mozilla. Django offers a big collection of modules which you can use in your own projects. Primarily, frameworks exist to save developers a lot of wasted time and headaches and Django is no different.

Python program to make simple calculator

Python program to make simple calculator In this example you will learn to create a simple calculator that can add,subtract,multiply or divide depending upon the input from the user. Example: simple calculator by using functions. def   add ( num1 , num2 ):    return  num1+num2   def   subtract  ( num1 , num2 ):    return  num1-num2   def   multiply  ( num1 , num2 ):    return  num1*num2   def   divide  ( num1 , num2 ):    return  num1/num2   print ( "please enter your choice :\n" \          "2.subtract\n" \        "3.multiply\n" \        "4.divide\n" )   ch=int( input ( "please enter your choice :" )) num1 = int( input ( "Enter the first number:" ))   if  ch== 1 :    print (num1+num2) elif ...

Python - How To Merge Two Dictionaries

  Python -  How to merge two dictionaries As we know If you are working as Python developer, data analytics or data scientists for any organisation then it is very important for you to know how to merge two dictionaries. There are various ways in which Dictionaries can be merged by the use of various functions and constructors in Python. In this article, we will discuss a few ways of merging dictionaries.  Using the method update () By using the method update() in Python, one list can be merged into another. But in this, the second list is merged into the first list and no new list is created. It returns  None .    Example # Python code to merge dict using update() method def Merge(dict1, dict2):      return (dict2.update(dict1))        # Driver code dict1 = { 'a' : 20 , 'b' : 8 } dict2 = { 'd' : 6 , 'c' : 4 }   # This return None print (Merge(dict1, dict2))   # changes made in dict2 pri...