├── .gitignore ├── LICENSE ├── hello ├── web scraping e commerce .py ├── web scraping(BeautifulSoup).ipynb └── web scraping.py /.gitignore: -------------------------------------------------------------------------------- 1 | # Byte-compiled / optimized / DLL files 2 | __pycache__/ 3 | *.py[cod] 4 | *$py.class 5 | 6 | # C extensions 7 | *.so 8 | 9 | # Distribution / packaging 10 | .Python 11 | build/ 12 | develop-eggs/ 13 | dist/ 14 | downloads/ 15 | eggs/ 16 | .eggs/ 17 | lib/ 18 | lib64/ 19 | parts/ 20 | sdist/ 21 | var/ 22 | wheels/ 23 | share/python-wheels/ 24 | *.egg-info/ 25 | .installed.cfg 26 | *.egg 27 | MANIFEST 28 | 29 | # PyInstaller 30 | # Usually these files are written by a python script from a template 31 | # before PyInstaller builds the exe, so as to inject date/other infos into it. 32 | *.manifest 33 | *.spec 34 | 35 | # Installer logs 36 | pip-log.txt 37 | pip-delete-this-directory.txt 38 | 39 | # Unit test / coverage reports 40 | htmlcov/ 41 | .tox/ 42 | .nox/ 43 | .coverage 44 | .coverage.* 45 | .cache 46 | nosetests.xml 47 | coverage.xml 48 | *.cover 49 | *.py,cover 50 | .hypothesis/ 51 | .pytest_cache/ 52 | cover/ 53 | 54 | # Translations 55 | *.mo 56 | *.pot 57 | 58 | # Django stuff: 59 | *.log 60 | local_settings.py 61 | db.sqlite3 62 | db.sqlite3-journal 63 | 64 | # Flask stuff: 65 | instance/ 66 | .webassets-cache 67 | 68 | # Scrapy stuff: 69 | .scrapy 70 | 71 | # Sphinx documentation 72 | docs/_build/ 73 | 74 | # PyBuilder 75 | .pybuilder/ 76 | target/ 77 | 78 | # Jupyter Notebook 79 | .ipynb_checkpoints 80 | 81 | # IPython 82 | profile_default/ 83 | ipython_config.py 84 | 85 | # pyenv 86 | # For a library or package, you might want to ignore these files since the code is 87 | # intended to run in multiple environments; otherwise, check them in: 88 | # .python-version 89 | 90 | # pipenv 91 | # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. 92 | # However, in case of collaboration, if having platform-specific dependencies or dependencies 93 | # having no cross-platform support, pipenv may install dependencies that don't work, or not 94 | # install all needed dependencies. 95 | #Pipfile.lock 96 | 97 | # poetry 98 | # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control. 99 | # This is especially recommended for binary packages to ensure reproducibility, and is more 100 | # commonly ignored for libraries. 101 | # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control 102 | #poetry.lock 103 | 104 | # pdm 105 | # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control. 106 | #pdm.lock 107 | # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it 108 | # in version control. 109 | # https://pdm.fming.dev/#use-with-ide 110 | .pdm.toml 111 | 112 | # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm 113 | __pypackages__/ 114 | 115 | # Celery stuff 116 | celerybeat-schedule 117 | celerybeat.pid 118 | 119 | # SageMath parsed files 120 | *.sage.py 121 | 122 | # Environments 123 | .env 124 | .venv 125 | env/ 126 | venv/ 127 | ENV/ 128 | env.bak/ 129 | venv.bak/ 130 | 131 | # Spyder project settings 132 | .spyderproject 133 | .spyproject 134 | 135 | # Rope project settings 136 | .ropeproject 137 | 138 | # mkdocs documentation 139 | /site 140 | 141 | # mypy 142 | .mypy_cache/ 143 | .dmypy.json 144 | dmypy.json 145 | 146 | # Pyre type checker 147 | .pyre/ 148 | 149 | # pytype static type analyzer 150 | .pytype/ 151 | 152 | # Cython debug symbols 153 | cython_debug/ 154 | 155 | # PyCharm 156 | # JetBrains specific template is maintained in a separate JetBrains.gitignore that can 157 | # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore 158 | # and can be added to the global gitignore or merged into this file. For a more nuclear 159 | # option (not recommended) you can uncomment the following to ignore the entire idea folder. 160 | #.idea/ 161 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "[]" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright [yyyy] [name of copyright owner] 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /hello: -------------------------------------------------------------------------------- 1 | print("welcome to powerful language python") -------------------------------------------------------------------------------- /web scraping e commerce .py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # coding: utf-8 3 | 4 | # In[5]: 5 | 6 | 7 | from bs4 import BeautifulSoup 8 | import requests 9 | 10 | 11 | # In[6]: 12 | 13 | 14 | url="https://www.flipkart.com/laptops-store?otracker=nmenu_sub_Electronics_0_Laptops" 15 | 16 | 17 | # In[7]: 18 | 19 | 20 | http=requests.get(url) 21 | 22 | 23 | # In[8]: 24 | 25 | 26 | http.content 27 | 28 | 29 | # In[9]: 30 | 31 | 32 | soup=BeautifulSoup(http.content,"html.parser") 33 | 34 | 35 | # In[10]: 36 | 37 | 38 | soup 39 | 40 | 41 | # In[11]: 42 | 43 | 44 | soup.title 45 | 46 | 47 | # In[12]: 48 | 49 | 50 | soup.p 51 | 52 | 53 | # In[13]: 54 | 55 | 56 | soup.a 57 | 58 | 59 | # In[14]: 60 | 61 | 62 | kkk=soup.find(id="link3") 63 | 64 | 65 | # In[15]: 66 | 67 | 68 | for link in soup.find_all('a'): 69 | print(link.get('href')) 70 | 71 | 72 | # In[16]: 73 | 74 | 75 | soup.find_all('a') 76 | 77 | 78 | # In[17]: 79 | 80 | 81 | print(soup.get_text()) 82 | 83 | 84 | # In[ ]: 85 | 86 | 87 | 88 | 89 | -------------------------------------------------------------------------------- /web scraping(BeautifulSoup).ipynb: -------------------------------------------------------------------------------- 1 | { 2 | "cells": [ 3 | { 4 | "cell_type": "code", 5 | "execution_count": 4, 6 | "id": "62827760", 7 | "metadata": {}, 8 | "outputs": [], 9 | "source": [ 10 | "import requests as re\n", 11 | "from bs4 import BeautifulSoup as BS" 12 | ] 13 | }, 14 | { 15 | "cell_type": "code", 16 | "execution_count": 2, 17 | "id": "f19368b4", 18 | "metadata": {}, 19 | "outputs": [], 20 | "source": [ 21 | "url=re.get(\"https://www.flipkart.com/mobile-phones-store?fm=neo%2Fmerchandising&iid=M_1a6ba10c-ece6-460d-8c3f-955b8a681240_1_372UD5BXDFYS_MC.ZRQ4DKH28K8J&otracker=hp_rich_navigation_2_1.navigationCard.RICH_NAVIGATION_Mobiles_ZRQ4DKH28K8J&otracker1=hp_rich_navigation_PINNED_neo%2Fmerchandising_NA_NAV_EXPANDABLE_navigationCard_cc_2_L0_view-all&cid=ZRQ4DKH28K8J\")" 22 | ] 23 | }, 24 | { 25 | "cell_type": "code", 26 | "execution_count": 3, 27 | "id": "70e6eb83", 28 | "metadata": {}, 29 | "outputs": [ 30 | { 31 | "data": { 32 | "text/plain": [ 33 | "" 34 | ] 35 | }, 36 | "execution_count": 3, 37 | "metadata": {}, 38 | "output_type": "execute_result" 39 | } 40 | ], 41 | "source": [ 42 | "url" 43 | ] 44 | }, 45 | { 46 | "cell_type": "code", 47 | "execution_count": 5, 48 | "id": "3e702731", 49 | "metadata": {}, 50 | "outputs": [], 51 | "source": [ 52 | "soup=BS(url.content,'html.parser')" 53 | ] 54 | }, 55 | { 56 | "cell_type": "code", 57 | "execution_count": 6, 58 | "id": "3c65509b", 59 | "metadata": {}, 60 | "outputs": [ 61 | { 62 | "data": { 63 | "text/plain": [ 64 | "\n", 65 | " Mobile Phones Online at Best Prices in India

Mobile Phones Big Year End Sale

Mobile phones are no more merely a part of our lives. Whether it's to stay connected with friends and family or to keep abreast of important developments around the world, mobiles are no longer for sending a text or making a call. From budget to state-of-the-art smartphones; indigenous names to global big-wigs - a whole universe of mobiles await you on Flipkart. Whether you’re looking for waterdrop notch screens, a high screen to body ratio, AI-powered sensational cameras, high storage capacity, blazing quick processing engines or reflective glass designs, rest assured you won’t have to venture anywhere else for your smartphone needs. The information you are reading has been last updated on 18-Dec-23. 

iPhone 14 | iPhone 15 | iPhone 15 PlusOPPO Reno 8 Pro 5G | OPPO Reno7 5G | OPPO Find N2 Flip | Infinix Smart 7 HD | Pixel 7a | Moto Edge 40 | POCO C55

\"YES-Intrigue-Header\"\"YES-Intrigue-Header\"
\"a\"\"a\"
\"A\"\"A\"
\"YES23-Sale-Of-The-Day-Header\"\"YES23-Sale-Of-The-Day-Header\"
\"a\"\"a\"
\"YES-Just-Launched-Header\"\"YES-Just-Launched-Header\"
\"a\"\"a\"
\"YES-upcoming-sale\"\"YES-upcoming-sale\"
\"A\"\"A\"
\"YES23-Upcoming-Launch-Header\"\"YES23-Upcoming-Launch-Header\"
\"A\"\"A\"
\"d\"\"d\"
\"A\"\"A\"
\"y\"\"y\"
\"a\"\"a\"
\"A\"\"A\"
\"A\"\"A\"
\"fg\"\"fg\"
\"Samsung\"Samsung
\"iPhone\"iPhone
\"a\"\"a\"
\"A\"\"A\"
\"A\"\"A\"
\"A\"\"A\"
\"A\"\"A\"
\"a\"\"a\"
\"A\"\"A\"
\"Vivo\"Vivo
\"A\"\"A\"
\"v\"\"v\"
\"a\"\"a\"
\"xdf\"\"xdf\"
\"D\"\"D\"
\"Moto\"Moto
\"ff\"\"ff\"
\"A\"\"A\"
\"r\"\"r\"
\"v\"\"v\"
\"Samsung\"Samsung
\"fgh\"\"fgh\"
\"x\"\"x\"
\"Infinix\"Infinix
\"rdr\"\"rdr\"
\"erer\"\"erer\"
\"Poco\"Poco
\"Infinix\"Infinix
\n", 88 | "

Mobile Phones- Buy mobile phones online at best prices in India

\n", 89 | "
\n", 90 | "
Mobile phone, also called a cell phone owing to it using a cellular network architecture, have seen a tremendous growth in terms of technology and size over the years. On Flipkart, we have a diverse collection of iOS and Android mobiles ranging from basic mobiles, low-range and mid-range phones to very high-end smartphones that\n", 91 | "

\n", 92 | "Realme 11 5G  | Realme 11X 5G |\n", 93 | "\n", 95 | " Realme 11 ProPOCO M6 Pro | vivo T2 Pro 5G | Google Pixel 8 | Google Pixel 8 Pro | POCO X3 Pro | Redmi 12 | Vivo T2X 5GSamsung Galaxy F14 | Vivo T2 5G | Infinix Hot 30i
\n", 96 | " \n", 97 | "

iPhone 15

\n", 98 | "The iPhone 15 is one of the best phones you can buy for yourself or a loved one. Backed by unrivaled performance, superb picture quality, outstanding audio, and a brilliant display, it is powerful and classy. The aluminum enclosure is not only sleek to look at but is also durable enough to protect the phone from minor drops and scratches. The phone has an OLED display that displays images, videos, and media in high resolution and brilliant colors. The 48 MP camera of this phone captures high-quality images and videos, thus preserving important moments for a long time. You can keep your memories close to you for a long time by storing them in the 128 GB of ROM or on the extra storage you can access through iCloud. The phone is powered by an A16 bionic processor, which has the computational power to easily manage a lot of jobs and operations at once. The phone is USB Type-C compliant which makes it easy to charge the phone as well as transfer data between devices. You can buy the Apple iPhone online from the comfort of your home. Depending on your payment method, you can avail of special iPhone offers. Browse online to get the best iPhone price and have it delivered straight to your home. 
\n", 99 | " \n", 100 | "

Samsung Galaxy Z Flip 5

\n", 101 | "Explore the Samsung Galaxy Z Flip 5 online, which introducеs you to a rеmarkablе dеvicе packed with standout features. Imaginе having a powerful phonе with 8 GB RAM and a suitable storagе spacе, еnsuring smooth pеrformancе and amplе room for all your apps, photos, and vidеos. It's likе having a pockеt-sizеd powеrhousе rеady for anything. Thе phonе boasts a slееk 17.02 cm (6.7) display, providing a vibrant and immеrsivе visual еxpеriеncе. Enjoy your favouritе moviеs, gamеs, or social mеdia on a scrееn that's both compact and еxpansivе and can fit right in your pockеt. Capturе your momеnts in stunning dеtail with thе 12 MP dual rеar camеras for beautiful selfies. Whether it's a landscapе or a mеmorablе selfie, thе Samsung Z Flip 5's camera systеm еnsurеs your photos look imprеssivе. With a rеliablе 3700 mAh battеry, thе phonе kееps up with your busy day, еnsuring you stay connеctеd and еntеrtainеd without worrying about running out of powеr. Powеrеd by thе Snapdragon 8 Gеn 2 Procеssor, thе Galaxy Z Flip 5 еnsurеs spееdy pеrformancе, making multitasking and navigating through apps a seamless еxpеriеncе. So, buy the Samsung Galaxy Z Flip 5 online and get it delivered to your doorstep with just a few clicks and swipes.
\n", 102 | " \n", 103 | "

Samsung Galaxy Z Fold 5

\n", 104 | "Get ready to unfold a new chapter in smartphone technology with the Samsung Galaxy Z Fold 5. Crafted with precision, the device exudes sophistication with its sleek design and premium materials. Whether you're watching your favourite movies, multitasking with multiple apps, or diving into the latest mobile games, the foldable display effortlessly adapts to your needs. The immersive visuals are complemented by a buttery-smooth 120 Hz refresh rate, ensuring every swipe and scroll is as fluid as it is mesmerising. Furthermore, the device boasts a robust yet lightweight frame that effortlessly folds and unfolds, making it a suitable companion for those who demand versatility without compromising on style. The Gorilla Glass Victus on the cover and display ensures durability, while the sleek aluminium frame adds a touch of sophistication. The Multi-active Window feature allows you to run multiple apps simultaneously, transforming your device into a powerful productivity tool. Be it working on a presentation, responding to emails, or conducting a video call, the Samsung Z Fold 5 adapts to your workflow, making every task a breeze. So shop online now and unfold a world of infinite possibilities to elevate your mobile experience like never before!
\n", 105 | " \n", 106 | "

iPhone 14

\n", 107 | "Enjoy the comfort of a streamlined user interface and faster connectivity with the iPhone 14. Equipped with a hexacore processor, this device can run smoothly without frequent glitches and lagging. Therefore, whether you are using the device for work-related purposes or leisurely activities, it can come in handy for you. The iPhone 14 offers 5G connectivity support, ensuring that you can have faster internet. This way, whether you are attending a virtual conference or playing an online game, you can have an interruption-free experience. With an adequate contrast ratio and brightness, the Super Retina XDR display of the device also ensures you have an immersive experience when you are consuming multimedia content. Moreover, this iPhone 14 also consists of a 5-core GPU thanks to its A15 bionic chip. Therefore, you can have a seamless experience when multitasking on this device. Offering a 12 MP dual back camera set-up and 4K recording support, this iPhone model can be an ideal choice for photography and videography enthusiasts too. You can know more about crucial details like the iPhone 14 price and other features by going through the product description of the device. With a few simple swipes and clicks, you can buy the iPhone 14 online from the comfort of your home.
\n", 108 | " \n", 109 | "

MOTOROLA Edge 40

\n", 110 | "Bring home unbeatable UI and an immersive experience with the Motorola Edge 40 smartphone. Shop for the Motorola Edge 40 online and check out its various features such as its 8 GB of RAM and up to 256 GB of storage space. This is in turn backed by a MediaTek Dimensity 8020 processor that is intelligently designed to be able to handle multiple operations and processing threads simultaneously. This ensures that you can easily switch between apps, play games, stream media, and more without facing significant challenges. The mobile features a 16.64 cm (6.55) Full HD+ display to ensure that you capture and view images on your smartphone with the utmost clarity. The phone features an IP68-rated waterproof design as well as a hermetic seal to protect your phone from dust, water, and other pollutants. To top it all off, this phone features a 50 MP camera along with a 13 MP ultra-wide camera to let you click photos in a fashion of your choice. Additionally, it also features a 32 MP selfie camera to ensure that you don't miss out on any memories during your daily adventures. You can check and compare the Motorola Edge 40’s prices online and have the phone delivered to you in the comfort of your home. 
\n", 111 | " \n", 112 | "

Nothing Phone

\n", 113 | "Upgrade to a seamless mobile user experience with the stunning Nothing Phone (1). Powered by Android 12, this device can come in handy for both work as well as leisure. Equipped with an Octa-core Qualcomm Snapdragon 778G+ processor, this phone allows you to multitask and manage your media with ease. Moreover, you can enjoy online gaming or streaming experiences without any significant latency. The device is also equipped with an intuitive Glyph Interface design that helps you to operate the device with ease and enjoy streamlined interconnectivity features. The 17 cm screen and a full HD+ display are also pivotal in offering you an immersive feeling if you watch a film or a series on this device. Moreover, you do not have to worry about running out of space when you are using this device. You can avail of Nothing Phone online with a substantial 128 GB internal storage capacity. The phone also has 8 GB RAM, so you can rest assured about its optimal output capacity without glitches and lags. With its elegant design and 5G connectivity compatibility, this Nothing Phone (1) can simultaneously cater to your requirements for both style and substance. So, check out Nothing Phone prices, and features, and place your order online without any hesitation.
\n", 114 | " \n", 115 | "

\n", 116 | "\n", 118 | "Pixel 7a

\n", 119 | "Make the Google Pixel 7a your first smartphone or your upgrade from your old model. This phone can capture and immortalise your precious moments, provide a calling experience with minimal issues, keep your information secure, and do more. The Tensor G2 processor ensures that these tasks are completed with minimal lag. The Pixel smartphone also makes sure that hours of screen time does not drain your battery quickly. The 4300 mAh battery offers almost 24 hours of battery life, while the extreme battery saver mode can give you nearly three days of battery life. Additionally, you can also quickly charge the battery thanks to Fast Charge when needed. The long battery life helps you click photographs and videos using the 64 MP main camera and 13 MP ultra-wide camera endlessly. You can also click a selfie with the 13 MP front camera, which has a 95-degree wide field of view. Check the Google Pixel 7a price and pick from colours like Charcoal, Sea, and Snow. Shop for the Google Pixel 7a (in) India model, which has a scratch-resistant Corning Gorilla Glass 3 cover, an IP67 rating, and a fingerprint-resistant coating that can keep the aesthetics of the Pixel 7a unharmed. Explore various other features of the smartphone and purchase it to experience the Google interface.\n", 120 | "\n", 121 | "

\n", 122 | "

Oppo Find N2 Flip

\n", 123 | "

Get the Oppo Find N2 Flip mobile phone to bring home a whole range of exciting features. Fitted with a Flexion Hinge the Oppo Find N2 folds in half to let you view calls, notifications, reminders, and more on a 8.28 cm (3.26) screen. When not using the cover screen, this phone uses its 17.27 cm (6.8) Full HD display for visuals. Made using high-grade steel and a polymer, the hinge can be folded around 400,000 times without wearing out. The phone is powered by a 4300 mAh battery that offers backup for up to 20 hours of video playback, 6 hours of video calling, and around 16 hours of internet browsing. This powerful battery can be charged to up to 50% in just 23 minutes thanks to the 44 W SUPERVOOC Flash Charge. All of these features are tied together by the MediaTek Dimensity 9000+ processor that is more than able to handle multiple operations simultaneously. The phone runs on ColorOS that compliments the aesthetic design of the phone and makes the UI clean and intuitive. Get your hands on the Oppo Find N2 Flip online and have it safely delivered to your door.
\n", 124 | " 

\n", 125 | "
\n", 126 | "

Samsung Galaxy S23 Ultra 

\n", 127 | "

The Samsung Galaxy S23 Ultra is another feather in Samsung's illustrious cap of high-performance smartphones. The phone is loaded with various features to offer its users a highly enjoyable and memorable experience. The S23 Ultra is powered by a Snapdragon 8 Gen 2 mobile processor to ensure optimized and seamless performance when undertaking even the most challenging processes. It is programmed to be able to handle multiple operational threads without causing the battery to drain quickly. This phone comes with a Dynamic AMOLED 2X screen with a 120 Hz refresh rate to ensure that you see all the details clearly irrespective of whether you have the brightness at full or dimmed. The phone uses One UI which lets you customize every detail of the phone—be it the lockscreen, themes, or widgets with ease. Additionally, the phone is powered by a 5000 mAh battery to enable you to watch movies, play games, and do much more all through the day. To avoid making a rushed decision, you can check and compare the Samsung Galaxy S23 Ultra’s prices and reviews online before ordering.  

\n", 128 | "


\n", 129 | "
\n", 130 | "iPhone 13

\n", 131 | "

The 15.4 cm (6.1) display of the iPhone 13 provides a magnificent view of anything you watch on your smartphone. The all-screen OLED display of the phone features rounded corners within a standard rectangular screen. This powerful smartphone features an excellent battery life that can provide you with up to 19 hours of video playback and 75 hours of audio playback. This impressive feature can ensure you keep yourself entertained even when you are on the go. The inbuilt lithium-ion battery supports fast charging and wireless charging so that you stay on top of your tasks at all times. The iOS 15 operating system present in this smartphone packs in powerful and secure features to make your phone personal with enhanced privacy protection. The  iPhone 13 comes with an array of built-in apps to help you with your day-to-day tasks. You can also install free apps from the Apple Store to personalise your phone as per your needs. The phone can support dual SIMs, including a nano-SIM and an eSIM. The built-in microphones and stereo speakers enable you to carry out your calls, video conferences, and more with enhanced voice clarity. Explore all the different features offered by this phone and shop for iPhone 13 online. 

\n", 132 | "
\n", 133 | "


\n", 134 | "POCO X3 Pro

\n", 135 | "With the POCO X3 Pro smartphone, you can experience a fast, swift, and sustained phone performance. The smartphone has a powerful quad-camera setup, using which you can click memorable photographs, capturing the gist of your special occasions. The phone offers an efficient 48 MP primary camera, combined with a depth sensor, macro lens, and an ultra wide-angle lens to deliver stunning pictures and cinematic videos.employ state-of-the art technology. These mobiles are priced anywhere between Rs 500 to Rs 100,000. Top mobile brands like Samsung, Oppo, Vivo, Apple and many more are available here under discounts. Apart with these, the latest trend in network connectivity, the 4G network is also made accessible in 4G mobiles from top brands.
\n", 136 | " 
\n", 137 | "


\n", 138 | "Mobile Brands:

\n", 139 | "\n", 140 | "\n", 141 | "\n", 142 | "\n", 143 | "\n", 144 | "\n", 145 | "\n", 146 | "\n", 147 | "\n", 148 | "\n", 149 | "\n", 150 | "\n", 151 | "\n", 152 | "\n", 153 | "\n", 154 | "\n", 155 | "\n", 156 | "\n", 157 | "\n", 158 | "\n", 159 | "\n", 160 | "\n", 161 | "\n", 162 | "\n", 163 | "\n", 164 | "\n", 165 | "\n", 166 | "\n", 167 | "\n", 168 | "\n", 169 | "\n", 170 | "
Asus MobileRealme MobileiPhoneLenovo MobileGoogle Pixel Mobile
Poco MobileHTC MobileMi MobileMotorola MobileLG Mobile
Nokia MobileIqoo MobilePanasonic MobileSamsung MobileMicromax Mobile
Oneplus MobileGionee MobileVivo MobileNothing PhoneOppo Mobile
\n", 171 | "
    \n", 172 | "
\n", 173 | "

Mobiles By Screen Sizes:

\n", 174 | "\n", 175 | "\n", 176 | "\n", 177 | "\n", 178 | "\n", 179 | "\n", 180 | "\n", 181 | "\n", 182 | "\n", 183 | "\n", 184 | "\n", 185 | "\n", 186 | "\n", 187 | "\n", 188 | "\n", 189 | "
4 Inch Mobiles5.5 inch Mobiles4.5 Inch Mobiles5.2 Inch Mobiles
3.5 inch Mobiles6 inch Mobiles3 inch Mobiles5 inch Mobiles
\n", 190 | "

Mobiles By RAM:

\n", 191 | "\n", 192 | "\n", 193 | "\n", 194 | "\n", 195 | "\n", 196 | "\n", 197 | "\n", 198 | "\n", 199 | "\n", 200 | "\n", 201 | "\n", 202 | "\n", 203 | "
3 GB RAM Mobiles2 GB RAM Mobiles4 GB RAM Mobiles1 GB RAM Mobiles
6 GB RAM Mobiles
\n", 204 | " \n", 205 | "\n", 206 | "

Appple iPhones

\n", 207 | "\n", 208 | "\n", 209 | "\n", 210 | "\n", 211 | "\n", 212 | "\n", 213 | "\n", 214 | "\n", 215 | "\n", 216 | "\n", 217 | "\n", 218 | "\n", 219 | "\n", 220 | "\n", 221 | "\n", 222 | "\n", 223 | "\n", 224 | "\n", 225 | "\n", 226 | "\n", 227 | "\n", 228 | "\n", 229 | "\n", 230 | "\n", 231 | "\n", 232 | "\n", 233 | "\n", 234 | "
iPhone 15iPhone 15 PlusiPhone 15 ProiPhone 15 Pro Max
iPhone 14iPhone 14 PlusiPhone 14 ProiPhone 14 Pro Max
iPhone 13iPhone 13 MiniiPhone 13 ProiPhone 13 Pro Max
iPhone 12iPhone 12 MiniiPhone 12 ProiPhone 12 Pro Max
\n", 235 | " \n", 236 | "\n", 237 | "

FAQ

\n", 238 | "
\n", 239 | "Q. Which are the best mobile phone brands available in India?
\n", 240 | "A. Samsung, iPhone, Redmi, Realme, and POCO are some of the best mobile phone brands available in the Indian market.
\n", 241 | "
\n", 242 | "Q. What is the minimum RAM capacity needed for a smartphone?
\n", 243 | "A. 4 GB of RAM is considered the bare minimum for a smartphone
\n", 244 | "
\n", 245 | "Q.What influences the speed of a mobile phone?
\n", 246 | "A. The number of processor cores and the higher clock speed of the processor cores can influence the speed of the mobile phone.
\n", 247 | "
\n", 248 | "Q. What are the best feature phones available in India?
\n", 249 | "A. Nokia 6310, Nokia 105 SS 2021, Samsung Guru Music 2, and Samsung Metro 350 are some of the best feature phones available in India.
\n", 250 | "
\n", 251 | "Q  How much storage capacity can I expect in a mobile phone?
\n", 252 | "A. Most smartphones come with an inbuilt storage capacity of 32 GB, 64 GB, and 128 GB. A few high-end models also feature 256 GB or 512 GB of storage capacity.\n", 253 | "\n", 254 | "

Question and Answers

  1. Q.What are the different display options available on smartphones?
    A.Capacitive touchscreen LCD, IPS-LCD, AMOLED, OLED, and Super AMOLED are the different display types available in smart mobile phones.
  2. Q.What are the best display resolutions available on smartphones?
    A.You can find smartphones with HD, FHD, and HD+ resolutions. The higher the display resolution, the sharper the displayed content will appear on the screen.
  3. Q.What are the best quad-camera mobile phones available in India?
    A.Redmi Note 10S, Samsung Galaxy M32, POCO X3 Pro, vivo X70 Pro, and realme 8 are some of the best mobile phones with a quad-camera setup.
  4. Q.What is the benefit of fast charging in mobile phones?
    A.Fast charging enables the mobile phone to charge faster than the current charging standard, and it can significantly reduce the time you would typically require to charge your phone.
  5. Q.What are some important features to consider when buying a mobile phone?
    A.Before purchasing a mobile phone, you must ensure that you consider features and specifications such as the battery capacity, screen size, display type, camera quality, operating system, and SIM compatibility to ensure you purchase a variant that meets all your requirements.
  6. Q.What are the latest mobile models in 2023?
    A.iPhone 15, Redmi Note 12 4G, Infinix Hot 30i, Moto G13, POCO C51, vivo T2 5G, vivo X90 Pro, Infinix Smart 7 HD, Pixel 7a, POCO F5, Moto Edge 40, Samsung Galaxy F54
Mail Us:

Flipkart Internet Private Limited,

\n", 255 | "

Buildings Alyssa, Begonia &

\n", 256 | "

Clove Embassy Tech Village,

\n", 257 | "

Outer Ring Road, Devarabeesanahalli Village,

\n", 258 | "

Bengaluru, 560103,

\n", 259 | "

Karnataka, India

\n", 260 | "
Registered Office Address:

Flipkart Internet Private Limited,

\n", 261 | "

Buildings Alyssa, Begonia &

\n", 262 | "

Clove Embassy Tech Village,

\n", 263 | "

Outer Ring Road, Devarabeesanahalli Village,

\n", 264 | "

Bengaluru, 560103,

\n", 265 | "

Karnataka, India

\n", 266 | "

CIN : U51109KA2012PTC066107

\n", 267 | "

Telephone: 044-45614700

\n", 268 | "
Back to top
\n", 282 | " " 326 | ] 327 | }, 328 | "execution_count": 6, 329 | "metadata": {}, 330 | "output_type": "execute_result" 331 | } 332 | ], 333 | "source": [ 334 | "soup" 335 | ] 336 | }, 337 | { 338 | "cell_type": "code", 339 | "execution_count": 7, 340 | "id": "e1e8c6e9", 341 | "metadata": {}, 342 | "outputs": [ 343 | { 344 | "data": { 345 | "text/plain": [ 346 | "Mobile Phones Online at Best Prices in India" 347 | ] 348 | }, 349 | "execution_count": 7, 350 | "metadata": {}, 351 | "output_type": "execute_result" 352 | } 353 | ], 354 | "source": [ 355 | "soup.title" 356 | ] 357 | }, 358 | { 359 | "cell_type": "code", 360 | "execution_count": 8, 361 | "id": "71316fd8", 362 | "metadata": {}, 363 | "outputs": [ 364 | { 365 | "data": { 366 | "text/plain": [ 367 | "'title'" 368 | ] 369 | }, 370 | "execution_count": 8, 371 | "metadata": {}, 372 | "output_type": "execute_result" 373 | } 374 | ], 375 | "source": [ 376 | "soup.title.name" 377 | ] 378 | }, 379 | { 380 | "cell_type": "code", 381 | "execution_count": 9, 382 | "id": "ad702817", 383 | "metadata": {}, 384 | "outputs": [ 385 | { 386 | "data": { 387 | "text/plain": [ 388 | "'head'" 389 | ] 390 | }, 391 | "execution_count": 9, 392 | "metadata": {}, 393 | "output_type": "execute_result" 394 | } 395 | ], 396 | "source": [ 397 | "soup.title.parent.name" 398 | ] 399 | }, 400 | { 401 | "cell_type": "code", 402 | "execution_count": 10, 403 | "id": "619f016c", 404 | "metadata": {}, 405 | "outputs": [ 406 | { 407 | "data": { 408 | "text/plain": [ 409 | "

Mobile phones are no more merely a part of our lives. Whether it's to stay connected with friends and family or to keep abreast of important developments around the world, mobiles are no longer for sending a text or making a call. From budget to state-of-the-art smartphones; indigenous names to global big-wigs - a whole universe of mobiles await you on Flipkart. Whether you’re looking for waterdrop notch screens, a high screen to body ratio, AI-powered sensational cameras, high storage capacity, blazing quick processing engines or reflective glass designs, rest assured you won’t have to venture anywhere else for your smartphone needs. The information you are reading has been last updated on 18-Dec-23. 

" 410 | ] 411 | }, 412 | "execution_count": 10, 413 | "metadata": {}, 414 | "output_type": "execute_result" 415 | } 416 | ], 417 | "source": [ 418 | "soup.p" 419 | ] 420 | }, 421 | { 422 | "cell_type": "code", 423 | "execution_count": 15, 424 | "id": "8e5b933f", 425 | "metadata": {}, 426 | "outputs": [ 427 | { 428 | "data": { 429 | "text/plain": [ 430 | "\"Flipkart\"" 431 | ] 432 | }, 433 | "execution_count": 15, 434 | "metadata": {}, 435 | "output_type": "execute_result" 436 | } 437 | ], 438 | "source": [ 439 | "soup.a" 440 | ] 441 | }, 442 | { 443 | "cell_type": "code", 444 | "execution_count": 16, 445 | "id": "2f9903f9", 446 | "metadata": {}, 447 | "outputs": [ 448 | { 449 | "data": { 450 | "text/plain": [ 451 | "[\"Flipkart\",\n", 452 | " Explore Plus,\n", 453 | " Login,\n", 454 | " Become a Seller,\n", 455 | " Cart,\n", 456 | " iPhone 14,\n", 457 | " iPhone 15,\n", 458 | " iPhone 15 Plus,\n", 459 | " OPPO Reno 8 Pro 5G,\n", 460 | " OPPO Reno7 5G,\n", 461 | " OPPO Find N2 Flip,\n", 462 | " Infinix Smart 7 HD,\n", 463 | " Pixel 7a,\n", 464 | " Moto Edge 40,\n", 465 | " POCO C55,\n", 466 | "
\"A\"\"A\"
,\n", 467 | "
\"a\"\"a\"
,\n", 468 | "
\"a\"\"a\"
,\n", 469 | "
\"A\"\"A\"
,\n", 470 | "
\"A\"\"A\"
,\n", 471 | "
\"A\"\"A\"
,\n", 472 | "
\"y\"\"y\"
,\n", 473 | "
\"a\"\"a\"
,\n", 474 | "
\"A\"\"A\"
,\n", 475 | "
\"A\"\"A\"
,\n", 476 | "
\"fg\"\"fg\"
,\n", 477 | "
\"Samsung\"Samsung
,\n", 478 | "
\"iPhone\"iPhone
,\n", 479 | "
\"a\"\"a\"
,\n", 480 | "
\"A\"\"A\"
,\n", 481 | "
\"A\"\"A\"
,\n", 482 | "
\"a\"\"a\"
,\n", 483 | "
\"A\"\"A\"
,\n", 484 | "
\"Vivo\"Vivo
,\n", 485 | "
\"A\"\"A\"
,\n", 486 | "
\"a\"\"a\"
,\n", 487 | "
\"xdf\"\"xdf\"
,\n", 488 | "
\"D\"\"D\"
,\n", 489 | "
\"Moto\"Moto
,\n", 490 | "
\"ff\"\"ff\"
,\n", 491 | "
\"A\"\"A\"
,\n", 492 | "
\"r\"\"r\"
,\n", 493 | "
\"v\"\"v\"
,\n", 494 | "
\"Samsung\"Samsung
,\n", 495 | "
\"x\"\"x\"
,\n", 496 | "
\"Infinix\"Infinix
,\n", 497 | "
\"rdr\"\"rdr\"
,\n", 498 | "
\"erer\"\"erer\"
,\n", 499 | "
\"Poco\"Poco
,\n", 500 | "
\"Infinix\"Infinix
,\n", 501 | " Realme 11 5G,\n", 502 | " Realme 11X 5G,\n", 503 | " Realme 11 Pro,\n", 504 | " POCO M6 Pro,\n", 505 | " vivo T2 Pro 5G,\n", 506 | " Google Pixel 8,\n", 507 | " Google Pixel 8 Pro,\n", 508 | " POCO X3 Pro,\n", 509 | " Redmi 12,\n", 510 | " Vivo T2X 5G,\n", 511 | " Samsung Galaxy F14,\n", 512 | " Vivo T2 5G,\n", 513 | " Infinix Hot 30i,\n", 514 | " iPhone 15,\n", 515 | " Samsung Z Flip 5,\n", 516 | " Samsung Z Fold 5,\n", 517 | " iPhone 14 offers,\n", 518 | " Motorola Edge 40,\n", 519 | " Nothing Phone (1),\n", 520 | " Pixel 7a,\n", 521 | " iPhone 13,\n", 522 | " POCO X3 Pro,\n", 523 | " Asus Mobile,\n", 524 | " Realme Mobile,\n", 525 | " iPhone,\n", 526 | " Lenovo Mobile,\n", 527 | " Google Pixel Mobile,\n", 528 | " Poco Mobile,\n", 529 | " HTC Mobile,\n", 530 | " Mi Mobile,\n", 531 | " Motorola Mobile,\n", 532 | " LG Mobile,\n", 533 | " Nokia Mobile,\n", 534 | " Iqoo Mobile,\n", 535 | " Panasonic Mobile,\n", 536 | " Samsung Mobile,\n", 537 | " Micromax Mobile,\n", 538 | " Oneplus Mobile,\n", 539 | " Gionee Mobile,\n", 540 | " Vivo Mobile,\n", 541 | " Nothing Phone,\n", 542 | " Oppo Mobile,\n", 543 | " 4 Inch Mobiles,\n", 544 | " 5.5 inch Mobiles,\n", 545 | " 4.5 Inch Mobiles,\n", 546 | " 5.2 Inch Mobiles,\n", 547 | " 3.5 inch Mobiles,\n", 548 | " 6 inch Mobiles,\n", 549 | " 3 inch Mobiles,\n", 550 | " 5 inch Mobiles,\n", 551 | " 3 GB RAM Mobiles,\n", 552 | " 2 GB RAM Mobiles,\n", 553 | " 4 GB RAM Mobiles,\n", 554 | " 1 GB RAM Mobiles,\n", 555 | " 6 GB RAM Mobiles,\n", 556 | " iPhone 15,\n", 557 | " iPhone 15 Plus,\n", 558 | " iPhone 15 Pro,\n", 559 | " iPhone 15 Pro Max,\n", 560 | " iPhone 14,\n", 561 | " iPhone 14 Plus,\n", 562 | " iPhone 14 Pro,\n", 563 | " iPhone 14 Pro Max,\n", 564 | " iPhone 13,\n", 565 | " iPhone 13 Mini,\n", 566 | " iPhone 13 Pro,\n", 567 | " iPhone 13 Pro Max,\n", 568 | " iPhone 12,\n", 569 | " iPhone 12 Mini,\n", 570 | " iPhone 12 Pro,\n", 571 | " iPhone 12 Pro Max,\n", 572 | " Contact Us,\n", 573 | " About Us,\n", 574 | " Careers,\n", 575 | " Flipkart Stories,\n", 576 | " Press,\n", 577 | " Flipkart Wholesale,\n", 578 | " Cleartrip,\n", 579 | " Corporate Information,\n", 580 | " Payments,\n", 581 | " Shipping,\n", 582 | " Cancellation & Returns,\n", 583 | " FAQ,\n", 584 | " Report Infringement,\n", 585 | " Cancellation & Returns,\n", 586 | " Terms Of Use,\n", 587 | " Security,\n", 588 | " Privacy,\n", 589 | " Sitemap,\n", 590 | " Grievance Redressal,\n", 591 | " EPR Compliance,\n", 592 | " Facebook,\n", 593 | " Twitter,\n", 594 | " YouTube,\n", 595 | " 044-45614700,\n", 596 | " Become a Seller,\n", 597 | " Advertise,\n", 598 | " Gift Cards,\n", 599 | " Help Center]" 600 | ] 601 | }, 602 | "execution_count": 16, 603 | "metadata": {}, 604 | "output_type": "execute_result" 605 | } 606 | ], 607 | "source": [ 608 | "soup.find_all('a')" 609 | ] 610 | }, 611 | { 612 | "cell_type": "code", 613 | "execution_count": 18, 614 | "id": "24964d9a", 615 | "metadata": {}, 616 | "outputs": [], 617 | "source": [ 618 | "kk=soup.find(id='link3')\n" 619 | ] 620 | }, 621 | { 622 | "cell_type": "code", 623 | "execution_count": 20, 624 | "id": "4fd3323b", 625 | "metadata": {}, 626 | "outputs": [ 627 | { 628 | "name": "stdout", 629 | "output_type": "stream", 630 | "text": [ 631 | "/\n", 632 | "/plus\n", 633 | "/account/login?ret=/mobile-phones-store%3Ffm%3Dneo%252Fmerchandising%26iid%3DM_1a6ba10c-ece6-460d-8c3f-955b8a681240_1_372UD5BXDFYS_MC.ZRQ4DKH28K8J%26otracker%3Dhp_rich_navigation_2_1.navigationCard.RICH_NAVIGATION_Mobiles_ZRQ4DKH28K8J%26otracker1%3Dhp_rich_navigation_PINNED_neo%252Fmerchandising_NA_NAV_EXPANDABLE_navigationCard_cc_2_L0_view-all%26cid%3DZRQ4DKH28K8J\n", 634 | "https://seller.flipkart.com/sell-online/?utm_source=fkwebsite&utm_medium=websitedirect\n", 635 | "/viewcart?exploreMode=true&preference=FLIPKART\n", 636 | "/apple-iphone-14-blue-128-gb/p/itmdb77f40da6b6d\n", 637 | "/apple-iphone-15-black-128-gb/p/itm6ac6485515ae4\n", 638 | "/apple-iphone-15-plus-blue-128-gb/p/itm4022c14383050\n", 639 | "/oppo-reno8-pro-5g-glazed-green-256-gb/p/itm30b1eb50ca71f\n", 640 | "/oppo-reno7-5g-starry-black-256-gb/p/itm6110d8481be93\n", 641 | "/oppo-find-n2-flip-moonlit-purple-256-gb/p/itm8cfed9af48231\n", 642 | "/infinix-smart-7-hd-green-apple-64-gb/p/itmae6d492c1083e\n", 643 | "/google-pixel-7a-sea-128-gb/p/itmb4d7b100b1a4d\n", 644 | "/motorola-edge-40-jet-black-256-gb/p/itmbe5b18bf1f229\n", 645 | "/poco-c55-cool-blue-64-gb/p/itm166c52f5d5dc0\n", 646 | "/the-big-billion-days-2023-premium-smartphones-1kjh45-store?param=74847&otracker=clp_bannerads_1_3.bannerAdCard.BANNERADS_A_mobile-phones-store_SXIDRATK3JW8\n", 647 | "/poco-c65-pastel-blue-128-gb/p/itm1586ff4fb1c2b?pid=MOBGVVTXZESSZY4W¶m=19940&otracker=clp_bannerads_1_5.bannerAdCard.BANNERADS_a_mobile-phones-store_JWYKQ317RVCL\n", 648 | "/tyy/4io/~cs-i8f0dahyxs/pr?sid=tyy%2C4io&collection-tab-name=Infinix+Smart+8+HD¶m=1674&otracker=clp_bannerads_1_9.bannerAdCard.BANNERADS_a_mobile-phones-store_V7GO2A4QTXT2\n", 649 | "/realme-c67-5g-sunny-oasis-128-gb/p/itm1e65b288f166f?pid=MOBGVVTESKUVZ8DG¶m=287287&otracker=clp_bannerads_1_11.bannerAdCard.BANNERADS_A_mobile-phones-store_6DLWDBQ7B1CL\n", 650 | "/redmi-note-13-pro-plus-coming-soon-store?param=978997&otracker=clp_bannerads_1_13.bannerAdCard.BANNERADS_A_mobile-phones-store_X8ZG8GJTKJ40\n", 651 | "/tyy/4io/~cs-26eqefy3tr/pr?sid=tyy,4io&collection-tab-name=Moto+Edge+40+Neo&PARAM=1287&otracker=clp_banner_1_15.bannerX3.BANNER_mobile-phones-store_OLMITE1635VQ&fm=neo%2Fmerchandising&iid=M_2771dd4d-6a87-4d31-b974-76882f1e681a_15.OLMITE1635VQ&ppt=None&ppn=None&ssid=917phzupxc0000001702917569359\n", 652 | "/tyy/4io/~cs-6ky41lperx/pr?sid=tyy,4io&collection-tab-name=POCO+M6+Pro+5G¶m=53843&otracker=clp_banner_2_15.bannerX3.BANNER_mobile-phones-store_0MYPDUOPXZL0&fm=neo%2Fmerchandising&iid=M_2771dd4d-6a87-4d31-b974-76882f1e681a_15.0MYPDUOPXZL0&ppt=None&ppn=None&ssid=917phzupxc0000001702917569359\n", 653 | "/tyy/4io/~cs-cr0ma6fc2j/pr?sid=tyy%2C4io&collection-tab-name=Samsung+S21+FE+2023¶m=2593&otracker=clp_banner_3_15.bannerX3.BANNER_mobile-phones-store_KJCQVNCPETD5&fm=neo%2Fmerchandising&iid=M_2771dd4d-6a87-4d31-b974-76882f1e681a_15.KJCQVNCPETD5&ppt=None&ppn=None&ssid=917phzupxc0000001702917569359\n", 654 | "/mobiles/~cs-5yuww1m0d6/pr?sid=tyy%2C4io&collection-tab-name=iPhone%2014¶m=6787&otracker=clp_banner_1_16.bannerX3.BANNER_mobile-phones-store_7ER2TQX5IT54&fm=neo%2Fmerchandising&iid=M_2771dd4d-6a87-4d31-b974-76882f1e681a_16.7ER2TQX5IT54&ppt=None&ppn=None&ssid=917phzupxc0000001702917569359\n", 655 | "/mobiles/~cs-e3ikwusko9/pr?sid=tyy%2C4io&collection-tab-name=vivo%20T2x%205G¶m=19991&otracker=clp_banner_2_16.bannerX3.BANNER_mobile-phones-store_RSTIP1ZZTYNX&fm=neo%2Fmerchandising&iid=M_2771dd4d-6a87-4d31-b974-76882f1e681a_16.RSTIP1ZZTYNX&ppt=None&ppn=None&ssid=917phzupxc0000001702917569359\n", 656 | "/tyy/4io/~cs-8fe0x4dygh/pr?sid=tyy,4io&collection-tab-name=Redmi+12¶m=4444&otracker=clp_banner_3_16.bannerX3.BANNER_mobile-phones-store_ZY21VN8F42HE&fm=neo%2Fmerchandising&iid=M_2771dd4d-6a87-4d31-b974-76882f1e681a_16.ZY21VN8F42HE&ppt=None&ppn=None&ssid=917phzupxc0000001702917569359\n", 657 | "/tyy/4io/~cs-rq8mpzr8t6/pr?sid=tyy,4io&collection-tab-name=Samsung+Galaxy+S22+5G¶m=1231&otracker=clp_banner_1_17.bannerX3.BANNER_mobile-phones-store_JS3H5IQUTMMG&fm=neo%2Fmerchandising&iid=M_2771dd4d-6a87-4d31-b974-76882f1e681a_17.JS3H5IQUTMMG&ppt=None&ppn=None&ssid=917phzupxc0000001702917569359\n", 658 | "/tyy/4io/~cs-gx3u256t13/pr?sid=tyy,4io&collection-tab-name=iPhone+14+Plus¶m=56868&otracker=clp_banner_2_17.bannerX3.BANNER_mobile-phones-store_16UW01W9L5G3&fm=neo%2Fmerchandising&iid=M_2771dd4d-6a87-4d31-b974-76882f1e681a_17.16UW01W9L5G3&ppt=None&ppn=None&ssid=917phzupxc0000001702917569359\n", 659 | "/tyy/4io/~cs-e8l8qk2i2m/pr?sid=tyy%2C4io&collection-tab-name=Nothing+Phone+2&p%5B%5D=facets.internal_storage%255B%255D%3D256%2BGB%2B%2526%2BAbove&otracker=clp_banner_3_17.bannerX3.BANNER_mobile-phones-store_LKOAU1GTWGK8&fm=neo%2Fmerchandising&iid=M_2771dd4d-6a87-4d31-b974-76882f1e681a_17.LKOAU1GTWGK8&ppt=None&ppn=None&ssid=917phzupxc0000001702917569359\n", 660 | "/tyy/4io/~cs-e8l8qk2i2m/pr?sid=tyy%2C4io&collection-tab-name=Nothing+Phone+2&p%5B%5D=facets.internal_storage%255B%255D%3D256%2BGB%2B%2526%2BAbove&otracker=clp_banner_1_20.bannerX3.BANNER_mobile-phones-store_BXX43DRXVTLK&fm=neo%2Fmerchandising&iid=M_2771dd4d-6a87-4d31-b974-76882f1e681a_20.BXX43DRXVTLK&ppt=None&ppn=None&ssid=917phzupxc0000001702917569359\n", 661 | "/tyy/4io/~cs-bx3dgexqho/pr?sid=tyy,4io&collection-tab-name=realme+11+Pro+5G¶m=8704&otracker=clp_banner_2_20.bannerX3.BANNER_mobile-phones-store_VRNQMWZDN7JA&fm=neo%2Fmerchandising&iid=M_2771dd4d-6a87-4d31-b974-76882f1e681a_20.VRNQMWZDN7JA&ppt=None&ppn=None&ssid=917phzupxc0000001702917569359\n", 662 | "/mobiles/~cs-wyxsh8vo5f/pr?sid=tyy%2C4io&collection-tab-name=Pixel%207a¶m=46787&otracker=clp_banner_3_20.bannerX3.BANNER_mobile-phones-store_JXF8BW3ON8C6&fm=neo%2Fmerchandising&iid=M_2771dd4d-6a87-4d31-b974-76882f1e681a_20.JXF8BW3ON8C6&ppt=None&ppn=None&ssid=917phzupxc0000001702917569359\n", 663 | "/tyy/4io/~cs-4m4ckbu255/pr?sid=tyy,4io&collection-tab-name=edge40¶m=1414&otracker=clp_banner_1_21.bannerX3.BANNER_mobile-phones-store_10IVD5Z2HZJ5&fm=neo%2Fmerchandising&iid=M_2771dd4d-6a87-4d31-b974-76882f1e681a_21.10IVD5Z2HZJ5&ppt=None&ppn=None&ssid=917phzupxc0000001702917569359\n", 664 | "/tyy/4io/~cs-gcxawvd1ly/pr?sid=tyy,4io&collection-tab-name=+vivo+T2+Pro+5G¶m=87799909&otracker=clp_banner_2_21.bannerX3.BANNER_mobile-phones-store_7SCKGFA8OKND&fm=neo%2Fmerchandising&iid=M_2771dd4d-6a87-4d31-b974-76882f1e681a_21.7SCKGFA8OKND&ppt=None&ppn=None&ssid=917phzupxc0000001702917569359\n", 665 | "/tyy/4io/~cs-fhznftwwwh/pr?sid=tyy,4io&collection-tab-name=Infinix+Zero+30+5G¶m=298298&otracker=clp_banner_3_21.bannerX3.BANNER_mobile-phones-store_DWOZ9O1OQSDV&fm=neo%2Fmerchandising&iid=M_2771dd4d-6a87-4d31-b974-76882f1e681a_21.DWOZ9O1OQSDV&ppt=None&ppn=None&ssid=917phzupxc0000001702917569359\n", 666 | "/tyy/4io/~cs-6ky41lperx/pr?sid=tyy,4io&collection-tab-name=POCO+M6+Pro+5G¶m=123121&otracker=clp_banner_1_24.bannerX3.BANNER_mobile-phones-store_DHZ9UA4BQI7Y&fm=neo%2Fmerchandising&iid=M_2771dd4d-6a87-4d31-b974-76882f1e681a_24.DHZ9UA4BQI7Y&ppt=None&ppn=None&ssid=917phzupxc0000001702917569359\n", 667 | "/tyy/4io/~cs-8fe0x4dygh/pr?sid=tyy%2C4io&collection-tab-name=Redmi+12¶m=1241&p%5B%5D=facets.ram%255B%255D%3D6%2BGB¶m=177717&otracker=clp_banner_2_24.bannerX3.BANNER_mobile-phones-store_J2MJ5KBLD0JX&fm=neo%2Fmerchandising&iid=M_2771dd4d-6a87-4d31-b974-76882f1e681a_24.J2MJ5KBLD0JX&ppt=None&ppn=None&ssid=917phzupxc0000001702917569359\n", 668 | "/mobiles/~cs-yzf76mtmzm/pr?sid=tyy%2C4io&collection-tab-name=vivo%20T2%205G¶m=222121&otracker=clp_banner_3_24.bannerX3.BANNER_mobile-phones-store_H11JPXMGYUKT&fm=neo%2Fmerchandising&iid=M_2771dd4d-6a87-4d31-b974-76882f1e681a_24.H11JPXMGYUKT&ppt=None&ppn=None&ssid=917phzupxc0000001702917569359\n", 669 | "/tyy/4io/~cs-8dlzz2rgyx/pr?sid=tyy,4io&collection-tab-name=Motorola+g54+5G¶m=64210&otracker=clp_banner_1_25.bannerX3.BANNER_mobile-phones-store_K8BCF00PHLQL&fm=neo%2Fmerchandising&iid=M_2771dd4d-6a87-4d31-b974-76882f1e681a_25.K8BCF00PHLQL&ppt=None&ppn=None&ssid=917phzupxc0000001702917569359\n", 670 | "/tyy/4io/~cs-xd30x6k53a/pr?sid=tyy,4io&collection-tab-name=realme+11+5G¶m=1898&otracker=clp_banner_2_25.bannerX3.BANNER_mobile-phones-store_4085VX66HP7H&fm=neo%2Fmerchandising&iid=M_2771dd4d-6a87-4d31-b974-76882f1e681a_25.4085VX66HP7H&ppt=None&ppn=None&ssid=917phzupxc0000001702917569359\n", 671 | "/mobiles/~cs-6f6pseptap/pr?sid=tyy%2C4io&collection-tab-name=Samsung%20Galaxy%20F13¶m=64467¶m=3344&otracker=clp_banner_3_25.bannerX3.BANNER_mobile-phones-store_6TNHILE756L2&fm=neo%2Fmerchandising&iid=M_2771dd4d-6a87-4d31-b974-76882f1e681a_25.6TNHILE756L2&ppt=None&ppn=None&ssid=917phzupxc0000001702917569359\n", 672 | "/mobiles/~cs-e3ikwusko9/pr?sid=tyy%2C4io&collection-tab-name=vivo%20T2x%205G¶m=71002&otracker=clp_banner_1_27.bannerX3.BANNER_mobile-phones-store_BQE78VJ2F8SD&fm=neo%2Fmerchandising&iid=M_2771dd4d-6a87-4d31-b974-76882f1e681a_27.BQE78VJ2F8SD&ppt=None&ppn=None&ssid=917phzupxc0000001702917569359\n", 673 | "/tyy/4io/~cs-77d6km6lqw/pr?sid=tyy,4io&collection-tab-name=Infinix+Note+30+5G¶m=656565&otracker=clp_banner_2_27.bannerX3.BANNER_mobile-phones-store_8SPUMCWXWKY0&fm=neo%2Fmerchandising&iid=M_2771dd4d-6a87-4d31-b974-76882f1e681a_27.8SPUMCWXWKY0&ppt=None&ppn=None&ssid=917phzupxc0000001702917569359\n", 674 | "/mobiles/~cs-817ef5cp9m/pr?sid=tyy%2C4io&collection-tab-name=Samsung%20F14¶m=19871&otracker=clp_banner_3_27.bannerX3.BANNER_mobile-phones-store_KPZ231GM0F4N&fm=neo%2Fmerchandising&iid=M_2771dd4d-6a87-4d31-b974-76882f1e681a_27.KPZ231GM0F4N&ppt=None&ppn=None&ssid=917phzupxc0000001702917569359\n", 675 | "/tyy/4io/~cs-q0owbooru0/pr?sid=tyy,4io&collection-tab-name=realme+C51¶m=8779990&otracker=clp_banner_1_29.bannerX3.BANNER_mobile-phones-store_BEYIM4JSPGHM&fm=neo%2Fmerchandising&iid=M_2771dd4d-6a87-4d31-b974-76882f1e681a_29.BEYIM4JSPGHM&ppt=None&ppn=None&ssid=917phzupxc0000001702917569359\n", 676 | "/mobiles/~cs-0zfzf3e14u/pr?sid=tyy%2C4io&collection-tab-name=Infinix%20Smart%207¶m=2728787&otracker=clp_banner_2_29.bannerX3.BANNER_mobile-phones-store_XT879QT9HJAD&fm=neo%2Fmerchandising&iid=M_2771dd4d-6a87-4d31-b974-76882f1e681a_29.XT879QT9HJAD&ppt=None&ppn=None&ssid=917phzupxc0000001702917569359\n", 677 | "/mobiles/~cs-61ewaheif5/pr?sid=tyy%2C4io&collection-tab-name=Samsung%20Galaxy%20F04¶m=3344&otracker=clp_banner_3_29.bannerX3.BANNER_mobile-phones-store_SUQ78A0BUEMD&fm=neo%2Fmerchandising&iid=M_2771dd4d-6a87-4d31-b974-76882f1e681a_29.SUQ78A0BUEMD&ppt=None&ppn=None&ssid=917phzupxc0000001702917569359\n", 678 | "/tyy/4io/~cs-ypudwscf9z/pr?sid=tyy,4io&collection-tab-name=POCO+C55¶m=877999090089&otracker=clp_banner_1_30.bannerX3.BANNER_mobile-phones-store_J84MGA92BPKJ&fm=neo%2Fmerchandising&iid=M_2771dd4d-6a87-4d31-b974-76882f1e681a_30.J84MGA92BPKJ&ppt=None&ppn=None&ssid=917phzupxc0000001702917569359\n", 679 | "/mobiles/~cs-zv5ga1phc2/pr?sid=tyy%2C4io&collection-tab-name=POCO%20C51¶m=955763578&otracker=clp_banner_2_30.bannerX3.BANNER_mobile-phones-store_FAQGKYNGQWRL&fm=neo%2Fmerchandising&iid=M_2771dd4d-6a87-4d31-b974-76882f1e681a_30.FAQGKYNGQWRL&ppt=None&ppn=None&ssid=917phzupxc0000001702917569359\n", 680 | "/tyy/4io/~cs-h9caupz2dl/pr?sid=tyy,4io&collection-tab-name=Infinix+Hot+30i¶m=7373&otracker=clp_banner_3_30.bannerX3.BANNER_mobile-phones-store_ED79ESYG1QS1&fm=neo%2Fmerchandising&iid=M_2771dd4d-6a87-4d31-b974-76882f1e681a_30.ED79ESYG1QS1&ppt=None&ppn=None&ssid=917phzupxc0000001702917569359\n", 681 | "/realme-11-5g-glory-gold-128-gb/p/itm676fecfaebff9\n", 682 | "/realme-11x-5g-purple-dawn-128-gb/p/itm07be1a2ff1a1b\n", 683 | "/realme-11-pro-5g-astral-black-128-gb/p/itm3f783627a36ec\n", 684 | "/poco-m6-pro-5g-forest-green-128-gb/p/itm151f47ed48eee\n", 685 | "/vivo-t2-pro-5g-dune-gold-256-gb/p/itm1230688cdef18\n", 686 | "/google-pixel-8-hazel-128-gb/p/itm67e2a2531aaac\n", 687 | "/google-pixel-8-pro-bay-128-gb/p/itm51f9522df8e95\n", 688 | "/poco-x3-pro-steel-blue-128-gb/p/itm92bc566db15d8\n", 689 | "/redmi-12-jade-black-128-gb/p/itm7b10fd42f78b2\n", 690 | "/vivo-t2x-5g-marine-blue-128-gb/p/itmcf0e8d553142a\n", 691 | "/samsung-galaxy-f14-5g-goat-green-128-gb/p/itm032d1a69999cc\n", 692 | "/vivo-t2-5g-nitro-blaze-128-gb/p/itma79eb573156a4\n", 693 | "/infinix-hot-30i-glacier-blue-128-gb/p/itm8b42a43b35895\n", 694 | "/apple-iphone-15-black-128-gb/p/itm6ac6485515ae4\n", 695 | "/samsung-galaxy-z-flip5-mint-256-gb/p/itm3038611e95123\n", 696 | "/samsung-galaxy-z-fold5-icy-blue-512-gb/p/itm066a0714a4f3c\n", 697 | "/apple-iphone-14-product-red-128-gb/p/itm1f78a4e1a1d76\n", 698 | "/motorola-edge-40-jet-black-256-gb/p/itmbe5b18bf1f229\n", 699 | "/nothing-phone-1-black-128-gb/p/itmeea53a564de47\n", 700 | "/google-pixel-7a-sea-128-gb/p/itmb4d7b100b1a4d\n", 701 | "/apple-iphone-13-pink-128-gb/p/itm6e30c6ee045d2\n", 702 | "/poco-x3-pro-steel-blue-128-gb/p/itm92bc566db15d8\n", 703 | "/mobiles/asus~brand/pr?sid=tyy,4io\n", 704 | "/mobiles/realme~brand/pr?sid=tyy,4io\n", 705 | "/mobiles/apple~brand/pr?sid=tyy,4io\n", 706 | "/lenovo-mobile-phones-store\n", 707 | "/mobiles/~pixel-phones/pr?sid=tyy%2C4io\n", 708 | "/mobiles/poco~brand/pr?sid=tyy%2C4io\n", 709 | "/htc-mobile-phones-store\n", 710 | "/mobiles/mi~brand/pr?sid=tyy,4io\n", 711 | "/motorola-mobile-phones-store\n", 712 | "/lg-mobile-phones-store\n", 713 | "/nokia-mobile-phones-store\n", 714 | "/mobiles/iqoo~brand/pr?sid=tyy%2C4io\n", 715 | "/panasonic-mobile-phones-store\n", 716 | "/samsung-mobile-store\n", 717 | "/micromax-mobile-phones-store\n", 718 | "/mobiles/oneplus~brand/pr?sid=tyy,4io\n", 719 | "/gionee-mobile-phones-store\n", 720 | "/vivo-mobile-phones-store\n", 721 | "/mobiles/nothing~brand/pr?sid=tyy%2C4io\n", 722 | "/oppo-mobile-phones-store\n", 723 | "/mobiles/~4-inch-mobiles/pr?sid=tyy,4io\n", 724 | "/mobiles/~5-5-inch-mobiles/pr?sid=tyy,4io\n", 725 | "/mobiles/~4-5-inch-mobiles/pr?sid=tyy,4io\n", 726 | "/mobiles/~5-2-inch-mobiles/pr?sid=tyy,4io\n", 727 | "/mobiles/~3-5-inch-mobiles/pr?sid=tyy%2C4io\n", 728 | "/mobiles/~6-inch-mobiles/pr?sid=tyy,4io\n", 729 | "/mobiles/~3-inch-mobiles/pr?sid=tyy,4io\n", 730 | "/mobiles/~5-inch-mobiles/pr?sid=tyy,4io\n", 731 | "/mobiles/~3-gb-ram-mobiles/pr?sid=tyy,4io\n", 732 | "/mobiles/~2-gb-ram-mobiles/pr?sid=tyy,4io\n", 733 | "/mobiles/~4-gb-ram-mobiles/pr?sid=tyy,4io\n", 734 | "/mobiles/~1-gb-ram-mobiles/pr?sid=tyy%2C4io\n", 735 | "/mobiles/~6-gb-ram-mobiles/pr?sid=tyy,4io\n", 736 | "/apple-iphone-15-black-128-gb/p/itm6ac6485515ae4\n", 737 | "/apple-iphone-15-plus-blue-256-gb/p/itm4f3e6fe529a68\n", 738 | "/apple-iphone-15-pro-black-titanium-128-gb/p/itm96f61fdd7e604\n", 739 | "/apple-iphone-15-pro-max-blue-titanium-256-gb/p/itm4a0093df4a3d7\n", 740 | "/apple-iphone-14-blue-128-gb/p/itmdb77f40da6b6d\n", 741 | "/apple-iphone-14-plus-blue-128-gb/p/itmac8385391b02b\n", 742 | "/apple-iphone-14-pro-silver-128-gb/p/itm6933eb5fb30fb\n", 743 | "/apple-iphone-14-pro-max-deep-purple-128-gb/p/itm5256789ae40c7\n", 744 | "/apple-iphone-13-pink-128-gb/p/itm6e30c6ee045d2\n", 745 | "/apple-iphone-13-mini-starlight-128-gb/p/itmcb65606f21fd3\n", 746 | "/apple-iphone-13-pro-silver-128-gb/p/itm273b7a40dcf8b\n", 747 | "/apple-iphone-13-pro-max-sierra-blue-128-gb/p/itm5ede69d71530a\n", 748 | "/apple-iphone-12-white-64-gb/p/itm8b88bdc03cd79\n", 749 | "/apple-iphone-12-mini-blue-64-gb/p/itm2883104474448\n", 750 | "/apple-iphone-12-pro-graphite-128-gb/p/itm03e5f2595d843\n", 751 | "/apple-iphone-12-pro-max-silver-128-gb/p/itm5a51ba742a17e\n", 752 | "/helpcentre?otracker=undefined_footer_navlinks\n", 753 | "https://corporate.flipkart.net/corporate-home\n", 754 | "https://www.flipkartcareers.com/?otracker=undefined_footer_navlinks\n", 755 | "http://stories.flipkart.com/?otracker=undefined_footer_navlinks\n", 756 | "http://stories.flipkart.com/category/top-stories/news/\n", 757 | "https://www.flipkartwholesale.com/?otracker=undefined_footer_navlinks\n", 758 | "https://www.cleartrip.com/\n", 759 | "/corporate-information\n", 760 | "/pages/payments\n", 761 | "/pages/shipping\n", 762 | "/helpcentre?catalog=55c9c6edb000002e002c1701&view=CATALOG\n", 763 | "/helpcentre?catalog=55c9c8e2b0000023002c1702&view=CATALOG\n", 764 | "https://seller.flipkart.com/fiv?otracker=undefined_footer_navlinks\n", 765 | "/pages/returnpolicy?otracker=undefined_footer_navlinks\n", 766 | "/pages/terms?otracker=undefined_footer_navlinks\n", 767 | "/pages/paymentsecurity?otracker=undefined_footer_navlinks\n", 768 | "/pages/privacypolicy?otracker=undefined_footer_navlinks\n", 769 | "/sitemap?otracker=undefined_footer_navlinks\n", 770 | "/pages/grievance-redressal-mechanism?otracker=undefined_footer_navlinks\n", 771 | "/pages/ewaste-compliance-tnc?otracker=undefined_footer_navlinks\n", 772 | "https://www.facebook.com/flipkart\n", 773 | "https://www.twitter.com/flipkart\n", 774 | "https://www.youtube.com/flipkart\n", 775 | "tel:044-45614700\n", 776 | "https://seller.flipkart.com/?utm_source=fkwebsite&utm_medium=websitedirect\n", 777 | "https://brands.flipkart.com\n", 778 | "/the-gift-card-store?otracker=undefined_footer_footer_navlinks\n", 779 | "/helpcentre?otracker=undefined_footer_footer_navlinks\n" 780 | ] 781 | } 782 | ], 783 | "source": [ 784 | "for link in soup.find_all('a'):\n", 785 | " print(link.get('href'))" 786 | ] 787 | }, 788 | { 789 | "cell_type": "code", 790 | "execution_count": 21, 791 | "id": "7b56f87f", 792 | "metadata": {}, 793 | "outputs": [ 794 | { 795 | "name": "stdout", 796 | "output_type": "stream", 797 | "text": [ 798 | " Mobile Phones Online at Best Prices in India Explore PlusLoginBecome a Seller More CartMobile Phones Big Year End SaleMobile phones are no more merely a part of our lives. Whether it's to stay connected with friends and family or to keep abreast of important developments around the world, mobiles are no longer for sending a text or making a call. From budget to state-of-the-art smartphones; indigenous names to global big-wigs - a whole universe of mobiles await you on Flipkart. Whether you’re looking for waterdrop notch screens, a high screen to body ratio, AI-powered sensational cameras, high storage capacity, blazing quick processing engines or reflective glass designs, rest assured you won’t have to venture anywhere else for your smartphone needs. The information you are reading has been last updated on 18-Dec-23. iPhone 14 | iPhone 15 | iPhone 15 Plus | OPPO Reno 8 Pro 5G | OPPO Reno7 5G | OPPO Find N2 Flip | Infinix Smart 7 HD | Pixel 7a | Moto Edge 40 | POCO C55\n", 799 | "Mobile Phones- Buy mobile phones online at best prices in India\n", 800 | "\n", 801 | "Mobile phone, also called a cell phone owing to it using a cellular network architecture, have seen a tremendous growth in terms of technology and size over the years. On Flipkart, we have a diverse collection of iOS and Android mobiles ranging from basic mobiles, low-range and mid-range phones to very high-end smartphones that\n", 802 | "\n", 803 | "Realme 11 5G  | Realme 11X 5G |\n", 804 | "\n", 805 | " Realme 11 Pro | POCO M6 Pro | vivo T2 Pro 5G | Google Pixel 8 | Google Pixel 8 Pro | POCO X3 Pro | Redmi 12 | Vivo T2X 5G | Samsung Galaxy F14 | Vivo T2 5G | Infinix Hot 30i\n", 806 | " \n", 807 | "iPhone 15\n", 808 | "The iPhone 15 is one of the best phones you can buy for yourself or a loved one. Backed by unrivaled performance, superb picture quality, outstanding audio, and a brilliant display, it is powerful and classy. The aluminum enclosure is not only sleek to look at but is also durable enough to protect the phone from minor drops and scratches. The phone has an OLED display that displays images, videos, and media in high resolution and brilliant colors. The 48 MP camera of this phone captures high-quality images and videos, thus preserving important moments for a long time. You can keep your memories close to you for a long time by storing them in the 128 GB of ROM or on the extra storage you can access through iCloud. The phone is powered by an A16 bionic processor, which has the computational power to easily manage a lot of jobs and operations at once. The phone is USB Type-C compliant which makes it easy to charge the phone as well as transfer data between devices. You can buy the Apple iPhone online from the comfort of your home. Depending on your payment method, you can avail of special iPhone offers. Browse online to get the best iPhone price and have it delivered straight to your home. \n", 809 | " \n", 810 | "Samsung Galaxy Z Flip 5\n", 811 | "Explore the Samsung Galaxy Z Flip 5 online, which introducеs you to a rеmarkablе dеvicе packed with standout features. Imaginе having a powerful phonе with 8 GB RAM and a suitable storagе spacе, еnsuring smooth pеrformancе and amplе room for all your apps, photos, and vidеos. It's likе having a pockеt-sizеd powеrhousе rеady for anything. Thе phonе boasts a slееk 17.02 cm (6.7) display, providing a vibrant and immеrsivе visual еxpеriеncе. Enjoy your favouritе moviеs, gamеs, or social mеdia on a scrееn that's both compact and еxpansivе and can fit right in your pockеt. Capturе your momеnts in stunning dеtail with thе 12 MP dual rеar camеras for beautiful selfies. Whether it's a landscapе or a mеmorablе selfie, thе Samsung Z Flip 5's camera systеm еnsurеs your photos look imprеssivе. With a rеliablе 3700 mAh battеry, thе phonе kееps up with your busy day, еnsuring you stay connеctеd and еntеrtainеd without worrying about running out of powеr. Powеrеd by thе Snapdragon 8 Gеn 2 Procеssor, thе Galaxy Z Flip 5 еnsurеs spееdy pеrformancе, making multitasking and navigating through apps a seamless еxpеriеncе. So, buy the Samsung Galaxy Z Flip 5 online and get it delivered to your doorstep with just a few clicks and swipes.\n", 812 | " \n", 813 | "Samsung Galaxy Z Fold 5\n", 814 | "Get ready to unfold a new chapter in smartphone technology with the Samsung Galaxy Z Fold 5. Crafted with precision, the device exudes sophistication with its sleek design and premium materials. Whether you're watching your favourite movies, multitasking with multiple apps, or diving into the latest mobile games, the foldable display effortlessly adapts to your needs. The immersive visuals are complemented by a buttery-smooth 120 Hz refresh rate, ensuring every swipe and scroll is as fluid as it is mesmerising. Furthermore, the device boasts a robust yet lightweight frame that effortlessly folds and unfolds, making it a suitable companion for those who demand versatility without compromising on style. The Gorilla Glass Victus on the cover and display ensures durability, while the sleek aluminium frame adds a touch of sophistication. The Multi-active Window feature allows you to run multiple apps simultaneously, transforming your device into a powerful productivity tool. Be it working on a presentation, responding to emails, or conducting a video call, the Samsung Z Fold 5 adapts to your workflow, making every task a breeze. So shop online now and unfold a world of infinite possibilities to elevate your mobile experience like never before!\n", 815 | " \n", 816 | "iPhone 14\n", 817 | "Enjoy the comfort of a streamlined user interface and faster connectivity with the iPhone 14. Equipped with a hexacore processor, this device can run smoothly without frequent glitches and lagging. Therefore, whether you are using the device for work-related purposes or leisurely activities, it can come in handy for you. The iPhone 14 offers 5G connectivity support, ensuring that you can have faster internet. This way, whether you are attending a virtual conference or playing an online game, you can have an interruption-free experience. With an adequate contrast ratio and brightness, the Super Retina XDR display of the device also ensures you have an immersive experience when you are consuming multimedia content. Moreover, this iPhone 14 also consists of a 5-core GPU thanks to its A15 bionic chip. Therefore, you can have a seamless experience when multitasking on this device. Offering a 12 MP dual back camera set-up and 4K recording support, this iPhone model can be an ideal choice for photography and videography enthusiasts too. You can know more about crucial details like the iPhone 14 price and other features by going through the product description of the device. With a few simple swipes and clicks, you can buy the iPhone 14 online from the comfort of your home.\n", 818 | " \n", 819 | "MOTOROLA Edge 40\n", 820 | "Bring home unbeatable UI and an immersive experience with the Motorola Edge 40 smartphone. Shop for the Motorola Edge 40 online and check out its various features such as its 8 GB of RAM and up to 256 GB of storage space. This is in turn backed by a MediaTek Dimensity 8020 processor that is intelligently designed to be able to handle multiple operations and processing threads simultaneously. This ensures that you can easily switch between apps, play games, stream media, and more without facing significant challenges. The mobile features a 16.64 cm (6.55) Full HD+ display to ensure that you capture and view images on your smartphone with the utmost clarity. The phone features an IP68-rated waterproof design as well as a hermetic seal to protect your phone from dust, water, and other pollutants. To top it all off, this phone features a 50 MP camera along with a 13 MP ultra-wide camera to let you click photos in a fashion of your choice. Additionally, it also features a 32 MP selfie camera to ensure that you don't miss out on any memories during your daily adventures. You can check and compare the Motorola Edge 40’s prices online and have the phone delivered to you in the comfort of your home. \n", 821 | " \n", 822 | "Nothing Phone\n", 823 | "Upgrade to a seamless mobile user experience with the stunning Nothing Phone (1). Powered by Android 12, this device can come in handy for both work as well as leisure. Equipped with an Octa-core Qualcomm Snapdragon 778G+ processor, this phone allows you to multitask and manage your media with ease. Moreover, you can enjoy online gaming or streaming experiences without any significant latency. The device is also equipped with an intuitive Glyph Interface design that helps you to operate the device with ease and enjoy streamlined interconnectivity features. The 17 cm screen and a full HD+ display are also pivotal in offering you an immersive feeling if you watch a film or a series on this device. Moreover, you do not have to worry about running out of space when you are using this device. You can avail of Nothing Phone online with a substantial 128 GB internal storage capacity. The phone also has 8 GB RAM, so you can rest assured about its optimal output capacity without glitches and lags. With its elegant design and 5G connectivity compatibility, this Nothing Phone (1) can simultaneously cater to your requirements for both style and substance. So, check out Nothing Phone prices, and features, and place your order online without any hesitation.\n", 824 | " \n", 825 | "\n", 826 | "\n", 827 | "Pixel 7a\n", 828 | "Make the Google Pixel 7a your first smartphone or your upgrade from your old model. This phone can capture and immortalise your precious moments, provide a calling experience with minimal issues, keep your information secure, and do more. The Tensor G2 processor ensures that these tasks are completed with minimal lag. The Pixel smartphone also makes sure that hours of screen time does not drain your battery quickly. The 4300 mAh battery offers almost 24 hours of battery life, while the extreme battery saver mode can give you nearly three days of battery life. Additionally, you can also quickly charge the battery thanks to Fast Charge when needed. The long battery life helps you click photographs and videos using the 64 MP main camera and 13 MP ultra-wide camera endlessly. You can also click a selfie with the 13 MP front camera, which has a 95-degree wide field of view. Check the Google Pixel 7a price and pick from colours like Charcoal, Sea, and Snow. Shop for the Google Pixel 7a (in) India model, which has a scratch-resistant Corning Gorilla Glass 3 cover, an IP67 rating, and a fingerprint-resistant coating that can keep the aesthetics of the Pixel 7a unharmed. Explore various other features of the smartphone and purchase it to experience the Google interface.\n", 829 | "\n", 830 | "\n", 831 | "Oppo Find N2 Flip\n", 832 | "Get the Oppo Find N2 Flip mobile phone to bring home a whole range of exciting features. Fitted with a Flexion Hinge the Oppo Find N2 folds in half to let you view calls, notifications, reminders, and more on a 8.28 cm (3.26) screen. When not using the cover screen, this phone uses its 17.27 cm (6.8) Full HD display for visuals. Made using high-grade steel and a polymer, the hinge can be folded around 400,000 times without wearing out. The phone is powered by a 4300 mAh battery that offers backup for up to 20 hours of video playback, 6 hours of video calling, and around 16 hours of internet browsing. This powerful battery can be charged to up to 50% in just 23 minutes thanks to the 44 W SUPERVOOC Flash Charge. All of these features are tied together by the MediaTek Dimensity 9000+ processor that is more than able to handle multiple operations simultaneously. The phone runs on ColorOS that compliments the aesthetic design of the phone and makes the UI clean and intuitive. Get your hands on the Oppo Find N2 Flip online and have it safely delivered to your door.\n", 833 | " \n", 834 | "\n", 835 | "Samsung Galaxy S23 Ultra \n", 836 | "The Samsung Galaxy S23 Ultra is another feather in Samsung's illustrious cap of high-performance smartphones. The phone is loaded with various features to offer its users a highly enjoyable and memorable experience. The S23 Ultra is powered by a Snapdragon 8 Gen 2 mobile processor to ensure optimized and seamless performance when undertaking even the most challenging processes. It is programmed to be able to handle multiple operational threads without causing the battery to drain quickly. This phone comes with a Dynamic AMOLED 2X screen with a 120 Hz refresh rate to ensure that you see all the details clearly irrespective of whether you have the brightness at full or dimmed. The phone uses One UI which lets you customize every detail of the phone—be it the lockscreen, themes, or widgets with ease. Additionally, the phone is powered by a 5000 mAh battery to enable you to watch movies, play games, and do much more all through the day. To avoid making a rushed decision, you can check and compare the Samsung Galaxy S23 Ultra’s prices and reviews online before ordering.  \n", 837 | "\n", 838 | "\n", 839 | "iPhone 13\n", 840 | "The 15.4 cm (6.1) display of the iPhone 13 provides a magnificent view of anything you watch on your smartphone. The all-screen OLED display of the phone features rounded corners within a standard rectangular screen. This powerful smartphone features an excellent battery life that can provide you with up to 19 hours of video playback and 75 hours of audio playback. This impressive feature can ensure you keep yourself entertained even when you are on the go. The inbuilt lithium-ion battery supports fast charging and wireless charging so that you stay on top of your tasks at all times. The iOS 15 operating system present in this smartphone packs in powerful and secure features to make your phone personal with enhanced privacy protection. The  iPhone 13 comes with an array of built-in apps to help you with your day-to-day tasks. You can also install free apps from the Apple Store to personalise your phone as per your needs. The phone can support dual SIMs, including a nano-SIM and an eSIM. The built-in microphones and stereo speakers enable you to carry out your calls, video conferences, and more with enhanced voice clarity. Explore all the different features offered by this phone and shop for iPhone 13 online. \n", 841 | "\n", 842 | "\n", 843 | "POCO X3 Pro\n", 844 | "With the POCO X3 Pro smartphone, you can experience a fast, swift, and sustained phone performance. The smartphone has a powerful quad-camera setup, using which you can click memorable photographs, capturing the gist of your special occasions. The phone offers an efficient 48 MP primary camera, combined with a depth sensor, macro lens, and an ultra wide-angle lens to deliver stunning pictures and cinematic videos.employ state-of-the art technology. These mobiles are priced anywhere between Rs 500 to Rs 100,000. Top mobile brands like Samsung, Oppo, Vivo, Apple and many more are available here under discounts. Apart with these, the latest trend in network connectivity, the 4G network is also made accessible in 4G mobiles from top brands.\n", 845 | " \n", 846 | "\n", 847 | "Mobile Brands:\n", 848 | "\n", 849 | "\n", 850 | "\n", 851 | "Asus Mobile\n", 852 | "Realme Mobile\n", 853 | "iPhone\n", 854 | "Lenovo Mobile\n", 855 | "Google Pixel Mobile\n", 856 | "\n", 857 | "\n", 858 | "Poco Mobile\n", 859 | "HTC Mobile\n", 860 | "Mi Mobile\n", 861 | "Motorola Mobile\n", 862 | "LG Mobile\n", 863 | "\n", 864 | "\n", 865 | "Nokia Mobile\n", 866 | "Iqoo Mobile\n", 867 | "Panasonic Mobile\n", 868 | "Samsung Mobile\n", 869 | "Micromax Mobile\n", 870 | "\n", 871 | "\n", 872 | "Oneplus Mobile\n", 873 | "Gionee Mobile\n", 874 | "Vivo Mobile\n", 875 | "Nothing Phone\n", 876 | "Oppo Mobile\n", 877 | "\n", 878 | "\n", 879 | "\n", 880 | "\n", 881 | "\n", 882 | "Mobiles By Screen Sizes:\n", 883 | "\n", 884 | "\n", 885 | "\n", 886 | "4 Inch Mobiles\n", 887 | "5.5 inch Mobiles\n", 888 | "4.5 Inch Mobiles\n", 889 | "5.2 Inch Mobiles\n", 890 | "\n", 891 | "\n", 892 | "3.5 inch Mobiles\n", 893 | "6 inch Mobiles\n", 894 | "3 inch Mobiles\n", 895 | "5 inch Mobiles\n", 896 | "\n", 897 | "\n", 898 | "\n", 899 | "Mobiles By RAM:\n", 900 | "\n", 901 | "\n", 902 | "\n", 903 | "3 GB RAM Mobiles\n", 904 | "2 GB RAM Mobiles\n", 905 | "4 GB RAM Mobiles\n", 906 | "1 GB RAM Mobiles\n", 907 | "\n", 908 | "\n", 909 | "6 GB RAM Mobiles\n", 910 | "\n", 911 | "\n", 912 | "\n", 913 | " \n", 914 | "\n", 915 | "Appple iPhones\n", 916 | "\n", 917 | "\n", 918 | "\n", 919 | "iPhone 15\n", 920 | "iPhone 15 Plus\n", 921 | "iPhone 15 Pro\n", 922 | "iPhone 15 Pro Max\n", 923 | "\n", 924 | "\n", 925 | "iPhone 14\n", 926 | "iPhone 14 Plus\n", 927 | "iPhone 14 Pro\n", 928 | "iPhone 14 Pro Max\n", 929 | "\n", 930 | "\n", 931 | "iPhone 13\n", 932 | "iPhone 13 Mini\n", 933 | "iPhone 13 Pro\n", 934 | "iPhone 13 Pro Max\n", 935 | "\n", 936 | "\n", 937 | "iPhone 12\n", 938 | "iPhone 12 Mini\n", 939 | "iPhone 12 Pro\n", 940 | "iPhone 12 Pro Max\n", 941 | "\n", 942 | "\n", 943 | "\n", 944 | " \n", 945 | "\n", 946 | "FAQ\n", 947 | "\n", 948 | "Q. Which are the best mobile phone brands available in India?\n", 949 | "A. Samsung, iPhone, Redmi, Realme, and POCO are some of the best mobile phone brands available in the Indian market.\n", 950 | "\n", 951 | "Q. What is the minimum RAM capacity needed for a smartphone?\n", 952 | "A. 4 GB of RAM is considered the bare minimum for a smartphone\n", 953 | "\n", 954 | "Q.What influences the speed of a mobile phone?\n", 955 | "A. The number of processor cores and the higher clock speed of the processor cores can influence the speed of the mobile phone.\n", 956 | "\n", 957 | "Q. What are the best feature phones available in India?\n", 958 | "A. Nokia 6310, Nokia 105 SS 2021, Samsung Guru Music 2, and Samsung Metro 350 are some of the best feature phones available in India.\n", 959 | "\n", 960 | "Q  How much storage capacity can I expect in a mobile phone?\n", 961 | "A. Most smartphones come with an inbuilt storage capacity of 32 GB, 64 GB, and 128 GB. A few high-end models also feature 256 GB or 512 GB of storage capacity.\n", 962 | "\n", 963 | "Question and AnswersQ.What are the different display options available on smartphones?A.Capacitive touchscreen LCD, IPS-LCD, AMOLED, OLED, and Super AMOLED are the different display types available in smart mobile phones.Q.What are the best display resolutions available on smartphones?A.You can find smartphones with HD, FHD, and HD+ resolutions. The higher the display resolution, the sharper the displayed content will appear on the screen.Q.What are the best quad-camera mobile phones available in India?A.Redmi Note 10S, Samsung Galaxy M32, POCO X3 Pro, vivo X70 Pro, and realme 8 are some of the best mobile phones with a quad-camera setup.Q.What is the benefit of fast charging in mobile phones?A.Fast charging enables the mobile phone to charge faster than the current charging standard, and it can significantly reduce the time you would typically require to charge your phone.Q.What are some important features to consider when buying a mobile phone?A.Before purchasing a mobile phone, you must ensure that you consider features and specifications such as the battery capacity, screen size, display type, camera quality, operating system, and SIM compatibility to ensure you purchase a variant that meets all your requirements.Q.What are the latest mobile models in 2023?A.iPhone 15, Redmi Note 12 4G, Infinix Hot 30i, Moto G13, POCO C51, vivo T2 5G, vivo X90 Pro, Infinix Smart 7 HD, Pixel 7a, POCO F5, Moto Edge 40, Samsung Galaxy F54ABOUTContact UsAbout UsCareersFlipkart StoriesPressFlipkart WholesaleCleartripCorporate InformationHELPPaymentsShippingCancellation & ReturnsFAQReport InfringementCONSUMER POLICYCancellation & ReturnsTerms Of UseSecurityPrivacySitemapGrievance RedressalEPR ComplianceSOCIALFacebookTwitterYouTubeMail Us:Flipkart Internet Private Limited, \n", 964 | " Buildings Alyssa, Begonia & \n", 965 | " Clove Embassy Tech Village, \n", 966 | " Outer Ring Road, Devarabeesanahalli Village, \n", 967 | " Bengaluru, 560103, \n", 968 | " Karnataka, India\n", 969 | "Registered Office Address:Flipkart Internet Private Limited, \n", 970 | " Buildings Alyssa, Begonia & \n", 971 | " Clove Embassy Tech Village, \n", 972 | " Outer Ring Road, Devarabeesanahalli Village, \n", 973 | " Bengaluru, 560103, \n", 974 | " Karnataka, India \n", 975 | " CIN : U51109KA2012PTC066107 \n", 976 | " Telephone: 044-45614700\n", 977 | "Become a SellerAdvertiseGift CardsHelp Center© 2007-2023 Flipkart.comBack to top \n", 978 | " \n" 979 | ] 980 | } 981 | ], 982 | "source": [ 983 | "print(soup.get_text())" 984 | ] 985 | }, 986 | { 987 | "cell_type": "code", 988 | "execution_count": null, 989 | "id": "c6a4049e", 990 | "metadata": {}, 991 | "outputs": [], 992 | "source": [] 993 | } 994 | ], 995 | "metadata": { 996 | "kernelspec": { 997 | "display_name": "Python 3 (ipykernel)", 998 | "language": "python", 999 | "name": "python3" 1000 | }, 1001 | "language_info": { 1002 | "codemirror_mode": { 1003 | "name": "ipython", 1004 | "version": 3 1005 | }, 1006 | "file_extension": ".py", 1007 | "mimetype": "text/x-python", 1008 | "name": "python", 1009 | "nbconvert_exporter": "python", 1010 | "pygments_lexer": "ipython3", 1011 | "version": "3.11.5" 1012 | } 1013 | }, 1014 | "nbformat": 4, 1015 | "nbformat_minor": 5 1016 | } 1017 | -------------------------------------------------------------------------------- /web scraping.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # coding: utf-8 3 | 4 | # In[1]: 5 | 6 | 7 | import requests 8 | from bs4 import BeautifulSoup 9 | 10 | 11 | # In[73]: 12 | 13 | 14 | url="https://www.flipkart.com/redmi-note-13-pro-plus-coming-soon-store?param=3673" 15 | 16 | 17 | # In[74]: 18 | 19 | 20 | http=requests.get(url) 21 | 22 | 23 | # In[75]: 24 | 25 | 26 | http 27 | 28 | 29 | # In[76]: 30 | 31 | 32 | soup=BeautifulSoup(http.content,"html.parser") 33 | 34 | 35 | # In[77]: 36 | 37 | 38 | soup 39 | 40 | 41 | # In[78]: 42 | 43 | 44 | soup.p 45 | 46 | 47 | # In[79]: 48 | 49 | 50 | soup.title 51 | 52 | 53 | # In[80]: 54 | 55 | 56 | soup.title.name 57 | 58 | 59 | # In[81]: 60 | 61 | 62 | soup.a 63 | 64 | 65 | # In[82]: 66 | 67 | 68 | print(soup.get_text()) 69 | 70 | 71 | # In[ ]: 72 | 73 | 74 | 75 | 76 | 77 | # In[ ]: 78 | 79 | 80 | 81 | 82 | --------------------------------------------------------------------------------