Forum in maintenance, we will back soon 🙂
Course: Build with AI
I want to give you both what ChatGPT gave me as a working example and what ChatGPT gave Hasan during his video. They are very different as I am sure they are for you. Comparing both I hope will help you understand the Python code and the uses of the API URI you construct.
First I will give you what Hasan shared:
# File: app.py from flask import Flask, jsonify import requests app = Flask(__name__) @app.route('/<query>', methods=['GET']) def autocomplete(query): url = f'https://suggestqueries.google.com/complete/search?client=firefox&q={query}' response = requests.get(url) suggestions = response.json()[1] return jsonify(suggestions) if __name__ == '__main__': app.run(debug=True)
To execute this
#For Windows python -m venv venv venv/bin/activate pip install flask requests flask run #For Linux or MAC python -m venv venv source venv/bin/activate pip install flask requests flask run
Now in your browser you enter http://127.0.0.1:5000/KEYWORD
Replace KEYWORD with your search term
=====>8==================8<=====
Second is what ChatGPT gave to me but with the code corrected.
# File: app.py from flask import Flask, request, jsonify from googlesearch import search app = Flask(__name__) @app.route('/suggestions', methods=['GET']) def get_suggestions(): query = request.args.get('query') if not query: return jsonify({'error': 'Query parameter is required'}), 400 suggestions = [] try: # Use Google search to get auto-suggestions for suggestion in search(query, num_results=5): suggestions.append(suggestion) return jsonify({'suggestions': suggestions}) except Exception as e: return jsonify({'error': f'Failed to fetch suggestions {e}'}), 500 if __name__ == '__main__': app.run(debug=True)
To execute this
#For Windows python -m venv venv venv/bin/activate pip install flask googlesearch-python flask run #For Linux or MAC python -m venv venv source venv/bin/activate pip install flask googlesearch-python flask run
Now in your browser you would type https://127.0.0.1:5000/suggestions?query=KEYWORD
Replace the KEYWORD with your search term.
=====>8==================8<=====
As you can see, ChatGPT can give very different results for the same prompt. I did use the prompt exactly as Hasan did in the course video.
write the code of a flask Python API, it uses Google autosuggestions to generate keyword ideas and suggestions
One of the main points of Hasan's video was completely ignored by ChatGPT for me but not for Hasan and that was to use https://suggestqueries.google.com for the URL in the code.
Both methods for the URL of your created API are correct, I prefer the one that was in Hasan's code but you need to know both methods of obtaining a query string.
Regards,
Earnie Boyd, CEO
Seasoned Solutions Advisor LLC
Schedule 1-on-1 help
Join me on Slack
Thanks for sharing this! Coding is an interesting thing aint it haha
@husein-aboul-hasan yes it is and I've been doing it for more than 3 decades.
Regards,
Earnie Boyd, CEO
Seasoned Solutions Advisor LLC
Schedule 1-on-1 help
Join me on Slack
Hi @husein-aboul-hasan , I followed you're instructions but had no luck. I'm new to coding, and I'm getting an error. I followed all the instructions given in the video but had no luck. Can you please help me with the mistake I made?
@sai1 did you install the virtualvenv package with pip?
After creating your virtual environment you want to use:
venv\Scripts\activate
Regards,
Earnie Boyd, CEO
Seasoned Solutions Advisor LLC
Schedule 1-on-1 help
Join me on Slack
hey @ssadvisor im just following you're instructions
, first instruction was applied but the second was not. can you please see the snippet of error?
venv\Scripts\activate
@sai1 is this computer supplied by an employer or does it belong to you? If it's owned by an employer then you'll have to request access to run scripts from them else you'll have to research the article the error gave you to resolve it.
Regards,
Earnie Boyd, CEO
Seasoned Solutions Advisor LLC
Schedule 1-on-1 help
Join me on Slack
@sai1 then follow the link given in the error and take actions to correct the issue.
Regards,
Earnie Boyd, CEO
Seasoned Solutions Advisor LLC
Schedule 1-on-1 help
Join me on Slack
scripts are disabled on your system. it related to your computer policies and powershell execution policy
first try opening VS code as administrator and try again. if didn't work, you need to enable script execution.
Check the current execution policy:
Type the following command:
Get-ExecutionPolicy
-
This will return the current policy. It might be one of the following:
Restricted
: No scripts can run, regardless of signing.AllSigned
: Only scripts signed by a trusted publisher can run.RemoteSigned
: Scripts created locally can run. Scripts downloaded from the internet or received via email need to be signed by a trusted publisher.Unrestricted
: All scripts can run, whether they're signed or not.Bypass
: Nothing is blocked and no warnings are given.Undefined
: No execution policy is set.
-
Change the execution policy:
If you want to change the execution policy to allow scripts to run (for example, to "RemoteSigned"), you would use:
Set-ExecutionPolicy RemoteSigned
-
You'll be prompted to confirm the change. Press
Y
to confirm.⚠️ Warning: Be cautious when setting the execution policy to
Unrestricted
as it may expose your system to potential security risks.RemoteSigned
is often a safer compromise, but always be sure of the source and content of scripts you're executing. -
Close and reopen PowerShell:
For the change to take effect, you should close and then reopen the PowerShell window.
-
Run your script:
With the new policy in place, you should be able to run your script.
@admin I've despised using Windows as a development tool for decades. 😳 I'm currently using Chrome OS with its Linux container enabled to do my programming.
Regards,
Earnie Boyd, CEO
Seasoned Solutions Advisor LLC
Schedule 1-on-1 help
Join me on Slack