Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Inserting url encoded in postgreSQL adds extra '%' symbols #171

Closed
DLAcoding opened this issue Dec 5, 2022 · 1 comment
Closed

Inserting url encoded in postgreSQL adds extra '%' symbols #171

DLAcoding opened this issue Dec 5, 2022 · 1 comment
Assignees
Labels

Comments

@DLAcoding
Copy link

DLAcoding commented Dec 5, 2022

I have noticed that when I try to insert in postgresql urls which contains '%C3' is inserted as '%%C3': For example:

https://www.amazon.es/Desesperaci%C3%B3n-BEST-SELLER-Stephen-King/dp/8497595890 is inserted as https://www.amazon.es/Desesperaci%%C3%%B3n-BEST-SELLER-Stephen-King/dp/8497595890

If the same statement is executed in sqlite3 DB there is no added '%' symbol, so the problem is when I use it in postgreSQL.

Code with CS50:

url = 'https://www.amazon.es/Desesperaci%C3%B3n-BEST-SELLER-Stephen-King/dp/8497595890'
db = cs50.SQL("postgresql://myDDBB")
db.execute("INSERT INTO urls (url, url2) VALUES (?,?)",url,'cs50')

Now if I execute it using psycopg2 package, the url is inserted with no added '%' symbol (works ok as with a sqlite3 DB).

engine = psycopg2.connect("postgres://myDDBB")
cur = engine.cursor()
cur.execute("INSERT INTO urls (url, url2) VALUES (%s,%s)", (url,"pysco2"))
engine.commit()

As seen in the DB:
image

Am I missing something?

UPDATE

Also tried with sqlalchemy without any issues:

from sqlalchemy import create_engine

db = create_engine("postgresql://myDDBB")
db.execute("INSERT INTO urls (url, url2) VALUES (%s,%s)",url,'sqalchemy')

image

@dmalan dmalan added the bug label Dec 5, 2023
@dmalan dmalan self-assigned this Dec 5, 2023
@dmalan
Copy link
Member

dmalan commented Dec 18, 2023

Thanks for the detailed report, @DLAcoding! This should be fixed in v9.3.3:

pip3 install --upgrade cs50

@dmalan dmalan closed this as completed Dec 18, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

3 participants