zmc
2023-08-08 e792e9a60d958b93aef96050644f369feb25d61b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
U
¸ý°dx,ã!@s¨ddlmZddlmZddlmZddlmZddlmZddlmZddlmZddlm    Z    dd    lm
Z
dd
lm Z dd lm Z dd lm Z dd lmZddlmZddlmZddlmZddlmZddlmZddlmZddlmZddlmZddlmZddlmZddlmZddlmZerúddlm Z ddlm!Z!ddlm"Z"ddl#m$Z$dd l%m&Z&dd!l'm(Z(dd"l)m*Z*dd#l)m+Z+dd$lm,Z,dd%lm-Z-dd&lm.Z.dd'lm/Z/dd(lm0Z0dd)lm1Z1dd*l2m3Z3dd+l2m4Z4dd,l2m5Z5dd-l2m6Z6dd.l2m7Z7dd/l8m9Z9dd0l8m:Z:dd1l8m;Z;dd2l<m=Z=dd3l>m?Z?dd4l>m@Z@dd5l>mAZAdd6l>mBZBdd7l>mCZCdd8l>mDZDdd9l>mEZEdd:l>mFZFdd;l>mGZGdd<l>mHZIdd=lJmKZKdd>lLmMZMdd?lNmOZOdd@lPmQZQddAlPmRZRedBedCZSGdDdE„dEeƒZTedFeUdCZVdGgZWeedHdIdJdKdLgdMdNdOdPdQdRdSdTdUdVdWdXdYdZd[d\d]d^d_d`dadbdcdddedfdgdhgdidjdkdldmdndodpdqg    drGdsdG„dGeeƒƒZXeXZYdtS)ué)Ú annotations)ÚAny)ÚCallable)ÚDict)ÚGeneric)ÚIterable)ÚIterator)ÚOptional)Úoverload)ÚSequence)ÚTuple)ÚType)Ú TYPE_CHECKING)ÚTypeVar)ÚUnioné)Ú_S)ÚSessioné)Úexc)Úutil)Úcreate_proxy_methods)ÚScopedRegistry)ÚThreadLocalRegistry)Úwarn)Úwarn_deprecated)ÚProtocol)Ú _EntityType)Ú_IdentityKeyType)ÚOrmExecuteOptionsParameter)Ú IdentityMap)Ú    ORMOption)ÚMapper)ÚQuery)ÚRowReturningQuery)Ú_BindArguments)Ú_EntityBindKey)Ú_PKIdentityArgument)Ú _SessionBind)Ú sessionmaker)ÚSessionTransaction)Ú
Connection)ÚEngine)ÚResult)ÚRow)Ú
RowMapping)Ú_CoreAnyExecuteParams)Ú_CoreSingleExecuteParams)Ú_ExecuteOptions)Ú ScalarResult)Ú_ColumnsClauseArgument)Ú_T0)Ú_T1)Ú_T2)Ú_T3)Ú_T4)Ú_T5)Ú_T6)Ú_T7)Ú_TypedColumnClauseArgument)Ú
Executable)Ú ClauseElement)ÚTypedColumnsClauseRole)ÚForUpdateParameter)ÚTypedReturnsRowsÚ_T)Úboundc@s"eZdZdZddddœdd„ZdS)    ÚQueryPropertyDescriptorzˆDescribes the type applied to a class-level
    :meth:`_orm.scoped_session.query_property` attribute.
 
    .. versionadded:: 2.0.5
 
    rzType[_T]z    Query[_T]©ÚinstanceÚownerÚreturncCsdS©N©)ÚselfrGrHrKrKúMd:\z\workplace\vscode\pyvenv\venv\Lib\site-packages\sqlalchemy/orm/scoping.pyÚ__get__WszQueryPropertyDescriptor.__get__N)Ú__name__Ú
__module__Ú __qualname__Ú__doc__rNrKrKrKrMrEOsrEÚ_OÚscoped_sessionz:class:`_orm.Session`z$:class:`_orm.scoping.scoped_session`Ú    close_allÚobject_sessionÚ identity_keyÚ __contains__Ú__iter__ÚaddÚadd_allÚbeginÚ begin_nestedÚcloseÚcommitÚ
connectionÚdeleteÚexecuteÚexpireÚ
expire_allÚexpungeÚ expunge_allÚflushÚgetÚget_bindÚ is_modifiedÚbulk_save_objectsÚbulk_insert_mappingsÚbulk_update_mappingsÚmergeÚqueryÚrefreshÚrollbackÚscalarÚscalarsÚbindÚdirtyÚdeletedÚnewÚ identity_mapÚ    is_activeÚ    autoflushÚ no_autoflushÚinfo)Z classmethodsÚmethodsÚ
attributesc @s(eZdZUdZdZded<ded<ded<dædd
d œd d „Zeddœdd„ƒZdddœdd„Z    dddœdd„Z
ddœdd„Z dçdddœdd „Z d!dd"œd#d$„Z d%dœd&d'„Zdèd!ddd)œd*d+„Zd,dd-œd.d/„Zdédd0d1œd2d3„Zd0dœd4d5„Zddœd6d7„Zddœd8d9„Zdêd:d;d<d=œd>d?„Zd!dd"œd@dA„Zedëejd    d    d    dBœdCdDdEd:dFdFdGdHœdIdJ„ƒZedìejd    d    d    dBœdKdDdEd:dFdFdLdHœdMdJ„ƒZdíejd    d    d    dBœdKdDdEd:dFdFdLdHœdNdJ„Zdîd!dOddPœdQdR„ZddœdSdT„Zd!dd"œdUdV„ZddœdWdX„ZdïdYddZœd[d\„Zd    dd    d    ejd    d]œd^d_d`ddadFdEd:dbdcœ    ddde„Z dðd    d    d    ddfœdgdhdidjdddkdlœdmdn„Z!dñd!dddoœdpdq„Z"dòd,dddddrœdsdt„Z#dódudvddddwœdxdy„Z$dudvddzœd{d|„Z%d(d    d}œd~dd`d~dœd€d„Z&ed‚dƒd„œd…d†„ƒZ'ed‡dˆd‰œdŠd†„ƒZ'ed‹dŒddŽœdd†„ƒZ'ed‹dŒdd‘d’œd“d†„ƒZ'ed‹dŒdd”d•d–œd—d†„ƒZ'ed‹dŒdd”d˜d™dšœd›d†„ƒZ'ed‹dŒdd”d˜dœddžœdŸd†„ƒZ'ed‹dŒdd”d˜dœd d¡d¢œd£d†„ƒZ'ed‹dŒdd”d˜dœd d¤d¥d¦œ    d§d†„ƒZ'ed¨dd©dªœd«d†„ƒZ'd¨dd©dªœd¬d†„Z'dôd!dOdadd­œd®d¯„Z(ddœd°d±„Z)edõejd    d²œd³d´dEd:ddµd¶œd·d¸„ƒZ*edöejd    d²œdKd´dEd:ddd¶œd¹d¸„ƒZ*d÷ejd    d²œdKd´dEd:ddd¶œdºd¸„Z*edøejd    d²œd³dDdEd:dd»d¶œd¼d½„ƒZ+edùejd    d²œdKdDdEd:dd¾d¶œd¿d½„ƒZ+dúejd    d²œdKdDdEd:dd¾d¶œdÀd½„Z+edÁdœdÂdăZ,e,j-dÁddĜdÅdăZ,eddœdÆdDŽƒZ.eddœdÈdɄƒZ/eddœdÊd˄ƒZ0edÌdœdÍd΄ƒZ1e1j-dÌddĜdÏd΄ƒZ1eddœdÐdфƒZ2eddœdÒdӄƒZ3e3j-dddĜdÔdӄƒZ3eddœdÕdքƒZ4eddœd×d؄ƒZ5e6ddœdÙdڄƒZ7e6d!dÛd"œdÜd݄ƒZ8e6dûd    d    d    dޜdßdàdFdádFdâdãœdäd儃Z9d    S)ürTa4Provides scoped management of :class:`.Session` objects.
 
    See :ref:`unitofwork_contextual` for a tutorial.
 
    .. note::
 
       When using :ref:`asyncio_toplevel`, the async-compatible
       :class:`_asyncio.async_scoped_session` class should be
       used in place of :class:`.scoped_session`.
 
    FÚboolÚ_support_asynczsessionmaker[_S]Úsession_factoryzScopedRegistry[_S]ÚregistryNzOptional[Callable[[], Any]])rÚ    scopefunccCs&||_|rt||ƒ|_n
t|ƒ|_dS)aÑConstruct a new :class:`.scoped_session`.
 
        :param session_factory: a factory to create new :class:`.Session`
         instances. This is usually, but not necessarily, an instance
         of :class:`.sessionmaker`.
        :param scopefunc: optional function which defines
         the current scope.   If not passed, the :class:`.scoped_session`
         object assumes "thread-local" scope, and will use
         a Python ``threading.local()`` in order to maintain the current
         :class:`.Session`.  If passed, the function should return
         a hashable token; this token will be used as the key in a
         dictionary in order to store and retrieve the current
         :class:`.Session`.
 
        N)rrr‚r)rLrrƒrKrKrMÚ__init__¥szscoped_session.__init__r)rIcCs| ¡SrJ)r‚©rLrKrKrMÚ_proxiedÁszscoped_session._proxiedr)ÚkwrIcKsV|r4|j ¡rt d¡‚q<|jf|Ž}|j |¡n| ¡}|jsR|jrRtddƒ|S)aÎReturn the current :class:`.Session`, creating it
        using the :attr:`.scoped_session.session_factory` if not present.
 
        :param \**kw: Keyword arguments will be passed to the
         :attr:`.scoped_session.session_factory` callable, if an existing
         :class:`.Session` is not present.  If the :class:`.Session` is present
         and keyword arguments have been passed,
         :exc:`~sqlalchemy.exc.InvalidRequestError` is raised.
 
        zEScoped session is already present; no new arguments may be specified.z‰Using `scoped_session` with asyncio is deprecated and will raise an error in a future version. Please use `async_scoped_session` instead.z1.4.23)    r‚ÚhasÚsa_excZInvalidRequestErrorrÚsetr€Z _is_asyncior)rLr‡ÚsessrKrKrMÚ__call__Ås 
ÿ  üzscoped_session.__call__ÚNone)ÚkwargsrIcKs$|j ¡rtdƒ|jjf|ŽdS)zreconfigure the :class:`.sessionmaker` used by this
        :class:`.scoped_session`.
 
        See :meth:`.sessionmaker.configure`.
 
        ztAt least one scoped session is already present.  configure() can not affect sessions that have already been created.N)r‚rˆrrÚ    configure)rLrŽrKrKrMräs
 
ÿzscoped_session.configurecCs$|j ¡r| ¡ ¡|j ¡dS)aæDispose of the current :class:`.Session`, if present.
 
        This will first call :meth:`.Session.close` method
        on the current :class:`.Session`, which releases any existing
        transactional/connection resources still being held; transactions
        specifically are rolled back.  The :class:`.Session` is then
        discarded.   Upon next usage within the same scope,
        the :class:`.scoped_session` will produce a new
        :class:`.Session` object.
 
        N)r‚rˆr^Úclearr…rKrKrMÚremoveõs
 zscoped_session.removezOptional[Type[Query[_T]]]rE)Ú    query_clsrIcsG‡‡fdd„dƒ}|ƒS)aÅreturn a class property which produces a legacy
        :class:`_query.Query` object against the class and the current
        :class:`.Session` when called.
 
        .. legacy:: The :meth:`_orm.scoped_session.query_property` accessor
           is specific to the legacy :class:`.Query` object and is not
           considered to be part of :term:`2.0-style` ORM use.
 
        e.g.::
 
            from sqlalchemy.orm import QueryPropertyDescriptor
            from sqlalchemy.orm import scoped_session
            from sqlalchemy.orm import sessionmaker
 
            Session = scoped_session(sessionmaker())
 
            class MyClass:
                query: QueryPropertyDescriptor = Session.query_property()
 
            # after mappers are defined
            result = MyClass.query.filter(MyClass.name=='foo').all()
 
        Produces instances of the session's configured query class by
        default.  To override and use a custom implementation, provide
        a ``query_cls`` callable.  The callable will be invoked with
        the class's mapper as a positional argument and a session
        keyword argument.
 
        There is no limit to the number of query properties placed on
        a class.
 
        cs$eZdZddddœ‡‡fdd„ ZdS)z,scoped_session.query_property.<locals>.queryrzType[_O]ú    Query[_O]rFcs&ˆrˆ|ˆ ¡dSˆ ¡ |¡SdS)N)Úsession)r‚ro)ÚsrGrH©r’rLrKrMrN+sz4scoped_session.query_property.<locals>.query.__get__N)rOrPrQrNrKr–rKrMro*srorK)rLr’rorKr–rMÚquery_propertys$    zscoped_session.query_propertyÚobject)rGrIcCs |j |¡S)aQReturn True if the instance is associated with this session.
 
        .. container:: class_bases
 
            Proxied for the :class:`_orm.Session` class on
            behalf of the :class:`_orm.scoping.scoped_session` class.
 
        The instance may be pending or persistent within the Session for a
        result of True.
 
 
        )r†rX©rLrGrKrKrMrX:szscoped_session.__contains__zIterator[object]cCs
|j ¡S)zþIterate over all pending or persistent instances within this
        Session.
 
        .. container:: class_bases
 
            Proxied for the :class:`_orm.Session` class on
            behalf of the :class:`_orm.scoping.scoped_session` class.
 
 
        )r†rYr…rKrKrMrYJs zscoped_session.__iter__T)rGÚ_warnrIcCs|jj||dS)a@Place an object into this :class:`_orm.Session`.
 
        .. container:: class_bases
 
            Proxied for the :class:`_orm.Session` class on
            behalf of the :class:`_orm.scoping.scoped_session` class.
 
        Objects that are in the :term:`transient` state when passed to the
        :meth:`_orm.Session.add` method will move to the
        :term:`pending` state, until the next flush, at which point they
        will move to the :term:`persistent` state.
 
        Objects that are in the :term:`detached` state when passed to the
        :meth:`_orm.Session.add` method will move to the :term:`persistent`
        state directly.
 
        If the transaction used by the :class:`_orm.Session` is rolled back,
        objects which were transient when they were passed to
        :meth:`_orm.Session.add` will be moved back to the
        :term:`transient` state, and will no longer be present within this
        :class:`_orm.Session`.
 
        .. seealso::
 
            :meth:`_orm.Session.add_all`
 
            :ref:`session_adding` - at :ref:`session_basics`
 
 
        )rš)r†rZ)rLrGršrKrKrMrZXs zscoped_session.addzIterable[object])Ú    instancesrIcCs |j |¡S)aÙAdd the given collection of instances to this :class:`_orm.Session`.
 
        .. container:: class_bases
 
            Proxied for the :class:`_orm.Session` class on
            behalf of the :class:`_orm.scoping.scoped_session` class.
 
        See the documentation for :meth:`_orm.Session.add` for a general
        behavioral description.
 
        .. seealso::
 
            :meth:`_orm.Session.add`
 
            :ref:`session_adding` - at :ref:`session_basics`
 
 
        )r†r[)rLr›rKrKrMr[zszscoped_session.add_allr*)ÚnestedrIcCs|jj|dS)apBegin a transaction, or nested transaction,
        on this :class:`.Session`, if one is not already begun.
 
        .. container:: class_bases
 
            Proxied for the :class:`_orm.Session` class on
            behalf of the :class:`_orm.scoping.scoped_session` class.
 
        The :class:`_orm.Session` object features **autobegin** behavior,
        so that normally it is not necessary to call the
        :meth:`_orm.Session.begin`
        method explicitly. However, it may be used in order to control
        the scope of when the transactional state is begun.
 
        When used to begin the outermost transaction, an error is raised
        if this :class:`.Session` is already inside of a transaction.
 
        :param nested: if True, begins a SAVEPOINT transaction and is
         equivalent to calling :meth:`~.Session.begin_nested`. For
         documentation on SAVEPOINT transactions, please see
         :ref:`session_begin_nested`.
 
        :return: the :class:`.SessionTransaction` object.  Note that
         :class:`.SessionTransaction`
         acts as a Python context manager, allowing :meth:`.Session.begin`
         to be used in a "with" block.  See :ref:`session_explicit_begin` for
         an example.
 
        .. seealso::
 
            :ref:`session_autobegin`
 
            :ref:`unitofwork_transaction`
 
            :meth:`.Session.begin_nested`
 
 
 
        )rœ)r†r\)rLrœrKrKrMr\s)zscoped_session.begincCs
|j ¡S)aÉBegin a "nested" transaction on this Session, e.g. SAVEPOINT.
 
        .. container:: class_bases
 
            Proxied for the :class:`_orm.Session` class on
            behalf of the :class:`_orm.scoping.scoped_session` class.
 
        The target database(s) and associated drivers must support SQL
        SAVEPOINT for this method to function correctly.
 
        For documentation on SAVEPOINT
        transactions, please see :ref:`session_begin_nested`.
 
        :return: the :class:`.SessionTransaction` object.  Note that
         :class:`.SessionTransaction` acts as a context manager, allowing
         :meth:`.Session.begin_nested` to be used in a "with" block.
         See :ref:`session_begin_nested` for a usage example.
 
        .. seealso::
 
            :ref:`session_begin_nested`
 
            :ref:`pysqlite_serializable` - special workarounds required
            with the SQLite driver in order for SAVEPOINT to work
            correctly.
 
 
        )r†r]r…rKrKrMr]»szscoped_session.begin_nestedcCs
|j ¡S)a»Close out the transactional resources and ORM objects used by this
        :class:`_orm.Session`.
 
        .. container:: class_bases
 
            Proxied for the :class:`_orm.Session` class on
            behalf of the :class:`_orm.scoping.scoped_session` class.
 
        This expunges all ORM objects associated with this
        :class:`_orm.Session`, ends any transaction in progress and
        :term:`releases` any :class:`_engine.Connection` objects which this
        :class:`_orm.Session` itself has checked out from associated
        :class:`_engine.Engine` objects. The operation then leaves the
        :class:`_orm.Session` in a state which it may be used again.
 
        .. tip::
 
            The :meth:`_orm.Session.close` method **does not prevent the
            Session from being used again**.   The :class:`_orm.Session` itself
            does not actually have a distinct "closed" state; it merely means
            the :class:`_orm.Session` will release all database connections
            and ORM objects.
 
        .. versionchanged:: 1.4  The :meth:`.Session.close` method does not
           immediately create a new :class:`.SessionTransaction` object;
           instead, the new :class:`.SessionTransaction` is created only if
           the :class:`.Session` is used again for a database operation.
 
        .. seealso::
 
            :ref:`session_closing` - detail on the semantics of
            :meth:`_orm.Session.close`
 
 
        )r†r^r…rKrKrMr^Ûs%zscoped_session.closecCs
|j ¡S)a Flush pending changes and commit the current transaction.
 
        .. container:: class_bases
 
            Proxied for the :class:`_orm.Session` class on
            behalf of the :class:`_orm.scoping.scoped_session` class.
 
        When the COMMIT operation is complete, all objects are fully
        :term:`expired`, erasing their internal contents, which will be
        automatically re-loaded when the objects are next accessed. In the
        interim, these objects are in an expired state and will not function if
        they are :term:`detached` from the :class:`.Session`. Additionally,
        this re-load operation is not supported when using asyncio-oriented
        APIs. The :paramref:`.Session.expire_on_commit` parameter may be used
        to disable this behavior.
 
        When there is no transaction in place for the :class:`.Session`,
        indicating that no operations were invoked on this :class:`.Session`
        since the previous call to :meth:`.Session.commit`, the method will
        begin and commit an internal-only "logical" transaction, that does not
        normally affect the database unless pending flush changes were
        detected, but will still invoke event handlers and object expiration
        rules.
 
        The outermost database transaction is committed unconditionally,
        automatically releasing any SAVEPOINTs in effect.
 
        .. seealso::
 
            :ref:`session_committing`
 
            :ref:`unitofwork_transaction`
 
            :ref:`asyncio_orm_avoid_lazyloads`
 
 
        )r†r_r…rKrKrMr_s'zscoped_session.commitzOptional[_BindArguments]zOptional[_ExecuteOptions]r+)Úbind_argumentsÚexecution_optionsrIcCs|jj||dS)aÉReturn a :class:`_engine.Connection` object corresponding to this
        :class:`.Session` object's transactional state.
 
        .. container:: class_bases
 
            Proxied for the :class:`_orm.Session` class on
            behalf of the :class:`_orm.scoping.scoped_session` class.
 
        Either the :class:`_engine.Connection` corresponding to the current
        transaction is returned, or if no transaction is in progress, a new
        one is begun and the :class:`_engine.Connection`
        returned (note that no
        transactional state is established with the DBAPI until the first
        SQL statement is emitted).
 
        Ambiguity in multi-bind or unbound :class:`.Session` objects can be
        resolved through any of the optional keyword arguments.   This
        ultimately makes usage of the :meth:`.get_bind` method for resolution.
 
        :param bind_arguments: dictionary of bind arguments.  May include
         "mapper", "bind", "clause", other custom arguments that are passed
         to :meth:`.Session.get_bind`.
 
        :param execution_options: a dictionary of execution options that will
         be passed to :meth:`_engine.Connection.execution_options`, **when the
         connection is first procured only**.   If the connection is already
         present within the :class:`.Session`, a warning is emitted and
         the arguments are ignored.
 
         .. seealso::
 
            :ref:`session_transaction_isolation`
 
 
        )rrž)r†r`)rLrržrKrKrMr`+s)ÿzscoped_session.connectioncCs |j |¡S)aýMark an instance as deleted.
 
        .. container:: class_bases
 
            Proxied for the :class:`_orm.Session` class on
            behalf of the :class:`_orm.scoping.scoped_session` class.
 
        The object is assumed to be either :term:`persistent` or
        :term:`detached` when passed; after the method is called, the
        object will remain in the :term:`persistent` state until the next
        flush proceeds.  During this time, the object will also be a member
        of the :attr:`_orm.Session.deleted` collection.
 
        When the next flush proceeds, the object will move to the
        :term:`deleted` state, indicating a ``DELETE`` statement was emitted
        for its row within the current transaction.   When the transaction
        is successfully committed,
        the deleted object is moved to the :term:`detached` state and is
        no longer present within this :class:`_orm.Session`.
 
        .. seealso::
 
            :ref:`session_deleting` - at :ref:`session_basics`
 
 
        )r†rar™rKrKrMraXszscoped_session.delete)ržrÚ_parent_execute_stateÚ
_add_eventzTypedReturnsRows[_T]zOptional[_CoreAnyExecuteParams]rz Optional[Any]z
Result[_T])Ú    statementÚparamsržrrŸr rIcCsdSrJrK©rLr¡r¢ržrrŸr rKrKrMrbvs zscoped_session.executer>z Result[Any]cCsdSrJrKr£rKrKrMrbƒs cCs|jj||||||dS)a€Execute a SQL expression construct.
 
        .. container:: class_bases
 
            Proxied for the :class:`_orm.Session` class on
            behalf of the :class:`_orm.scoping.scoped_session` class.
 
        Returns a :class:`_engine.Result` object representing
        results of the statement execution.
 
        E.g.::
 
            from sqlalchemy import select
            result = session.execute(
                select(User).where(User.id == 5)
            )
 
        The API contract of :meth:`_orm.Session.execute` is similar to that
        of :meth:`_engine.Connection.execute`, the :term:`2.0 style` version
        of :class:`_engine.Connection`.
 
        .. versionchanged:: 1.4 the :meth:`_orm.Session.execute` method is
           now the primary point of ORM statement execution when using
           :term:`2.0 style` ORM usage.
 
        :param statement:
            An executable statement (i.e. an :class:`.Executable` expression
            such as :func:`_expression.select`).
 
        :param params:
            Optional dictionary, or list of dictionaries, containing
            bound parameter values.   If a single dictionary, single-row
            execution occurs; if a list of dictionaries, an
            "executemany" will be invoked.  The keys in each dictionary
            must correspond to parameter names present in the statement.
 
        :param execution_options: optional dictionary of execution options,
         which will be associated with the statement execution.  This
         dictionary can provide a subset of the options that are accepted
         by :meth:`_engine.Connection.execution_options`, and may also
         provide additional options understood only in an ORM context.
 
         .. seealso::
 
            :ref:`orm_queryguide_execution_options` - ORM-specific execution
            options
 
        :param bind_arguments: dictionary of additional arguments to determine
         the bind.  May include "mapper", "bind", or other custom arguments.
         Contents of this dictionary are passed to the
         :meth:`.Session.get_bind` method.
 
        :return: a :class:`_engine.Result` object.
 
 
 
        )r¢ržrrŸr )r†rbr£rKrKrMrbsDúzOptional[Iterable[str]])rGÚattribute_namesrIcCs|jj||dS)agExpire the attributes on an instance.
 
        .. container:: class_bases
 
            Proxied for the :class:`_orm.Session` class on
            behalf of the :class:`_orm.scoping.scoped_session` class.
 
        Marks the attributes of an instance as out of date. When an expired
        attribute is next accessed, a query will be issued to the
        :class:`.Session` object's current transactional context in order to
        load all expired attributes for the given instance.   Note that
        a highly isolated transaction will return the same values as were
        previously read in that same transaction, regardless of changes
        in database state outside of that transaction.
 
        To expire all objects in the :class:`.Session` simultaneously,
        use :meth:`Session.expire_all`.
 
        The :class:`.Session` object's default behavior is to
        expire all state whenever the :meth:`Session.rollback`
        or :meth:`Session.commit` methods are called, so that new
        state can be loaded for the new transaction.   For this reason,
        calling :meth:`Session.expire` only makes sense for the specific
        case that a non-ORM SQL statement was emitted in the current
        transaction.
 
        :param instance: The instance to be refreshed.
        :param attribute_names: optional list of string attribute names
          indicating a subset of attributes to be expired.
 
        .. seealso::
 
            :ref:`session_expire` - introductory material
 
            :meth:`.Session.expire`
 
            :meth:`.Session.refresh`
 
            :meth:`_orm.Query.populate_existing`
 
 
        )r¤)r†rc)rLrGr¤rKrKrMrcÝs.zscoped_session.expirecCs
|j ¡S)aqExpires all persistent instances within this Session.
 
        .. container:: class_bases
 
            Proxied for the :class:`_orm.Session` class on
            behalf of the :class:`_orm.scoping.scoped_session` class.
 
        When any attributes on a persistent instance is next accessed,
        a query will be issued using the
        :class:`.Session` object's current transactional context in order to
        load all expired attributes for the given instance.   Note that
        a highly isolated transaction will return the same values as were
        previously read in that same transaction, regardless of changes
        in database state outside of that transaction.
 
        To expire individual objects and individual attributes
        on those objects, use :meth:`Session.expire`.
 
        The :class:`.Session` object's default behavior is to
        expire all state whenever the :meth:`Session.rollback`
        or :meth:`Session.commit` methods are called, so that new
        state can be loaded for the new transaction.   For this reason,
        calling :meth:`Session.expire_all` is not usually needed,
        assuming the transaction is isolated.
 
        .. seealso::
 
            :ref:`session_expire` - introductory material
 
            :meth:`.Session.expire`
 
            :meth:`.Session.refresh`
 
            :meth:`_orm.Query.populate_existing`
 
 
        )r†rdr…rKrKrMrd s'zscoped_session.expire_allcCs |j |¡S)ajRemove the `instance` from this ``Session``.
 
        .. container:: class_bases
 
            Proxied for the :class:`_orm.Session` class on
            behalf of the :class:`_orm.scoping.scoped_session` class.
 
        This will free all internal references to the instance.  Cascading
        will be applied according to the *expunge* cascade rule.
 
 
        )r†rer™rKrKrMre6szscoped_session.expungecCs
|j ¡S)aGRemove all object instances from this ``Session``.
 
        .. container:: class_bases
 
            Proxied for the :class:`_orm.Session` class on
            behalf of the :class:`_orm.scoping.scoped_session` class.
 
        This is equivalent to calling ``expunge(obj)`` on all objects in this
        ``Session``.
 
 
        )r†rfr…rKrKrMrfFszscoped_session.expunge_allzOptional[Sequence[Any]])ÚobjectsrIcCs|jj|dS)a”Flush all the object changes to the database.
 
        .. container:: class_bases
 
            Proxied for the :class:`_orm.Session` class on
            behalf of the :class:`_orm.scoping.scoped_session` class.
 
        Writes out all pending object creations, deletions and modifications
        to the database as INSERTs, DELETEs, UPDATEs, etc.  Operations are
        automatically ordered by the Session's unit of work dependency
        solver.
 
        Database operations will be issued in the current transactional
        context and do not affect the state of the transaction, unless an
        error occurs, in which case the entire transaction is rolled back.
        You may flush() as often as you like within a transaction to move
        changes from Python to the database's transaction buffer.
 
        :param objects: Optional; restricts the flush operation to operate
          only on elements that are in the given collection.
 
          This feature is for an extremely narrow set of use cases where
          particular objects may need to be operated upon before the
          full flush() occurs.  It is not intended for general use.
 
 
        )r¥)r†rg)rLr¥rKrKrMrgVszscoped_session.flush©ÚoptionsÚpopulate_existingÚwith_for_updateÚidentity_tokenržrz_EntityBindKey[_O]r'zOptional[Sequence[ORMOption]]rAz Optional[_O])    ÚentityÚidentr§r¨r©rªržrrIc    
Cs|jj||||||||dS)a¢Return an instance based on the given primary key identifier,
        or ``None`` if not found.
 
        .. container:: class_bases
 
            Proxied for the :class:`_orm.Session` class on
            behalf of the :class:`_orm.scoping.scoped_session` class.
 
        E.g.::
 
            my_user = session.get(User, 5)
 
            some_object = session.get(VersionedFoo, (5, 10))
 
            some_object = session.get(
                VersionedFoo,
                {"id": 5, "version_id": 10}
            )
 
        .. versionadded:: 1.4 Added :meth:`_orm.Session.get`, which is moved
           from the now legacy :meth:`_orm.Query.get` method.
 
        :meth:`_orm.Session.get` is special in that it provides direct
        access to the identity map of the :class:`.Session`.
        If the given primary key identifier is present
        in the local identity map, the object is returned
        directly from this collection and no SQL is emitted,
        unless the object has been marked fully expired.
        If not present,
        a SELECT is performed in order to locate the object.
 
        :meth:`_orm.Session.get` also will perform a check if
        the object is present in the identity map and
        marked as expired - a SELECT
        is emitted to refresh the object as well as to
        ensure that the row is still present.
        If not, :class:`~sqlalchemy.orm.exc.ObjectDeletedError` is raised.
 
        :param entity: a mapped class or :class:`.Mapper` indicating the
         type of entity to be loaded.
 
        :param ident: A scalar, tuple, or dictionary representing the
         primary key.  For a composite (e.g. multiple column) primary key,
         a tuple or dictionary should be passed.
 
         For a single-column primary key, the scalar calling form is typically
         the most expedient.  If the primary key of a row is the value "5",
         the call looks like::
 
            my_object = session.get(SomeClass, 5)
 
         The tuple form contains primary key values typically in
         the order in which they correspond to the mapped
         :class:`_schema.Table`
         object's primary key columns, or if the
         :paramref:`_orm.Mapper.primary_key` configuration parameter were
         used, in
         the order used for that parameter. For example, if the primary key
         of a row is represented by the integer
         digits "5, 10" the call would look like::
 
             my_object = session.get(SomeClass, (5, 10))
 
         The dictionary form should include as keys the mapped attribute names
         corresponding to each element of the primary key.  If the mapped class
         has the attributes ``id``, ``version_id`` as the attributes which
         store the object's primary key value, the call would look like::
 
            my_object = session.get(SomeClass, {"id": 5, "version_id": 10})
 
        :param options: optional sequence of loader options which will be
         applied to the query, if one is emitted.
 
        :param populate_existing: causes the method to unconditionally emit
         a SQL query and refresh the object with the newly loaded data,
         regardless of whether or not the object is already present.
 
        :param with_for_update: optional boolean ``True`` indicating FOR UPDATE
          should be used, or may be a dictionary containing flags to
          indicate a more specific set of FOR UPDATE flags for the SELECT;
          flags should match the parameters of
          :meth:`_query.Query.with_for_update`.
          Supersedes the :paramref:`.Session.refresh.lockmode` parameter.
 
        :param execution_options: optional dictionary of execution options,
         which will be associated with the query execution if one is emitted.
         This dictionary can provide a subset of the options that are
         accepted by :meth:`_engine.Connection.execution_options`, and may
         also provide additional options understood only in an ORM context.
 
         .. versionadded:: 1.4.29
 
         .. seealso::
 
            :ref:`orm_queryguide_execution_options` - ORM-specific execution
            options
 
        :param bind_arguments: dictionary of additional arguments to determine
         the bind.  May include "mapper", "bind", or other custom arguments.
         Contents of this dictionary are passed to the
         :meth:`.Session.get_bind` method.
 
         .. versionadded: 2.0.0rc1
 
        :return: The object instance, or ``None``.
 
 
        r¦)r†rh)    rLr«r¬r§r¨r©rªržrrKrKrMrhusyøzscoped_session.get)ÚclausertÚ_sa_skip_eventsÚ_sa_skip_for_implicit_returningzOptional[_EntityBindKey[_O]]zOptional[ClauseElement]zOptional[_SessionBind]zOptional[bool]zUnion[Engine, Connection])Úmapperr­rtr®r¯r‡rIcKs|jjf|||||dœ|—ŽS)aî Return a "bind" to which this :class:`.Session` is bound.
 
        .. container:: class_bases
 
            Proxied for the :class:`_orm.Session` class on
            behalf of the :class:`_orm.scoping.scoped_session` class.
 
        The "bind" is usually an instance of :class:`_engine.Engine`,
        except in the case where the :class:`.Session` has been
        explicitly bound directly to a :class:`_engine.Connection`.
 
        For a multiply-bound or unbound :class:`.Session`, the
        ``mapper`` or ``clause`` arguments are used to determine the
        appropriate bind to return.
 
        Note that the "mapper" argument is usually present
        when :meth:`.Session.get_bind` is called via an ORM
        operation such as a :meth:`.Session.query`, each
        individual INSERT/UPDATE/DELETE operation within a
        :meth:`.Session.flush`, call, etc.
 
        The order of resolution is:
 
        1. if mapper given and :paramref:`.Session.binds` is present,
           locate a bind based first on the mapper in use, then
           on the mapped class in use, then on any base classes that are
           present in the ``__mro__`` of the mapped class, from more specific
           superclasses to more general.
        2. if clause given and ``Session.binds`` is present,
           locate a bind based on :class:`_schema.Table` objects
           found in the given clause present in ``Session.binds``.
        3. if ``Session.binds`` is present, return that.
        4. if clause given, attempt to return a bind
           linked to the :class:`_schema.MetaData` ultimately
           associated with the clause.
        5. if mapper given, attempt to return a bind
           linked to the :class:`_schema.MetaData` ultimately
           associated with the :class:`_schema.Table` or other
           selectable to which the mapper is mapped.
        6. No bind can be found, :exc:`~sqlalchemy.exc.UnboundExecutionError`
           is raised.
 
        Note that the :meth:`.Session.get_bind` method can be overridden on
        a user-defined subclass of :class:`.Session` to provide any kind
        of bind resolution scheme.  See the example at
        :ref:`session_custom_partitioning`.
 
        :param mapper:
          Optional mapped class or corresponding :class:`_orm.Mapper` instance.
          The bind can be derived from a :class:`_orm.Mapper` first by
          consulting the "binds" map associated with this :class:`.Session`,
          and secondly by consulting the :class:`_schema.MetaData` associated
          with the :class:`_schema.Table` to which the :class:`_orm.Mapper` is
          mapped for a bind.
 
        :param clause:
            A :class:`_expression.ClauseElement` (i.e.
            :func:`_expression.select`,
            :func:`_expression.text`,
            etc.).  If the ``mapper`` argument is not present or could not
            produce a bind, the given expression construct will be searched
            for a bound element, typically a :class:`_schema.Table`
            associated with
            bound :class:`_schema.MetaData`.
 
        .. seealso::
 
             :ref:`session_partitioning`
 
             :paramref:`.Session.binds`
 
             :meth:`.Session.bind_mapper`
 
             :meth:`.Session.bind_table`
 
 
        )r°r­rtr®r¯)r†ri)rLr°r­rtr®r¯r‡rKrKrMriùsXûúzscoped_session.get_bind)rGÚinclude_collectionsrIcCs|jj||dS)aà
Return ``True`` if the given instance has locally
        modified attributes.
 
        .. container:: class_bases
 
            Proxied for the :class:`_orm.Session` class on
            behalf of the :class:`_orm.scoping.scoped_session` class.
 
        This method retrieves the history for each instrumented
        attribute on the instance and performs a comparison of the current
        value to its previously committed value, if any.
 
        It is in effect a more expensive and accurate
        version of checking for the given instance in the
        :attr:`.Session.dirty` collection; a full test for
        each attribute's net "dirty" status is performed.
 
        E.g.::
 
            return session.is_modified(someobject)
 
        A few caveats to this method apply:
 
        * Instances present in the :attr:`.Session.dirty` collection may
          report ``False`` when tested with this method.  This is because
          the object may have received change events via attribute mutation,
          thus placing it in :attr:`.Session.dirty`, but ultimately the state
          is the same as that loaded from the database, resulting in no net
          change here.
        * Scalar attributes may not have recorded the previously set
          value when a new value was applied, if the attribute was not loaded,
          or was expired, at the time the new value was received - in these
          cases, the attribute is assumed to have a change, even if there is
          ultimately no net change against its database value. SQLAlchemy in
          most cases does not need the "old" value when a set event occurs, so
          it skips the expense of a SQL call if the old value isn't present,
          based on the assumption that an UPDATE of the scalar value is
          usually needed, and in those few cases where it isn't, is less
          expensive on average than issuing a defensive SELECT.
 
          The "old" value is fetched unconditionally upon set only if the
          attribute container has the ``active_history`` flag set to ``True``.
          This flag is set typically for primary key attributes and scalar
          object references that are not a simple many-to-one.  To set this
          flag for any arbitrary mapped column, use the ``active_history``
          argument with :func:`.column_property`.
 
        :param instance: mapped instance to be tested for pending changes.
        :param include_collections: Indicates if multivalued collections
         should be included in the operation.  Setting this to ``False`` is a
         way to detect only local-column based properties (i.e. scalar columns
         or many-to-one foreign keys) that would result in an UPDATE for this
         instance upon flush.
 
 
        )r±)r†rj)rLrGr±rKrKrMrjZs<ÿzscoped_session.is_modified)r¥Úreturn_defaultsÚupdate_changed_onlyÚpreserve_orderrIcCs|jj||||dS)a3 Perform a bulk save of the given list of objects.
 
        .. container:: class_bases
 
            Proxied for the :class:`_orm.Session` class on
            behalf of the :class:`_orm.scoping.scoped_session` class.
 
        .. legacy::
 
            This method is a legacy feature as of the 2.0 series of
            SQLAlchemy.   For modern bulk INSERT and UPDATE, see
            the sections :ref:`orm_queryguide_bulk_insert` and
            :ref:`orm_queryguide_bulk_update`.
 
            For general INSERT and UPDATE of existing ORM mapped objects,
            prefer standard :term:`unit of work` data management patterns,
            introduced in the :ref:`unified_tutorial` at
            :ref:`tutorial_orm_data_manipulation`.  SQLAlchemy 2.0
            now uses :ref:`engine_insertmanyvalues` with modern dialects
            which solves previous issues of bulk INSERT slowness.
 
        :param objects: a sequence of mapped object instances.  The mapped
         objects are persisted as is, and are **not** associated with the
         :class:`.Session` afterwards.
 
         For each object, whether the object is sent as an INSERT or an
         UPDATE is dependent on the same rules used by the :class:`.Session`
         in traditional operation; if the object has the
         :attr:`.InstanceState.key`
         attribute set, then the object is assumed to be "detached" and
         will result in an UPDATE.  Otherwise, an INSERT is used.
 
         In the case of an UPDATE, statements are grouped based on which
         attributes have changed, and are thus to be the subject of each
         SET clause.  If ``update_changed_only`` is False, then all
         attributes present within each object are applied to the UPDATE
         statement, which may help in allowing the statements to be grouped
         together into a larger executemany(), and will also reduce the
         overhead of checking history on attributes.
 
        :param return_defaults: when True, rows that are missing values which
         generate defaults, namely integer primary key defaults and sequences,
         will be inserted **one at a time**, so that the primary key value
         is available.  In particular this will allow joined-inheritance
         and other multi-table mappings to insert correctly without the need
         to provide primary key values ahead of time; however,
         :paramref:`.Session.bulk_save_objects.return_defaults` **greatly
         reduces the performance gains** of the method overall.  It is strongly
         advised to please use the standard :meth:`_orm.Session.add_all`
         approach.
 
        :param update_changed_only: when True, UPDATE statements are rendered
         based on those attributes in each state that have logged changes.
         When False, all attributes present are rendered into the SET clause
         with the exception of primary key attributes.
 
        :param preserve_order: when True, the order of inserts and updates
         matches exactly the order in which the objects are given.   When
         False, common types of objects are grouped into inserts
         and updates, to allow for more batching opportunities.
 
        .. seealso::
 
            :doc:`queryguide/dml`
 
            :meth:`.Session.bulk_insert_mappings`
 
            :meth:`.Session.bulk_update_mappings`
 
 
        )r²r³r´)r†rk)rLr¥r²r³r´rKrKrMrkšs Oüz scoped_session.bulk_save_objectsz Mapper[Any]zIterable[Dict[str, Any]])r°Úmappingsr²Ú render_nullsrIcCs|jj||||dS)aä Perform a bulk insert of the given list of mapping dictionaries.
 
        .. container:: class_bases
 
            Proxied for the :class:`_orm.Session` class on
            behalf of the :class:`_orm.scoping.scoped_session` class.
 
        .. legacy::
 
            This method is a legacy feature as of the 2.0 series of
            SQLAlchemy.   For modern bulk INSERT and UPDATE, see
            the sections :ref:`orm_queryguide_bulk_insert` and
            :ref:`orm_queryguide_bulk_update`.  The 2.0 API shares
            implementation details with this method and adds new features
            as well.
 
        :param mapper: a mapped class, or the actual :class:`_orm.Mapper`
         object,
         representing the single kind of object represented within the mapping
         list.
 
        :param mappings: a sequence of dictionaries, each one containing the
         state of the mapped row to be inserted, in terms of the attribute
         names on the mapped class.   If the mapping refers to multiple tables,
         such as a joined-inheritance mapping, each dictionary must contain all
         keys to be populated into all tables.
 
        :param return_defaults: when True, the INSERT process will be altered
         to ensure that newly generated primary key values will be fetched.
         The rationale for this parameter is typically to enable
         :ref:`Joined Table Inheritance <joined_inheritance>` mappings to
         be bulk inserted.
 
         .. note:: for backends that don't support RETURNING, the
            :paramref:`_orm.Session.bulk_insert_mappings.return_defaults`
            parameter can significantly decrease performance as INSERT
            statements can no longer be batched.   See
            :ref:`engine_insertmanyvalues`
            for background on which backends are affected.
 
        :param render_nulls: When True, a value of ``None`` will result
         in a NULL value being included in the INSERT statement, rather
         than the column being omitted from the INSERT.   This allows all
         the rows being INSERTed to have the identical set of columns which
         allows the full set of rows to be batched to the DBAPI.  Normally,
         each column-set that contains a different combination of NULL values
         than the previous row must omit a different series of columns from
         the rendered INSERT statement, which means it must be emitted as a
         separate statement.   By passing this flag, the full set of rows
         are guaranteed to be batchable into one batch; the cost however is
         that server-side defaults which are invoked by an omitted column will
         be skipped, so care must be taken to ensure that these are not
         necessary.
 
         .. warning::
 
            When this flag is set, **server side default SQL values will
            not be invoked** for those columns that are inserted as NULL;
            the NULL value will be sent explicitly.   Care must be taken
            to ensure that no server-side default functions need to be
            invoked for the operation as a whole.
 
        .. seealso::
 
            :doc:`queryguide/dml`
 
            :meth:`.Session.bulk_save_objects`
 
            :meth:`.Session.bulk_update_mappings`
 
 
        )r²r¶)r†rl)rLr°rµr²r¶rKrKrMrlðs Püz#scoped_session.bulk_insert_mappings)r°rµrIcCs|j ||¡S)aPerform a bulk update of the given list of mapping dictionaries.
 
        .. container:: class_bases
 
            Proxied for the :class:`_orm.Session` class on
            behalf of the :class:`_orm.scoping.scoped_session` class.
 
        .. legacy::
 
            This method is a legacy feature as of the 2.0 series of
            SQLAlchemy.   For modern bulk INSERT and UPDATE, see
            the sections :ref:`orm_queryguide_bulk_insert` and
            :ref:`orm_queryguide_bulk_update`.  The 2.0 API shares
            implementation details with this method and adds new features
            as well.
 
        :param mapper: a mapped class, or the actual :class:`_orm.Mapper`
         object,
         representing the single kind of object represented within the mapping
         list.
 
        :param mappings: a sequence of dictionaries, each one containing the
         state of the mapped row to be updated, in terms of the attribute names
         on the mapped class.   If the mapping refers to multiple tables, such
         as a joined-inheritance mapping, each dictionary may contain keys
         corresponding to all tables.   All those keys which are present and
         are not part of the primary key are applied to the SET clause of the
         UPDATE statement; the primary key values, which are required, are
         applied to the WHERE clause.
 
 
        .. seealso::
 
            :doc:`queryguide/dml`
 
            :meth:`.Session.bulk_insert_mappings`
 
            :meth:`.Session.bulk_save_objects`
 
 
        )r†rm)rLr°rµrKrKrMrmGs-z#scoped_session.bulk_update_mappings©Úloadr§rS)rGr¸r§rIcCs|jj|||dS)a­ Copy the state of a given instance into a corresponding instance
        within this :class:`.Session`.
 
        .. container:: class_bases
 
            Proxied for the :class:`_orm.Session` class on
            behalf of the :class:`_orm.scoping.scoped_session` class.
 
        :meth:`.Session.merge` examines the primary key attributes of the
        source instance, and attempts to reconcile it with an instance of the
        same primary key in the session.   If not found locally, it attempts
        to load the object from the database based on primary key, and if
        none can be located, creates a new instance.  The state of each
        attribute on the source instance is then copied to the target
        instance.  The resulting target instance is then returned by the
        method; the original source instance is left unmodified, and
        un-associated with the :class:`.Session` if not already.
 
        This operation cascades to associated instances if the association is
        mapped with ``cascade="merge"``.
 
        See :ref:`unitofwork_merging` for a detailed discussion of merging.
 
        :param instance: Instance to be merged.
        :param load: Boolean, when False, :meth:`.merge` switches into
         a "high performance" mode which causes it to forego emitting history
         events as well as all database access.  This flag is used for
         cases such as transferring graphs of objects into a :class:`.Session`
         from a second level cache, or to transfer just-loaded objects
         into the :class:`.Session` owned by a worker thread or process
         without re-querying the database.
 
         The ``load=False`` use case adds the caveat that the given
         object has to be in a "clean" state, that is, has no pending changes
         to be flushed - even if the incoming object is detached from any
         :class:`.Session`.   This is so that when
         the merge operation populates local attributes and
         cascades to related objects and
         collections, the values can be "stamped" onto the
         target object as is, without generating any history or attribute
         events, and without the need to reconcile the incoming data with
         any existing related objects or collections that might not
         be loaded.  The resulting objects from ``load=False`` are always
         produced as "clean", so it is only appropriate that the given objects
         should be "clean" as well, else this suggests a mis-use of the
         method.
        :param options: optional sequence of loader options which will be
         applied to the :meth:`_orm.Session.get` method when the merge
         operation loads the existing version of the object from the database.
 
         .. versionadded:: 1.4.24
 
 
        .. seealso::
 
            :func:`.make_transient_to_detached` - provides for an alternative
            means of "merging" a single object into the :class:`.Session`
 
 
        r·)r†rn)rLrGr¸r§rKrKrMrnvsDzscoped_session.mergez_EntityType[_O]r“)Ú_entityrIcCsdSrJrK)rLr¹rKrKrMro¼szscoped_session.queryzTypedColumnsClauseRole[_T]zRowReturningQuery[Tuple[_T]])Ú_colexprrIcCsdSrJrK)rLrºrKrKrMroÀsz
_TCCA[_T0]z
_TCCA[_T1]z"RowReturningQuery[Tuple[_T0, _T1]])Ú_scoped_session__ent0Ú_scoped_session__ent1rIcCsdSrJrK)rLr»r¼rKrKrMroËsz
_TCCA[_T2]z'RowReturningQuery[Tuple[_T0, _T1, _T2]])r»r¼Ú_scoped_session__ent2rIcCsdSrJrK)rLr»r¼r½rKrKrMroÑsz
_TCCA[_T3]z,RowReturningQuery[Tuple[_T0, _T1, _T2, _T3]])r»r¼r½Ú_scoped_session__ent3rIcCsdSrJrK)rLr»r¼r½r¾rKrKrMro×sz
_TCCA[_T4]z1RowReturningQuery[Tuple[_T0, _T1, _T2, _T3, _T4]])r»r¼r½r¾Ú_scoped_session__ent4rIcCsdSrJrK)rLr»r¼r½r¾r¿rKrKrMroás    z
_TCCA[_T5]z6RowReturningQuery[Tuple[_T0, _T1, _T2, _T3, _T4, _T5]])r»r¼r½r¾r¿Ú_scoped_session__ent5rIcCsdSrJrK)rLr»r¼r½r¾r¿rÀrKrKrMroìs
z
_TCCA[_T6]z;RowReturningQuery[Tuple[_T0, _T1, _T2, _T3, _T4, _T5, _T6]])r»r¼r½r¾r¿rÀÚ_scoped_session__ent6rIcCsdSrJrK)rLr»r¼r½r¾r¿rÀrÁrKrKrMroøs z
_TCCA[_T7]z@RowReturningQuery[Tuple[_T0, _T1, _T2, _T3, _T4, _T5, _T6, _T7]])    r»r¼r½r¾r¿rÀrÁÚ_scoped_session__ent7rIc        CsdSrJrK)    rLr»r¼r½r¾r¿rÀrÁrÂrKrKrMros z_ColumnsClauseArgument[Any]z
Query[Any])ÚentitiesrŽrIcOsdSrJrK©rLrÃrŽrKrKrMroscOs|jj||ŽS)aVReturn a new :class:`_query.Query` object corresponding to this
        :class:`_orm.Session`.
 
        .. container:: class_bases
 
            Proxied for the :class:`_orm.Session` class on
            behalf of the :class:`_orm.scoping.scoped_session` class.
 
        Note that the :class:`_query.Query` object is legacy as of
        SQLAlchemy 2.0; the :func:`_sql.select` construct is now used
        to construct ORM queries.
 
        .. seealso::
 
            :ref:`unified_tutorial`
 
            :ref:`queryguide_toplevel`
 
            :ref:`query_api_toplevel` - legacy API doc
 
 
        )r†rorÄrKrKrMros)rGr¤r©rIcCs|jj|||dS)a¾ Expire and refresh attributes on the given instance.
 
        .. container:: class_bases
 
            Proxied for the :class:`_orm.Session` class on
            behalf of the :class:`_orm.scoping.scoped_session` class.
 
        The selected attributes will first be expired as they would when using
        :meth:`_orm.Session.expire`; then a SELECT statement will be issued to
        the database to refresh column-oriented attributes with the current
        value available in the current transaction.
 
        :func:`_orm.relationship` oriented attributes will also be immediately
        loaded if they were already eagerly loaded on the object, using the
        same eager loading strategy that they were loaded with originally.
 
        .. versionadded:: 1.4 - the :meth:`_orm.Session.refresh` method
           can also refresh eagerly loaded attributes.
 
        :func:`_orm.relationship` oriented attributes that would normally
        load using the ``select`` (or "lazy") loader strategy will also
        load **if they are named explicitly in the attribute_names
        collection**, emitting a SELECT statement for the attribute using the
        ``immediate`` loader strategy.  If lazy-loaded relationships are not
        named in :paramref:`_orm.Session.refresh.attribute_names`, then
        they remain as "lazy loaded" attributes and are not implicitly
        refreshed.
 
        .. versionchanged:: 2.0.4  The :meth:`_orm.Session.refresh` method
           will now refresh lazy-loaded :func:`_orm.relationship` oriented
           attributes for those which are named explicitly in the
           :paramref:`_orm.Session.refresh.attribute_names` collection.
 
        .. tip::
 
            While the :meth:`_orm.Session.refresh` method is capable of
            refreshing both column and relationship oriented attributes, its
            primary focus is on refreshing of local column-oriented attributes
            on a single instance. For more open ended "refresh" functionality,
            including the ability to refresh the attributes on many objects at
            once while having explicit control over relationship loader
            strategies, use the
            :ref:`populate existing <orm_queryguide_populate_existing>` feature
            instead.
 
        Note that a highly isolated transaction will return the same values as
        were previously read in that same transaction, regardless of changes
        in database state outside of that transaction.   Refreshing
        attributes usually only makes sense at the start of a transaction
        where database rows have not yet been accessed.
 
        :param attribute_names: optional.  An iterable collection of
          string attribute names indicating a subset of attributes to
          be refreshed.
 
        :param with_for_update: optional boolean ``True`` indicating FOR UPDATE
          should be used, or may be a dictionary containing flags to
          indicate a more specific set of FOR UPDATE flags for the SELECT;
          flags should match the parameters of
          :meth:`_query.Query.with_for_update`.
          Supersedes the :paramref:`.Session.refresh.lockmode` parameter.
 
        .. seealso::
 
            :ref:`session_expire` - introductory material
 
            :meth:`.Session.expire`
 
            :meth:`.Session.expire_all`
 
            :ref:`orm_queryguide_populate_existing` - allows any ORM query
            to refresh objects as they would be loaded normally.
 
 
        )r¤r©)r†rp)rLrGr¤r©rKrKrMrp7s
Rýzscoped_session.refreshcCs
|j ¡S)a"Rollback the current transaction in progress.
 
        .. container:: class_bases
 
            Proxied for the :class:`_orm.Session` class on
            behalf of the :class:`_orm.scoping.scoped_session` class.
 
        If no transaction is in progress, this method is a pass-through.
 
        The method always rolls back
        the topmost database transaction, discarding any nested
        transactions that may be in progress.
 
        .. seealso::
 
            :ref:`session_rollback`
 
            :ref:`unitofwork_transaction`
 
 
        )r†rqr…rKrKrMrqszscoped_session.rollback)ržrzTypedReturnsRows[Tuple[_T]]z"Optional[_CoreSingleExecuteParams]z Optional[_T])r¡r¢ržrr‡rIcKsdSrJrK©rLr¡r¢ržrr‡rKrKrMrr¨s
zscoped_session.scalarcKsdSrJrKrÅrKrKrMrr´s
cKs|jj|f|||dœ|—ŽS)apExecute a statement and return a scalar result.
 
        .. container:: class_bases
 
            Proxied for the :class:`_orm.Session` class on
            behalf of the :class:`_orm.scoping.scoped_session` class.
 
        Usage and parameters are the same as that of
        :meth:`_orm.Session.execute`; the return result is a scalar Python
        value.
 
 
        ©r¢ržr)r†rrrÅrKrKrMrrÀsÿüûzScalarResult[_T]cKsdSrJrKrÅrKrKrMrsßs
zscoped_session.scalarszScalarResult[Any]cKsdSrJrKrÅrKrKrMrsës
cKs|jj|f|||dœ|—ŽS)a_Execute a statement and return the results as scalars.
 
        .. container:: class_bases
 
            Proxied for the :class:`_orm.Session` class on
            behalf of the :class:`_orm.scoping.scoped_session` class.
 
        Usage and parameters are the same as that of
        :meth:`_orm.Session.execute`; the return result is a
        :class:`_result.ScalarResult` filtering object which
        will return single elements rather than :class:`_row.Row` objects.
 
        :return:  a :class:`_result.ScalarResult` object
 
        .. versionadded:: 1.4.24 Added :meth:`_orm.Session.scalars`
 
        .. versionadded:: 1.4.26 Added :meth:`_orm.scoped_session.scalars`
 
        .. seealso::
 
            :ref:`orm_queryguide_select_orm_entities` - contrasts the behavior
            of :meth:`_orm.Session.execute` to :meth:`_orm.Session.scalars`
 
 
        rÆ)r†rsrÅrKrKrMrs÷s#ÿüûz#Optional[Union[Engine, Connection]]cCs|jjS)z€Proxy for the :attr:`_orm.Session.bind` attribute
        on behalf of the :class:`_orm.scoping.scoped_session` class.
 
        ©r†rtr…rKrKrMrt"szscoped_session.bind)ÚattrrIcCs ||j_dSrJrÇ©rLrÈrKrKrMrt+scCs|jjS)aThe set of all persistent instances considered dirty.
 
        .. container:: class_bases
 
            Proxied for the :class:`_orm.Session` class
            on behalf of the :class:`_orm.scoping.scoped_session` class.
 
        E.g.::
 
            some_mapped_object in session.dirty
 
        Instances are considered dirty when they were modified but not
        deleted.
 
        Note that this 'dirty' calculation is 'optimistic'; most
        attribute-setting or collection modification operations will
        mark an instance as 'dirty' and place it in this set, even if
        there is no net change to the attribute's value.  At flush
        time, the value of each attribute is compared to its
        previously saved value, and if there's no net change, no SQL
        operation will occur (this is a more expensive operation so
        it's only done at flush time).
 
        To check if an instance has actionable net changes to its
        attributes, use the :meth:`.Session.is_modified` method.
 
 
        )r†rur…rKrKrMru/szscoped_session.dirtycCs|jjS)zôThe set of all instances marked as 'deleted' within this ``Session``
 
        .. container:: class_bases
 
            Proxied for the :class:`_orm.Session` class
            on behalf of the :class:`_orm.scoping.scoped_session` class.
 
        )r†rvr…rKrKrMrvPs zscoped_session.deletedcCs|jjS)zñThe set of all instances marked as 'new' within this ``Session``.
 
        .. container:: class_bases
 
            Proxied for the :class:`_orm.Session` class
            on behalf of the :class:`_orm.scoping.scoped_session` class.
 
        )r†rwr…rKrKrMrw]s zscoped_session.newr cCs|jjS)zˆProxy for the :attr:`_orm.Session.identity_map` attribute
        on behalf of the :class:`_orm.scoping.scoped_session` class.
 
        ©r†rxr…rKrKrMrxjszscoped_session.identity_mapcCs ||j_dSrJrÊrÉrKrKrMrxsscCs|jjS)aÛTrue if this :class:`.Session` not in "partial rollback" state.
 
        .. container:: class_bases
 
            Proxied for the :class:`_orm.Session` class
            on behalf of the :class:`_orm.scoping.scoped_session` class.
 
        .. versionchanged:: 1.4 The :class:`_orm.Session` no longer begins
           a new transaction immediately, so this attribute will be False
           when the :class:`_orm.Session` is first instantiated.
 
        "partial rollback" state typically indicates that the flush process
        of the :class:`_orm.Session` has failed, and that the
        :meth:`_orm.Session.rollback` method must be emitted in order to
        fully roll back the transaction.
 
        If this :class:`_orm.Session` is not in a transaction at all, the
        :class:`_orm.Session` will autobegin when it is first used, so in this
        case :attr:`_orm.Session.is_active` will return True.
 
        Otherwise, if this :class:`_orm.Session` is within a transaction,
        and that transaction has not been rolled back internally, the
        :attr:`_orm.Session.is_active` will also return True.
 
        .. seealso::
 
            :ref:`faq_session_rollback`
 
            :meth:`_orm.Session.in_transaction`
 
 
        )r†ryr…rKrKrMryws#zscoped_session.is_activecCs|jjS)z…Proxy for the :attr:`_orm.Session.autoflush` attribute
        on behalf of the :class:`_orm.scoping.scoped_session` class.
 
        ©r†rzr…rKrKrMrzœszscoped_session.autoflushcCs ||j_dSrJrËrÉrKrKrMrz¥scCs|jjS)aReturn a context manager that disables autoflush.
 
        .. container:: class_bases
 
            Proxied for the :class:`_orm.Session` class
            on behalf of the :class:`_orm.scoping.scoped_session` class.
 
        e.g.::
 
            with session.no_autoflush:
 
                some_object = SomeClass()
                session.add(some_object)
                # won't autoflush
                some_object.related_thing = session.query(SomeRelated).first()
 
        Operations that proceed within the ``with:`` block
        will not be subject to flushes occurring upon query
        access.  This is useful when initializing a series
        of objects which involve existing database queries,
        where the uncompleted object should not yet be flushed.
 
 
        )r†r{r…rKrKrMr{©szscoped_session.no_autoflushcCs|jjS)a1A user-modifiable dictionary.
 
        .. container:: class_bases
 
            Proxied for the :class:`_orm.Session` class
            on behalf of the :class:`_orm.scoping.scoped_session` class.
 
        The initial value of this dictionary can be populated using the
        ``info`` argument to the :class:`.Session` constructor or
        :class:`.sessionmaker` constructor or factory methods.  The dictionary
        here is always local to this :class:`.Session` and can be modified
        independently of all other :class:`.Session` objects.
 
 
        )r†r|r…rKrKrMr|Æszscoped_session.infocCst ¡S)aClose *all* sessions in memory.
 
        .. container:: class_bases
 
            Proxied for the :class:`_orm.Session` class on
            behalf of the :class:`_orm.scoping.scoped_session` class.
 
        .. deprecated:: 1.3 The :meth:`.Session.close_all` method is deprecated and will be removed in a future release.  Please refer to :func:`.session.close_all_sessions`.
 
        )rrU)ÚclsrKrKrMrUÚs zscoped_session.close_allzOptional[Session]cCs
t |¡S)aReturn the :class:`.Session` to which an object belongs.
 
        .. container:: class_bases
 
            Proxied for the :class:`_orm.Session` class on
            behalf of the :class:`_orm.scoping.scoped_session` class.
 
        This is an alias of :func:`.object_session`.
 
 
        )rrV)rÌrGrKrKrMrVészscoped_session.object_session)rGÚrowrªzOptional[Type[Any]]zUnion[Any, Tuple[Any, ...]]z%Optional[Union[Row[Any], RowMapping]]z_IdentityKeyType[Any])Úclass_r¬rGrÍrªrIcCstj|||||dS)aReturn an identity key.
 
        .. container:: class_bases
 
            Proxied for the :class:`_orm.Session` class on
            behalf of the :class:`_orm.scoping.scoped_session` class.
 
        This is an alias of :func:`.util.identity_key`.
 
 
        )rÎr¬rGrÍrª)rrW)rÌrÎr¬rGrÍrªrKrKrMrWùsûzscoped_session.identity_key)N)N)T)F)NN)N)N)N)N)N)N)T)FTT)FF)NN)N)N)N)N)N)N)NN):rOrPrQrRr€Ú__annotations__r„Úpropertyr†rŒrr‘r—rXrYrZr[r\r]r^r_r`rar
rÚ
EMPTY_DICTrbrcrdrerfrgrhrirjrkrlrmrnrorprqrrrsrtÚsetterrurvrwrxryrzr{r|Ú classmethodrUrVrWrKrKrKrMrT`sb
0 ýÿ4"+ '+ý-ýø  ýø ýøNÿ0)$ö"þùbÿCûZûW3ûF
    
   üXýú ýúýúýú ýúýú+   $ýùN)ZÚ
__future__rÚtypingrrrrrrr    r
r r r rrrr”rrÚrr‰rrrrrrZ util.typingrÚ_typingrrrÚidentityr Z
interfacesr!r°r"ror#r$r%r&r'r(r)r*Zenginer+r,r-r.r/Zengine.interfacesr0r1r2Z engine.resultr3Z sql._typingr4r5r6r7r8r9r:r;r<r=Z_TCCAZsql.baser>Z sql.elementsr?Z    sql.rolesr@Zsql.selectablerArBrCrEr˜rSÚ__all__rTZ ScopedSessionrKrKrKrMÚ<module>s                                                                 ä÷Ý/