Skip to content

Commit f08cb2c

Browse files
committed
running examples
1 parent 7ab10ae commit f08cb2c

File tree

2 files changed

+154
-82
lines changed

2 files changed

+154
-82
lines changed

Notebooks/05_SQLAlchemy.ipynb

+6-6
Original file line numberDiff line numberDiff line change
@@ -1925,7 +1925,7 @@
19251925
}
19261926
],
19271927
"source": [
1928-
"result = session.query(Customers).filter(Customers.id>2)\n",
1928+
"result = session.query(Customers).filter(Customers.id > 2)\n",
19291929
"\n",
19301930
"for row in result:\n",
19311931
" print (\"ID:\", row.id, \"Name: \",row.name, \"Address:\",row.address, \"Email:\",row.email)"
@@ -2046,7 +2046,7 @@
20462046
}
20472047
],
20482048
"source": [
2049-
"result = session.query(Customers).filter(Customers.id>2, Customers.name.like('Ra%'))\n",
2049+
"result = session.query(Customers).filter(Customers.id > 2, Customers.name.like('Ra%'))\n",
20502050
"\n",
20512051
"for row in result:\n",
20522052
" print (\"ID:\", row.id, \"Name: \",row.name, \"Address:\",row.address, \"Email:\",row.email)"
@@ -2070,7 +2070,7 @@
20702070
],
20712071
"source": [
20722072
"from sqlalchemy import and_\n",
2073-
"result = session.query(Customers).filter(and_(Customers.id>2, Customers.name.like('Ra%')))\n",
2073+
"result = session.query(Customers).filter(and_(Customers.id > 2, Customers.name.like('Ra%')))\n",
20742074
"\n",
20752075
"for row in result:\n",
20762076
" print (\"ID:\", row.id, \"Name: \",row.name, \"Address:\",row.address, \"Email:\",rorow.email)"
@@ -2096,7 +2096,7 @@
20962096
],
20972097
"source": [
20982098
"from sqlalchemy import or_\n",
2099-
"result = session.query(Customers).filter(or_(Customers.id>2, Customers.name.like('Ra%')))\n",
2099+
"result = session.query(Customers).filter(or_(Customers.id > 2, Customers.name.like('Ra%')))\n",
21002100
"\n",
21012101
"for row in result:\n",
21022102
" print (\"ID:\", row.id, \"Name: \",row.name, \"Address:\",row.address, \"Email:\",row.email)"
@@ -2433,7 +2433,7 @@
24332433
],
24342434
"metadata": {
24352435
"kernelspec": {
2436-
"display_name": "Python 3",
2436+
"display_name": "Python 3 (ipykernel)",
24372437
"language": "python",
24382438
"name": "python3"
24392439
},
@@ -2447,7 +2447,7 @@
24472447
"name": "python",
24482448
"nbconvert_exporter": "python",
24492449
"pygments_lexer": "ipython3",
2450-
"version": "3.7.6"
2450+
"version": "3.8.10"
24512451
}
24522452
},
24532453
"nbformat": 4,

0 commit comments

Comments
 (0)