An open API service indexing awesome lists of open source software.

https://github.com/mustafa-kum/chatgpt-keyword-search

ChatGPT Keyword Search
https://github.com/mustafa-kum/chatgpt-keyword-search

chatgpt chatgpt-python keyword-spotting python

Last synced: 3 months ago
JSON representation

ChatGPT Keyword Search

Awesome Lists containing this project

README

        

# ChatGPT Powered

https://chat.openai.com/chat

```python

import requests

# List of websites to search
websites = ['https://example.com', 'https://example2.com']

# Keyword to search for
keyword = 'python'

# Search each website for the keyword
for website in websites:
try:
# Send a GET request to the website
response = requests.get(website)
# Get the response text
text = response.text
# Check if the keyword is in the response text
if keyword in text:
print(f'Keyword found on {website}')
else:
print(f'Keyword not found on {website}')
except:
print(f'Error accessing {website}')

```