<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>Forem: adi-ray</title>
    <description>The latest articles on Forem by adi-ray (@adiray).</description>
    <link>https://forem.com/adiray</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F958046%2F4ed05c52-f98e-4208-9ca7-743e604685f8.jpg</url>
      <title>Forem: adi-ray</title>
      <link>https://forem.com/adiray</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/adiray"/>
    <language>en</language>
    <item>
      <title>Building a Stone Paper Scissors Game with Amazon Q CLI: A Step-by-Step Guide</title>
      <dc:creator>adi-ray</dc:creator>
      <pubDate>Sat, 31 May 2025 19:10:00 +0000</pubDate>
      <link>https://forem.com/adiray/building-a-stone-paper-scissors-game-with-amazon-q-cli-a-step-by-step-guide-4d40</link>
      <guid>https://forem.com/adiray/building-a-stone-paper-scissors-game-with-amazon-q-cli-a-step-by-step-guide-4d40</guid>
      <description>&lt;h2&gt;
  
  
  Overview
&lt;/h2&gt;

&lt;p&gt;This blog walks you through the development of a &lt;strong&gt;Stone Paper Scissors&lt;/strong&gt; game built using &lt;strong&gt;Amazon Q CLI&lt;/strong&gt;, an AI-powered coding assistant that made development faster, smoother, and more enjoyable.&lt;/p&gt;

&lt;p&gt;I chose this project because it's a fun and simple way to learn &lt;strong&gt;Python&lt;/strong&gt;, explore &lt;strong&gt;clean code architecture&lt;/strong&gt;, and test the power of &lt;strong&gt;Amazon Q CLI&lt;/strong&gt; in an interactive development environment.  &lt;/p&gt;

&lt;p&gt;By the end of this blog, you'll learn:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;How to install and configure Amazon Q CLI&lt;/li&gt;
&lt;li&gt;How to iteratively build a Python game using AI-generated suggestions&lt;/li&gt;
&lt;li&gt;How Amazon Q simplifies testing, debugging, and structuring code&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  Project Setup &amp;amp; Development
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Setting Up Amazon Q CLI
&lt;/h3&gt;

&lt;h4&gt;
  
  
  Prerequisites
&lt;/h4&gt;

&lt;ul&gt;
&lt;li&gt;An &lt;strong&gt;AWS account&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;A working &lt;strong&gt;Python environment&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;WSL (for &lt;strong&gt;Windows&lt;/strong&gt; users)
&lt;/li&gt;
&lt;/ul&gt;

&lt;h4&gt;
  
  
  Installation Steps
&lt;/h4&gt;

&lt;p&gt;&lt;strong&gt;For Windows Users (WSL Setup):&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;wsl &lt;span class="nt"&gt;-d&lt;/span&gt; Ubuntu
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;blockquote&gt;
&lt;p&gt;💡 If you get &lt;code&gt;WSL_E_DISTRO_NOT_FOUND&lt;/code&gt;, the below command will install Ubuntu distribution&lt;br&gt;
&lt;/p&gt;
&lt;/blockquote&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;wsl &lt;span class="nt"&gt;--install&lt;/span&gt; &lt;span class="nt"&gt;-d&lt;/span&gt; Ubuntu
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;blockquote&gt;
&lt;p&gt;🔗 I referred to this &lt;a href="https://community.aws/content/2v5PptEEYT2y0lRmZbFQtECA66M/the-essential-guide-to-installing-amazon-q-developer-cli-on-windows?trk=e07eca93-fa2f-4351-b567-f293b83eb635&amp;amp;sc_channel=el_" rel="noopener noreferrer"&gt;guide for installing Amazon Q CLI on Windows&lt;/a&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;strong&gt;Start chatting with Amazon Q:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;q chat
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;h3&gt;
  
  
  Planning the Game
&lt;/h3&gt;

&lt;p&gt;I first outlined the core requirements:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Player vs Computer gameplay&lt;/li&gt;
&lt;li&gt;Score tracking&lt;/li&gt;
&lt;li&gt;Replay option&lt;/li&gt;
&lt;li&gt;Clean terminal UI with color support&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Then, I structured the project with the following folders:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;project-root/
│
├── src/
│   ├── game_engine.py
│   ├── utils.py
│   └── run_game.py
│
├── assets/
│   └── ascii_art.txt
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;h3&gt;
  
  
  Building with Amazon Q CLI
&lt;/h3&gt;

&lt;h4&gt;
  
  
  Initial Prompt
&lt;/h4&gt;

&lt;p&gt;I started by asking:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;"Help me create a stone paper scissors game in Python with a clean architecture. &lt;br&gt;
AI Prompt: Stone-Paper-Scissors with Pixel Art &amp;amp; 8-Bit Music&lt;br&gt;&lt;br&gt;
Target Library: PyGame (with Pyganim for pixel animations)&lt;br&gt;&lt;br&gt;
Style: Retro arcade vibe, dynamic AI, and special moves"&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Amazon Q provided a basic structure with separate functions for input handling, logic, and scoring.&lt;/p&gt;

&lt;h4&gt;
  
  
  Iterative Development
&lt;/h4&gt;

&lt;p&gt;I used follow-up prompts like:  &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;em&gt;"Add colorful terminal output to the game"&lt;/em&gt; &lt;/li&gt;
&lt;li&gt;&lt;em&gt;"Implement score tracking functionality"&lt;/em&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Amazon Q responded with helpful suggestions using libraries like &lt;code&gt;colorama&lt;/code&gt; and added features step-by-step, reducing manual effort.&lt;/p&gt;

&lt;h4&gt;
  
  
  Key Code Components
&lt;/h4&gt;

&lt;p&gt;Some valuable code snippets from Q included:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;A score dictionary to track wins&lt;/li&gt;
&lt;li&gt;A function for randomized computer moves&lt;/li&gt;
&lt;li&gt;A clean game loop with replay options
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I refined variable names, added error handling, and tweaked color schemes for better UX.&lt;/p&gt;




&lt;h3&gt;
  
  
  Testing &amp;amp; Debugging with Amazon Q
&lt;/h3&gt;

&lt;p&gt;Whenever I faced errors (like input mismatches or color issues), I simply asked:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;"Fix this ValueError when input is invalid"&lt;/em&gt;&lt;br&gt;&lt;br&gt;
&lt;em&gt;"Add unit tests for the game logic"&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Amazon Q provided clear fixes and even mocked &lt;code&gt;input()&lt;/code&gt; for testable functions.&lt;/p&gt;




&lt;h2&gt;
  
  
  Deployment
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Running the Game
&lt;/h3&gt;

&lt;p&gt;To play the game, simply run:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;python src/run_game.py
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;You'll see:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Colorful prompts&lt;/li&gt;
&lt;li&gt;Real-time score updates&lt;/li&gt;
&lt;li&gt;ASCII visuals (from &lt;code&gt;assets/&lt;/code&gt;)&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Screenshots
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fuk71sfxve5bkb6g7193g.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fuk71sfxve5bkb6g7193g.png" alt="Gameplay Screenshot"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;  &lt;iframe src="https://www.youtube.com/embed/X96WRRz-Zzs"&gt;
  &lt;/iframe&gt;
&lt;br&gt;
&lt;em&gt;Click the image above to watch the gameplay demo on YouTube&lt;/em&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  Lessons Learned
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Pros of Using Amazon Q CLI
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Super-fast prototyping
&lt;/li&gt;
&lt;li&gt;Clean, modular code generation
&lt;/li&gt;
&lt;li&gt;Helpful debugging prompts
&lt;/li&gt;
&lt;li&gt;Smart suggestions for best practices&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Tips for Others
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Break down tasks into short prompts
&lt;/li&gt;
&lt;li&gt;Use follow-ups to refine code
&lt;/li&gt;
&lt;li&gt;Always test generated code manually&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  Conclusion
&lt;/h2&gt;

&lt;p&gt;This project demonstrated how &lt;strong&gt;Amazon Q CLI&lt;/strong&gt; can accelerate even small projects like games while encouraging clean architecture and modular design.  &lt;/p&gt;

&lt;p&gt;If you’re learning Python or want to prototype apps efficiently, give Amazon Q CLI a try!   &lt;/p&gt;




&lt;h2&gt;
  
  
  Resources
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;🎥 &lt;a href="https://youtu.be/X96WRRz-Zzs" rel="noopener noreferrer"&gt;Gameplay Demo Video&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;🔗 &lt;a href="https://github.com/adi-ray/rps-arcade-game" rel="noopener noreferrer"&gt;GitHub Repository – Stone Paper Scissors Game&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;📘 &lt;a href="https://aws.amazon.com/blogs/devops/introducing-the-enhanced-command-line-interface-in-amazon-q-developer/" rel="noopener noreferrer"&gt;Amazon Q CLI Documentation&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>aws</category>
      <category>amazonqcli</category>
      <category>python</category>
      <category>ai</category>
    </item>
    <item>
      <title>🛰How AI Helped Chandrayaan-3 Achieve Its Lunar Mission? 💡🚀 📡</title>
      <dc:creator>adi-ray</dc:creator>
      <pubDate>Thu, 24 Aug 2023 14:54:22 +0000</pubDate>
      <link>https://forem.com/adiray/how-ai-helped-chandrayaan-3-achieve-its-lunar-mission-4o2i</link>
      <guid>https://forem.com/adiray/how-ai-helped-chandrayaan-3-achieve-its-lunar-mission-4o2i</guid>
      <description>&lt;blockquote&gt;
&lt;p&gt;ISRO’s Chandrayaan-3, the third lunar mission has set history by touching down on moon’s surface.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;ISRO, or the Indian Space Research Organisation, has pioneered space exploration by launching everything from small satellites to big moon missions. This demonstration of India's technological prowess has helped to establish the country's flag in the international space landscape.&lt;/p&gt;

&lt;h4&gt;
  
  
  Chandrayaan-3: A Giant Leap to the Moon's South Pole
&lt;/h4&gt;

&lt;p&gt;Chandrayaan-3, the successor to Chandrayaan-2, represents the pinnacle of India's space technology. This lunar mission aims to soft-land a rover near the Moon's south pole. This achievement could catapult India's space industry to unprecedented heights and inspire future generations to reach for the stars. By integrating AI, ISRO joins the global space community in its quest to tap into this technology's potential to unearth cosmic truths.&lt;/p&gt;

&lt;p&gt;During the last stage of its landing, the Chandrayaan-3 spacecraft has gone through a window of "17 minutes of terror", where it was carrying out a series of maneuvers which was crucial for landing. It included altitude adjustments, firing thrusters, &amp;amp; scanning the surface for any obstacles - all of that was done with the help of AI. During this period, the Chandrayaan-3 team was able to monitor its progress from the ISRO Telemetry, Tracking, &amp;amp; Command Network in Bengaluru, while Al was at the helm of the Vikram lander. ISRO has already confirmed that the lander used autonomously controlled by Al using Machine Learning that operated its guidance, navigation, control &amp;amp; other systems.&lt;/p&gt;

&lt;h4&gt;
  
  
  Artificial Intelligence: Guiding the Lunar Rover
&lt;/h4&gt;

&lt;p&gt;At the core of this mission is the pivotal role of Artificial Intelligence (AI). Lander &amp;amp; rover, as well as entire ship is designed &amp;amp; developed using AI, The spacecraft’s design is being optimized for weight, performance, and safety using AI algorithms.&lt;br&gt;
It uses this tech to examine lunar soil, identify obstacles, and send priceless data back to Earth. Built to operate for a lunar day, the rover's AI-driven abilities could broaden our understanding of the lunar surface, atmosphere, and possible water existence.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fqt6k5pv1n77exgxtsifx.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fqt6k5pv1n77exgxtsifx.png" alt="Chandrayaan-3 rover" width="800" height="533"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  Artificial Intelligence Reshaping the Space Industry
&lt;/h4&gt;

&lt;p&gt;Given the vast and unpredictable expanse of space, AI's problem-solving and data-analysis abilities can be crucial. AI can help make critical real-time choices, eliminate human errors, and improve overall mission performance.&lt;br&gt;
As we look to the future, the intersection of AI and space exploration promises to push the boundaries of what we thought was possible. AI might become a vital tool for everything from forecasting mission abnormalities to identifying new celestial bodies and potentially organizing interstellar communities.&lt;/p&gt;

&lt;p&gt;So, Chandrayaan-3's significance goes beyond its scientific goals. It symbolizes the merging of AI and space exploration, opening a new era where both will jointly fuel our quest to decipher the universe. &lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;     Space technology in the Service of humankind.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;




&lt;p&gt;Feel free to share this article with your peers and do hit a ❤️ if you liked it. If you have any query, feel free to ask them in the comment section.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;You can also connect with me on &lt;a href="https://linkedin.com/in/adi-ray" rel="noopener noreferrer"&gt;LinkedIn&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>machinelearning</category>
      <category>learning</category>
    </item>
    <item>
      <title>Introduction to APIs via Postman</title>
      <dc:creator>adi-ray</dc:creator>
      <pubDate>Sun, 12 Mar 2023 13:42:37 +0000</pubDate>
      <link>https://forem.com/adiray/introduction-to-apis-via-postman-3p8o</link>
      <guid>https://forem.com/adiray/introduction-to-apis-via-postman-3p8o</guid>
      <description>&lt;p&gt;Recently, I had the pleasure of attending an &lt;strong&gt;&lt;em&gt;"API 101 with Postman"&lt;/em&gt;&lt;/strong&gt; session. As a newcomer to the world of APIs, I was eager to learn about Postman's capabilities and how it can streamline the API testing and development process. In this blog post, I'll share my experience attending the session and provide a comprehensive overview of Postman API.&lt;/p&gt;

&lt;p&gt;&lt;u&gt;About the speaker:&lt;/u&gt;&lt;br&gt;
The session was conducted by &lt;a href="https://www.linkedin.com/in/pratap-divyansh" rel="noopener noreferrer"&gt;Divyansh Pratap Singh&lt;/a&gt;, who has an extensive experience in API testing and automation. &lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F3fvmxefzi90vp1n6w7ib.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F3fvmxefzi90vp1n6w7ib.png" alt="Speaker information" width="800" height="354"&gt;&lt;/a&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  Agenda of the session:
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;Intro to APIs and Postman .&lt;/li&gt;
&lt;li&gt;Requests and responses.&lt;/li&gt;
&lt;li&gt;Hands-on session.&lt;/li&gt;
&lt;li&gt;Follow-up resources.&lt;/li&gt;
&lt;/ol&gt;

&lt;h4&gt;
  
  
  What's an API ?
&lt;/h4&gt;

&lt;p&gt;Software has become more complex and collaborative over the years. Developers no longer need to create every services from scratch.&lt;br&gt;
Application Programming Interfaces(APIs) allow developers to access data from a service (like Google or twitter) without any kowledge of how the codebase has been implemented.&lt;/p&gt;

&lt;p&gt;&lt;code&gt;APIs allow services to communicate with each other.&lt;/code&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  Types of APIs:
&lt;/h4&gt;

&lt;ul&gt;
&lt;li&gt;Hardware APIs&lt;/li&gt;
&lt;li&gt;Software Library APIs &lt;/li&gt;
&lt;li&gt;Web APIs&lt;/li&gt;
&lt;/ul&gt;




&lt;p&gt;&lt;strong&gt;Request-Response Pattern&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Faqbxjq3y8h8owkj749gg.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Faqbxjq3y8h8owkj749gg.png" alt="A picture showing how client interacts with the server via network" width="740" height="308"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  What is Postman?
&lt;/h4&gt;

&lt;p&gt;Postman is a collaborative API development platform that simplifies creating, using and testing APIs with an interactive UI.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;More than 500,000 organizations &amp;amp; 13 million developers use Postman.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;One of the main reasons for the increased Popularity of the Postman is because of its interface :&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fgx9zbnm7auf6rd8l3kz2.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fgx9zbnm7auf6rd8l3kz2.png" alt="Working APIs: Then vs Now" width="800" height="335"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.postman.com/" rel="noopener noreferrer"&gt;Refer this link&lt;/a&gt; for simply creating your postman account.&lt;/p&gt;




&lt;h3&gt;
  
  
  Making Requests (Interact with the API) :
&lt;/h3&gt;

&lt;p&gt;We were then shown how to send requests to APIs using different HTTP methods, such as GET, POST, PUT, and DELETE.&lt;br&gt;
The 3 ingredients to make a request:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Methods (GET,POST,etc.)&lt;/li&gt;
&lt;li&gt;Address / Endpoint (URL)&lt;/li&gt;
&lt;li&gt;Path&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fkp6dpm2ox6w7i2z1brlp.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fkp6dpm2ox6w7i2z1brlp.png" alt="Requests - Methods and Endpoints " width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h5&gt;
  
  
  The response elements for Receiving Requests are :
&lt;/h5&gt;

&lt;ul&gt;
&lt;li&gt;Status Codes (200 OK , 201 CREATED , 404 NOT FOUND)&lt;/li&gt;
&lt;li&gt;Headers&lt;/li&gt;
&lt;li&gt;Accessing body data&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  Resources
&lt;/h2&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;a href="https://https://learning.postman.com/" rel="noopener noreferrer"&gt;Learning Center &lt;/a&gt;&lt;br&gt;
&lt;a href="https://https://explore.postman.com/" rel="noopener noreferrer"&gt;API Network&lt;/a&gt;&lt;br&gt;
&lt;a href="https://https://community.postman.com/" rel="noopener noreferrer"&gt;Forum &lt;/a&gt;&lt;/p&gt;
&lt;/blockquote&gt;




&lt;p&gt;Attending the Introduction to Postman API session was a great learning experience. We learned about the basics of API with Postman and got hands-on experience with various features of the tool.&lt;/p&gt;

&lt;p&gt;Apart from this, we also got to know about the Postman Student Expert Certification which will help us take Postman skills to the next level and showcase our expertise to the world.&lt;br&gt;
&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Flu4ae712qyz1pee7clr9.jpeg" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Flu4ae712qyz1pee7clr9.jpeg" alt="Postman programs for Students" width="800" height="333"&gt;&lt;/a&gt;&lt;br&gt;
&lt;a href="https://www.postman.com/student-program/" rel="noopener noreferrer"&gt;Click Here&lt;/a&gt; to explore more about Postman Student Programs.&lt;/p&gt;




&lt;p&gt;Feel free to share this article with your peers and do hit a ❤️ if you liked my blog. If you have any query about how to get started with Postman , feel free to ask them in the comment section.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;You can also connect with me on &lt;a href="https://linkedin.com/in/adi-ray" rel="noopener noreferrer"&gt;LinkedIn&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

</description>
      <category>postmanstudent</category>
      <category>postmanapi</category>
      <category>api</category>
      <category>postman</category>
    </item>
  </channel>
</rss>
