11 lines
251 B
Python
11 lines
251 B
Python
|
|
from rec.db import RightmoveListing, session
|
||
|
|
from sqlalchemy import select
|
||
|
|
|
||
|
|
if __name__ == '__main__':
|
||
|
|
print("x")
|
||
|
|
x = select(RightmoveListing).where(RightmoveListing.price <600000)
|
||
|
|
print("y")
|
||
|
|
d = list(session.execute(x))
|
||
|
|
print(d)
|
||
|
|
|