-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstatus.html
More file actions
1501 lines (1362 loc) · 78.6 KB
/
status.html
File metadata and controls
1501 lines (1362 loc) · 78.6 KB
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
<!DOCTYPE html>
<html lang="en" data-content_root="./" >
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" /><meta name="viewport" content="width=device-width, initial-scale=1" />
<title>25. آمار اجرا — Python Programming for Economics and Finance</title>
<link rel="preconnect" href="https://unpkg.com" crossorigin>
<link rel="preconnect" href="https://cdn.jsdelivr.net" crossorigin>
<link rel="preconnect" href="https://fonts.googleapis.com" crossorigin>
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<script src="https://unpkg.com/@popperjs/core@2.9.2/dist/umd/popper.min.js" integrity="sha384-IQsoLXl5PILFhosVNubq5LC7Qb9DXgDA9i+tQ8Zj3iwWAwPtgFTxbJ8NT4GN1R8p" crossorigin="anonymous"></script>
<script src="https://unpkg.com/tippy.js@6.3.1/dist/tippy-bundle.umd.js" integrity="sha384-bq5PNg/ZcfW7KMvFSmhjqCQJ/VFnec+6sZkctn/4ZLeubkn7U58Le4zFFSn3dhUu" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js" integrity="sha384-qEqAs1VsN9WH2myXDbiP2wGGIttL9bMRZBKCl54ZnzpDlVqbYANP9vMaoT/wvQcf" crossorigin="anonymous"></script>
<script>
MathJax = {
loader: {load: ['[tex]/boldsymbol', '[tex]/textmacros']},
tex: {
packages: {'[+]': ['boldsymbol', 'textmacros']},
inlineMath: [['$', '$'], ['\\(', '\\)']],
processEscapes: true,
macros: {
"argmax" : "arg\\,max",
"argmin" : "arg\\,min",
"col" : "col",
"Span" : "span",
"epsilon": "\\varepsilon",
"EE": "\\mathbb{E}",
"PP": "\\mathbb{P}",
"RR": "\\mathbb{R}",
"NN": "\\mathbb{N}",
"ZZ": "\\mathbb{Z}",
"aA": "\\mathcal{A}",
"bB": "\\mathcal{B}",
"cC": "\\mathcal{C}",
"dD": "\\mathcal{D}",
"eE": "\\mathcal{E}",
"fF": "\\mathcal{F}",
"gG": "\\mathcal{G}",
"hH": "\\mathcal{H}",
}
},
svg: {
fontCache: 'global',
scale: 0.92,
displayAlign: "center",
},
};
</script>
<script data-cfasync="false">
document.documentElement.dataset.mode = localStorage.getItem("mode") || "";
document.documentElement.dataset.theme = localStorage.getItem("theme") || "";
</script>
<!-- Loaded before other Sphinx assets -->
<link href="_static/styles/theme.css?digest=dfe6caa3a7d634c4db9b" rel="stylesheet" />
<link href="_static/styles/bootstrap.css?digest=dfe6caa3a7d634c4db9b" rel="stylesheet" />
<link href="_static/styles/pydata-sphinx-theme.css?digest=dfe6caa3a7d634c4db9b" rel="stylesheet" />
<link href="_static/vendor/fontawesome/6.5.2/css/all.min.css?digest=dfe6caa3a7d634c4db9b" rel="stylesheet" />
<link rel="preload" as="font" type="font/woff2" crossorigin href="_static/vendor/fontawesome/6.5.2/webfonts/fa-solid-900.woff2" />
<link rel="preload" as="font" type="font/woff2" crossorigin href="_static/vendor/fontawesome/6.5.2/webfonts/fa-brands-400.woff2" />
<link rel="preload" as="font" type="font/woff2" crossorigin href="_static/vendor/fontawesome/6.5.2/webfonts/fa-regular-400.woff2" />
<link rel="stylesheet" type="text/css" href="_static/pygments.css?v=03e43079" />
<link rel="stylesheet" href="_static/styles/quantecon-book-theme.css?digest=3355220bfb204a7ac1b0ca03dac108f0437ded6f" type="text/css" />
<link rel="stylesheet" type="text/css" href="_static/togglebutton.css?v=9c3e77be" />
<link rel="stylesheet" type="text/css" href="_static/copybutton.css?v=76b2166b" />
<link rel="stylesheet" type="text/css" href="_static/mystnb.11b39860a7a0cbfd473a3ad8a317855267ff0bd372690045ca344a6b62be495e.css?v=8cd3d715" />
<link rel="stylesheet" type="text/css" href="_static/sphinx-thebe.css?v=4fa983c6" />
<link rel="stylesheet" type="text/css" href="_static/exercise.css?v=982b99e0" />
<link rel="stylesheet" type="text/css" href="_static/sphinx-design.min.css?v=95c83b7e" />
<!-- Pre-loaded scripts that we'll load fully later -->
<link rel="preload" as="script" href="_static/scripts/bootstrap.js?digest=dfe6caa3a7d634c4db9b" />
<link rel="preload" as="script" href="_static/scripts/pydata-sphinx-theme.js?digest=dfe6caa3a7d634c4db9b" />
<script src="_static/vendor/fontawesome/6.5.2/js/all.min.js?digest=dfe6caa3a7d634c4db9b"></script>
<script src="_static/documentation_options.js?v=9eb32ce0"></script>
<script src="_static/doctools.js?v=9a2dae69"></script>
<script src="_static/sphinx_highlight.js?v=dc90522c"></script>
<script src="_static/clipboard.min.js?v=a7894cd8"></script>
<script src="_static/copybutton.js?v=f281be69"></script>
<script src="_static/scripts/sphinx-book-theme.js"></script>
<script>let toggleHintShow = 'Click to show';</script>
<script>let toggleHintHide = 'Click to hide';</script>
<script>let toggleOpenOnPrint = 'true';</script>
<script src="_static/togglebutton.js?v=b8b12719"></script>
<script src="_static/scripts/quantecon-book-theme.js?digest=9980b4379844dc0b911d69b62b295f34ede88fac"></script>
<script src="_static/scripts/jquery.js?v=5d32c60e"></script>
<script src="_static/scripts/_sphinx_javascript_frameworks_compat.js?v=2cd50e6c"></script>
<script>var togglebuttonSelector = '.toggle, .admonition.dropdown';</script>
<script src="_static/design-tabs.js?v=f930bc37"></script>
<script async="async" src="https://www.googletagmanager.com/gtag/js?id=G-X7DH1M2DPY"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){ dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-X7DH1M2DPY');
</script>
<script>const THEBE_JS_URL = "https://unpkg.com/thebe@0.8.2/lib/index.js"; const thebe_selector = ".thebe,.cell"; const thebe_selector_input = "pre"; const thebe_selector_output = ".output, .cell_output"</script>
<script async="async" src="_static/sphinx-thebe.js?v=c100c467"></script>
<script>var togglebuttonSelector = '.toggle, .admonition.dropdown';</script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){ dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-X7DH1M2DPY');
</script>
<script>const THEBE_JS_URL = "https://unpkg.com/thebe@0.8.2/lib/index.js"; const thebe_selector = ".thebe,.cell"; const thebe_selector_input = "pre"; const thebe_selector_output = ".output, .cell_output"</script>
<script>DOCUMENTATION_OPTIONS.pagename = 'status';</script>
<link rel="canonical" href="https://python-programming-fa.quantecon.org/status.html" />
<link rel="icon" href="_static/lectures-favicon.ico"/>
<link rel="index" title="Index" href="genindex.html" />
<link rel="search" title="Search" href="search.html" />
<link rel="prev" title="24. عیبیابی" href="troubleshooting.html" />
<!-- Normal Meta Tags -->
<meta name="author" context="Thomas J. Sargent & John Stachurski (Translation by Zahra Khanzadeh)" />
<meta name="keywords" content="Python, QuantEcon, Quantitative Economics, Economics, Sloan, Alfred P. Sloan Foundation, Tom J. Sargent, John Stachurski" />
<meta name="description" content=This website presents a set of lectures on python programming for economics, designed and written by Thomas J. Sargent and John Stachurski. />
<!-- Twitter tags -->
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@quantecon" />
<meta name="twitter:title" content="آمار اجرا"/>
<meta name="twitter:description" content="This website presents a set of lectures on python programming for economics, designed and written by Thomas J. Sargent and John Stachurski.">
<meta name="twitter:creator" content="@quantecon">
<meta name="twitter:image" content="https://assets.quantecon.org/img/qe-twitter-logo.png">
<!-- Opengraph tags -->
<meta property="og:title" content="آمار اجرا" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://python-programming-fa.quantecon.org/status.html" />
<meta property="og:image" content="https://assets.quantecon.org/img/qe-og-logo.png" />
<meta property="og:description" content="This website presents a set of lectures on python programming for economics, designed and written by Thomas J. Sargent and John Stachurski." />
<meta property="og:site_name" content="Python Programming for Economics and Finance" />
<meta name="theme-color" content="#ffffff" />
</head>
<body dir="rtl">
<!-- Prevent flash of light theme when dark mode is saved -->
<script>
(function() {
try {
if (localStorage.setContrast === '1') {
document.body.classList.add('dark-theme');
document.documentElement.setAttribute('data-theme', 'dark');
} else {
document.documentElement.setAttribute('data-theme', 'light');
}
} catch(e) {
document.documentElement.setAttribute('data-theme', 'light');
}
})();
</script>
<!-- Override QuantEcon theme colors -->
<!-- Color scheme: applies scheme-specific body class -->
<span id="top"></span>
<div class="qe-wrapper">
<div class="qe-main">
<div class="qe-page" id=status>
<div class="qe-page__toc">
<div class="inner sticky" data-autoexpand="true">
<nav id="bd-toc-nav" class="qe-page__toc-nav">
<p class="logo">
<a href=https://quantecon.org><img src="_static/qe-logo.png" class="logo logo-img" alt="logo"></a>
<a href=https://quantecon.org><img src="_static/quantecon-logo-transparent.png" class="dark-logo-img" alt="logo"></a>
</p>
<p class="powered">Powered by <a href="https://jupyterbook.org/v1/">Jupyter Book</a></p>
</nav>
<div class="qe-page__toc-footer">
</div>
</div>
<a href="#top" class="back-to-top-btn" title="Back to top">↑ Top</a>
</div>
<div class="qe-page__header">
<div class="qe-page__header-copy">
<p class="qe-page__header-heading"><a href="intro.html">Python Programming for Economics and Finance</a></p>
</div>
<!-- Authors section -->
<p class="qe-page__header-authors" font-size="18">
<a href="http://www.tomsargent.com/" target="_blank"><span>Thomas J. Sargent</span></a>
and <a href="https://johnstachurski.net/" target="_blank"><span>John Stachurski</span></a>
</p>
<!-- Last modified / Changelog dropdown -->
<button class="qe-page__header-changed" id="changelog-toggle" aria-expanded="false">
Last changed: Mar 26, 2026
<span class="changelog-icon">▼</span>
</button>
<!-- Changelog dropdown content -->
<div class="qe-page__header-changelog" id="changelog-content" aria-hidden="true">
<h4>Changelog (<a href="https://github.com/QuantEcon/lecture-python-programming.fa/commits/main/lectures/status.md">full history</a>)</h4>
<ul class="changelog-list">
<li class="changelog-entry">
<a href="https://github.com/QuantEcon/lecture-python-programming.fa/commit/e09d083" class="changelog-hash">e09d083</a>
<span class="changelog-author">Matt McKay</span>
<span class="changelog-time">2 weeks ago</span>
<span class="changelog-message">chore: migrate heading-map → translation frontmatter (#83)</span>
</li>
<li class="changelog-entry">
<a href="https://github.com/QuantEcon/lecture-python-programming.fa/commit/3f9c65e" class="changelog-hash">3f9c65e</a>
<span class="changelog-author">Matt McKay</span>
<span class="changelog-time">3 weeks ago</span>
<span class="changelog-message">Setup action-translation v0.11.0 infrastructure (#67)</span>
</li>
<li class="changelog-entry">
<a href="https://github.com/QuantEcon/lecture-python-programming.fa/commit/9bf9174" class="changelog-hash">9bf9174</a>
<span class="changelog-author">Matt McKay</span>
<span class="changelog-time">2 months ago</span>
<span class="changelog-message">Translate status.md to Persian (#42)</span>
</li>
<li class="changelog-entry">
<a href="https://github.com/QuantEcon/lecture-python-programming.fa/commit/99fb610" class="changelog-hash">99fb610</a>
<span class="changelog-author">mmcky</span>
<span class="changelog-time">11 months ago</span>
<span class="changelog-message">ENH: enable gh-actions workflows and setup as jupyter-book project</span>
</li>
</ul>
</div>
</div> <!-- .page__header -->
<main class="qe-page__content" role="main">
<div>
<section class="tex2jax_ignore mathjax_ignore" id="id1">
<h1><span class="section-number">25. </span>آمار اجرا<a class="headerlink" href="#id1" title="Link to this heading">#</a></h1>
<p>این جدول شامل آخرین آمار اجرا است.</p>
<div class="pst-scrollable-table-container"><table class="table">
<thead>
<tr class="row-odd"><th class="head"><p>Document</p></th>
<th class="head"><p>Modified</p></th>
<th class="head"><p>Method</p></th>
<th class="head"><p>Run Time (s)</p></th>
<th class="head"><p>Status</p></th>
</tr>
</thead>
<tbody>
<tr class="row-even"><td><p><a class="xref doc reference internal" href="about_py.html"><span class="doc">about_py</span></a></p></td>
<td><p>2026-04-13 12:26</p></td>
<td><p>cache</p></td>
<td><p>2.15</p></td>
<td><p>✅</p></td>
</tr>
<tr class="row-odd"><td><p><a class="xref doc reference internal" href="autodiff.html"><span class="doc">autodiff</span></a></p></td>
<td><p>2026-04-13 12:26</p></td>
<td><p>cache</p></td>
<td><p>13.77</p></td>
<td><p>✅</p></td>
</tr>
<tr class="row-even"><td><p><a class="xref doc reference internal" href="debugging.html"><span class="doc">debugging</span></a></p></td>
<td><p>2026-04-13 12:26</p></td>
<td><p>cache</p></td>
<td><p>2.28</p></td>
<td><p>✅</p></td>
</tr>
<tr class="row-odd"><td><p><a class="xref doc reference internal" href="functions.html"><span class="doc">functions</span></a></p></td>
<td><p>2026-04-13 12:26</p></td>
<td><p>cache</p></td>
<td><p>1.99</p></td>
<td><p>✅</p></td>
</tr>
<tr class="row-even"><td><p><a class="xref doc reference internal" href="getting_started.html"><span class="doc">getting_started</span></a></p></td>
<td><p>2026-04-13 12:26</p></td>
<td><p>cache</p></td>
<td><p>1.52</p></td>
<td><p>✅</p></td>
</tr>
<tr class="row-odd"><td><p><a class="xref doc reference internal" href="intro.html"><span class="doc">intro</span></a></p></td>
<td><p>2026-04-13 12:26</p></td>
<td><p>cache</p></td>
<td><p>4.02</p></td>
<td><p>✅</p></td>
</tr>
<tr class="row-even"><td><p><a class="xref doc reference internal" href="jax_intro.html"><span class="doc">jax_intro</span></a></p></td>
<td><p>2026-04-13 12:26</p></td>
<td><p>cache</p></td>
<td><p>26.8</p></td>
<td><p>✅</p></td>
</tr>
<tr class="row-odd"><td><p><a class="xref doc reference internal" href="matplotlib.html"><span class="doc">matplotlib</span></a></p></td>
<td><p>2026-04-13 12:27</p></td>
<td><p>cache</p></td>
<td><p>4.03</p></td>
<td><p>✅</p></td>
</tr>
<tr class="row-even"><td><p><a class="xref doc reference internal" href="names.html"><span class="doc">names</span></a></p></td>
<td><p>2026-04-13 12:27</p></td>
<td><p>cache</p></td>
<td><p>1.3</p></td>
<td><p>✅</p></td>
</tr>
<tr class="row-odd"><td><p><a class="xref doc reference internal" href="need_for_speed.html"><span class="doc">need_for_speed</span></a></p></td>
<td><p>2026-04-13 12:27</p></td>
<td><p>cache</p></td>
<td><p>3.27</p></td>
<td><p>✅</p></td>
</tr>
<tr class="row-even"><td><p><a class="xref doc reference internal" href="numba.html"><span class="doc">numba</span></a></p></td>
<td><p>2026-04-13 12:27</p></td>
<td><p>cache</p></td>
<td><p>22.08</p></td>
<td><p>✅</p></td>
</tr>
<tr class="row-odd"><td><p><a class="xref doc reference internal" href="numpy.html"><span class="doc">numpy</span></a></p></td>
<td><p>2026-04-13 12:27</p></td>
<td><p>cache</p></td>
<td><p>18.96</p></td>
<td><p>✅</p></td>
</tr>
<tr class="row-even"><td><p><a class="xref doc reference internal" href="numpy_vs_numba_vs_jax.html"><span class="doc">numpy_vs_numba_vs_jax</span></a></p></td>
<td><p>2026-04-13 12:27</p></td>
<td><p>cache</p></td>
<td><p>5.71</p></td>
<td><p>✅</p></td>
</tr>
<tr class="row-odd"><td><p><a class="xref doc reference internal" href="oop_intro.html"><span class="doc">oop_intro</span></a></p></td>
<td><p>2026-04-13 12:27</p></td>
<td><p>cache</p></td>
<td><p>2.1</p></td>
<td><p>✅</p></td>
</tr>
<tr class="row-even"><td><p><a class="xref doc reference internal" href="pandas.html"><span class="doc">pandas</span></a></p></td>
<td><p>2026-04-13 12:28</p></td>
<td><p>cache</p></td>
<td><p>14.0</p></td>
<td><p>✅</p></td>
</tr>
<tr class="row-odd"><td><p><a class="xref doc reference internal" href="pandas_panel.html"><span class="doc">pandas_panel</span></a></p></td>
<td><p>2026-04-13 12:28</p></td>
<td><p>cache</p></td>
<td><p>4.78</p></td>
<td><p>✅</p></td>
</tr>
<tr class="row-even"><td><p><a class="xref doc reference internal" href="python_advanced_features.html"><span class="doc">python_advanced_features</span></a></p></td>
<td><p>2026-04-13 12:28</p></td>
<td><p>cache</p></td>
<td><p>19.83</p></td>
<td><p>✅</p></td>
</tr>
<tr class="row-odd"><td><p><a class="xref doc reference internal" href="python_by_example.html"><span class="doc">python_by_example</span></a></p></td>
<td><p>2026-04-13 12:28</p></td>
<td><p>cache</p></td>
<td><p>7.11</p></td>
<td><p>✅</p></td>
</tr>
<tr class="row-even"><td><p><a class="xref doc reference internal" href="python_essentials.html"><span class="doc">python_essentials</span></a></p></td>
<td><p>2026-04-13 12:28</p></td>
<td><p>cache</p></td>
<td><p>1.43</p></td>
<td><p>✅</p></td>
</tr>
<tr class="row-odd"><td><p><a class="xref doc reference internal" href="python_oop.html"><span class="doc">python_oop</span></a></p></td>
<td><p>2026-04-13 12:28</p></td>
<td><p>cache</p></td>
<td><p>2.46</p></td>
<td><p>✅</p></td>
</tr>
<tr class="row-even"><td><p><a class="xref doc reference internal" href="scipy.html"><span class="doc">scipy</span></a></p></td>
<td><p>2026-04-13 12:28</p></td>
<td><p>cache</p></td>
<td><p>4.18</p></td>
<td><p>✅</p></td>
</tr>
<tr class="row-odd"><td><p><a class="xref doc reference internal" href="#"><span class="doc">status</span></a></p></td>
<td><p>2026-04-13 12:28</p></td>
<td><p>cache</p></td>
<td><p>5.17</p></td>
<td><p>✅</p></td>
</tr>
<tr class="row-even"><td><p><a class="xref doc reference internal" href="sympy.html"><span class="doc">sympy</span></a></p></td>
<td><p>2026-04-13 12:29</p></td>
<td><p>cache</p></td>
<td><p>7.07</p></td>
<td><p>✅</p></td>
</tr>
<tr class="row-odd"><td><p><a class="xref doc reference internal" href="troubleshooting.html"><span class="doc">troubleshooting</span></a></p></td>
<td><p>2026-04-13 12:26</p></td>
<td><p>cache</p></td>
<td><p>4.02</p></td>
<td><p>✅</p></td>
</tr>
<tr class="row-even"><td><p><a class="xref doc reference internal" href="workspace.html"><span class="doc">workspace</span></a></p></td>
<td><p>2026-04-13 12:29</p></td>
<td><p>cache</p></td>
<td><p>1.39</p></td>
<td><p>✅</p></td>
</tr>
<tr class="row-odd"><td><p><a class="xref doc reference internal" href="writing_good_code.html"><span class="doc">writing_good_code</span></a></p></td>
<td><p>2026-04-13 12:29</p></td>
<td><p>cache</p></td>
<td><p>2.86</p></td>
<td><p>✅</p></td>
</tr>
</tbody>
</table>
</div>
<p id="status-machine-details">این سخنرانیها بر روی نمونههای <code class="docutils literal notranslate"><span class="pre">linux</span></code> از طریق <code class="docutils literal notranslate"><span class="pre">github</span> <span class="pre">actions</span></code> ساخته میشوند.</p>
<p>این سخنرانیها از نسخه python زیر استفاده میکنند</p>
<div class="cell docutils container">
<div class="cell_input docutils container">
<div class="highlight-ipython3 notranslate"><div class="highlight"><pre><span></span><span class="o">!</span>python<span class="w"> </span>--version
</pre></div>
</div>
</div>
<div class="cell_output docutils container">
<div class="output stream highlight-myst-ansi notranslate"><div class="highlight"><pre><span></span>Python 3.13.9
</pre></div>
</div>
</div>
</div>
<p>و نسخههای بسته زیر</p>
<div class="cell tag_hide-output docutils container">
<div class="cell_input above-output-prompt docutils container">
<div class="highlight-ipython3 notranslate"><div class="highlight"><pre><span></span><span class="o">!</span>conda<span class="w"> </span>list
</pre></div>
</div>
</div>
<details class="admonition hide below-input">
<summary aria-label="Toggle hidden content">
<p class="collapsed admonition-title">Show code cell output</p>
<p class="expanded admonition-title">Hide code cell output</p>
</summary>
<div class="cell_output docutils container">
<div class="output stream highlight-myst-ansi notranslate"><div class="highlight"><pre><span></span># packages in environment at /home/runner/miniconda3/envs/quantecon:
#
# Name Version Build Channel
_libgcc_mutex 0.1 main
_openmp_mutex 5.1 1_gnu
accessible-pygments 0.0.5 pypi_0 pypi
aiobotocore 2.25.0 py313h06a4308_0
aiodns 3.5.0 py313h06a4308_1
aiohappyeyeballs 2.6.1 py313h06a4308_0
aiohttp 3.13.2 py313hee96239_0
aioitertools 0.12.0 py313h06a4308_0
aiosignal 1.4.0 py313h06a4308_0
alabaster 0.7.16 py313h06a4308_0
alsa-lib 1.2.14 h5eee18b_0
altair 5.5.0 py313h06a4308_0
anaconda 2025.12 py313_mkl_0
anyio 4.10.0 py313h06a4308_0
aom 3.12.1 h7934f7d_0
appdirs 1.4.4 pyhd3eb1b0_0
argon2-cffi 21.3.0 pyhd3eb1b0_0
argon2-cffi-bindings 25.1.0 py313hee96239_0
arrow 1.4.0 py313h06a4308_0
arrow-cpp 21.0.0 hac1acdb_1
astroid 3.3.11 py313h06a4308_0
astropy 7.1.1 py313haa0f9ac_0
astropy-iers-data 0.2025.11.10.0.38.31 py313h06a4308_0
asttokens 3.0.0 py313h06a4308_0
async-lru 2.0.5 py313h06a4308_0
asyncssh 2.21.1 py313h06a4308_0
atomicwrites 1.4.0 py_0
attrs 25.4.0 py313h06a4308_2
automat 24.8.1 py313h06a4308_0
autopep8 2.0.4 pyhd3eb1b0_0
aws-c-auth 0.9.0 hb25bd0a_2
aws-c-cal 0.9.2 h3ff94e8_1
aws-c-common 0.12.4 hb25bd0a_0
aws-c-compression 0.3.1 hb25bd0a_2
aws-c-event-stream 0.5.6 hb25bd0a_0
aws-c-http 0.10.4 hb25bd0a_0
aws-c-io 0.21.4 h3eb0749_0
aws-c-mqtt 0.13.3 hb25bd0a_0
aws-c-s3 0.8.7 h3ff94e8_0
aws-c-sdkutils 0.2.4 hb25bd0a_1
aws-checksums 0.2.7 hb25bd0a_1
aws-crt-cpp 0.34.0 h7934f7d_0
aws-sdk-cpp 1.11.638 hac3f51a_0
babel 2.17.0 py313h06a4308_0
bcrypt 5.0.0 py313h498d7c9_0
beautifulsoup4 4.13.5 py313h06a4308_0
binaryornot 0.4.4 pyhd3eb1b0_1
black 25.9.0 py313h06a4308_0
blas 1.0 mkl
bleach 6.3.0 py313h06a4308_0
blinker 1.9.0 py313h06a4308_0
blosc 1.21.6 hf7d4471_0
bokeh 3.8.0 py313h06a4308_0
botocore 1.40.46 py313h06a4308_0
bottleneck 1.4.2 py313haa0f9ac_1
brotlicffi 1.1.0.0 py313hbdd6827_0
bzip2 1.0.8 h5eee18b_6
c-ares 1.34.5 hef5626c_0
c-blosc2 2.17.1 h4257ac4_0
ca-certificates 2025.11.4 h06a4308_0
cachetools 5.5.1 py313h06a4308_0
cairo 1.18.4 h44eff21_0
cattrs 25.3.0 py313hd0c6730_0
certifi 2025.11.12 py313h06a4308_0
cffi 2.0.0 py313h4eded50_1
chardet 5.2.0 py313h06a4308_0
charset-normalizer 3.4.4 py313h06a4308_0
click 8.2.1 py313h06a4308_0
cloudpickle 3.1.1 py313h06a4308_0
colorama 0.4.6 pypi_0 pypi
colorcet 3.1.0 py313h06a4308_0
comm 0.2.3 py313h06a4308_0
constantly 23.10.4 py313h06a4308_0
contourpy 1.3.3 py313hdb19cb5_0
cookiecutter 2.6.0 py313h06a4308_1
cryptography 46.0.3 py313h0a354b3_0
cssselect 1.2.0 py313h06a4308_0
curl 8.16.0 he2463ab_0
curl-cffi 0.15.0 pypi_0 pypi
cycler 0.11.0 pyhd3eb1b0_0
cyrus-sasl 2.1.28 h1110e0f_3
dask 2025.11.0 py313h06a4308_0
dask-core 2025.11.0 py313h06a4308_0
datashader 0.18.2 py313h06a4308_0
dav1d 1.2.1 h5eee18b_0
dbus 1.16.2 h5bd4931_0
debugpy 1.8.16 py313hbdd6827_1
decorator 5.2.1 py313h06a4308_0
defusedxml 0.7.1 pyhd3eb1b0_0
diff-match-patch 20200713 pyhd3eb1b0_0
dill 0.4.0 py313h06a4308_0
distributed 2025.11.0 py313h06a4308_0
docstring-to-markdown 0.17 py313h06a4308_0
docutils 0.21.2 py313h06a4308_1
et_xmlfile 2.0.0 py313h06a4308_0
executing 2.2.1 py313h06a4308_0
expat 2.7.3 h3385a95_0
filelock 3.20.0 py313h06a4308_0
flake8 7.1.1 py313h06a4308_0
flask 3.1.2 py313h06a4308_0
fontconfig 2.15.0 h2c49b7f_0
fonttools 4.60.1 py313hee96239_0
fqdn 1.5.1 pypi_0 pypi
freetype 2.13.3 h4a9f257_0
fribidi 1.0.10 h7b6447c_0
frozendict 2.4.7 pypi_0 pypi
frozenlist 1.8.0 py313hbdd6827_0
fsspec 2025.10.0 py313h7040dfc_0
gettext 0.21.0 hedfda30_2
gflags 2.2.2 h6a678d5_1
gitdb 4.0.12 py313h06a4308_0
gitpython 3.1.45 py313h06a4308_0
glib 2.84.4 h5bdd934_0
glib-tools 2.84.4 h8875d55_0
glog 0.5.0 h6a678d5_1
gmp 6.3.0 h6a678d5_0
gmpy2 2.2.1 py313h5eee18b_0
graphite2 1.3.14 h295c915_1
greenlet 3.2.4 py313hbdd6827_0
gst-plugins-base 1.24.12 hc146dc4_1
gstreamer 1.24.12 hb6d4d65_1
gstreamer-orc 0.4.41 h5eee18b_0
h11 0.16.0 py313h06a4308_1
h5py 3.15.1 py313hea18c50_0
harfbuzz 10.2.0 hdfddeaa_1
hdf5 1.14.5 h2b7332f_2
heapdict 1.0.1 pyhd3eb1b0_0
holoviews 1.22.0 py313h06a4308_0
html5lib 1.1 pyhd3eb1b0_0
httpcore 1.0.9 py313h06a4308_0
httpx 0.28.1 py313h06a4308_1
hvplot 0.12.1 py313h06a4308_0
hyperlink 21.0.0 pyhd3eb1b0_0
icu 73.1 h6a678d5_0
idna 3.11 py313h06a4308_0
imageio 2.37.2 py313h7040dfc_0
imagesize 1.4.1 py313h06a4308_0
imbalanced-learn 0.14.0 py313h06a4308_0
importlib-metadata 8.7.0 py313h06a4308_0
incremental 24.7.2 pyhd3eb1b0_0
inflection 0.5.1 py313h06a4308_1
iniconfig 2.1.0 py313h06a4308_0
intake 2.0.8 py313h06a4308_0
intel-openmp 2025.0.0 h06a4308_1171
intervaltree 3.1.0 pyhd3eb1b0_0
ipykernel 6.31.0 py313h7040dfc_0
ipympl 0.9.7 py313h06a4308_0
ipython 9.7.0 py313h06a4308_0
ipython_pygments_lexers 1.1.1 py313h06a4308_0
ipywidgets 8.1.7 py313h06a4308_0
isoduration 20.11.0 pypi_0 pypi
isort 6.1.0 py313h06a4308_0
itemadapter 0.12.1 py313h06a4308_0
itemloaders 1.3.2 py313h06a4308_0
itsdangerous 2.2.0 py313h06a4308_0
jansson 2.14 h5eee18b_1
jaraco.classes 3.4.0 py313h06a4308_0
jaraco.context 6.0.0 py313h06a4308_0
jaraco.functools 4.1.0 py313h06a4308_0
jax 0.9.2 pypi_0 pypi
jaxlib 0.9.2 pypi_0 pypi
jedi 0.19.2 py313h06a4308_0
jeepney 0.7.1 pyhd3eb1b0_0
jellyfish 1.2.1 py313h498d7c9_0
jinja2 3.1.6 py313h06a4308_0
jmespath 1.0.1 py313h06a4308_0
joblib 1.5.2 py313h06a4308_0
jpeg 9f h5ce9db8_0
jq 1.8.1 h5eee18b_0
json5 0.12.1 py313h06a4308_0
jsonpointer 3.1.1 pypi_0 pypi
jsonschema 4.25.0 py313h06a4308_1
jsonschema-specifications 2025.9.1 py313h06a4308_0
jupyter 1.1.1 py313h06a4308_0
jupyter-book 1.0.4.post1 pypi_0 pypi
jupyter-cache 1.0.1 pypi_0 pypi
jupyter-lsp 2.2.5 py313h06a4308_0
jupyter_client 8.6.3 py313h06a4308_1
jupyter_console 6.6.3 py313h06a4308_1
jupyter_core 5.8.1 py313h06a4308_0
jupyter_events 0.12.0 py313h06a4308_0
jupyter_server 2.16.0 py313h06a4308_0
jupyter_server_terminals 0.5.3 py313h06a4308_0
jupyterlab 4.4.7 py313h06a4308_0
jupyterlab-myst 2.6.0 pypi_0 pypi
jupyterlab-variableinspector 3.2.4 py313h06a4308_0
jupyterlab_pygments 0.3.0 py313h06a4308_0
jupyterlab_server 2.28.0 py313h06a4308_0
jupyterlab_widgets 3.0.15 py313h06a4308_0
jupytext 1.19.1 pypi_0 pypi
keyring 25.7.0 py313h06a4308_0
kiwisolver 1.4.9 py313h24d9097_0
lark 1.3.1 pypi_0 pypi
latexcodec 3.0.1 pypi_0 pypi
lazy_loader 0.4 py313h06a4308_0
lcms2 2.17 heab6991_0
ld_impl_linux-64 2.44 h153f514_2
lerc 4.0.0 h6a678d5_0
libabseil 20250127.0 cxx17_h6a678d5_0
libavif 1.3.0 h3539ee5_0
libbrotlicommon 1.0.9 h5eee18b_9
libbrotlidec 1.0.9 h5eee18b_9
libbrotlienc 1.0.9 h5eee18b_9
libclang13 20.1.8 default_hee3e7a4_0
libcups 2.4.2 h252cb56_2
libcurl 8.16.0 heebcbe5_0
libdeflate 1.22 h5eee18b_0
libdrm 2.4.124 h5eee18b_0
libedit 3.1.20230828 h5eee18b_0
libegl 1.7.0 h5eee18b_2
libev 4.33 h7f8727e_1
libevent 2.1.12 hdbd6064_1
libffi 3.4.4 h6a678d5_1
libgcc 15.2.0 h69a1729_7
libgcc-ng 15.2.0 h166f726_7
libgfortran 15.2.0 h166f726_7
libgfortran-ng 15.2.0 h166f726_7
libgfortran5 15.2.0 hc633d37_7
libgl 1.7.0 h5eee18b_2
libglib 2.84.4 h77a78f3_0
libglvnd 1.7.0 h5eee18b_2
libglx 1.7.0 h5eee18b_2
libgomp 15.2.0 h4751f2c_7
libgrpc 1.71.0 h2d74bed_0
libiconv 1.16 h5eee18b_3
libidn2 2.3.8 hf80d704_0
libkrb5 1.21.3 h520c7b4_4
libllvm20 20.1.8 h465586c_0
libmpdec 4.0.0 h5eee18b_0
libnghttp2 1.67.1 h697f920_0
libogg 1.3.5 h27cfd23_1
libopengl 1.7.0 h5eee18b_2
libopenjpeg 2.5.4 hee96239_1
libopus 1.3.1 h5eee18b_1
libpciaccess 0.18 h5eee18b_0
libpng 1.6.50 h2ed474d_0
libpq 17.6 ha51bf15_0
libprotobuf 5.29.3 h3cdef7c_1
libre2-11 2024.07.02 h6a678d5_0
libsass 0.23.0 pypi_0 pypi
libsodium 1.0.20 heac8642_0
libspatialindex 1.9.3 h2531618_0
libssh2 1.11.1 h251f7ec_0
libstdcxx 15.2.0 h39759b7_7
libstdcxx-ng 15.2.0 hc03a8fd_7
libthrift 0.22.0 hd8eb582_0
libtiff 4.7.1 h029b1ac_0
libunistring 1.3 hb25bd0a_0
libuuid 1.41.5 h5eee18b_0
libuv 1.48.0 h5eee18b_0
libvorbis 1.3.7 h7b6447c_0
libwebp-base 1.6.0 hb7bb969_0
libxcb 1.17.0 h9b100fa_0
libxkbcommon 1.9.1 h69220b7_0
libxml2 2.13.9 h2c43086_0
libxslt 1.1.43 h28b3bda_0
libzlib 1.3.1 hb25bd0a_0
linkify-it-py 2.0.3 py313h06a4308_0
llvmlite 0.45.1 py313h265b4e5_0
lmdb 0.9.31 hb25bd0a_0
locket 1.0.0 py313h06a4308_0
lsprotocol 2025.0.0 py313h06a4308_0
lxml 5.3.0 py313hd70a998_2
lz4 4.4.5 py313ha9de75d_0
lz4-c 1.9.4 h6a678d5_1
lzo 2.10 h7b6447c_2
markdown 3.8 py313h06a4308_0
markdown-it-py 3.0.0 pypi_0 pypi
markupsafe 3.0.2 py313h5eee18b_0
matplotlib 3.10.6 py313h06a4308_1
matplotlib-base 3.10.6 py313h4948728_1
matplotlib-inline 0.2.1 py313h06a4308_0
mccabe 0.7.0 pyhd3eb1b0_0
mdit-py-plugins 0.5.0 py313h06a4308_0
mdurl 0.1.2 py313h06a4308_0
mistune 3.1.2 py313h06a4308_0
mkl 2025.0.0 hacee8c2_941
mkl-service 2.5.2 py313hacdc0fc_0
mkl_fft 2.1.1 py313h57662e1_0
mkl_random 1.3.0 py313h23c847b_0
ml-dtypes 0.5.4 pypi_0 pypi
more-itertools 10.8.0 py313h06a4308_0
mpc 1.3.1 h5eee18b_0
mpfr 4.2.1 h5eee18b_0
mpi 1.0 mpich
mpi4py 4.0.3 py313hb6b6513_0
mpich 4.3.2 hf345156_0
mpmath 1.3.0 py313h06a4308_0
msgpack-python 1.1.1 py313h6a678d5_0
multidict 6.7.0 py313hee96239_0
multipledispatch 1.0.0 py313h06a4308_0
multitasking 0.0.12 pypi_0 pypi
mypy 1.17.1 py313hee96239_1
mypy_extensions 1.0.0 py313h06a4308_0
mysql-common 9.3.0 h0021b1a_3
mysql-libs 9.3.0 h797a5cd_3
myst-nb 1.4.0 pypi_0 pypi
myst-parser 3.0.1 pypi_0 pypi
narwhals 2.7.0 py313h06a4308_0
nbclient 0.10.2 py313h06a4308_0
nbconvert 7.16.6 py313h06a4308_0
nbconvert-core 7.16.6 py313h06a4308_0
nbconvert-pandoc 7.16.6 py313h06a4308_0
nbdime 4.0.4 pypi_0 pypi
nbformat 5.10.4 py313h06a4308_0
ncurses 6.5 h7934f7d_0
nest-asyncio 1.6.0 py313h06a4308_0
networkx 3.5 py313h06a4308_0
nltk 3.9.2 py313hf83b21e_0
notebook 7.4.5 py313h06a4308_0
notebook-shim 0.2.4 py313h06a4308_0
nspr 4.37 h8459abe_0
nss 3.117 h3135ca0_0
numba 0.62.1 py313h23c847b_0
numexpr 2.14.1 py313h41d4191_0
numpy 2.3.5 py313h08c6c3d_0
numpy-base 2.3.5 py313h00548fb_0
numpydoc 1.9.0 py313h06a4308_0
oniguruma 6.9.10 hb25bd0a_0
openldap 2.6.10 he9288cc_1
openpyxl 3.1.5 py313h5eee18b_1
openssl 3.0.18 hd6dcaed_0
opt-einsum 3.4.0 pypi_0 pypi
orc 2.2.0 h372e9aa_0
overrides 7.7.0 py313h06a4308_0
packaging 25.0 py313h06a4308_1
pandas 2.3.3 py313h23c847b_1
pandoc 3.8 h06a4308_0
pandocfilters 1.5.1 py313h06a4308_0
panel 1.8.3 py313h06a4308_0
param 2.3.0 py313h06a4308_0
parsel 1.10.0 py313h06a4308_0
parso 0.8.5 py313h06a4308_0
partd 1.4.2 py313h06a4308_0
pathspec 0.12.1 py313h06a4308_1
patsy 1.0.1 py313h06a4308_0
pcre2 10.46 hf426167_0
peewee 4.0.4 pypi_0 pypi
pexpect 4.9.0 py313h06a4308_1
pickleshare 0.7.5 pyhd3eb1b0_1003
pillow 12.0.0 py313h3b88751_1
pip 25.3 pyhc872135_0
pixman 0.46.4 h7934f7d_0
platformdirs 4.5.0 py313h06a4308_0
plotly 6.3.0 py313h7040dfc_0
pluggy 1.5.0 py313h06a4308_0
prometheus_client 0.21.1 py313h06a4308_0
prompt-toolkit 3.0.52 py313h06a4308_1
prompt_toolkit 3.0.52 hd3eb1b0_1
propcache 0.3.1 py313h5eee18b_0
protego 0.4.0 py313h06a4308_0
protobuf 5.29.3 py313he621ea3_0
psutil 7.0.0 py313hee96239_1
pthread-stubs 0.3 h0ce48e5_1
ptyprocess 0.7.0 pyhd3eb1b0_3
pure_eval 0.2.3 py313h06a4308_0
py-cpuinfo 9.0.0 py313h06a4308_0
pyarrow 21.0.0 py313h23c847b_0
pyasn1 0.6.1 py313h06a4308_0
pyasn1-modules 0.4.2 py313h06a4308_0
pybtex 0.26.1 pypi_0 pypi
pybtex-docutils 1.0.3 pypi_0 pypi
pycares 4.10.0 py313ha137689_0
pycodestyle 2.12.1 py313h06a4308_0
pycparser 2.23 py313h06a4308_0
pyct 0.6.0 py313h06a4308_0
pycurl 7.45.7 py313he7f09ab_0
pydata-sphinx-theme 0.15.4 pypi_0 pypi
pydispatcher 2.0.7 py313h06a4308_0
pydocstyle 6.3.0 py313h06a4308_0
pyerfa 2.0.1.5 py313h5eee18b_0
pyflakes 3.2.0 py313h06a4308_0
pygithub 2.8.1 py313h06a4308_0
pygments 2.19.2 py313h06a4308_0
pyjwt 2.10.1 py313h06a4308_0
pylint 3.3.8 py313h06a4308_0
pylint-venv 3.0.3 py313h06a4308_0
pyls-spyder 0.4.0 pyhd3eb1b0_0
pynacl 1.6.0 py313h2630517_0
pyodbc 5.3.0 py313hab19121_0
pyopenssl 25.3.0 py313hef88997_0
pyparsing 3.2.5 py313h06a4308_0
pyqt 5.15.11 py313h144e999_0
pyqt5-sip 12.17.0 py313hee96239_0
pyqtwebengine 5.15.11 py313hf9d9379_0
pysocks 1.7.1 py313h06a4308_1
pytables 3.10.2 py313hc48ae32_2
pytest 8.4.2 py313h06a4308_0
python 3.13.9 h7e8bc2b_100_cp313
python-dateutil 2.9.0post0 py313h06a4308_2
python-fastjsonschema 2.21.2 py313h06a4308_0
python-json-logger 3.2.1 py313h06a4308_0
python-lmdb 1.7.5 py313hbe636e0_0
python-lsp-black 2.0.0 py313h06a4308_1
python-lsp-jsonrpc 1.1.2 pyhd3eb1b0_0
python-lsp-ruff 2.3.0 py313h06a4308_0
python-lsp-server 1.13.1 py313h7040dfc_0
python-slugify 8.0.4 py313h06a4308_0
python-tzdata 2025.2 pyhd3eb1b0_0
python_abi 3.13 2_cp313
pytokens 0.3.0 py313h06a4308_0
pytoolconfig 1.2.6 py313h06a4308_0
pytz 2025.2 py313h06a4308_0
pyuca 1.2 py313h06a4308_1
pyviz_comms 3.0.6 py313h06a4308_0
pywavelets 1.9.0 py313hb25bd0a_0
pyxdg 0.28 py313h06a4308_0
pyyaml 6.0.3 py313h591646f_0
pyzmq 27.1.0 py313hcf8288c_1
qdarkstyle 3.2.3 pyhd3eb1b0_0
qstylizer 0.2.2 py313h06a4308_0
qt-main 5.15.2 hded0198_13
qt-webengine 5.15.9 he2071f7_8
qtawesome 1.4.0 py313h06a4308_0
qtconsole 5.7.0 py313h06a4308_0
qtpy 2.4.3 py313h06a4308_0
quantecon 0.11.2 pypi_0 pypi
quantecon-book-theme 0.20.2 pypi_0 pypi
queuelib 1.8.0 py313h06a4308_0
re2 2024.07.02 hdb19cb5_0
readline 8.3 hc2a1206_0
referencing 0.37.0 py313h06a4308_0
regex 2025.9.1 py313hee96239_0
requests 2.32.5 py313h06a4308_1
requests-file 2.1.0 py313h06a4308_0
rfc3339-validator 0.1.4 py313h06a4308_0
rfc3986-validator 0.1.1 py313h06a4308_0
rfc3987-syntax 1.1.0 pypi_0 pypi
rich 14.2.0 py313h06a4308_0
roman-numerals-py 3.1.0 py313h06a4308_0
rope 1.14.0 py313h06a4308_0
rpds-py 0.28.0 py313h498d7c9_0
rtree 1.4.1 py313h7b4d351_0
ruff 0.12.0 py313hc6f7160_0
s2n 1.5.14 hdbd6064_0
s3fs 2025.10.0 py313h06a4308_0
scikit-image 0.25.2 py313h06d7b56_0
scikit-learn 1.7.2 py313h23c847b_0
scipy 1.16.3 py313h33bc11c_0
scrapy 2.13.3 py313h06a4308_0
seaborn 0.13.2 py313h06a4308_3
secretstorage 3.4.0 py313h3e8c6aa_0
send2trash 1.8.2 py313h06a4308_1
service_identity 24.2.0 py313h06a4308_0
setuptools 80.9.0 py313h06a4308_0
sip 6.12.0 py313h7934f7d_0
six 1.17.0 py313h06a4308_0
smmap 4.0.0 pyhd3eb1b0_0
snappy 1.2.1 h6a678d5_0
sniffio 1.3.0 py313h06a4308_0
snowballstemmer 3.0.1 py313h06a4308_0
sortedcontainers 2.4.0 pyhd3eb1b0_0
soupsieve 2.5 py313h06a4308_0
sphinx 7.4.7 pypi_0 pypi
sphinx-book-theme 1.1.4 pypi_0 pypi
sphinx-comments 0.0.3 pypi_0 pypi
sphinx-copybutton 0.5.2 pypi_0 pypi
sphinx-design 0.7.0 pypi_0 pypi
sphinx-exercise 1.2.1 pypi_0 pypi
sphinx-external-toc 1.1.0 pypi_0 pypi
sphinx-jupyterbook-latex 1.0.0 pypi_0 pypi
sphinx-multitoc-numbering 0.1.3 pypi_0 pypi
sphinx-thebe 0.3.1 pypi_0 pypi
sphinx-togglebutton 0.4.5 pypi_0 pypi
sphinx-tojupyter 0.6.0 pypi_0 pypi
sphinxcontrib-applehelp 2.0.0 pyhd3eb1b0_1
sphinxcontrib-bibtex 2.6.5 pypi_0 pypi
sphinxcontrib-devhelp 2.0.0 pyhd3eb1b0_0
sphinxcontrib-htmlhelp 2.1.0 pyhd3eb1b0_0
sphinxcontrib-jsmath 1.0.1 pyhd3eb1b0_0
sphinxcontrib-qthelp 2.0.0 pyhd3eb1b0_1
sphinxcontrib-serializinghtml 2.0.0 pyhd3eb1b0_0
sphinxcontrib-youtube 1.5.0 pypi_0 pypi
sphinxext-rediraffe 0.3.0 pypi_0 pypi
spyder 6.1.0 py313hc6bd4b5_2
spyder-kernels 3.1.1 py313h7040dfc_0
sqlalchemy 2.0.43 py313h7e39e78_0
sqlite 3.51.0 h2a70700_0
stack_data 0.6.3 py313h06a4308_0
statsmodels 0.14.5 py313hf0014fa_0
streamlit 1.51.0 py313h06a4308_0
superqt 0.7.6 py313h4edb3dd_0
sympy 1.14.0 py313h06a4308_0
tabulate 0.9.0 py313h06a4308_0
tbb 2022.0.0 hdb19cb5_0