Problems using sqlAlchemy to execute SQL queries on my database
up vote
-1
down vote
favorite
I am working on a project to work on a website that connects to a mysql server using flask and sqlAlchemy (Hosted on AWS RDS) and I am following this tutorial but when I try to do (/api/bar) I get this error. When I just do my localhost:8080 it shows "Hello World" perfectly fine.
sqlalchemy.exc.OperationalError: (pymysql.err.OperationalError) (2003, "Can't connect to MySQL server on 'localhost' ([WinError 10061] No connection could be made because the target machine actively refused it)") (Background on this error at: http://sqlalche.me/e/e3q8)
config.py
database_url = "mysql+pymysql://username:password@localhost:3306/barbeerdrinker"
Here is my __init__.py
from flask import Flask
from flask import jsonify
from flask import make_response
from flask import request
import json
from barbeerdrinker import database
#Flask application
app = Flask(__name__)
@app.route("/")
def hello_world():
return "Hello World"
@app.route("/api/bar", methods=["GET"])
def get_bars():
return jsonify(database.get_bars())
@app.route("/api/bar/<name>", methods=["GETS"])
def find_bar(name):
try:
if name is None:
raise ValueError("Bar is not specified")
bar = database.find_bar(name)
if bar is None:
return make_response("No bar found within given name", 404)
return jsonify(bar)
except ValueError as e:
return make_response(str(e), 400)
except Exception as e:
return make_response(str(e), 500)
@app.route("/api/beers_cheaper_than", methods=["POST"])
def find_beers_cheaper_than():
body = json.loads(request.data)
max_price = body['maxPrice']
return jsonify(database.filter_beers(max_price))
database.py
from sqlalchemy import create_engine
from sqlalchemy import sql
from barbeerdrinker import config
engine = create_engine(config.database_url)
def get_bars():
with engine.connect() as con:
rs = con.execute("SELECT name, address, city, opening, closing, phoneNum FROM bars")
return [dict(row) for row in rs]
def find_bar(name):
with engine.connect() as con:
query = sql.text("SELECT * FROM bars WHERE name = :name;")
rs = con.execute(query, name=name)
result = rs.first()
if result is None:
return None
return dict(result)
def filter_beers(max_price):
with engine.connect() as con:
query = sql.text("SELECT * FROM sells WHERE price < : max_price;")
rs = con.execute(query, max_price=max_price)
results = [dict(row) for row in rs]
for r in results:
r['price'] = float(r['price'])
return results
**Edit: So it seems like the problem is not an issue with my code but a Windows error. One solution I tried to do was to open up the required ports through my firewall to no avail.
python mysql flask sqlalchemy amazon-rds
add a comment |
up vote
-1
down vote
favorite
I am working on a project to work on a website that connects to a mysql server using flask and sqlAlchemy (Hosted on AWS RDS) and I am following this tutorial but when I try to do (/api/bar) I get this error. When I just do my localhost:8080 it shows "Hello World" perfectly fine.
sqlalchemy.exc.OperationalError: (pymysql.err.OperationalError) (2003, "Can't connect to MySQL server on 'localhost' ([WinError 10061] No connection could be made because the target machine actively refused it)") (Background on this error at: http://sqlalche.me/e/e3q8)
config.py
database_url = "mysql+pymysql://username:password@localhost:3306/barbeerdrinker"
Here is my __init__.py
from flask import Flask
from flask import jsonify
from flask import make_response
from flask import request
import json
from barbeerdrinker import database
#Flask application
app = Flask(__name__)
@app.route("/")
def hello_world():
return "Hello World"
@app.route("/api/bar", methods=["GET"])
def get_bars():
return jsonify(database.get_bars())
@app.route("/api/bar/<name>", methods=["GETS"])
def find_bar(name):
try:
if name is None:
raise ValueError("Bar is not specified")
bar = database.find_bar(name)
if bar is None:
return make_response("No bar found within given name", 404)
return jsonify(bar)
except ValueError as e:
return make_response(str(e), 400)
except Exception as e:
return make_response(str(e), 500)
@app.route("/api/beers_cheaper_than", methods=["POST"])
def find_beers_cheaper_than():
body = json.loads(request.data)
max_price = body['maxPrice']
return jsonify(database.filter_beers(max_price))
database.py
from sqlalchemy import create_engine
from sqlalchemy import sql
from barbeerdrinker import config
engine = create_engine(config.database_url)
def get_bars():
with engine.connect() as con:
rs = con.execute("SELECT name, address, city, opening, closing, phoneNum FROM bars")
return [dict(row) for row in rs]
def find_bar(name):
with engine.connect() as con:
query = sql.text("SELECT * FROM bars WHERE name = :name;")
rs = con.execute(query, name=name)
result = rs.first()
if result is None:
return None
return dict(result)
def filter_beers(max_price):
with engine.connect() as con:
query = sql.text("SELECT * FROM sells WHERE price < : max_price;")
rs = con.execute(query, max_price=max_price)
results = [dict(row) for row in rs]
for r in results:
r['price'] = float(r['price'])
return results
**Edit: So it seems like the problem is not an issue with my code but a Windows error. One solution I tried to do was to open up the required ports through my firewall to no avail.
python mysql flask sqlalchemy amazon-rds
None of this code is relevant. Sounds like Windows is configured to reject requests on that port.
– roganjosh
Nov 10 at 21:53
I tried to open up those ports in my firewall to no avail
– onbu
Nov 10 at 21:55
Is this all local or is the DB hosted?
– roganjosh
Nov 10 at 21:57
DB is hosted on an AWS RDS server
– onbu
Nov 10 at 21:59
Ahaha, I just spottedbarbeerdrinker
. I don't know enough in this area to help you, sorry, but I'm 99.99% sure it's nothing to do with python, it's a Windows issue
– roganjosh
Nov 10 at 22:03
add a comment |
up vote
-1
down vote
favorite
up vote
-1
down vote
favorite
I am working on a project to work on a website that connects to a mysql server using flask and sqlAlchemy (Hosted on AWS RDS) and I am following this tutorial but when I try to do (/api/bar) I get this error. When I just do my localhost:8080 it shows "Hello World" perfectly fine.
sqlalchemy.exc.OperationalError: (pymysql.err.OperationalError) (2003, "Can't connect to MySQL server on 'localhost' ([WinError 10061] No connection could be made because the target machine actively refused it)") (Background on this error at: http://sqlalche.me/e/e3q8)
config.py
database_url = "mysql+pymysql://username:password@localhost:3306/barbeerdrinker"
Here is my __init__.py
from flask import Flask
from flask import jsonify
from flask import make_response
from flask import request
import json
from barbeerdrinker import database
#Flask application
app = Flask(__name__)
@app.route("/")
def hello_world():
return "Hello World"
@app.route("/api/bar", methods=["GET"])
def get_bars():
return jsonify(database.get_bars())
@app.route("/api/bar/<name>", methods=["GETS"])
def find_bar(name):
try:
if name is None:
raise ValueError("Bar is not specified")
bar = database.find_bar(name)
if bar is None:
return make_response("No bar found within given name", 404)
return jsonify(bar)
except ValueError as e:
return make_response(str(e), 400)
except Exception as e:
return make_response(str(e), 500)
@app.route("/api/beers_cheaper_than", methods=["POST"])
def find_beers_cheaper_than():
body = json.loads(request.data)
max_price = body['maxPrice']
return jsonify(database.filter_beers(max_price))
database.py
from sqlalchemy import create_engine
from sqlalchemy import sql
from barbeerdrinker import config
engine = create_engine(config.database_url)
def get_bars():
with engine.connect() as con:
rs = con.execute("SELECT name, address, city, opening, closing, phoneNum FROM bars")
return [dict(row) for row in rs]
def find_bar(name):
with engine.connect() as con:
query = sql.text("SELECT * FROM bars WHERE name = :name;")
rs = con.execute(query, name=name)
result = rs.first()
if result is None:
return None
return dict(result)
def filter_beers(max_price):
with engine.connect() as con:
query = sql.text("SELECT * FROM sells WHERE price < : max_price;")
rs = con.execute(query, max_price=max_price)
results = [dict(row) for row in rs]
for r in results:
r['price'] = float(r['price'])
return results
**Edit: So it seems like the problem is not an issue with my code but a Windows error. One solution I tried to do was to open up the required ports through my firewall to no avail.
python mysql flask sqlalchemy amazon-rds
I am working on a project to work on a website that connects to a mysql server using flask and sqlAlchemy (Hosted on AWS RDS) and I am following this tutorial but when I try to do (/api/bar) I get this error. When I just do my localhost:8080 it shows "Hello World" perfectly fine.
sqlalchemy.exc.OperationalError: (pymysql.err.OperationalError) (2003, "Can't connect to MySQL server on 'localhost' ([WinError 10061] No connection could be made because the target machine actively refused it)") (Background on this error at: http://sqlalche.me/e/e3q8)
config.py
database_url = "mysql+pymysql://username:password@localhost:3306/barbeerdrinker"
Here is my __init__.py
from flask import Flask
from flask import jsonify
from flask import make_response
from flask import request
import json
from barbeerdrinker import database
#Flask application
app = Flask(__name__)
@app.route("/")
def hello_world():
return "Hello World"
@app.route("/api/bar", methods=["GET"])
def get_bars():
return jsonify(database.get_bars())
@app.route("/api/bar/<name>", methods=["GETS"])
def find_bar(name):
try:
if name is None:
raise ValueError("Bar is not specified")
bar = database.find_bar(name)
if bar is None:
return make_response("No bar found within given name", 404)
return jsonify(bar)
except ValueError as e:
return make_response(str(e), 400)
except Exception as e:
return make_response(str(e), 500)
@app.route("/api/beers_cheaper_than", methods=["POST"])
def find_beers_cheaper_than():
body = json.loads(request.data)
max_price = body['maxPrice']
return jsonify(database.filter_beers(max_price))
database.py
from sqlalchemy import create_engine
from sqlalchemy import sql
from barbeerdrinker import config
engine = create_engine(config.database_url)
def get_bars():
with engine.connect() as con:
rs = con.execute("SELECT name, address, city, opening, closing, phoneNum FROM bars")
return [dict(row) for row in rs]
def find_bar(name):
with engine.connect() as con:
query = sql.text("SELECT * FROM bars WHERE name = :name;")
rs = con.execute(query, name=name)
result = rs.first()
if result is None:
return None
return dict(result)
def filter_beers(max_price):
with engine.connect() as con:
query = sql.text("SELECT * FROM sells WHERE price < : max_price;")
rs = con.execute(query, max_price=max_price)
results = [dict(row) for row in rs]
for r in results:
r['price'] = float(r['price'])
return results
**Edit: So it seems like the problem is not an issue with my code but a Windows error. One solution I tried to do was to open up the required ports through my firewall to no avail.
python mysql flask sqlalchemy amazon-rds
python mysql flask sqlalchemy amazon-rds
edited Nov 10 at 22:47
asked Nov 10 at 21:51
onbu
357
357
None of this code is relevant. Sounds like Windows is configured to reject requests on that port.
– roganjosh
Nov 10 at 21:53
I tried to open up those ports in my firewall to no avail
– onbu
Nov 10 at 21:55
Is this all local or is the DB hosted?
– roganjosh
Nov 10 at 21:57
DB is hosted on an AWS RDS server
– onbu
Nov 10 at 21:59
Ahaha, I just spottedbarbeerdrinker
. I don't know enough in this area to help you, sorry, but I'm 99.99% sure it's nothing to do with python, it's a Windows issue
– roganjosh
Nov 10 at 22:03
add a comment |
None of this code is relevant. Sounds like Windows is configured to reject requests on that port.
– roganjosh
Nov 10 at 21:53
I tried to open up those ports in my firewall to no avail
– onbu
Nov 10 at 21:55
Is this all local or is the DB hosted?
– roganjosh
Nov 10 at 21:57
DB is hosted on an AWS RDS server
– onbu
Nov 10 at 21:59
Ahaha, I just spottedbarbeerdrinker
. I don't know enough in this area to help you, sorry, but I'm 99.99% sure it's nothing to do with python, it's a Windows issue
– roganjosh
Nov 10 at 22:03
None of this code is relevant. Sounds like Windows is configured to reject requests on that port.
– roganjosh
Nov 10 at 21:53
None of this code is relevant. Sounds like Windows is configured to reject requests on that port.
– roganjosh
Nov 10 at 21:53
I tried to open up those ports in my firewall to no avail
– onbu
Nov 10 at 21:55
I tried to open up those ports in my firewall to no avail
– onbu
Nov 10 at 21:55
Is this all local or is the DB hosted?
– roganjosh
Nov 10 at 21:57
Is this all local or is the DB hosted?
– roganjosh
Nov 10 at 21:57
DB is hosted on an AWS RDS server
– onbu
Nov 10 at 21:59
DB is hosted on an AWS RDS server
– onbu
Nov 10 at 21:59
Ahaha, I just spotted
barbeerdrinker
. I don't know enough in this area to help you, sorry, but I'm 99.99% sure it's nothing to do with python, it's a Windows issue– roganjosh
Nov 10 at 22:03
Ahaha, I just spotted
barbeerdrinker
. I don't know enough in this area to help you, sorry, but I'm 99.99% sure it's nothing to do with python, it's a Windows issue– roganjosh
Nov 10 at 22:03
add a comment |
1 Answer
1
active
oldest
votes
up vote
0
down vote
accepted
I just figured it out, turns out the issue is not a windows issue. The problem is within my config.py
:
Instead of:
database_url = "mysql+pymysql://username:password@localhost:3306/barbeerdrinker"
It should be:
database_url = "mysql+pymysql://username:password@**AWSENDPOINT/HOSTNAME**:3306/barbeerdrinker"
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
accepted
I just figured it out, turns out the issue is not a windows issue. The problem is within my config.py
:
Instead of:
database_url = "mysql+pymysql://username:password@localhost:3306/barbeerdrinker"
It should be:
database_url = "mysql+pymysql://username:password@**AWSENDPOINT/HOSTNAME**:3306/barbeerdrinker"
add a comment |
up vote
0
down vote
accepted
I just figured it out, turns out the issue is not a windows issue. The problem is within my config.py
:
Instead of:
database_url = "mysql+pymysql://username:password@localhost:3306/barbeerdrinker"
It should be:
database_url = "mysql+pymysql://username:password@**AWSENDPOINT/HOSTNAME**:3306/barbeerdrinker"
add a comment |
up vote
0
down vote
accepted
up vote
0
down vote
accepted
I just figured it out, turns out the issue is not a windows issue. The problem is within my config.py
:
Instead of:
database_url = "mysql+pymysql://username:password@localhost:3306/barbeerdrinker"
It should be:
database_url = "mysql+pymysql://username:password@**AWSENDPOINT/HOSTNAME**:3306/barbeerdrinker"
I just figured it out, turns out the issue is not a windows issue. The problem is within my config.py
:
Instead of:
database_url = "mysql+pymysql://username:password@localhost:3306/barbeerdrinker"
It should be:
database_url = "mysql+pymysql://username:password@**AWSENDPOINT/HOSTNAME**:3306/barbeerdrinker"
edited Nov 11 at 9:48
SuperShoot
1,448619
1,448619
answered Nov 11 at 1:06
onbu
357
357
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53243762%2fproblems-using-sqlalchemy-to-execute-sql-queries-on-my-database%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
None of this code is relevant. Sounds like Windows is configured to reject requests on that port.
– roganjosh
Nov 10 at 21:53
I tried to open up those ports in my firewall to no avail
– onbu
Nov 10 at 21:55
Is this all local or is the DB hosted?
– roganjosh
Nov 10 at 21:57
DB is hosted on an AWS RDS server
– onbu
Nov 10 at 21:59
Ahaha, I just spotted
barbeerdrinker
. I don't know enough in this area to help you, sorry, but I'm 99.99% sure it's nothing to do with python, it's a Windows issue– roganjosh
Nov 10 at 22:03