0% found this document useful (0 votes)
13 views2 pages

Python For Data Science, AI & Development Working With Data in Python

The document covers the use of Python for data science, focusing on libraries like Pandas and NumPy for data manipulation and analysis. It explains HTTP protocols, the Requests Library, and the process of web scraping, as well as the differences between APIs and REST APIs. Additionally, it details how data is transmitted and received using HTTP methods and JSON files.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
13 views2 pages

Python For Data Science, AI & Development Working With Data in Python

The document covers the use of Python for data science, focusing on libraries like Pandas and NumPy for data manipulation and analysis. It explains HTTP protocols, the Requests Library, and the process of web scraping, as well as the differences between APIs and REST APIs. Additionally, it details how data is transmitted and received using HTTP methods and JSON files.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

Python for Data Science, AI & Development

Working with Data in Python

• Explain how Pandas use data frames.

• Use Pandas for library and data analysis by using commands.

• Read text files using Python libraries including open and with.

• Use NumPy to create one-dimensional and two-dimensional arrays.

• Write and save files in Python.

Pandas

• loc vs. iloc

APIs, and Data Collection

• Explain the use of the HTTP protocol using the Requests Library method.

• Describe how the URL Request Response HTTP protocol works.

• Learn to apply simple, open-source APIs.

• Perform basic webscraping using Python.

• Work with different file formats using Python.

• Explain the difference between APIs and REST APIs.

• Summarize how APIs receive and send information.

• HTTP methods are a way of transmitting data over the internet We tell the Rest API’s what to
do by sending a request. The request is usually communicated via an HTTP message.

• The HTTP message usually contains a JSON file. This contains instructions for what
operation we would like the service to perform.

• This operation is transmitted to the webservice via the internet. The service performs the
operation. In the similar manner, the webservice returns a response via an HTTP message,
where the information is usually returned via a JSON file. This information is transmitted
back to the client.

You might also like