summaryrefslogtreecommitdiff
blob: 4ec451b4e0657ec9432384b6101bfd7155830f57 (plain)
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
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
<?xml version="1.0" encoding="UTF-8"?>
<opml version="1.0">
  <!-- generated using gpy-release-feed-opml -->
  <head>
    <title>Python Release Feeds</title>
  </head>
  <body>
    <outline title="python" type="folder">
      <outline text="PyPI recent updates for a2wsgi" type="rss" xmlUrl="https://pypi.org/rss/project/a2wsgi/releases.xml" htmlUrl="https://pypi.org/project/a2wsgi/"/>
      <outline text="PyPI recent updates for absl-py" type="rss" xmlUrl="https://pypi.org/rss/project/absl-py/releases.xml" htmlUrl="https://pypi.org/project/absl-py/"/>
      <outline text="PyPI recent updates for accessible-pygments" type="rss" xmlUrl="https://pypi.org/rss/project/accessible-pygments/releases.xml" htmlUrl="https://pypi.org/project/accessible-pygments/"/>
      <outline text="PyPI recent updates for adblock" type="rss" xmlUrl="https://pypi.org/rss/project/adblock/releases.xml" htmlUrl="https://pypi.org/project/adblock/"/>
      <outline text="PyPI recent updates for agate" type="rss" xmlUrl="https://pypi.org/rss/project/agate/releases.xml" htmlUrl="https://pypi.org/project/agate/"/>
      <outline text="PyPI recent updates for agate-dbf" type="rss" xmlUrl="https://pypi.org/rss/project/agate-dbf/releases.xml" htmlUrl="https://pypi.org/project/agate-dbf/"/>
      <outline text="PyPI recent updates for agate-excel" type="rss" xmlUrl="https://pypi.org/rss/project/agate-excel/releases.xml" htmlUrl="https://pypi.org/project/agate-excel/"/>
      <outline text="PyPI recent updates for agate-sql" type="rss" xmlUrl="https://pypi.org/rss/project/agate-sql/releases.xml" htmlUrl="https://pypi.org/project/agate-sql/"/>
      <outline text="PyPI recent updates for aiocache" type="rss" xmlUrl="https://pypi.org/rss/project/aiocache/releases.xml" htmlUrl="https://pypi.org/project/aiocache/"/>
      <outline text="PyPI recent updates for aiodns" type="rss" xmlUrl="https://pypi.org/rss/project/aiodns/releases.xml" htmlUrl="https://pypi.org/project/aiodns/"/>
      <outline text="PyPI recent updates for aiofiles" type="rss" xmlUrl="https://pypi.org/rss/project/aiofiles/releases.xml" htmlUrl="https://pypi.org/project/aiofiles/"/>
      <outline text="PyPI recent updates for aiohappyeyeballs" type="rss" xmlUrl="https://pypi.org/rss/project/aiohappyeyeballs/releases.xml" htmlUrl="https://pypi.org/project/aiohappyeyeballs/"/>
      <outline text="PyPI recent updates for aiohttp" type="rss" xmlUrl="https://pypi.org/rss/project/aiohttp/releases.xml" htmlUrl="https://pypi.org/project/aiohttp/"/>
      <outline text="PyPI recent updates for aiohttp_cors" type="rss" xmlUrl="https://pypi.org/rss/project/aiohttp_cors/releases.xml" htmlUrl="https://pypi.org/project/aiohttp_cors/"/>
      <outline text="PyPI recent updates for aiohttp-socks" type="rss" xmlUrl="https://pypi.org/rss/project/aiohttp-socks/releases.xml" htmlUrl="https://pypi.org/project/aiohttp-socks/"/>
      <outline text="PyPI recent updates for aiohttp-theme" type="rss" xmlUrl="https://pypi.org/rss/project/aiohttp-theme/releases.xml" htmlUrl="https://pypi.org/project/aiohttp-theme/"/>
      <outline text="PyPI recent updates for aioitertools" type="rss" xmlUrl="https://pypi.org/rss/project/aioitertools/releases.xml" htmlUrl="https://pypi.org/project/aioitertools/"/>
      <outline text="PyPI recent updates for aiopylgtv" type="rss" xmlUrl="https://pypi.org/rss/project/aiopylgtv/releases.xml" htmlUrl="https://pypi.org/project/aiopylgtv/"/>
      <outline text="PyPI recent updates for aioresponses" type="rss" xmlUrl="https://pypi.org/rss/project/aioresponses/releases.xml" htmlUrl="https://pypi.org/project/aioresponses/"/>
      <outline text="PyPI recent updates for aiorpcX" type="rss" xmlUrl="https://pypi.org/rss/project/aiorpcX/releases.xml" htmlUrl="https://pypi.org/project/aiorpcX/"/>
      <outline text="PyPI recent updates for aiosignal" type="rss" xmlUrl="https://pypi.org/rss/project/aiosignal/releases.xml" htmlUrl="https://pypi.org/project/aiosignal/"/>
      <outline text="PyPI recent updates for aiosmtpd" type="rss" xmlUrl="https://pypi.org/rss/project/aiosmtpd/releases.xml" htmlUrl="https://pypi.org/project/aiosmtpd/"/>
      <outline text="PyPI recent updates for aiosqlite" type="rss" xmlUrl="https://pypi.org/rss/project/aiosqlite/releases.xml" htmlUrl="https://pypi.org/project/aiosqlite/"/>
      <outline text="PyPI recent updates for aiostream" type="rss" xmlUrl="https://pypi.org/rss/project/aiostream/releases.xml" htmlUrl="https://pypi.org/project/aiostream/"/>
      <outline text="PyPI recent updates for aiounittest" type="rss" xmlUrl="https://pypi.org/rss/project/aiounittest/releases.xml" htmlUrl="https://pypi.org/project/aiounittest/"/>
      <outline text="PyPI recent updates for ajsonrpc" type="rss" xmlUrl="https://pypi.org/rss/project/ajsonrpc/releases.xml" htmlUrl="https://pypi.org/project/ajsonrpc/"/>
      <outline text="PyPI recent updates for alabaster" type="rss" xmlUrl="https://pypi.org/rss/project/alabaster/releases.xml" htmlUrl="https://pypi.org/project/alabaster/"/>
      <outline text="PyPI recent updates for alembic" type="rss" xmlUrl="https://pypi.org/rss/project/alembic/releases.xml" htmlUrl="https://pypi.org/project/alembic/"/>
      <outline text="PyPI recent updates for allpairspy" type="rss" xmlUrl="https://pypi.org/rss/project/allpairspy/releases.xml" htmlUrl="https://pypi.org/project/allpairspy/"/>
      <outline text="PyPI recent updates for amodem" type="rss" xmlUrl="https://pypi.org/rss/project/amodem/releases.xml" htmlUrl="https://pypi.org/project/amodem/"/>
      <outline text="PyPI recent updates for amqp" type="rss" xmlUrl="https://pypi.org/rss/project/amqp/releases.xml" htmlUrl="https://pypi.org/project/amqp/"/>
      <outline text="PyPI recent updates for aniso8601" type="rss" xmlUrl="https://pypi.org/rss/project/aniso8601/releases.xml" htmlUrl="https://pypi.org/project/aniso8601/"/>
      <outline text="PyPI recent updates for annotated-types" type="rss" xmlUrl="https://pypi.org/rss/project/annotated-types/releases.xml" htmlUrl="https://pypi.org/project/annotated-types/"/>
      <outline text="PyPI recent updates for ansi" type="rss" xmlUrl="https://pypi.org/rss/project/ansi/releases.xml" htmlUrl="https://pypi.org/project/ansi/"/>
      <outline text="PyPI recent updates for ansi2html" type="rss" xmlUrl="https://pypi.org/rss/project/ansi2html/releases.xml" htmlUrl="https://pypi.org/project/ansi2html/"/>
      <outline text="PyPI recent updates for ansible-compat" type="rss" xmlUrl="https://pypi.org/rss/project/ansible-compat/releases.xml" htmlUrl="https://pypi.org/project/ansible-compat/"/>
      <outline text="PyPI recent updates for ansible-pygments" type="rss" xmlUrl="https://pypi.org/rss/project/ansible-pygments/releases.xml" htmlUrl="https://pypi.org/project/ansible-pygments/"/>
      <outline text="PyPI recent updates for ansicolor" type="rss" xmlUrl="https://pypi.org/rss/project/ansicolor/releases.xml" htmlUrl="https://pypi.org/project/ansicolor/"/>
      <outline text="PyPI recent updates for antlr4-python3-runtime" type="rss" xmlUrl="https://pypi.org/rss/project/antlr4-python3-runtime/releases.xml" htmlUrl="https://pypi.org/project/antlr4-python3-runtime/"/>
      <outline text="PyPI recent updates for anyascii" type="rss" xmlUrl="https://pypi.org/rss/project/anyascii/releases.xml" htmlUrl="https://pypi.org/project/anyascii/"/>
      <outline text="PyPI recent updates for anyio" type="rss" xmlUrl="https://pypi.org/rss/project/anyio/releases.xml" htmlUrl="https://pypi.org/project/anyio/"/>
      <outline text="PyPI recent updates for apache-libcloud" type="rss" xmlUrl="https://pypi.org/rss/project/apache-libcloud/releases.xml" htmlUrl="https://pypi.org/project/apache-libcloud/"/>
      <outline text="PyPI recent updates for apipkg" type="rss" xmlUrl="https://pypi.org/rss/project/apipkg/releases.xml" htmlUrl="https://pypi.org/project/apipkg/"/>
      <outline text="PyPI recent updates for apispec" type="rss" xmlUrl="https://pypi.org/rss/project/apispec/releases.xml" htmlUrl="https://pypi.org/project/apispec/"/>
      <outline text="PyPI recent updates for appdirs" type="rss" xmlUrl="https://pypi.org/rss/project/appdirs/releases.xml" htmlUrl="https://pypi.org/project/appdirs/"/>
      <outline text="PyPI recent updates for apprise" type="rss" xmlUrl="https://pypi.org/rss/project/apprise/releases.xml" htmlUrl="https://pypi.org/project/apprise/"/>
      <outline text="PyPI recent updates for APScheduler" type="rss" xmlUrl="https://pypi.org/rss/project/APScheduler/releases.xml" htmlUrl="https://pypi.org/project/APScheduler/"/>
      <outline text="PyPI recent updates for apsw" type="rss" xmlUrl="https://pypi.org/rss/project/apsw/releases.xml" htmlUrl="https://pypi.org/project/apsw/"/>
      <outline text="PyPI recent updates for argcomplete" type="rss" xmlUrl="https://pypi.org/rss/project/argcomplete/releases.xml" htmlUrl="https://pypi.org/project/argcomplete/"/>
      <outline text="PyPI recent updates for argh" type="rss" xmlUrl="https://pypi.org/rss/project/argh/releases.xml" htmlUrl="https://pypi.org/project/argh/"/>
      <outline text="PyPI recent updates for argon2-cffi" type="rss" xmlUrl="https://pypi.org/rss/project/argon2-cffi/releases.xml" htmlUrl="https://pypi.org/project/argon2-cffi/"/>
      <outline text="PyPI recent updates for argon2-cffi-bindings" type="rss" xmlUrl="https://pypi.org/rss/project/argon2-cffi-bindings/releases.xml" htmlUrl="https://pypi.org/project/argon2-cffi-bindings/"/>
      <outline text="PyPI recent updates for argparse-addons" type="rss" xmlUrl="https://pypi.org/rss/project/argparse-addons/releases.xml" htmlUrl="https://pypi.org/project/argparse-addons/"/>
      <outline text="PyPI recent updates for argparse-manpage" type="rss" xmlUrl="https://pypi.org/rss/project/argparse-manpage/releases.xml" htmlUrl="https://pypi.org/project/argparse-manpage/"/>
      <outline text="PyPI recent updates for Arpeggio" type="rss" xmlUrl="https://pypi.org/rss/project/Arpeggio/releases.xml" htmlUrl="https://pypi.org/project/Arpeggio/"/>
      <outline text="PyPI recent updates for arrow" type="rss" xmlUrl="https://pypi.org/rss/project/arrow/releases.xml" htmlUrl="https://pypi.org/project/arrow/"/>
      <outline text="PyPI recent updates for arsenic" type="rss" xmlUrl="https://pypi.org/rss/project/arsenic/releases.xml" htmlUrl="https://pypi.org/project/arsenic/"/>
      <outline text="PyPI recent updates for asgiref" type="rss" xmlUrl="https://pypi.org/rss/project/asgiref/releases.xml" htmlUrl="https://pypi.org/project/asgiref/"/>
      <outline text="PyPI recent updates for asn1crypto" type="rss" xmlUrl="https://pypi.org/rss/project/asn1crypto/releases.xml" htmlUrl="https://pypi.org/project/asn1crypto/"/>
      <outline text="PyPI recent updates for asteval" type="rss" xmlUrl="https://pypi.org/rss/project/asteval/releases.xml" htmlUrl="https://pypi.org/project/asteval/"/>
      <outline text="PyPI recent updates for astor" type="rss" xmlUrl="https://pypi.org/rss/project/astor/releases.xml" htmlUrl="https://pypi.org/project/astor/"/>
      <outline text="PyPI recent updates for astroid" type="rss" xmlUrl="https://pypi.org/rss/project/astroid/releases.xml" htmlUrl="https://pypi.org/project/astroid/"/>
      <outline text="PyPI recent updates for asttokens" type="rss" xmlUrl="https://pypi.org/rss/project/asttokens/releases.xml" htmlUrl="https://pypi.org/project/asttokens/"/>
      <outline text="PyPI recent updates for async-lru" type="rss" xmlUrl="https://pypi.org/rss/project/async-lru/releases.xml" htmlUrl="https://pypi.org/project/async-lru/"/>
      <outline text="PyPI recent updates for asyncssh" type="rss" xmlUrl="https://pypi.org/rss/project/asyncssh/releases.xml" htmlUrl="https://pypi.org/project/asyncssh/"/>
      <outline text="PyPI recent updates for asyncstdlib" type="rss" xmlUrl="https://pypi.org/rss/project/asyncstdlib/releases.xml" htmlUrl="https://pypi.org/project/asyncstdlib/"/>
      <outline text="PyPI recent updates for async-timeout" type="rss" xmlUrl="https://pypi.org/rss/project/async-timeout/releases.xml" htmlUrl="https://pypi.org/project/async-timeout/"/>
      <outline text="PyPI recent updates for atomicwrites" type="rss" xmlUrl="https://pypi.org/rss/project/atomicwrites/releases.xml" htmlUrl="https://pypi.org/project/atomicwrites/"/>
      <outline text="PyPI recent updates for atpublic" type="rss" xmlUrl="https://pypi.org/rss/project/atpublic/releases.xml" htmlUrl="https://pypi.org/project/atpublic/"/>
      <outline text="PyPI recent updates for attrs" type="rss" xmlUrl="https://pypi.org/rss/project/attrs/releases.xml" htmlUrl="https://pypi.org/project/attrs/"/>
      <outline text="PyPI recent updates for audioread" type="rss" xmlUrl="https://pypi.org/rss/project/audioread/releases.xml" htmlUrl="https://pypi.org/project/audioread/"/>
      <outline text="PyPI recent updates for authres" type="rss" xmlUrl="https://pypi.org/rss/project/authres/releases.xml" htmlUrl="https://pypi.org/project/authres/"/>
      <outline text="PyPI recent updates for autobahn" type="rss" xmlUrl="https://pypi.org/rss/project/autobahn/releases.xml" htmlUrl="https://pypi.org/project/autobahn/"/>
      <outline text="PyPI recent updates for autocommand" type="rss" xmlUrl="https://pypi.org/rss/project/autocommand/releases.xml" htmlUrl="https://pypi.org/project/autocommand/"/>
      <outline text="PyPI recent updates for Automat" type="rss" xmlUrl="https://pypi.org/rss/project/Automat/releases.xml" htmlUrl="https://pypi.org/project/Automat/"/>
      <outline text="PyPI recent updates for autopage" type="rss" xmlUrl="https://pypi.org/rss/project/autopage/releases.xml" htmlUrl="https://pypi.org/project/autopage/"/>
      <outline text="PyPI recent updates for autopep8" type="rss" xmlUrl="https://pypi.org/rss/project/autopep8/releases.xml" htmlUrl="https://pypi.org/project/autopep8/"/>
      <outline text="PyPI recent updates for autoprop" type="rss" xmlUrl="https://pypi.org/rss/project/autoprop/releases.xml" htmlUrl="https://pypi.org/project/autoprop/"/>
      <outline text="PyPI recent updates for awscli" type="rss" xmlUrl="https://pypi.org/rss/project/awscli/releases.xml" htmlUrl="https://pypi.org/project/awscli/"/>
      <outline text="PyPI recent updates for aws-sam-translator" type="rss" xmlUrl="https://pypi.org/rss/project/aws-sam-translator/releases.xml" htmlUrl="https://pypi.org/project/aws-sam-translator/"/>
      <outline text="PyPI recent updates for aws-xray-sdk" type="rss" xmlUrl="https://pypi.org/rss/project/aws-xray-sdk/releases.xml" htmlUrl="https://pypi.org/project/aws-xray-sdk/"/>
      <outline text="PyPI recent updates for Babel" type="rss" xmlUrl="https://pypi.org/rss/project/Babel/releases.xml" htmlUrl="https://pypi.org/project/Babel/"/>
      <outline text="PyPI recent updates for babelfish" type="rss" xmlUrl="https://pypi.org/rss/project/babelfish/releases.xml" htmlUrl="https://pypi.org/project/babelfish/"/>
      <outline text="PyPI recent updates for backoff" type="rss" xmlUrl="https://pypi.org/rss/project/backoff/releases.xml" htmlUrl="https://pypi.org/project/backoff/"/>
      <outline text="PyPI recent updates for backports.tarfile" type="rss" xmlUrl="https://pypi.org/rss/project/backports.tarfile/releases.xml" htmlUrl="https://pypi.org/project/backports.tarfile/"/>
      <outline text="PyPI recent updates for backrefs" type="rss" xmlUrl="https://pypi.org/rss/project/backrefs/releases.xml" htmlUrl="https://pypi.org/project/backrefs/"/>
      <outline text="PyPI recent updates for bandit" type="rss" xmlUrl="https://pypi.org/rss/project/bandit/releases.xml" htmlUrl="https://pypi.org/project/bandit/"/>
      <outline text="PyPI recent updates for bashate" type="rss" xmlUrl="https://pypi.org/rss/project/bashate/releases.xml" htmlUrl="https://pypi.org/project/bashate/"/>
      <outline text="PyPI recent updates for basho-erlastic" type="rss" xmlUrl="https://pypi.org/rss/project/basho-erlastic/releases.xml" htmlUrl="https://pypi.org/project/basho-erlastic/"/>
      <outline text="PyPI recent updates for bcrypt" type="rss" xmlUrl="https://pypi.org/rss/project/bcrypt/releases.xml" htmlUrl="https://pypi.org/project/bcrypt/"/>
      <outline text="PyPI recent updates for beagle" type="rss" xmlUrl="https://pypi.org/rss/project/beagle/releases.xml" htmlUrl="https://pypi.org/project/beagle/"/>
      <outline text="PyPI recent updates for beartype" type="rss" xmlUrl="https://pypi.org/rss/project/beartype/releases.xml" htmlUrl="https://pypi.org/project/beartype/"/>
      <outline text="PyPI recent updates for beautifulsoup4" type="rss" xmlUrl="https://pypi.org/rss/project/beautifulsoup4/releases.xml" htmlUrl="https://pypi.org/project/beautifulsoup4/"/>
      <outline text="PyPI recent updates for beniget" type="rss" xmlUrl="https://pypi.org/rss/project/beniget/releases.xml" htmlUrl="https://pypi.org/project/beniget/"/>
      <outline text="PyPI recent updates for betamax" type="rss" xmlUrl="https://pypi.org/rss/project/betamax/releases.xml" htmlUrl="https://pypi.org/project/betamax/"/>
      <outline text="PyPI recent updates for betamax-matchers" type="rss" xmlUrl="https://pypi.org/rss/project/betamax-matchers/releases.xml" htmlUrl="https://pypi.org/project/betamax-matchers/"/>
      <outline text="PyPI recent updates for bibtexparser" type="rss" xmlUrl="https://pypi.org/rss/project/bibtexparser/releases.xml" htmlUrl="https://pypi.org/project/bibtexparser/"/>
      <outline text="PyPI recent updates for binaryornot" type="rss" xmlUrl="https://pypi.org/rss/project/binaryornot/releases.xml" htmlUrl="https://pypi.org/project/binaryornot/"/>
      <outline text="PyPI recent updates for bincopy" type="rss" xmlUrl="https://pypi.org/rss/project/bincopy/releases.xml" htmlUrl="https://pypi.org/project/bincopy/"/>
      <outline text="PyPI recent updates for bitarray" type="rss" xmlUrl="https://pypi.org/rss/project/bitarray/releases.xml" htmlUrl="https://pypi.org/project/bitarray/"/>
      <outline text="PyPI recent updates for bitstring" type="rss" xmlUrl="https://pypi.org/rss/project/bitstring/releases.xml" htmlUrl="https://pypi.org/project/bitstring/"/>
      <outline text="PyPI recent updates for BitVector" type="rss" xmlUrl="https://pypi.org/rss/project/BitVector/releases.xml" htmlUrl="https://pypi.org/project/BitVector/"/>
      <outline text="PyPI recent updates for black" type="rss" xmlUrl="https://pypi.org/rss/project/black/releases.xml" htmlUrl="https://pypi.org/project/black/"/>
      <outline text="PyPI recent updates for blake3" type="rss" xmlUrl="https://pypi.org/rss/project/blake3/releases.xml" htmlUrl="https://pypi.org/project/blake3/"/>
      <outline text="PyPI recent updates for bleach" type="rss" xmlUrl="https://pypi.org/rss/project/bleach/releases.xml" htmlUrl="https://pypi.org/project/bleach/"/>
      <outline text="PyPI recent updates for blessed" type="rss" xmlUrl="https://pypi.org/rss/project/blessed/releases.xml" htmlUrl="https://pypi.org/project/blessed/"/>
      <outline text="PyPI recent updates for blinker" type="rss" xmlUrl="https://pypi.org/rss/project/blinker/releases.xml" htmlUrl="https://pypi.org/project/blinker/"/>
      <outline text="PyPI recent updates for blosc" type="rss" xmlUrl="https://pypi.org/rss/project/blosc/releases.xml" htmlUrl="https://pypi.org/project/blosc/"/>
      <outline text="PyPI recent updates for bluelet" type="rss" xmlUrl="https://pypi.org/rss/project/bluelet/releases.xml" htmlUrl="https://pypi.org/project/bluelet/"/>
      <outline text="PyPI recent updates for blurb" type="rss" xmlUrl="https://pypi.org/rss/project/blurb/releases.xml" htmlUrl="https://pypi.org/project/blurb/"/>
      <outline text="PyPI recent updates for boltons" type="rss" xmlUrl="https://pypi.org/rss/project/boltons/releases.xml" htmlUrl="https://pypi.org/project/boltons/"/>
      <outline text="PyPI recent updates for boolean.py" type="rss" xmlUrl="https://pypi.org/rss/project/boolean.py/releases.xml" htmlUrl="https://pypi.org/project/boolean.py/"/>
      <outline text="PyPI recent updates for boto3" type="rss" xmlUrl="https://pypi.org/rss/project/boto3/releases.xml" htmlUrl="https://pypi.org/project/boto3/"/>
      <outline text="PyPI recent updates for botocore" type="rss" xmlUrl="https://pypi.org/rss/project/botocore/releases.xml" htmlUrl="https://pypi.org/project/botocore/"/>
      <outline text="PyPI recent updates for bottle" type="rss" xmlUrl="https://pypi.org/rss/project/bottle/releases.xml" htmlUrl="https://pypi.org/project/bottle/"/>
      <outline text="PyPI recent updates for Bottleneck" type="rss" xmlUrl="https://pypi.org/rss/project/Bottleneck/releases.xml" htmlUrl="https://pypi.org/project/Bottleneck/"/>
      <outline text="PyPI recent updates for bpython" type="rss" xmlUrl="https://pypi.org/rss/project/bpython/releases.xml" htmlUrl="https://pypi.org/project/bpython/"/>
      <outline text="PyPI recent updates for bracex" type="rss" xmlUrl="https://pypi.org/rss/project/bracex/releases.xml" htmlUrl="https://pypi.org/project/bracex/"/>
      <outline text="PyPI recent updates for braintree" type="rss" xmlUrl="https://pypi.org/rss/project/braintree/releases.xml" htmlUrl="https://pypi.org/project/braintree/"/>
      <outline text="PyPI recent updates for breathe" type="rss" xmlUrl="https://pypi.org/rss/project/breathe/releases.xml" htmlUrl="https://pypi.org/project/breathe/"/>
      <outline text="PyPI recent updates for brotlicffi" type="rss" xmlUrl="https://pypi.org/rss/project/brotlicffi/releases.xml" htmlUrl="https://pypi.org/project/brotlicffi/"/>
      <outline text="PyPI recent updates for browser-cookie3" type="rss" xmlUrl="https://pypi.org/rss/project/browser-cookie3/releases.xml" htmlUrl="https://pypi.org/project/browser-cookie3/"/>
      <outline text="PyPI recent updates for brython" type="rss" xmlUrl="https://pypi.org/rss/project/brython/releases.xml" htmlUrl="https://pypi.org/project/brython/"/>
      <outline text="PyPI recent updates for btrfs" type="rss" xmlUrl="https://pypi.org/rss/project/btrfs/releases.xml" htmlUrl="https://pypi.org/project/btrfs/"/>
      <outline text="PyPI recent updates for build" type="rss" xmlUrl="https://pypi.org/rss/project/build/releases.xml" htmlUrl="https://pypi.org/project/build/"/>
      <outline text="PyPI recent updates for CacheControl" type="rss" xmlUrl="https://pypi.org/rss/project/CacheControl/releases.xml" htmlUrl="https://pypi.org/project/CacheControl/"/>
      <outline text="PyPI recent updates for cachelib" type="rss" xmlUrl="https://pypi.org/rss/project/cachelib/releases.xml" htmlUrl="https://pypi.org/project/cachelib/"/>
      <outline text="PyPI recent updates for cachetools" type="rss" xmlUrl="https://pypi.org/rss/project/cachetools/releases.xml" htmlUrl="https://pypi.org/project/cachetools/"/>
      <outline text="PyPI recent updates for cairocffi" type="rss" xmlUrl="https://pypi.org/rss/project/cairocffi/releases.xml" htmlUrl="https://pypi.org/project/cairocffi/"/>
      <outline text="PyPI recent updates for caldav" type="rss" xmlUrl="https://pypi.org/rss/project/caldav/releases.xml" htmlUrl="https://pypi.org/project/caldav/"/>
      <outline text="PyPI recent updates for calver" type="rss" xmlUrl="https://pypi.org/rss/project/calver/releases.xml" htmlUrl="https://pypi.org/project/calver/"/>
      <outline text="PyPI recent updates for CangJie" type="rss" xmlUrl="https://pypi.org/rss/project/CangJie/releases.xml" htmlUrl="https://pypi.org/project/CangJie/"/>
      <outline text="PyPI recent updates for canonicaljson" type="rss" xmlUrl="https://pypi.org/rss/project/canonicaljson/releases.xml" htmlUrl="https://pypi.org/project/canonicaljson/"/>
      <outline text="PyPI recent updates for capturer" type="rss" xmlUrl="https://pypi.org/rss/project/capturer/releases.xml" htmlUrl="https://pypi.org/project/capturer/"/>
      <outline text="PyPI recent updates for casttube" type="rss" xmlUrl="https://pypi.org/rss/project/casttube/releases.xml" htmlUrl="https://pypi.org/project/casttube/"/>
      <outline text="PyPI recent updates for cattrs" type="rss" xmlUrl="https://pypi.org/rss/project/cattrs/releases.xml" htmlUrl="https://pypi.org/project/cattrs/"/>
      <outline text="PyPI recent updates for cbor2" type="rss" xmlUrl="https://pypi.org/rss/project/cbor2/releases.xml" htmlUrl="https://pypi.org/project/cbor2/"/>
      <outline text="PyPI recent updates for Cerberus" type="rss" xmlUrl="https://pypi.org/rss/project/Cerberus/releases.xml" htmlUrl="https://pypi.org/project/Cerberus/"/>
      <outline text="PyPI recent updates for certifi-system-store" type="rss" xmlUrl="https://pypi.org/rss/project/certifi-system-store/releases.xml" htmlUrl="https://pypi.org/project/certifi-system-store/"/>
      <outline text="PyPI recent updates for cffi" type="rss" xmlUrl="https://pypi.org/rss/project/cffi/releases.xml" htmlUrl="https://pypi.org/project/cffi/"/>
      <outline text="PyPI recent updates for cfgv" type="rss" xmlUrl="https://pypi.org/rss/project/cfgv/releases.xml" htmlUrl="https://pypi.org/project/cfgv/"/>
      <outline text="PyPI recent updates for cfn-lint" type="rss" xmlUrl="https://pypi.org/rss/project/cfn-lint/releases.xml" htmlUrl="https://pypi.org/project/cfn-lint/"/>
      <outline text="PyPI recent updates for cftime" type="rss" xmlUrl="https://pypi.org/rss/project/cftime/releases.xml" htmlUrl="https://pypi.org/project/cftime/"/>
      <outline text="PyPI recent updates for Chameleon" type="rss" xmlUrl="https://pypi.org/rss/project/Chameleon/releases.xml" htmlUrl="https://pypi.org/project/Chameleon/"/>
      <outline text="PyPI recent updates for characteristic" type="rss" xmlUrl="https://pypi.org/rss/project/characteristic/releases.xml" htmlUrl="https://pypi.org/project/characteristic/"/>
      <outline text="PyPI recent updates for chardet" type="rss" xmlUrl="https://pypi.org/rss/project/chardet/releases.xml" htmlUrl="https://pypi.org/project/chardet/"/>
      <outline text="PyPI recent updates for charset-normalizer" type="rss" xmlUrl="https://pypi.org/rss/project/charset-normalizer/releases.xml" htmlUrl="https://pypi.org/project/charset-normalizer/"/>
      <outline text="PyPI recent updates for chart-studio" type="rss" xmlUrl="https://pypi.org/rss/project/chart-studio/releases.xml" htmlUrl="https://pypi.org/project/chart-studio/"/>
      <outline text="PyPI recent updates for Cheetah3" type="rss" xmlUrl="https://pypi.org/rss/project/Cheetah3/releases.xml" htmlUrl="https://pypi.org/project/Cheetah3/"/>
      <outline text="PyPI recent updates for cheroot" type="rss" xmlUrl="https://pypi.org/rss/project/cheroot/releases.xml" htmlUrl="https://pypi.org/project/cheroot/"/>
      <outline text="PyPI recent updates for CherryPy" type="rss" xmlUrl="https://pypi.org/rss/project/CherryPy/releases.xml" htmlUrl="https://pypi.org/project/CherryPy/"/>
      <outline text="PyPI recent updates for chump" type="rss" xmlUrl="https://pypi.org/rss/project/chump/releases.xml" htmlUrl="https://pypi.org/project/chump/"/>
      <outline text="PyPI recent updates for CJKwrap" type="rss" xmlUrl="https://pypi.org/rss/project/CJKwrap/releases.xml" htmlUrl="https://pypi.org/project/CJKwrap/"/>
      <outline text="PyPI recent updates for cleo" type="rss" xmlUrl="https://pypi.org/rss/project/cleo/releases.xml" htmlUrl="https://pypi.org/project/cleo/"/>
      <outline text="PyPI recent updates for click" type="rss" xmlUrl="https://pypi.org/rss/project/click/releases.xml" htmlUrl="https://pypi.org/project/click/"/>
      <outline text="PyPI recent updates for click-default-group" type="rss" xmlUrl="https://pypi.org/rss/project/click-default-group/releases.xml" htmlUrl="https://pypi.org/project/click-default-group/"/>
      <outline text="PyPI recent updates for click-didyoumean" type="rss" xmlUrl="https://pypi.org/rss/project/click-didyoumean/releases.xml" htmlUrl="https://pypi.org/project/click-didyoumean/"/>
      <outline text="PyPI recent updates for click-help-colors" type="rss" xmlUrl="https://pypi.org/rss/project/click-help-colors/releases.xml" htmlUrl="https://pypi.org/project/click-help-colors/"/>
      <outline text="PyPI recent updates for click-log" type="rss" xmlUrl="https://pypi.org/rss/project/click-log/releases.xml" htmlUrl="https://pypi.org/project/click-log/"/>
      <outline text="PyPI recent updates for click-plugins" type="rss" xmlUrl="https://pypi.org/rss/project/click-plugins/releases.xml" htmlUrl="https://pypi.org/project/click-plugins/"/>
      <outline text="PyPI recent updates for click-threading" type="rss" xmlUrl="https://pypi.org/rss/project/click-threading/releases.xml" htmlUrl="https://pypi.org/project/click-threading/"/>
      <outline text="PyPI recent updates for cliff" type="rss" xmlUrl="https://pypi.org/rss/project/cliff/releases.xml" htmlUrl="https://pypi.org/project/cliff/"/>
      <outline text="PyPI recent updates for cli-helpers" type="rss" xmlUrl="https://pypi.org/rss/project/cli-helpers/releases.xml" htmlUrl="https://pypi.org/project/cli-helpers/"/>
      <outline text="PyPI recent updates for clikit" type="rss" xmlUrl="https://pypi.org/rss/project/clikit/releases.xml" htmlUrl="https://pypi.org/project/clikit/"/>
      <outline text="PyPI recent updates for clint" type="rss" xmlUrl="https://pypi.org/rss/project/clint/releases.xml" htmlUrl="https://pypi.org/project/clint/"/>
      <outline text="PyPI recent updates for cloudpickle" type="rss" xmlUrl="https://pypi.org/rss/project/cloudpickle/releases.xml" htmlUrl="https://pypi.org/project/cloudpickle/"/>
      <outline text="PyPI recent updates for cloudscraper" type="rss" xmlUrl="https://pypi.org/rss/project/cloudscraper/releases.xml" htmlUrl="https://pypi.org/project/cloudscraper/"/>
      <outline text="PyPI recent updates for clr-loader" type="rss" xmlUrl="https://pypi.org/rss/project/clr-loader/releases.xml" htmlUrl="https://pypi.org/project/clr-loader/"/>
      <outline text="PyPI recent updates for cmd2" type="rss" xmlUrl="https://pypi.org/rss/project/cmd2/releases.xml" htmlUrl="https://pypi.org/project/cmd2/"/>
      <outline text="PyPI recent updates for colorama" type="rss" xmlUrl="https://pypi.org/rss/project/colorama/releases.xml" htmlUrl="https://pypi.org/project/colorama/"/>
      <outline text="PyPI recent updates for colorclass" type="rss" xmlUrl="https://pypi.org/rss/project/colorclass/releases.xml" htmlUrl="https://pypi.org/project/colorclass/"/>
      <outline text="PyPI recent updates for coloredlogs" type="rss" xmlUrl="https://pypi.org/rss/project/coloredlogs/releases.xml" htmlUrl="https://pypi.org/project/coloredlogs/"/>
      <outline text="PyPI recent updates for colored_traceback" type="rss" xmlUrl="https://pypi.org/rss/project/colored_traceback/releases.xml" htmlUrl="https://pypi.org/project/colored_traceback/"/>
      <outline text="PyPI recent updates for colorful" type="rss" xmlUrl="https://pypi.org/rss/project/colorful/releases.xml" htmlUrl="https://pypi.org/project/colorful/"/>
      <outline text="PyPI recent updates for colorlog" type="rss" xmlUrl="https://pypi.org/rss/project/colorlog/releases.xml" htmlUrl="https://pypi.org/project/colorlog/"/>
      <outline text="PyPI recent updates for colour" type="rss" xmlUrl="https://pypi.org/rss/project/colour/releases.xml" htmlUrl="https://pypi.org/project/colour/"/>
      <outline text="PyPI recent updates for comm" type="rss" xmlUrl="https://pypi.org/rss/project/comm/releases.xml" htmlUrl="https://pypi.org/project/comm/"/>
      <outline text="PyPI recent updates for commentjson" type="rss" xmlUrl="https://pypi.org/rss/project/commentjson/releases.xml" htmlUrl="https://pypi.org/project/commentjson/"/>
      <outline text="PyPI recent updates for commonmark" type="rss" xmlUrl="https://pypi.org/rss/project/commonmark/releases.xml" htmlUrl="https://pypi.org/project/commonmark/"/>
      <outline text="PyPI recent updates for ConfigArgParse" type="rss" xmlUrl="https://pypi.org/rss/project/ConfigArgParse/releases.xml" htmlUrl="https://pypi.org/project/ConfigArgParse/"/>
      <outline text="PyPI recent updates for configclass" type="rss" xmlUrl="https://pypi.org/rss/project/configclass/releases.xml" htmlUrl="https://pypi.org/project/configclass/"/>
      <outline text="PyPI recent updates for configobj" type="rss" xmlUrl="https://pypi.org/rss/project/configobj/releases.xml" htmlUrl="https://pypi.org/project/configobj/"/>
      <outline text="PyPI recent updates for configshell-fb" type="rss" xmlUrl="https://pypi.org/rss/project/configshell-fb/releases.xml" htmlUrl="https://pypi.org/project/configshell-fb/"/>
      <outline text="PyPI recent updates for ConfigUpdater" type="rss" xmlUrl="https://pypi.org/rss/project/ConfigUpdater/releases.xml" htmlUrl="https://pypi.org/project/ConfigUpdater/"/>
      <outline text="PyPI recent updates for confusable-homoglyphs" type="rss" xmlUrl="https://pypi.org/rss/project/confusable-homoglyphs/releases.xml" htmlUrl="https://pypi.org/project/confusable-homoglyphs/"/>
      <outline text="PyPI recent updates for confuse" type="rss" xmlUrl="https://pypi.org/rss/project/confuse/releases.xml" htmlUrl="https://pypi.org/project/confuse/"/>
      <outline text="PyPI recent updates for cons" type="rss" xmlUrl="https://pypi.org/rss/project/cons/releases.xml" htmlUrl="https://pypi.org/project/cons/"/>
      <outline text="PyPI recent updates for consonance" type="rss" xmlUrl="https://pypi.org/rss/project/consonance/releases.xml" htmlUrl="https://pypi.org/project/consonance/"/>
      <outline text="PyPI recent updates for constantly" type="rss" xmlUrl="https://pypi.org/rss/project/constantly/releases.xml" htmlUrl="https://pypi.org/project/constantly/"/>
      <outline text="PyPI recent updates for construct" type="rss" xmlUrl="https://pypi.org/rss/project/construct/releases.xml" htmlUrl="https://pypi.org/project/construct/"/>
      <outline text="PyPI recent updates for contourpy" type="rss" xmlUrl="https://pypi.org/rss/project/contourpy/releases.xml" htmlUrl="https://pypi.org/project/contourpy/"/>
      <outline text="PyPI recent updates for conway-polynomials" type="rss" xmlUrl="https://pypi.org/rss/project/conway-polynomials/releases.xml" htmlUrl="https://pypi.org/project/conway-polynomials/"/>
      <outline text="PyPI recent updates for cookies" type="rss" xmlUrl="https://pypi.org/rss/project/cookies/releases.xml" htmlUrl="https://pypi.org/project/cookies/"/>
      <outline text="PyPI recent updates for coverage" type="rss" xmlUrl="https://pypi.org/rss/project/coverage/releases.xml" htmlUrl="https://pypi.org/project/coverage/"/>
      <outline text="PyPI recent updates for CppHeaderParser" type="rss" xmlUrl="https://pypi.org/rss/project/CppHeaderParser/releases.xml" htmlUrl="https://pypi.org/project/CppHeaderParser/"/>
      <outline text="PyPI recent updates for cppy" type="rss" xmlUrl="https://pypi.org/rss/project/cppy/releases.xml" htmlUrl="https://pypi.org/project/cppy/"/>
      <outline text="PyPI recent updates for cramjam" type="rss" xmlUrl="https://pypi.org/rss/project/cramjam/releases.xml" htmlUrl="https://pypi.org/project/cramjam/"/>
      <outline text="PyPI recent updates for crashtest" type="rss" xmlUrl="https://pypi.org/rss/project/crashtest/releases.xml" htmlUrl="https://pypi.org/project/crashtest/"/>
      <outline text="PyPI recent updates for crc32c" type="rss" xmlUrl="https://pypi.org/rss/project/crc32c/releases.xml" htmlUrl="https://pypi.org/project/crc32c/"/>
      <outline text="PyPI recent updates for crcmod" type="rss" xmlUrl="https://pypi.org/rss/project/crcmod/releases.xml" htmlUrl="https://pypi.org/project/crcmod/"/>
      <outline text="PyPI recent updates for crispy-bootstrap3" type="rss" xmlUrl="https://pypi.org/rss/project/crispy-bootstrap3/releases.xml" htmlUrl="https://pypi.org/project/crispy-bootstrap3/"/>
      <outline text="PyPI recent updates for crispy-bootstrap4" type="rss" xmlUrl="https://pypi.org/rss/project/crispy-bootstrap4/releases.xml" htmlUrl="https://pypi.org/project/crispy-bootstrap4/"/>
      <outline text="PyPI recent updates for crispy-bootstrap5" type="rss" xmlUrl="https://pypi.org/rss/project/crispy-bootstrap5/releases.xml" htmlUrl="https://pypi.org/project/crispy-bootstrap5/"/>
      <outline text="PyPI recent updates for croniter" type="rss" xmlUrl="https://pypi.org/rss/project/croniter/releases.xml" htmlUrl="https://pypi.org/project/croniter/"/>
      <outline text="PyPI recent updates for cryptography" type="rss" xmlUrl="https://pypi.org/rss/project/cryptography/releases.xml" htmlUrl="https://pypi.org/project/cryptography/"/>
      <outline text="PyPI recent updates for cson" type="rss" xmlUrl="https://pypi.org/rss/project/cson/releases.xml" htmlUrl="https://pypi.org/project/cson/"/>
      <outline text="PyPI recent updates for csscompressor" type="rss" xmlUrl="https://pypi.org/rss/project/csscompressor/releases.xml" htmlUrl="https://pypi.org/project/csscompressor/"/>
      <outline text="PyPI recent updates for cssmin" type="rss" xmlUrl="https://pypi.org/rss/project/cssmin/releases.xml" htmlUrl="https://pypi.org/project/cssmin/"/>
      <outline text="PyPI recent updates for css-parser" type="rss" xmlUrl="https://pypi.org/rss/project/css-parser/releases.xml" htmlUrl="https://pypi.org/project/css-parser/"/>
      <outline text="PyPI recent updates for cssselect" type="rss" xmlUrl="https://pypi.org/rss/project/cssselect/releases.xml" htmlUrl="https://pypi.org/project/cssselect/"/>
      <outline text="PyPI recent updates for cssselect2" type="rss" xmlUrl="https://pypi.org/rss/project/cssselect2/releases.xml" htmlUrl="https://pypi.org/project/cssselect2/"/>
      <outline text="PyPI recent updates for cssutils" type="rss" xmlUrl="https://pypi.org/rss/project/cssutils/releases.xml" htmlUrl="https://pypi.org/project/cssutils/"/>
      <outline text="PyPI recent updates for cstruct" type="rss" xmlUrl="https://pypi.org/rss/project/cstruct/releases.xml" htmlUrl="https://pypi.org/project/cstruct/"/>
      <outline text="PyPI recent updates for csvkit" type="rss" xmlUrl="https://pypi.org/rss/project/csvkit/releases.xml" htmlUrl="https://pypi.org/project/csvkit/"/>
      <outline text="PyPI recent updates for curtsies" type="rss" xmlUrl="https://pypi.org/rss/project/curtsies/releases.xml" htmlUrl="https://pypi.org/project/curtsies/"/>
      <outline text="PyPI recent updates for cvxopt" type="rss" xmlUrl="https://pypi.org/rss/project/cvxopt/releases.xml" htmlUrl="https://pypi.org/project/cvxopt/"/>
      <outline text="PyPI recent updates for cwcwidth" type="rss" xmlUrl="https://pypi.org/rss/project/cwcwidth/releases.xml" htmlUrl="https://pypi.org/project/cwcwidth/"/>
      <outline text="PyPI recent updates for cycler" type="rss" xmlUrl="https://pypi.org/rss/project/cycler/releases.xml" htmlUrl="https://pypi.org/project/cycler/"/>
      <outline text="PyPI recent updates for cypari2" type="rss" xmlUrl="https://pypi.org/rss/project/cypari2/releases.xml" htmlUrl="https://pypi.org/project/cypari2/"/>
      <outline text="PyPI recent updates for cysignals" type="rss" xmlUrl="https://pypi.org/rss/project/cysignals/releases.xml" htmlUrl="https://pypi.org/project/cysignals/"/>
      <outline text="PyPI recent updates for Cython" type="rss" xmlUrl="https://pypi.org/rss/project/Cython/releases.xml" htmlUrl="https://pypi.org/project/Cython/"/>
      <outline text="PyPI recent updates for cython-test-exception-raiser" type="rss" xmlUrl="https://pypi.org/rss/project/cython-test-exception-raiser/releases.xml" htmlUrl="https://pypi.org/project/cython-test-exception-raiser/"/>
      <outline text="PyPI recent updates for daemonize" type="rss" xmlUrl="https://pypi.org/rss/project/daemonize/releases.xml" htmlUrl="https://pypi.org/project/daemonize/"/>
      <outline text="PyPI recent updates for dbfread" type="rss" xmlUrl="https://pypi.org/rss/project/dbfread/releases.xml" htmlUrl="https://pypi.org/project/dbfread/"/>
      <outline text="PyPI recent updates for dbus-next" type="rss" xmlUrl="https://pypi.org/rss/project/dbus-next/releases.xml" htmlUrl="https://pypi.org/project/dbus-next/"/>
      <outline text="PyPI recent updates for dbus-python" type="rss" xmlUrl="https://pypi.org/rss/project/dbus-python/releases.xml" htmlUrl="https://pypi.org/project/dbus-python/"/>
      <outline text="PyPI recent updates for DBUtils" type="rss" xmlUrl="https://pypi.org/rss/project/DBUtils/releases.xml" htmlUrl="https://pypi.org/project/DBUtils/"/>
      <outline text="PyPI recent updates for ddt" type="rss" xmlUrl="https://pypi.org/rss/project/ddt/releases.xml" htmlUrl="https://pypi.org/project/ddt/"/>
      <outline text="PyPI recent updates for debtcollector" type="rss" xmlUrl="https://pypi.org/rss/project/debtcollector/releases.xml" htmlUrl="https://pypi.org/project/debtcollector/"/>
      <outline text="PyPI recent updates for decorator" type="rss" xmlUrl="https://pypi.org/rss/project/decorator/releases.xml" htmlUrl="https://pypi.org/project/decorator/"/>
      <outline text="PyPI recent updates for deepdiff" type="rss" xmlUrl="https://pypi.org/rss/project/deepdiff/releases.xml" htmlUrl="https://pypi.org/project/deepdiff/"/>
      <outline text="PyPI recent updates for deepmerge" type="rss" xmlUrl="https://pypi.org/rss/project/deepmerge/releases.xml" htmlUrl="https://pypi.org/project/deepmerge/"/>
      <outline text="PyPI recent updates for defusedxml" type="rss" xmlUrl="https://pypi.org/rss/project/defusedxml/releases.xml" htmlUrl="https://pypi.org/project/defusedxml/"/>
      <outline text="PyPI recent updates for denonavr" type="rss" xmlUrl="https://pypi.org/rss/project/denonavr/releases.xml" htmlUrl="https://pypi.org/project/denonavr/"/>
      <outline text="PyPI recent updates for dep-logic" type="rss" xmlUrl="https://pypi.org/rss/project/dep-logic/releases.xml" htmlUrl="https://pypi.org/project/dep-logic/"/>
      <outline text="PyPI recent updates for Deprecated" type="rss" xmlUrl="https://pypi.org/rss/project/Deprecated/releases.xml" htmlUrl="https://pypi.org/project/Deprecated/"/>
      <outline text="PyPI recent updates for deprecation" type="rss" xmlUrl="https://pypi.org/rss/project/deprecation/releases.xml" htmlUrl="https://pypi.org/project/deprecation/"/>
      <outline text="PyPI recent updates for dict2xml" type="rss" xmlUrl="https://pypi.org/rss/project/dict2xml/releases.xml" htmlUrl="https://pypi.org/project/dict2xml/"/>
      <outline text="PyPI recent updates for dictdiffer" type="rss" xmlUrl="https://pypi.org/rss/project/dictdiffer/releases.xml" htmlUrl="https://pypi.org/project/dictdiffer/"/>
      <outline text="PyPI recent updates for diff-match-patch" type="rss" xmlUrl="https://pypi.org/rss/project/diff-match-patch/releases.xml" htmlUrl="https://pypi.org/project/diff-match-patch/"/>
      <outline text="PyPI recent updates for dill" type="rss" xmlUrl="https://pypi.org/rss/project/dill/releases.xml" htmlUrl="https://pypi.org/project/dill/"/>
      <outline text="PyPI recent updates for dirty-equals" type="rss" xmlUrl="https://pypi.org/rss/project/dirty-equals/releases.xml" htmlUrl="https://pypi.org/project/dirty-equals/"/>
      <outline text="PyPI recent updates for discid" type="rss" xmlUrl="https://pypi.org/rss/project/discid/releases.xml" htmlUrl="https://pypi.org/project/discid/"/>
      <outline text="PyPI recent updates for diskcache" type="rss" xmlUrl="https://pypi.org/rss/project/diskcache/releases.xml" htmlUrl="https://pypi.org/project/diskcache/"/>
      <outline text="PyPI recent updates for dissononce" type="rss" xmlUrl="https://pypi.org/rss/project/dissononce/releases.xml" htmlUrl="https://pypi.org/project/dissononce/"/>
      <outline text="PyPI recent updates for distlib" type="rss" xmlUrl="https://pypi.org/rss/project/distlib/releases.xml" htmlUrl="https://pypi.org/project/distlib/"/>
      <outline text="PyPI recent updates for distro" type="rss" xmlUrl="https://pypi.org/rss/project/distro/releases.xml" htmlUrl="https://pypi.org/project/distro/"/>
      <outline text="PyPI recent updates for Django" type="rss" xmlUrl="https://pypi.org/rss/project/Django/releases.xml" htmlUrl="https://pypi.org/project/Django/"/>
      <outline text="PyPI recent updates for django-auth-ldap" type="rss" xmlUrl="https://pypi.org/rss/project/django-auth-ldap/releases.xml" htmlUrl="https://pypi.org/project/django-auth-ldap/"/>
      <outline text="PyPI recent updates for django-cacheops" type="rss" xmlUrl="https://pypi.org/rss/project/django-cacheops/releases.xml" htmlUrl="https://pypi.org/project/django-cacheops/"/>
      <outline text="PyPI recent updates for django-cache-url" type="rss" xmlUrl="https://pypi.org/rss/project/django-cache-url/releases.xml" htmlUrl="https://pypi.org/project/django-cache-url/"/>
      <outline text="PyPI recent updates for django-configurations" type="rss" xmlUrl="https://pypi.org/rss/project/django-configurations/releases.xml" htmlUrl="https://pypi.org/project/django-configurations/"/>
      <outline text="PyPI recent updates for django-cors-headers" type="rss" xmlUrl="https://pypi.org/rss/project/django-cors-headers/releases.xml" htmlUrl="https://pypi.org/project/django-cors-headers/"/>
      <outline text="PyPI recent updates for django-crispy-forms" type="rss" xmlUrl="https://pypi.org/rss/project/django-crispy-forms/releases.xml" htmlUrl="https://pypi.org/project/django-crispy-forms/"/>
      <outline text="PyPI recent updates for django-debug-toolbar" type="rss" xmlUrl="https://pypi.org/rss/project/django-debug-toolbar/releases.xml" htmlUrl="https://pypi.org/project/django-debug-toolbar/"/>
      <outline text="PyPI recent updates for django-filter" type="rss" xmlUrl="https://pypi.org/rss/project/django-filter/releases.xml" htmlUrl="https://pypi.org/project/django-filter/"/>
      <outline text="PyPI recent updates for django-js-asset" type="rss" xmlUrl="https://pypi.org/rss/project/django-js-asset/releases.xml" htmlUrl="https://pypi.org/project/django-js-asset/"/>
      <outline text="PyPI recent updates for django-otp" type="rss" xmlUrl="https://pypi.org/rss/project/django-otp/releases.xml" htmlUrl="https://pypi.org/project/django-otp/"/>
      <outline text="PyPI recent updates for django-polymorphic" type="rss" xmlUrl="https://pypi.org/rss/project/django-polymorphic/releases.xml" htmlUrl="https://pypi.org/project/django-polymorphic/"/>
      <outline text="PyPI recent updates for django-prometheus" type="rss" xmlUrl="https://pypi.org/rss/project/django-prometheus/releases.xml" htmlUrl="https://pypi.org/project/django-prometheus/"/>
      <outline text="PyPI recent updates for django-redis" type="rss" xmlUrl="https://pypi.org/rss/project/django-redis/releases.xml" htmlUrl="https://pypi.org/project/django-redis/"/>
      <outline text="PyPI recent updates for django-registration" type="rss" xmlUrl="https://pypi.org/rss/project/django-registration/releases.xml" htmlUrl="https://pypi.org/project/django-registration/"/>
      <outline text="PyPI recent updates for djangorestframework" type="rss" xmlUrl="https://pypi.org/rss/project/djangorestframework/releases.xml" htmlUrl="https://pypi.org/project/djangorestframework/"/>
      <outline text="PyPI recent updates for django-sortedm2m" type="rss" xmlUrl="https://pypi.org/rss/project/django-sortedm2m/releases.xml" htmlUrl="https://pypi.org/project/django-sortedm2m/"/>
      <outline text="PyPI recent updates for django-tables2" type="rss" xmlUrl="https://pypi.org/rss/project/django-tables2/releases.xml" htmlUrl="https://pypi.org/project/django-tables2/"/>
      <outline text="PyPI recent updates for django-taggit" type="rss" xmlUrl="https://pypi.org/rss/project/django-taggit/releases.xml" htmlUrl="https://pypi.org/project/django-taggit/"/>
      <outline text="PyPI recent updates for django-timezone-field" type="rss" xmlUrl="https://pypi.org/rss/project/django-timezone-field/releases.xml" htmlUrl="https://pypi.org/project/django-timezone-field/"/>
      <outline text="PyPI recent updates for dj-database-url" type="rss" xmlUrl="https://pypi.org/rss/project/dj-database-url/releases.xml" htmlUrl="https://pypi.org/project/dj-database-url/"/>
      <outline text="PyPI recent updates for dj-email-url" type="rss" xmlUrl="https://pypi.org/rss/project/dj-email-url/releases.xml" htmlUrl="https://pypi.org/project/dj-email-url/"/>
      <outline text="PyPI recent updates for dj-search-url" type="rss" xmlUrl="https://pypi.org/rss/project/dj-search-url/releases.xml" htmlUrl="https://pypi.org/project/dj-search-url/"/>
      <outline text="PyPI recent updates for dkimpy" type="rss" xmlUrl="https://pypi.org/rss/project/dkimpy/releases.xml" htmlUrl="https://pypi.org/project/dkimpy/"/>
      <outline text="PyPI recent updates for dns-lexicon" type="rss" xmlUrl="https://pypi.org/rss/project/dns-lexicon/releases.xml" htmlUrl="https://pypi.org/project/dns-lexicon/"/>
      <outline text="PyPI recent updates for dnspython" type="rss" xmlUrl="https://pypi.org/rss/project/dnspython/releases.xml" htmlUrl="https://pypi.org/project/dnspython/"/>
      <outline text="PyPI recent updates for doc8" type="rss" xmlUrl="https://pypi.org/rss/project/doc8/releases.xml" htmlUrl="https://pypi.org/project/doc8/"/>
      <outline text="PyPI recent updates for docker" type="rss" xmlUrl="https://pypi.org/rss/project/docker/releases.xml" htmlUrl="https://pypi.org/project/docker/"/>
      <outline text="PyPI recent updates for dockerpty" type="rss" xmlUrl="https://pypi.org/rss/project/dockerpty/releases.xml" htmlUrl="https://pypi.org/project/dockerpty/"/>
      <outline text="PyPI recent updates for docopt" type="rss" xmlUrl="https://pypi.org/rss/project/docopt/releases.xml" htmlUrl="https://pypi.org/project/docopt/"/>
      <outline text="PyPI recent updates for docstring-to-markdown" type="rss" xmlUrl="https://pypi.org/rss/project/docstring-to-markdown/releases.xml" htmlUrl="https://pypi.org/project/docstring-to-markdown/"/>
      <outline text="PyPI recent updates for docutils" type="rss" xmlUrl="https://pypi.org/rss/project/docutils/releases.xml" htmlUrl="https://pypi.org/project/docutils/"/>
      <outline text="PyPI recent updates for docutils-glep" type="rss" xmlUrl="https://pypi.org/rss/project/docutils-glep/releases.xml" htmlUrl="https://pypi.org/project/docutils-glep/"/>
      <outline text="PyPI recent updates for dogpile.cache" type="rss" xmlUrl="https://pypi.org/rss/project/dogpile.cache/releases.xml" htmlUrl="https://pypi.org/project/dogpile.cache/"/>
      <outline text="PyPI recent updates for doit" type="rss" xmlUrl="https://pypi.org/rss/project/doit/releases.xml" htmlUrl="https://pypi.org/project/doit/"/>
      <outline text="PyPI recent updates for doit-py" type="rss" xmlUrl="https://pypi.org/rss/project/doit-py/releases.xml" htmlUrl="https://pypi.org/project/doit-py/"/>
      <outline text="PyPI recent updates for dominate" type="rss" xmlUrl="https://pypi.org/rss/project/dominate/releases.xml" htmlUrl="https://pypi.org/project/dominate/"/>
      <outline text="PyPI recent updates for doublex" type="rss" xmlUrl="https://pypi.org/rss/project/doublex/releases.xml" htmlUrl="https://pypi.org/project/doublex/"/>
      <outline text="PyPI recent updates for doublex-expects" type="rss" xmlUrl="https://pypi.org/rss/project/doublex-expects/releases.xml" htmlUrl="https://pypi.org/project/doublex-expects/"/>
      <outline text="PyPI recent updates for dparse" type="rss" xmlUrl="https://pypi.org/rss/project/dparse/releases.xml" htmlUrl="https://pypi.org/project/dparse/"/>
      <outline text="PyPI recent updates for dulwich" type="rss" xmlUrl="https://pypi.org/rss/project/dulwich/releases.xml" htmlUrl="https://pypi.org/project/dulwich/"/>
      <outline text="PyPI recent updates for EasyProcess" type="rss" xmlUrl="https://pypi.org/rss/project/EasyProcess/releases.xml" htmlUrl="https://pypi.org/project/EasyProcess/"/>
      <outline text="PyPI recent updates for easy-thumbnails" type="rss" xmlUrl="https://pypi.org/rss/project/easy-thumbnails/releases.xml" htmlUrl="https://pypi.org/project/easy-thumbnails/"/>
      <outline text="PyPI recent updates for ecdsa" type="rss" xmlUrl="https://pypi.org/rss/project/ecdsa/releases.xml" htmlUrl="https://pypi.org/project/ecdsa/"/>
      <outline text="PyPI recent updates for editables" type="rss" xmlUrl="https://pypi.org/rss/project/editables/releases.xml" htmlUrl="https://pypi.org/project/editables/"/>
      <outline text="PyPI recent updates for EditorConfig" type="rss" xmlUrl="https://pypi.org/rss/project/EditorConfig/releases.xml" htmlUrl="https://pypi.org/project/EditorConfig/"/>
      <outline text="PyPI recent updates for elasticsearch" type="rss" xmlUrl="https://pypi.org/rss/project/elasticsearch/releases.xml" htmlUrl="https://pypi.org/project/elasticsearch/"/>
      <outline text="PyPI recent updates for elastic-transport" type="rss" xmlUrl="https://pypi.org/rss/project/elastic-transport/releases.xml" htmlUrl="https://pypi.org/project/elastic-transport/"/>
      <outline text="PyPI recent updates for elementpath" type="rss" xmlUrl="https://pypi.org/rss/project/elementpath/releases.xml" htmlUrl="https://pypi.org/project/elementpath/"/>
      <outline text="PyPI recent updates for email-validator" type="rss" xmlUrl="https://pypi.org/rss/project/email-validator/releases.xml" htmlUrl="https://pypi.org/project/email-validator/"/>
      <outline text="PyPI recent updates for emcee" type="rss" xmlUrl="https://pypi.org/rss/project/emcee/releases.xml" htmlUrl="https://pypi.org/project/emcee/"/>
      <outline text="PyPI recent updates for emoji" type="rss" xmlUrl="https://pypi.org/rss/project/emoji/releases.xml" htmlUrl="https://pypi.org/project/emoji/"/>
      <outline text="PyPI recent updates for enrich" type="rss" xmlUrl="https://pypi.org/rss/project/enrich/releases.xml" htmlUrl="https://pypi.org/project/enrich/"/>
      <outline text="PyPI recent updates for entrypoint2" type="rss" xmlUrl="https://pypi.org/rss/project/entrypoint2/releases.xml" htmlUrl="https://pypi.org/project/entrypoint2/"/>
      <outline text="PyPI recent updates for entrypoints" type="rss" xmlUrl="https://pypi.org/rss/project/entrypoints/releases.xml" htmlUrl="https://pypi.org/project/entrypoints/"/>
      <outline text="PyPI recent updates for environs" type="rss" xmlUrl="https://pypi.org/rss/project/environs/releases.xml" htmlUrl="https://pypi.org/project/environs/"/>
      <outline text="PyPI recent updates for enzyme" type="rss" xmlUrl="https://pypi.org/rss/project/enzyme/releases.xml" htmlUrl="https://pypi.org/project/enzyme/"/>
      <outline text="PyPI recent updates for ephemeral-port-reserve" type="rss" xmlUrl="https://pypi.org/rss/project/ephemeral-port-reserve/releases.xml" htmlUrl="https://pypi.org/project/ephemeral-port-reserve/"/>
      <outline text="PyPI recent updates for eradicate" type="rss" xmlUrl="https://pypi.org/rss/project/eradicate/releases.xml" htmlUrl="https://pypi.org/project/eradicate/"/>
      <outline text="PyPI recent updates for etuples" type="rss" xmlUrl="https://pypi.org/rss/project/etuples/releases.xml" htmlUrl="https://pypi.org/project/etuples/"/>
      <outline text="PyPI recent updates for et-xmlfile" type="rss" xmlUrl="https://pypi.org/rss/project/et-xmlfile/releases.xml" htmlUrl="https://pypi.org/project/et-xmlfile/"/>
      <outline text="PyPI recent updates for evdev" type="rss" xmlUrl="https://pypi.org/rss/project/evdev/releases.xml" htmlUrl="https://pypi.org/project/evdev/"/>
      <outline text="PyPI recent updates for ewmh" type="rss" xmlUrl="https://pypi.org/rss/project/ewmh/releases.xml" htmlUrl="https://pypi.org/project/ewmh/"/>
      <outline text="PyPI recent updates for exceptiongroup" type="rss" xmlUrl="https://pypi.org/rss/project/exceptiongroup/releases.xml" htmlUrl="https://pypi.org/project/exceptiongroup/"/>
      <outline text="PyPI recent updates for execnet" type="rss" xmlUrl="https://pypi.org/rss/project/execnet/releases.xml" htmlUrl="https://pypi.org/project/execnet/"/>
      <outline text="PyPI recent updates for executing" type="rss" xmlUrl="https://pypi.org/rss/project/executing/releases.xml" htmlUrl="https://pypi.org/project/executing/"/>
      <outline text="PyPI recent updates for expandvars" type="rss" xmlUrl="https://pypi.org/rss/project/expandvars/releases.xml" htmlUrl="https://pypi.org/project/expandvars/"/>
      <outline text="PyPI recent updates for expects" type="rss" xmlUrl="https://pypi.org/rss/project/expects/releases.xml" htmlUrl="https://pypi.org/project/expects/"/>
      <outline text="PyPI recent updates for extras" type="rss" xmlUrl="https://pypi.org/rss/project/extras/releases.xml" htmlUrl="https://pypi.org/project/extras/"/>
      <outline text="PyPI recent updates for eyed3" type="rss" xmlUrl="https://pypi.org/rss/project/eyed3/releases.xml" htmlUrl="https://pypi.org/project/eyed3/"/>
      <outline text="PyPI recent updates for Faker" type="rss" xmlUrl="https://pypi.org/rss/project/Faker/releases.xml" htmlUrl="https://pypi.org/project/Faker/"/>
      <outline text="PyPI recent updates for fakeredis" type="rss" xmlUrl="https://pypi.org/rss/project/fakeredis/releases.xml" htmlUrl="https://pypi.org/project/fakeredis/"/>
      <outline text="PyPI recent updates for fastbencode" type="rss" xmlUrl="https://pypi.org/rss/project/fastbencode/releases.xml" htmlUrl="https://pypi.org/project/fastbencode/"/>
      <outline text="PyPI recent updates for fasteners" type="rss" xmlUrl="https://pypi.org/rss/project/fasteners/releases.xml" htmlUrl="https://pypi.org/project/fasteners/"/>
      <outline text="PyPI recent updates for fastimport" type="rss" xmlUrl="https://pypi.org/rss/project/fastimport/releases.xml" htmlUrl="https://pypi.org/project/fastimport/"/>
      <outline text="PyPI recent updates for fastjsonschema" type="rss" xmlUrl="https://pypi.org/rss/project/fastjsonschema/releases.xml" htmlUrl="https://pypi.org/project/fastjsonschema/"/>
      <outline text="PyPI recent updates for faust-cchardet" type="rss" xmlUrl="https://pypi.org/rss/project/faust-cchardet/releases.xml" htmlUrl="https://pypi.org/project/faust-cchardet/"/>
      <outline text="PyPI recent updates for feedgenerator" type="rss" xmlUrl="https://pypi.org/rss/project/feedgenerator/releases.xml" htmlUrl="https://pypi.org/project/feedgenerator/"/>
      <outline text="PyPI recent updates for feedparser" type="rss" xmlUrl="https://pypi.org/rss/project/feedparser/releases.xml" htmlUrl="https://pypi.org/project/feedparser/"/>
      <outline text="PyPI recent updates for ffmpeg-python" type="rss" xmlUrl="https://pypi.org/rss/project/ffmpeg-python/releases.xml" htmlUrl="https://pypi.org/project/ffmpeg-python/"/>
      <outline text="PyPI recent updates for fido2" type="rss" xmlUrl="https://pypi.org/rss/project/fido2/releases.xml" htmlUrl="https://pypi.org/project/fido2/"/>
      <outline text="PyPI recent updates for fields" type="rss" xmlUrl="https://pypi.org/rss/project/fields/releases.xml" htmlUrl="https://pypi.org/project/fields/"/>
      <outline text="PyPI recent updates for filebytes" type="rss" xmlUrl="https://pypi.org/rss/project/filebytes/releases.xml" htmlUrl="https://pypi.org/project/filebytes/"/>
      <outline text="PyPI recent updates for filelock" type="rss" xmlUrl="https://pypi.org/rss/project/filelock/releases.xml" htmlUrl="https://pypi.org/project/filelock/"/>
      <outline text="PyPI recent updates for filetype" type="rss" xmlUrl="https://pypi.org/rss/project/filetype/releases.xml" htmlUrl="https://pypi.org/project/filetype/"/>
      <outline text="PyPI recent updates for findimports" type="rss" xmlUrl="https://pypi.org/rss/project/findimports/releases.xml" htmlUrl="https://pypi.org/project/findimports/"/>
      <outline text="PyPI recent updates for findpython" type="rss" xmlUrl="https://pypi.org/rss/project/findpython/releases.xml" htmlUrl="https://pypi.org/project/findpython/"/>
      <outline text="PyPI recent updates for fitsio" type="rss" xmlUrl="https://pypi.org/rss/project/fitsio/releases.xml" htmlUrl="https://pypi.org/project/fitsio/"/>
      <outline text="PyPI recent updates for fixtures" type="rss" xmlUrl="https://pypi.org/rss/project/fixtures/releases.xml" htmlUrl="https://pypi.org/project/fixtures/"/>
      <outline text="PyPI recent updates for flake8" type="rss" xmlUrl="https://pypi.org/rss/project/flake8/releases.xml" htmlUrl="https://pypi.org/project/flake8/"/>
      <outline text="PyPI recent updates for flake8-polyfill" type="rss" xmlUrl="https://pypi.org/rss/project/flake8-polyfill/releases.xml" htmlUrl="https://pypi.org/project/flake8-polyfill/"/>
      <outline text="PyPI recent updates for flaky" type="rss" xmlUrl="https://pypi.org/rss/project/flaky/releases.xml" htmlUrl="https://pypi.org/project/flaky/"/>
      <outline text="PyPI recent updates for flasgger" type="rss" xmlUrl="https://pypi.org/rss/project/flasgger/releases.xml" htmlUrl="https://pypi.org/project/flasgger/"/>
      <outline text="PyPI recent updates for Flask" type="rss" xmlUrl="https://pypi.org/rss/project/Flask/releases.xml" htmlUrl="https://pypi.org/project/Flask/"/>
      <outline text="PyPI recent updates for Flask-API" type="rss" xmlUrl="https://pypi.org/rss/project/Flask-API/releases.xml" htmlUrl="https://pypi.org/project/Flask-API/"/>
      <outline text="PyPI recent updates for flask-babel" type="rss" xmlUrl="https://pypi.org/rss/project/flask-babel/releases.xml" htmlUrl="https://pypi.org/project/flask-babel/"/>
      <outline text="PyPI recent updates for Flask-Compress" type="rss" xmlUrl="https://pypi.org/rss/project/Flask-Compress/releases.xml" htmlUrl="https://pypi.org/project/Flask-Compress/"/>
      <outline text="PyPI recent updates for Flask-Cors" type="rss" xmlUrl="https://pypi.org/rss/project/Flask-Cors/releases.xml" htmlUrl="https://pypi.org/project/Flask-Cors/"/>
      <outline text="PyPI recent updates for Flask-Debug" type="rss" xmlUrl="https://pypi.org/rss/project/Flask-Debug/releases.xml" htmlUrl="https://pypi.org/project/Flask-Debug/"/>
      <outline text="PyPI recent updates for Flask-HTMLmin" type="rss" xmlUrl="https://pypi.org/rss/project/Flask-HTMLmin/releases.xml" htmlUrl="https://pypi.org/project/Flask-HTMLmin/"/>
      <outline text="PyPI recent updates for Flask-Login" type="rss" xmlUrl="https://pypi.org/rss/project/Flask-Login/releases.xml" htmlUrl="https://pypi.org/project/Flask-Login/"/>
      <outline text="PyPI recent updates for Flask-Migrate" type="rss" xmlUrl="https://pypi.org/rss/project/Flask-Migrate/releases.xml" htmlUrl="https://pypi.org/project/Flask-Migrate/"/>
      <outline text="PyPI recent updates for flask-nav" type="rss" xmlUrl="https://pypi.org/rss/project/flask-nav/releases.xml" htmlUrl="https://pypi.org/project/flask-nav/"/>
      <outline text="PyPI recent updates for flask-paginate" type="rss" xmlUrl="https://pypi.org/rss/project/flask-paginate/releases.xml" htmlUrl="https://pypi.org/project/flask-paginate/"/>
      <outline text="PyPI recent updates for Flask-Paranoid" type="rss" xmlUrl="https://pypi.org/rss/project/Flask-Paranoid/releases.xml" htmlUrl="https://pypi.org/project/Flask-Paranoid/"/>
      <outline text="PyPI recent updates for Flask-Sphinx-Themes" type="rss" xmlUrl="https://pypi.org/rss/project/Flask-Sphinx-Themes/releases.xml" htmlUrl="https://pypi.org/project/Flask-Sphinx-Themes/"/>
      <outline text="PyPI recent updates for Flask-SQLAlchemy" type="rss" xmlUrl="https://pypi.org/rss/project/Flask-SQLAlchemy/releases.xml" htmlUrl="https://pypi.org/project/Flask-SQLAlchemy/"/>
      <outline text="PyPI recent updates for flatbuffers" type="rss" xmlUrl="https://pypi.org/rss/project/flatbuffers/releases.xml" htmlUrl="https://pypi.org/project/flatbuffers/"/>
      <outline text="PyPI recent updates for flatdict" type="rss" xmlUrl="https://pypi.org/rss/project/flatdict/releases.xml" htmlUrl="https://pypi.org/project/flatdict/"/>
      <outline text="PyPI recent updates for fleep" type="rss" xmlUrl="https://pypi.org/rss/project/fleep/releases.xml" htmlUrl="https://pypi.org/project/fleep/"/>
      <outline text="PyPI recent updates for flexmock" type="rss" xmlUrl="https://pypi.org/rss/project/flexmock/releases.xml" htmlUrl="https://pypi.org/project/flexmock/"/>
      <outline text="PyPI recent updates for flit" type="rss" xmlUrl="https://pypi.org/rss/project/flit/releases.xml" htmlUrl="https://pypi.org/project/flit/"/>
      <outline text="PyPI recent updates for flit-core" type="rss" xmlUrl="https://pypi.org/rss/project/flit-core/releases.xml" htmlUrl="https://pypi.org/project/flit-core/"/>
      <outline text="PyPI recent updates for flit-scm" type="rss" xmlUrl="https://pypi.org/rss/project/flit-scm/releases.xml" htmlUrl="https://pypi.org/project/flit-scm/"/>
      <outline text="PyPI recent updates for flufl.lock" type="rss" xmlUrl="https://pypi.org/rss/project/flufl.lock/releases.xml" htmlUrl="https://pypi.org/project/flufl.lock/"/>
      <outline text="PyPI recent updates for fonttools" type="rss" xmlUrl="https://pypi.org/rss/project/fonttools/releases.xml" htmlUrl="https://pypi.org/project/fonttools/"/>
      <outline text="PyPI recent updates for fpylll" type="rss" xmlUrl="https://pypi.org/rss/project/fpylll/releases.xml" htmlUrl="https://pypi.org/project/fpylll/"/>
      <outline text="PyPI recent updates for fqdn" type="rss" xmlUrl="https://pypi.org/rss/project/fqdn/releases.xml" htmlUrl="https://pypi.org/project/fqdn/"/>
      <outline text="PyPI recent updates for freetype-py" type="rss" xmlUrl="https://pypi.org/rss/project/freetype-py/releases.xml" htmlUrl="https://pypi.org/project/freetype-py/"/>
      <outline text="PyPI recent updates for freezegun" type="rss" xmlUrl="https://pypi.org/rss/project/freezegun/releases.xml" htmlUrl="https://pypi.org/project/freezegun/"/>
      <outline text="PyPI recent updates for fritzconnection" type="rss" xmlUrl="https://pypi.org/rss/project/fritzconnection/releases.xml" htmlUrl="https://pypi.org/project/fritzconnection/"/>
      <outline text="PyPI recent updates for Frozen-Flask" type="rss" xmlUrl="https://pypi.org/rss/project/Frozen-Flask/releases.xml" htmlUrl="https://pypi.org/project/Frozen-Flask/"/>
      <outline text="PyPI recent updates for frozenlist" type="rss" xmlUrl="https://pypi.org/rss/project/frozenlist/releases.xml" htmlUrl="https://pypi.org/project/frozenlist/"/>
      <outline text="PyPI recent updates for fs" type="rss" xmlUrl="https://pypi.org/rss/project/fs/releases.xml" htmlUrl="https://pypi.org/project/fs/"/>
      <outline text="PyPI recent updates for fsspec" type="rss" xmlUrl="https://pypi.org/rss/project/fsspec/releases.xml" htmlUrl="https://pypi.org/project/fsspec/"/>
      <outline text="PyPI recent updates for ftfy" type="rss" xmlUrl="https://pypi.org/rss/project/ftfy/releases.xml" htmlUrl="https://pypi.org/project/ftfy/"/>
      <outline text="PyPI recent updates for funcparserlib" type="rss" xmlUrl="https://pypi.org/rss/project/funcparserlib/releases.xml" htmlUrl="https://pypi.org/project/funcparserlib/"/>
      <outline text="PyPI recent updates for funcy" type="rss" xmlUrl="https://pypi.org/rss/project/funcy/releases.xml" htmlUrl="https://pypi.org/project/funcy/"/>
      <outline text="PyPI recent updates for furo" type="rss" xmlUrl="https://pypi.org/rss/project/furo/releases.xml" htmlUrl="https://pypi.org/project/furo/"/>
      <outline text="PyPI recent updates for fuzzywuzzy" type="rss" xmlUrl="https://pypi.org/rss/project/fuzzywuzzy/releases.xml" htmlUrl="https://pypi.org/project/fuzzywuzzy/"/>
      <outline text="PyPI recent updates for gast" type="rss" xmlUrl="https://pypi.org/rss/project/gast/releases.xml" htmlUrl="https://pypi.org/project/gast/"/>
      <outline text="PyPI recent updates for Genshi" type="rss" xmlUrl="https://pypi.org/rss/project/Genshi/releases.xml" htmlUrl="https://pypi.org/project/Genshi/"/>
      <outline text="PyPI recent updates for genson" type="rss" xmlUrl="https://pypi.org/rss/project/genson/releases.xml" htmlUrl="https://pypi.org/project/genson/"/>
      <outline text="PyPI recent updates for genty" type="rss" xmlUrl="https://pypi.org/rss/project/genty/releases.xml" htmlUrl="https://pypi.org/project/genty/"/>
      <outline text="PyPI recent updates for geographiclib" type="rss" xmlUrl="https://pypi.org/rss/project/geographiclib/releases.xml" htmlUrl="https://pypi.org/project/geographiclib/"/>
      <outline text="PyPI recent updates for gfloat" type="rss" xmlUrl="https://pypi.org/rss/project/gfloat/releases.xml" htmlUrl="https://pypi.org/project/gfloat/"/>
      <outline text="PyPI recent updates for ghp-import" type="rss" xmlUrl="https://pypi.org/rss/project/ghp-import/releases.xml" htmlUrl="https://pypi.org/project/ghp-import/"/>
      <outline text="PyPI recent updates for gitdb" type="rss" xmlUrl="https://pypi.org/rss/project/gitdb/releases.xml" htmlUrl="https://pypi.org/project/gitdb/"/>
      <outline text="PyPI recent updates for github3.py" type="rss" xmlUrl="https://pypi.org/rss/project/github3.py/releases.xml" htmlUrl="https://pypi.org/project/github3.py/"/>
      <outline text="PyPI recent updates for GitPython" type="rss" xmlUrl="https://pypi.org/rss/project/GitPython/releases.xml" htmlUrl="https://pypi.org/project/GitPython/"/>
      <outline text="PyPI recent updates for git-review" type="rss" xmlUrl="https://pypi.org/rss/project/git-review/releases.xml" htmlUrl="https://pypi.org/project/git-review/"/>
      <outline text="PyPI recent updates for gmpy2" type="rss" xmlUrl="https://pypi.org/rss/project/gmpy2/releases.xml" htmlUrl="https://pypi.org/project/gmpy2/"/>
      <outline text="PyPI recent updates for google-api-core" type="rss" xmlUrl="https://pypi.org/rss/project/google-api-core/releases.xml" htmlUrl="https://pypi.org/project/google-api-core/"/>
      <outline text="PyPI recent updates for google-api-python-client" type="rss" xmlUrl="https://pypi.org/rss/project/google-api-python-client/releases.xml" htmlUrl="https://pypi.org/project/google-api-python-client/"/>
      <outline text="PyPI recent updates for googleapis-common-protos" type="rss" xmlUrl="https://pypi.org/rss/project/googleapis-common-protos/releases.xml" htmlUrl="https://pypi.org/project/googleapis-common-protos/"/>
      <outline text="PyPI recent updates for google-auth" type="rss" xmlUrl="https://pypi.org/rss/project/google-auth/releases.xml" htmlUrl="https://pypi.org/project/google-auth/"/>
      <outline text="PyPI recent updates for google-auth-httplib2" type="rss" xmlUrl="https://pypi.org/rss/project/google-auth-httplib2/releases.xml" htmlUrl="https://pypi.org/project/google-auth-httplib2/"/>
      <outline text="PyPI recent updates for google-auth-oauthlib" type="rss" xmlUrl="https://pypi.org/rss/project/google-auth-oauthlib/releases.xml" htmlUrl="https://pypi.org/project/google-auth-oauthlib/"/>
      <outline text="PyPI recent updates for google-i18n-address" type="rss" xmlUrl="https://pypi.org/rss/project/google-i18n-address/releases.xml" htmlUrl="https://pypi.org/project/google-i18n-address/"/>
      <outline text="PyPI recent updates for google-pasta" type="rss" xmlUrl="https://pypi.org/rss/project/google-pasta/releases.xml" htmlUrl="https://pypi.org/project/google-pasta/"/>
      <outline text="PyPI recent updates for gpep517" type="rss" xmlUrl="https://pypi.org/rss/project/gpep517/releases.xml" htmlUrl="https://pypi.org/project/gpep517/"/>
      <outline text="PyPI recent updates for graph-tool" type="rss" xmlUrl="https://pypi.org/rss/project/graph-tool/releases.xml" htmlUrl="https://pypi.org/project/graph-tool/"/>
      <outline text="PyPI recent updates for graphviz" type="rss" xmlUrl="https://pypi.org/rss/project/graphviz/releases.xml" htmlUrl="https://pypi.org/project/graphviz/"/>
      <outline text="PyPI recent updates for greenlet" type="rss" xmlUrl="https://pypi.org/rss/project/greenlet/releases.xml" htmlUrl="https://pypi.org/project/greenlet/"/>
      <outline text="PyPI recent updates for greenstalk" type="rss" xmlUrl="https://pypi.org/rss/project/greenstalk/releases.xml" htmlUrl="https://pypi.org/project/greenstalk/"/>
      <outline text="PyPI recent updates for GridDataFormats" type="rss" xmlUrl="https://pypi.org/rss/project/GridDataFormats/releases.xml" htmlUrl="https://pypi.org/project/GridDataFormats/"/>
      <outline text="PyPI recent updates for griffe" type="rss" xmlUrl="https://pypi.org/rss/project/griffe/releases.xml" htmlUrl="https://pypi.org/project/griffe/"/>
      <outline text="PyPI recent updates for gsd" type="rss" xmlUrl="https://pypi.org/rss/project/gsd/releases.xml" htmlUrl="https://pypi.org/project/gsd/"/>
      <outline text="PyPI recent updates for gssapi" type="rss" xmlUrl="https://pypi.org/rss/project/gssapi/releases.xml" htmlUrl="https://pypi.org/project/gssapi/"/>
      <outline text="PyPI recent updates for guessit" type="rss" xmlUrl="https://pypi.org/rss/project/guessit/releases.xml" htmlUrl="https://pypi.org/project/guessit/"/>
      <outline text="PyPI recent updates for gunicorn" type="rss" xmlUrl="https://pypi.org/rss/project/gunicorn/releases.xml" htmlUrl="https://pypi.org/project/gunicorn/"/>
      <outline text="PyPI recent updates for h11" type="rss" xmlUrl="https://pypi.org/rss/project/h11/releases.xml" htmlUrl="https://pypi.org/project/h11/"/>
      <outline text="PyPI recent updates for h2" type="rss" xmlUrl="https://pypi.org/rss/project/h2/releases.xml" htmlUrl="https://pypi.org/project/h2/"/>
      <outline text="PyPI recent updates for h5py" type="rss" xmlUrl="https://pypi.org/rss/project/h5py/releases.xml" htmlUrl="https://pypi.org/project/h5py/"/>
      <outline text="PyPI recent updates for happybase" type="rss" xmlUrl="https://pypi.org/rss/project/happybase/releases.xml" htmlUrl="https://pypi.org/project/happybase/"/>
      <outline text="PyPI recent updates for hatch-fancy-pypi-readme" type="rss" xmlUrl="https://pypi.org/rss/project/hatch-fancy-pypi-readme/releases.xml" htmlUrl="https://pypi.org/project/hatch-fancy-pypi-readme/"/>
      <outline text="PyPI recent updates for hatch-jupyter-builder" type="rss" xmlUrl="https://pypi.org/rss/project/hatch-jupyter-builder/releases.xml" htmlUrl="https://pypi.org/project/hatch-jupyter-builder/"/>
      <outline text="PyPI recent updates for hatchling" type="rss" xmlUrl="https://pypi.org/rss/project/hatchling/releases.xml" htmlUrl="https://pypi.org/project/hatchling/"/>
      <outline text="PyPI recent updates for hatch-nodejs-version" type="rss" xmlUrl="https://pypi.org/rss/project/hatch-nodejs-version/releases.xml" htmlUrl="https://pypi.org/project/hatch-nodejs-version/"/>
      <outline text="PyPI recent updates for hatch-vcs" type="rss" xmlUrl="https://pypi.org/rss/project/hatch-vcs/releases.xml" htmlUrl="https://pypi.org/project/hatch-vcs/"/>
      <outline text="PyPI recent updates for hcloud" type="rss" xmlUrl="https://pypi.org/rss/project/hcloud/releases.xml" htmlUrl="https://pypi.org/project/hcloud/"/>
      <outline text="PyPI recent updates for helpdev" type="rss" xmlUrl="https://pypi.org/rss/project/helpdev/releases.xml" htmlUrl="https://pypi.org/project/helpdev/"/>
      <outline text="PyPI recent updates for hidapi" type="rss" xmlUrl="https://pypi.org/rss/project/hidapi/releases.xml" htmlUrl="https://pypi.org/project/hidapi/"/>
      <outline text="PyPI recent updates for hiredis" type="rss" xmlUrl="https://pypi.org/rss/project/hiredis/releases.xml" htmlUrl="https://pypi.org/project/hiredis/"/>
      <outline text="PyPI recent updates for hishel" type="rss" xmlUrl="https://pypi.org/rss/project/hishel/releases.xml" htmlUrl="https://pypi.org/project/hishel/"/>
      <outline text="PyPI recent updates for housekeeping" type="rss" xmlUrl="https://pypi.org/rss/project/housekeeping/releases.xml" htmlUrl="https://pypi.org/project/housekeeping/"/>
      <outline text="PyPI recent updates for hpack" type="rss" xmlUrl="https://pypi.org/rss/project/hpack/releases.xml" htmlUrl="https://pypi.org/project/hpack/"/>
      <outline text="PyPI recent updates for html2text" type="rss" xmlUrl="https://pypi.org/rss/project/html2text/releases.xml" htmlUrl="https://pypi.org/project/html2text/"/>
      <outline text="PyPI recent updates for html5lib" type="rss" xmlUrl="https://pypi.org/rss/project/html5lib/releases.xml" htmlUrl="https://pypi.org/project/html5lib/"/>
      <outline text="PyPI recent updates for html5-parser" type="rss" xmlUrl="https://pypi.org/rss/project/html5-parser/releases.xml" htmlUrl="https://pypi.org/project/html5-parser/"/>
      <outline text="PyPI recent updates for htmlmin" type="rss" xmlUrl="https://pypi.org/rss/project/htmlmin/releases.xml" htmlUrl="https://pypi.org/project/htmlmin/"/>
      <outline text="PyPI recent updates for httmock" type="rss" xmlUrl="https://pypi.org/rss/project/httmock/releases.xml" htmlUrl="https://pypi.org/project/httmock/"/>
      <outline text="PyPI recent updates for httpauth" type="rss" xmlUrl="https://pypi.org/rss/project/httpauth/releases.xml" htmlUrl="https://pypi.org/project/httpauth/"/>
      <outline text="PyPI recent updates for httpbin" type="rss" xmlUrl="https://pypi.org/rss/project/httpbin/releases.xml" htmlUrl="https://pypi.org/project/httpbin/"/>
      <outline text="PyPI recent updates for httpcore" type="rss" xmlUrl="https://pypi.org/rss/project/httpcore/releases.xml" htmlUrl="https://pypi.org/project/httpcore/"/>
      <outline text="PyPI recent updates for httplib2" type="rss" xmlUrl="https://pypi.org/rss/project/httplib2/releases.xml" htmlUrl="https://pypi.org/project/httplib2/"/>
      <outline text="PyPI recent updates for httpretty" type="rss" xmlUrl="https://pypi.org/rss/project/httpretty/releases.xml" htmlUrl="https://pypi.org/project/httpretty/"/>
      <outline text="PyPI recent updates for httpx" type="rss" xmlUrl="https://pypi.org/rss/project/httpx/releases.xml" htmlUrl="https://pypi.org/project/httpx/"/>
      <outline text="PyPI recent updates for httpx-socks" type="rss" xmlUrl="https://pypi.org/rss/project/httpx-socks/releases.xml" htmlUrl="https://pypi.org/project/httpx-socks/"/>
      <outline text="PyPI recent updates for huawei-lte-api" type="rss" xmlUrl="https://pypi.org/rss/project/huawei-lte-api/releases.xml" htmlUrl="https://pypi.org/project/huawei-lte-api/"/>
      <outline text="PyPI recent updates for humanfriendly" type="rss" xmlUrl="https://pypi.org/rss/project/humanfriendly/releases.xml" htmlUrl="https://pypi.org/project/humanfriendly/"/>
      <outline text="PyPI recent updates for humanize" type="rss" xmlUrl="https://pypi.org/rss/project/humanize/releases.xml" htmlUrl="https://pypi.org/project/humanize/"/>
      <outline text="PyPI recent updates for hvac" type="rss" xmlUrl="https://pypi.org/rss/project/hvac/releases.xml" htmlUrl="https://pypi.org/project/hvac/"/>
      <outline text="PyPI recent updates for Hypercorn" type="rss" xmlUrl="https://pypi.org/rss/project/Hypercorn/releases.xml" htmlUrl="https://pypi.org/project/Hypercorn/"/>
      <outline text="PyPI recent updates for hyperframe" type="rss" xmlUrl="https://pypi.org/rss/project/hyperframe/releases.xml" htmlUrl="https://pypi.org/project/hyperframe/"/>
      <outline text="PyPI recent updates for hyperlink" type="rss" xmlUrl="https://pypi.org/rss/project/hyperlink/releases.xml" htmlUrl="https://pypi.org/project/hyperlink/"/>
      <outline text="PyPI recent updates for hypothesis" type="rss" xmlUrl="https://pypi.org/rss/project/hypothesis/releases.xml" htmlUrl="https://pypi.org/project/hypothesis/"/>
      <outline text="PyPI recent updates for icalendar" type="rss" xmlUrl="https://pypi.org/rss/project/icalendar/releases.xml" htmlUrl="https://pypi.org/project/icalendar/"/>
      <outline text="PyPI recent updates for identify" type="rss" xmlUrl="https://pypi.org/rss/project/identify/releases.xml" htmlUrl="https://pypi.org/project/identify/"/>
      <outline text="PyPI recent updates for idna" type="rss" xmlUrl="https://pypi.org/rss/project/idna/releases.xml" htmlUrl="https://pypi.org/project/idna/"/>
      <outline text="PyPI recent updates for ifaddr" type="rss" xmlUrl="https://pypi.org/rss/project/ifaddr/releases.xml" htmlUrl="https://pypi.org/project/ifaddr/"/>
      <outline text="PyPI recent updates for ijson" type="rss" xmlUrl="https://pypi.org/rss/project/ijson/releases.xml" htmlUrl="https://pypi.org/project/ijson/"/>
      <outline text="PyPI recent updates for imageio" type="rss" xmlUrl="https://pypi.org/rss/project/imageio/releases.xml" htmlUrl="https://pypi.org/project/imageio/"/>
      <outline text="PyPI recent updates for imageio-ffmpeg" type="rss" xmlUrl="https://pypi.org/rss/project/imageio-ffmpeg/releases.xml" htmlUrl="https://pypi.org/project/imageio-ffmpeg/"/>
      <outline text="PyPI recent updates for imagesize" type="rss" xmlUrl="https://pypi.org/rss/project/imagesize/releases.xml" htmlUrl="https://pypi.org/project/imagesize/"/>
      <outline text="PyPI recent updates for IMAPClient" type="rss" xmlUrl="https://pypi.org/rss/project/IMAPClient/releases.xml" htmlUrl="https://pypi.org/project/IMAPClient/"/>
      <outline text="PyPI recent updates for iminuit" type="rss" xmlUrl="https://pypi.org/rss/project/iminuit/releases.xml" htmlUrl="https://pypi.org/project/iminuit/"/>
      <outline text="PyPI recent updates for immutabledict" type="rss" xmlUrl="https://pypi.org/rss/project/immutabledict/releases.xml" htmlUrl="https://pypi.org/project/immutabledict/"/>
      <outline text="PyPI recent updates for immutables" type="rss" xmlUrl="https://pypi.org/rss/project/immutables/releases.xml" htmlUrl="https://pypi.org/project/immutables/"/>
      <outline text="PyPI recent updates for importlib-metadata" type="rss" xmlUrl="https://pypi.org/rss/project/importlib-metadata/releases.xml" htmlUrl="https://pypi.org/project/importlib-metadata/"/>
      <outline text="PyPI recent updates for importlib-resources" type="rss" xmlUrl="https://pypi.org/rss/project/importlib-resources/releases.xml" htmlUrl="https://pypi.org/project/importlib-resources/"/>
      <outline text="PyPI recent updates for incremental" type="rss" xmlUrl="https://pypi.org/rss/project/incremental/releases.xml" htmlUrl="https://pypi.org/project/incremental/"/>
      <outline text="PyPI recent updates for indexed-gzip" type="rss" xmlUrl="https://pypi.org/rss/project/indexed-gzip/releases.xml" htmlUrl="https://pypi.org/project/indexed-gzip/"/>
      <outline text="PyPI recent updates for inflect" type="rss" xmlUrl="https://pypi.org/rss/project/inflect/releases.xml" htmlUrl="https://pypi.org/project/inflect/"/>
      <outline text="PyPI recent updates for inflection" type="rss" xmlUrl="https://pypi.org/rss/project/inflection/releases.xml" htmlUrl="https://pypi.org/project/inflection/"/>
      <outline text="PyPI recent updates for ini2toml" type="rss" xmlUrl="https://pypi.org/rss/project/ini2toml/releases.xml" htmlUrl="https://pypi.org/project/ini2toml/"/>
      <outline text="PyPI recent updates for iniconfig" type="rss" xmlUrl="https://pypi.org/rss/project/iniconfig/releases.xml" htmlUrl="https://pypi.org/project/iniconfig/"/>
      <outline text="PyPI recent updates for iniparse" type="rss" xmlUrl="https://pypi.org/rss/project/iniparse/releases.xml" htmlUrl="https://pypi.org/project/iniparse/"/>
      <outline text="PyPI recent updates for insipid-sphinx-theme" type="rss" xmlUrl="https://pypi.org/rss/project/insipid-sphinx-theme/releases.xml" htmlUrl="https://pypi.org/project/insipid-sphinx-theme/"/>
      <outline text="PyPI recent updates for installer" type="rss" xmlUrl="https://pypi.org/rss/project/installer/releases.xml" htmlUrl="https://pypi.org/project/installer/"/>
      <outline text="PyPI recent updates for intelhex" type="rss" xmlUrl="https://pypi.org/rss/project/intelhex/releases.xml" htmlUrl="https://pypi.org/project/intelhex/"/>
      <outline text="PyPI recent updates for intervaltree" type="rss" xmlUrl="https://pypi.org/rss/project/intervaltree/releases.xml" htmlUrl="https://pypi.org/project/intervaltree/"/>
      <outline text="PyPI recent updates for iocapture" type="rss" xmlUrl="https://pypi.org/rss/project/iocapture/releases.xml" htmlUrl="https://pypi.org/project/iocapture/"/>
      <outline text="PyPI recent updates for ioflo" type="rss" xmlUrl="https://pypi.org/rss/project/ioflo/releases.xml" htmlUrl="https://pypi.org/project/ioflo/"/>
      <outline text="PyPI recent updates for ipaddr" type="rss" xmlUrl="https://pypi.org/rss/project/ipaddr/releases.xml" htmlUrl="https://pypi.org/project/ipaddr/"/>
      <outline text="PyPI recent updates for ipdb" type="rss" xmlUrl="https://pypi.org/rss/project/ipdb/releases.xml" htmlUrl="https://pypi.org/project/ipdb/"/>
      <outline text="PyPI recent updates for IPy" type="rss" xmlUrl="https://pypi.org/rss/project/IPy/releases.xml" htmlUrl="https://pypi.org/project/IPy/"/>
      <outline text="PyPI recent updates for ipykernel" type="rss" xmlUrl="https://pypi.org/rss/project/ipykernel/releases.xml" htmlUrl="https://pypi.org/project/ipykernel/"/>
      <outline text="PyPI recent updates for ipyparallel" type="rss" xmlUrl="https://pypi.org/rss/project/ipyparallel/releases.xml" htmlUrl="https://pypi.org/project/ipyparallel/"/>
      <outline text="PyPI recent updates for ipython" type="rss" xmlUrl="https://pypi.org/rss/project/ipython/releases.xml" htmlUrl="https://pypi.org/project/ipython/"/>
      <outline text="PyPI recent updates for ipython_genutils" type="rss" xmlUrl="https://pypi.org/rss/project/ipython_genutils/releases.xml" htmlUrl="https://pypi.org/project/ipython_genutils/"/>
      <outline text="PyPI recent updates for ipywidgets" type="rss" xmlUrl="https://pypi.org/rss/project/ipywidgets/releases.xml" htmlUrl="https://pypi.org/project/ipywidgets/"/>
      <outline text="PyPI recent updates for irc" type="rss" xmlUrl="https://pypi.org/rss/project/irc/releases.xml" htmlUrl="https://pypi.org/project/irc/"/>
      <outline text="PyPI recent updates for irctokens" type="rss" xmlUrl="https://pypi.org/rss/project/irctokens/releases.xml" htmlUrl="https://pypi.org/project/irctokens/"/>
      <outline text="PyPI recent updates for iso8601" type="rss" xmlUrl="https://pypi.org/rss/project/iso8601/releases.xml" htmlUrl="https://pypi.org/project/iso8601/"/>
      <outline text="PyPI recent updates for isodate" type="rss" xmlUrl="https://pypi.org/rss/project/isodate/releases.xml" htmlUrl="https://pypi.org/project/isodate/"/>
      <outline text="PyPI recent updates for isoduration" type="rss" xmlUrl="https://pypi.org/rss/project/isoduration/releases.xml" htmlUrl="https://pypi.org/project/isoduration/"/>
      <outline text="PyPI recent updates for isort" type="rss" xmlUrl="https://pypi.org/rss/project/isort/releases.xml" htmlUrl="https://pypi.org/project/isort/"/>
      <outline text="PyPI recent updates for itsdangerous" type="rss" xmlUrl="https://pypi.org/rss/project/itsdangerous/releases.xml" htmlUrl="https://pypi.org/project/itsdangerous/"/>
      <outline text="PyPI recent updates for itunespy" type="rss" xmlUrl="https://pypi.org/rss/project/itunespy/releases.xml" htmlUrl="https://pypi.org/project/itunespy/"/>
      <outline text="PyPI recent updates for JACK-Client" type="rss" xmlUrl="https://pypi.org/rss/project/JACK-Client/releases.xml" htmlUrl="https://pypi.org/project/JACK-Client/"/>
      <outline text="PyPI recent updates for jaraco.classes" type="rss" xmlUrl="https://pypi.org/rss/project/jaraco.classes/releases.xml" htmlUrl="https://pypi.org/project/jaraco.classes/"/>
      <outline text="PyPI recent updates for jaraco.collections" type="rss" xmlUrl="https://pypi.org/rss/project/jaraco.collections/releases.xml" htmlUrl="https://pypi.org/project/jaraco.collections/"/>
      <outline text="PyPI recent updates for jaraco.context" type="rss" xmlUrl="https://pypi.org/rss/project/jaraco.context/releases.xml" htmlUrl="https://pypi.org/project/jaraco.context/"/>
      <outline text="PyPI recent updates for jaraco.env" type="rss" xmlUrl="https://pypi.org/rss/project/jaraco.env/releases.xml" htmlUrl="https://pypi.org/project/jaraco.env/"/>
      <outline text="PyPI recent updates for jaraco.envs" type="rss" xmlUrl="https://pypi.org/rss/project/jaraco.envs/releases.xml" htmlUrl="https://pypi.org/project/jaraco.envs/"/>
      <outline text="PyPI recent updates for jaraco.functools" type="rss" xmlUrl="https://pypi.org/rss/project/jaraco.functools/releases.xml" htmlUrl="https://pypi.org/project/jaraco.functools/"/>
      <outline text="PyPI recent updates for jaraco.itertools" type="rss" xmlUrl="https://pypi.org/rss/project/jaraco.itertools/releases.xml" htmlUrl="https://pypi.org/project/jaraco.itertools/"/>
      <outline text="PyPI recent updates for jaraco.logging" type="rss" xmlUrl="https://pypi.org/rss/project/jaraco.logging/releases.xml" htmlUrl="https://pypi.org/project/jaraco.logging/"/>
      <outline text="PyPI recent updates for jaraco.path" type="rss" xmlUrl="https://pypi.org/rss/project/jaraco.path/releases.xml" htmlUrl="https://pypi.org/project/jaraco.path/"/>
      <outline text="PyPI recent updates for jaraco.stream" type="rss" xmlUrl="https://pypi.org/rss/project/jaraco.stream/releases.xml" htmlUrl="https://pypi.org/project/jaraco.stream/"/>
      <outline text="PyPI recent updates for jaraco.test" type="rss" xmlUrl="https://pypi.org/rss/project/jaraco.test/releases.xml" htmlUrl="https://pypi.org/project/jaraco.test/"/>
      <outline text="PyPI recent updates for jaraco.text" type="rss" xmlUrl="https://pypi.org/rss/project/jaraco.text/releases.xml" htmlUrl="https://pypi.org/project/jaraco.text/"/>
      <outline text="PyPI recent updates for jaraco.vcs" type="rss" xmlUrl="https://pypi.org/rss/project/jaraco.vcs/releases.xml" htmlUrl="https://pypi.org/project/jaraco.vcs/"/>
      <outline text="PyPI recent updates for jaraco.versioning" type="rss" xmlUrl="https://pypi.org/rss/project/jaraco.versioning/releases.xml" htmlUrl="https://pypi.org/project/jaraco.versioning/"/>
      <outline text="PyPI recent updates for jc" type="rss" xmlUrl="https://pypi.org/rss/project/jc/releases.xml" htmlUrl="https://pypi.org/project/jc/"/>
      <outline text="PyPI recent updates for jdcal" type="rss" xmlUrl="https://pypi.org/rss/project/jdcal/releases.xml" htmlUrl="https://pypi.org/project/jdcal/"/>
      <outline text="PyPI recent updates for jedi" type="rss" xmlUrl="https://pypi.org/rss/project/jedi/releases.xml" htmlUrl="https://pypi.org/project/jedi/"/>
      <outline text="PyPI recent updates for jeepney" type="rss" xmlUrl="https://pypi.org/rss/project/jeepney/releases.xml" htmlUrl="https://pypi.org/project/jeepney/"/>
      <outline text="PyPI recent updates for jellyfish" type="rss" xmlUrl="https://pypi.org/rss/project/jellyfish/releases.xml" htmlUrl="https://pypi.org/project/jellyfish/"/>
      <outline text="PyPI recent updates for Jinja2" type="rss" xmlUrl="https://pypi.org/rss/project/Jinja2/releases.xml" htmlUrl="https://pypi.org/project/Jinja2/"/>
      <outline text="PyPI recent updates for jinja2_pluralize" type="rss" xmlUrl="https://pypi.org/rss/project/jinja2_pluralize/releases.xml" htmlUrl="https://pypi.org/project/jinja2_pluralize/"/>
      <outline text="PyPI recent updates for jinja2-time" type="rss" xmlUrl="https://pypi.org/rss/project/jinja2-time/releases.xml" htmlUrl="https://pypi.org/project/jinja2-time/"/>
      <outline text="PyPI recent updates for jmespath" type="rss" xmlUrl="https://pypi.org/rss/project/jmespath/releases.xml" htmlUrl="https://pypi.org/project/jmespath/"/>
      <outline text="PyPI recent updates for joblib" type="rss" xmlUrl="https://pypi.org/rss/project/joblib/releases.xml" htmlUrl="https://pypi.org/project/joblib/"/>
      <outline text="PyPI recent updates for josepy" type="rss" xmlUrl="https://pypi.org/rss/project/josepy/releases.xml" htmlUrl="https://pypi.org/project/josepy/"/>
      <outline text="PyPI recent updates for jq" type="rss" xmlUrl="https://pypi.org/rss/project/jq/releases.xml" htmlUrl="https://pypi.org/project/jq/"/>
      <outline text="PyPI recent updates for Js2Py" type="rss" xmlUrl="https://pypi.org/rss/project/Js2Py/releases.xml" htmlUrl="https://pypi.org/project/Js2Py/"/>
      <outline text="PyPI recent updates for jschema-to-python" type="rss" xmlUrl="https://pypi.org/rss/project/jschema-to-python/releases.xml" htmlUrl="https://pypi.org/project/jschema-to-python/"/>
      <outline text="PyPI recent updates for jsmin" type="rss" xmlUrl="https://pypi.org/rss/project/jsmin/releases.xml" htmlUrl="https://pypi.org/project/jsmin/"/>
      <outline text="PyPI recent updates for json5" type="rss" xmlUrl="https://pypi.org/rss/project/json5/releases.xml" htmlUrl="https://pypi.org/project/json5/"/>
      <outline text="PyPI recent updates for jsondiff" type="rss" xmlUrl="https://pypi.org/rss/project/jsondiff/releases.xml" htmlUrl="https://pypi.org/project/jsondiff/"/>
      <outline text="PyPI recent updates for jsonext" type="rss" xmlUrl="https://pypi.org/rss/project/jsonext/releases.xml" htmlUrl="https://pypi.org/project/jsonext/"/>
      <outline text="PyPI recent updates for jsonmerge" type="rss" xmlUrl="https://pypi.org/rss/project/jsonmerge/releases.xml" htmlUrl="https://pypi.org/project/jsonmerge/"/>
      <outline text="PyPI recent updates for jsonpatch" type="rss" xmlUrl="https://pypi.org/rss/project/jsonpatch/releases.xml" htmlUrl="https://pypi.org/project/jsonpatch/"/>
      <outline text="PyPI recent updates for jsonpath-ng" type="rss" xmlUrl="https://pypi.org/rss/project/jsonpath-ng/releases.xml" htmlUrl="https://pypi.org/project/jsonpath-ng/"/>
      <outline text="PyPI recent updates for jsonpickle" type="rss" xmlUrl="https://pypi.org/rss/project/jsonpickle/releases.xml" htmlUrl="https://pypi.org/project/jsonpickle/"/>
      <outline text="PyPI recent updates for jsonpointer" type="rss" xmlUrl="https://pypi.org/rss/project/jsonpointer/releases.xml" htmlUrl="https://pypi.org/project/jsonpointer/"/>
      <outline text="PyPI recent updates for jsonref" type="rss" xmlUrl="https://pypi.org/rss/project/jsonref/releases.xml" htmlUrl="https://pypi.org/project/jsonref/"/>
      <outline text="PyPI recent updates for json-rpc" type="rss" xmlUrl="https://pypi.org/rss/project/json-rpc/releases.xml" htmlUrl="https://pypi.org/project/json-rpc/"/>
      <outline text="PyPI recent updates for jsonrpclib" type="rss" xmlUrl="https://pypi.org/rss/project/jsonrpclib/releases.xml" htmlUrl="https://pypi.org/project/jsonrpclib/"/>
      <outline text="PyPI recent updates for jsonschema" type="rss" xmlUrl="https://pypi.org/rss/project/jsonschema/releases.xml" htmlUrl="https://pypi.org/project/jsonschema/"/>
      <outline text="PyPI recent updates for jsonschema-path" type="rss" xmlUrl="https://pypi.org/rss/project/jsonschema-path/releases.xml" htmlUrl="https://pypi.org/project/jsonschema-path/"/>
      <outline text="PyPI recent updates for jsonschema-spec" type="rss" xmlUrl="https://pypi.org/rss/project/jsonschema-spec/releases.xml" htmlUrl="https://pypi.org/project/jsonschema-spec/"/>
      <outline text="PyPI recent updates for jsonschema-specifications" type="rss" xmlUrl="https://pypi.org/rss/project/jsonschema-specifications/releases.xml" htmlUrl="https://pypi.org/project/jsonschema-specifications/"/>
      <outline text="PyPI recent updates for jsonxs" type="rss" xmlUrl="https://pypi.org/rss/project/jsonxs/releases.xml" htmlUrl="https://pypi.org/project/jsonxs/"/>
      <outline text="PyPI recent updates for junit-xml" type="rss" xmlUrl="https://pypi.org/rss/project/junit-xml/releases.xml" htmlUrl="https://pypi.org/project/junit-xml/"/>
      <outline text="PyPI recent updates for jupyter" type="rss" xmlUrl="https://pypi.org/rss/project/jupyter/releases.xml" htmlUrl="https://pypi.org/project/jupyter/"/>
      <outline text="PyPI recent updates for jupyter-client" type="rss" xmlUrl="https://pypi.org/rss/project/jupyter-client/releases.xml" htmlUrl="https://pypi.org/project/jupyter-client/"/>
      <outline text="PyPI recent updates for jupyter-console" type="rss" xmlUrl="https://pypi.org/rss/project/jupyter-console/releases.xml" htmlUrl="https://pypi.org/project/jupyter-console/"/>
      <outline text="PyPI recent updates for jupyter-core" type="rss" xmlUrl="https://pypi.org/rss/project/jupyter-core/releases.xml" htmlUrl="https://pypi.org/project/jupyter-core/"/>
      <outline text="PyPI recent updates for jupyter-events" type="rss" xmlUrl="https://pypi.org/rss/project/jupyter-events/releases.xml" htmlUrl="https://pypi.org/project/jupyter-events/"/>
      <outline text="PyPI recent updates for jupyter-kernel-test" type="rss" xmlUrl="https://pypi.org/rss/project/jupyter-kernel-test/releases.xml" htmlUrl="https://pypi.org/project/jupyter-kernel-test/"/>
      <outline text="PyPI recent updates for jupyterlab" type="rss" xmlUrl="https://pypi.org/rss/project/jupyterlab/releases.xml" htmlUrl="https://pypi.org/project/jupyterlab/"/>
      <outline text="PyPI recent updates for jupyterlab-lsp" type="rss" xmlUrl="https://pypi.org/rss/project/jupyterlab-lsp/releases.xml" htmlUrl="https://pypi.org/project/jupyterlab-lsp/"/>
      <outline text="PyPI recent updates for jupyterlab-pygments" type="rss" xmlUrl="https://pypi.org/rss/project/jupyterlab-pygments/releases.xml" htmlUrl="https://pypi.org/project/jupyterlab-pygments/"/>
      <outline text="PyPI recent updates for jupyterlab-server" type="rss" xmlUrl="https://pypi.org/rss/project/jupyterlab-server/releases.xml" htmlUrl="https://pypi.org/project/jupyterlab-server/"/>
      <outline text="PyPI recent updates for jupyterlab-widgets" type="rss" xmlUrl="https://pypi.org/rss/project/jupyterlab-widgets/releases.xml" htmlUrl="https://pypi.org/project/jupyterlab-widgets/"/>
      <outline text="PyPI recent updates for jupyter-lsp" type="rss" xmlUrl="https://pypi.org/rss/project/jupyter-lsp/releases.xml" htmlUrl="https://pypi.org/project/jupyter-lsp/"/>
      <outline text="PyPI recent updates for jupyter-packaging" type="rss" xmlUrl="https://pypi.org/rss/project/jupyter-packaging/releases.xml" htmlUrl="https://pypi.org/project/jupyter-packaging/"/>
      <outline text="PyPI recent updates for jupyter-server" type="rss" xmlUrl="https://pypi.org/rss/project/jupyter-server/releases.xml" htmlUrl="https://pypi.org/project/jupyter-server/"/>
      <outline text="PyPI recent updates for jupyter-server-mathjax" type="rss" xmlUrl="https://pypi.org/rss/project/jupyter-server-mathjax/releases.xml" htmlUrl="https://pypi.org/project/jupyter-server-mathjax/"/>
      <outline text="PyPI recent updates for jupyter-server-proxy" type="rss" xmlUrl="https://pypi.org/rss/project/jupyter-server-proxy/releases.xml" htmlUrl="https://pypi.org/project/jupyter-server-proxy/"/>
      <outline text="PyPI recent updates for jupyter-server-terminals" type="rss" xmlUrl="https://pypi.org/rss/project/jupyter-server-terminals/releases.xml" htmlUrl="https://pypi.org/project/jupyter-server-terminals/"/>
      <outline text="PyPI recent updates for jwcrypto" type="rss" xmlUrl="https://pypi.org/rss/project/jwcrypto/releases.xml" htmlUrl="https://pypi.org/project/jwcrypto/"/>
      <outline text="PyPI recent updates for k5test" type="rss" xmlUrl="https://pypi.org/rss/project/k5test/releases.xml" htmlUrl="https://pypi.org/project/k5test/"/>
      <outline text="PyPI recent updates for kaitaistruct" type="rss" xmlUrl="https://pypi.org/rss/project/kaitaistruct/releases.xml" htmlUrl="https://pypi.org/project/kaitaistruct/"/>
      <outline text="PyPI recent updates for kaptan" type="rss" xmlUrl="https://pypi.org/rss/project/kaptan/releases.xml" htmlUrl="https://pypi.org/project/kaptan/"/>
      <outline text="PyPI recent updates for kconfiglib" type="rss" xmlUrl="https://pypi.org/rss/project/kconfiglib/releases.xml" htmlUrl="https://pypi.org/project/kconfiglib/"/>
      <outline text="PyPI recent updates for keep" type="rss" xmlUrl="https://pypi.org/rss/project/keep/releases.xml" htmlUrl="https://pypi.org/project/keep/"/>
      <outline text="PyPI recent updates for kerberos" type="rss" xmlUrl="https://pypi.org/rss/project/kerberos/releases.xml" htmlUrl="https://pypi.org/project/kerberos/"/>
      <outline text="PyPI recent updates for keyring" type="rss" xmlUrl="https://pypi.org/rss/project/keyring/releases.xml" htmlUrl="https://pypi.org/project/keyring/"/>
      <outline text="PyPI recent updates for keyrings.alt" type="rss" xmlUrl="https://pypi.org/rss/project/keyrings.alt/releases.xml" htmlUrl="https://pypi.org/project/keyrings.alt/"/>
      <outline text="PyPI recent updates for keystoneauth1" type="rss" xmlUrl="https://pypi.org/rss/project/keystoneauth1/releases.xml" htmlUrl="https://pypi.org/project/keystoneauth1/"/>
      <outline text="PyPI recent updates for keyutils" type="rss" xmlUrl="https://pypi.org/rss/project/keyutils/releases.xml" htmlUrl="https://pypi.org/project/keyutils/"/>
      <outline text="PyPI recent updates for kgb" type="rss" xmlUrl="https://pypi.org/rss/project/kgb/releases.xml" htmlUrl="https://pypi.org/project/kgb/"/>
      <outline text="PyPI recent updates for kiwisolver" type="rss" xmlUrl="https://pypi.org/rss/project/kiwisolver/releases.xml" htmlUrl="https://pypi.org/project/kiwisolver/"/>
      <outline text="PyPI recent updates for klein" type="rss" xmlUrl="https://pypi.org/rss/project/klein/releases.xml" htmlUrl="https://pypi.org/project/klein/"/>
      <outline text="PyPI recent updates for kombu" type="rss" xmlUrl="https://pypi.org/rss/project/kombu/releases.xml" htmlUrl="https://pypi.org/project/kombu/"/>
      <outline text="PyPI recent updates for krb5" type="rss" xmlUrl="https://pypi.org/rss/project/krb5/releases.xml" htmlUrl="https://pypi.org/project/krb5/"/>
      <outline text="PyPI recent updates for lark" type="rss" xmlUrl="https://pypi.org/rss/project/lark/releases.xml" htmlUrl="https://pypi.org/project/lark/"/>
      <outline text="PyPI recent updates for latexcodec" type="rss" xmlUrl="https://pypi.org/rss/project/latexcodec/releases.xml" htmlUrl="https://pypi.org/project/latexcodec/"/>
      <outline text="PyPI recent updates for lazy-loader" type="rss" xmlUrl="https://pypi.org/rss/project/lazy-loader/releases.xml" htmlUrl="https://pypi.org/project/lazy-loader/"/>
      <outline text="PyPI recent updates for lazy-object-proxy" type="rss" xmlUrl="https://pypi.org/rss/project/lazy-object-proxy/releases.xml" htmlUrl="https://pypi.org/project/lazy-object-proxy/"/>
      <outline text="PyPI recent updates for ldap3" type="rss" xmlUrl="https://pypi.org/rss/project/ldap3/releases.xml" htmlUrl="https://pypi.org/project/ldap3/"/>
      <outline text="PyPI recent updates for leather" type="rss" xmlUrl="https://pypi.org/rss/project/leather/releases.xml" htmlUrl="https://pypi.org/project/leather/"/>
      <outline text="PyPI recent updates for leechcorepyc" type="rss" xmlUrl="https://pypi.org/rss/project/leechcorepyc/releases.xml" htmlUrl="https://pypi.org/project/leechcorepyc/"/>
      <outline text="PyPI recent updates for legacy-cgi" type="rss" xmlUrl="https://pypi.org/rss/project/legacy-cgi/releases.xml" htmlUrl="https://pypi.org/project/legacy-cgi/"/>
      <outline text="PyPI recent updates for lesscpy" type="rss" xmlUrl="https://pypi.org/rss/project/lesscpy/releases.xml" htmlUrl="https://pypi.org/project/lesscpy/"/>
      <outline text="PyPI recent updates for Levenshtein" type="rss" xmlUrl="https://pypi.org/rss/project/Levenshtein/releases.xml" htmlUrl="https://pypi.org/project/Levenshtein/"/>
      <outline text="PyPI recent updates for lhafile" type="rss" xmlUrl="https://pypi.org/rss/project/lhafile/releases.xml" htmlUrl="https://pypi.org/project/lhafile/"/>
      <outline text="PyPI recent updates for libarchive-c" type="rss" xmlUrl="https://pypi.org/rss/project/libarchive-c/releases.xml" htmlUrl="https://pypi.org/project/libarchive-c/"/>
      <outline text="PyPI recent updates for libcst" type="rss" xmlUrl="https://pypi.org/rss/project/libcst/releases.xml" htmlUrl="https://pypi.org/project/libcst/"/>
      <outline text="PyPI recent updates for libevdev" type="rss" xmlUrl="https://pypi.org/rss/project/libevdev/releases.xml" htmlUrl="https://pypi.org/project/libevdev/"/>
      <outline text="PyPI recent updates for libnacl" type="rss" xmlUrl="https://pypi.org/rss/project/libnacl/releases.xml" htmlUrl="https://pypi.org/project/libnacl/"/>
      <outline text="PyPI recent updates for libsass" type="rss" xmlUrl="https://pypi.org/rss/project/libsass/releases.xml" htmlUrl="https://pypi.org/project/libsass/"/>
      <outline text="PyPI recent updates for libtmux" type="rss" xmlUrl="https://pypi.org/rss/project/libtmux/releases.xml" htmlUrl="https://pypi.org/project/libtmux/"/>
      <outline text="PyPI recent updates for libvirt-python" type="rss" xmlUrl="https://pypi.org/rss/project/libvirt-python/releases.xml" htmlUrl="https://pypi.org/project/libvirt-python/"/>
      <outline text="PyPI recent updates for license-expression" type="rss" xmlUrl="https://pypi.org/rss/project/license-expression/releases.xml" htmlUrl="https://pypi.org/project/license-expression/"/>
      <outline text="PyPI recent updates for line-profiler" type="rss" xmlUrl="https://pypi.org/rss/project/line-profiler/releases.xml" htmlUrl="https://pypi.org/project/line-profiler/"/>
      <outline text="PyPI recent updates for linkify-it-py" type="rss" xmlUrl="https://pypi.org/rss/project/linkify-it-py/releases.xml" htmlUrl="https://pypi.org/project/linkify-it-py/"/>
      <outline text="PyPI recent updates for linode-metadata" type="rss" xmlUrl="https://pypi.org/rss/project/linode-metadata/releases.xml" htmlUrl="https://pypi.org/project/linode-metadata/"/>
      <outline text="PyPI recent updates for lit" type="rss" xmlUrl="https://pypi.org/rss/project/lit/releases.xml" htmlUrl="https://pypi.org/project/lit/"/>
      <outline text="PyPI recent updates for littleutils" type="rss" xmlUrl="https://pypi.org/rss/project/littleutils/releases.xml" htmlUrl="https://pypi.org/project/littleutils/"/>
      <outline text="PyPI recent updates for livereload" type="rss" xmlUrl="https://pypi.org/rss/project/livereload/releases.xml" htmlUrl="https://pypi.org/project/livereload/"/>
      <outline text="PyPI recent updates for llfuse" type="rss" xmlUrl="https://pypi.org/rss/project/llfuse/releases.xml" htmlUrl="https://pypi.org/project/llfuse/"/>
      <outline text="PyPI recent updates for lmdb" type="rss" xmlUrl="https://pypi.org/rss/project/lmdb/releases.xml" htmlUrl="https://pypi.org/project/lmdb/"/>
      <outline text="PyPI recent updates for lmfit" type="rss" xmlUrl="https://pypi.org/rss/project/lmfit/releases.xml" htmlUrl="https://pypi.org/project/lmfit/"/>
      <outline text="PyPI recent updates for locket" type="rss" xmlUrl="https://pypi.org/rss/project/locket/releases.xml" htmlUrl="https://pypi.org/project/locket/"/>
      <outline text="PyPI recent updates for lockfile" type="rss" xmlUrl="https://pypi.org/rss/project/lockfile/releases.xml" htmlUrl="https://pypi.org/project/lockfile/"/>
      <outline text="PyPI recent updates for Logbook" type="rss" xmlUrl="https://pypi.org/rss/project/Logbook/releases.xml" htmlUrl="https://pypi.org/project/Logbook/"/>
      <outline text="PyPI recent updates for logfury" type="rss" xmlUrl="https://pypi.org/rss/project/logfury/releases.xml" htmlUrl="https://pypi.org/project/logfury/"/>
      <outline text="PyPI recent updates for logical-unification" type="rss" xmlUrl="https://pypi.org/rss/project/logical-unification/releases.xml" htmlUrl="https://pypi.org/project/logical-unification/"/>
      <outline text="PyPI recent updates for loguru" type="rss" xmlUrl="https://pypi.org/rss/project/loguru/releases.xml" htmlUrl="https://pypi.org/project/loguru/"/>
      <outline text="PyPI recent updates for logutils" type="rss" xmlUrl="https://pypi.org/rss/project/logutils/releases.xml" htmlUrl="https://pypi.org/project/logutils/"/>
      <outline text="PyPI recent updates for loky" type="rss" xmlUrl="https://pypi.org/rss/project/loky/releases.xml" htmlUrl="https://pypi.org/project/loky/"/>
      <outline text="PyPI recent updates for looseversion" type="rss" xmlUrl="https://pypi.org/rss/project/looseversion/releases.xml" htmlUrl="https://pypi.org/project/looseversion/"/>
      <outline text="PyPI recent updates for lrcalc" type="rss" xmlUrl="https://pypi.org/rss/project/lrcalc/releases.xml" htmlUrl="https://pypi.org/project/lrcalc/"/>
      <outline text="PyPI recent updates for lxml" type="rss" xmlUrl="https://pypi.org/rss/project/lxml/releases.xml" htmlUrl="https://pypi.org/project/lxml/"/>
      <outline text="PyPI recent updates for lxml-html-clean" type="rss" xmlUrl="https://pypi.org/rss/project/lxml-html-clean/releases.xml" htmlUrl="https://pypi.org/project/lxml-html-clean/"/>
      <outline text="PyPI recent updates for lz4" type="rss" xmlUrl="https://pypi.org/rss/project/lz4/releases.xml" htmlUrl="https://pypi.org/project/lz4/"/>
      <outline text="PyPI recent updates for M2Crypto" type="rss" xmlUrl="https://pypi.org/rss/project/M2Crypto/releases.xml" htmlUrl="https://pypi.org/project/M2Crypto/"/>
      <outline text="PyPI recent updates for magic-wormhole" type="rss" xmlUrl="https://pypi.org/rss/project/magic-wormhole/releases.xml" htmlUrl="https://pypi.org/project/magic-wormhole/"/>
      <outline text="PyPI recent updates for magic-wormhole-mailbox-server" type="rss" xmlUrl="https://pypi.org/rss/project/magic-wormhole-mailbox-server/releases.xml" htmlUrl="https://pypi.org/project/magic-wormhole-mailbox-server/"/>
      <outline text="PyPI recent updates for magic-wormhole-transit-relay" type="rss" xmlUrl="https://pypi.org/rss/project/magic-wormhole-transit-relay/releases.xml" htmlUrl="https://pypi.org/project/magic-wormhole-transit-relay/"/>
      <outline text="PyPI recent updates for makefun" type="rss" xmlUrl="https://pypi.org/rss/project/makefun/releases.xml" htmlUrl="https://pypi.org/project/makefun/"/>
      <outline text="PyPI recent updates for Mako" type="rss" xmlUrl="https://pypi.org/rss/project/Mako/releases.xml" htmlUrl="https://pypi.org/project/Mako/"/>
      <outline text="PyPI recent updates for mamba" type="rss" xmlUrl="https://pypi.org/rss/project/mamba/releases.xml" htmlUrl="https://pypi.org/project/mamba/"/>
      <outline text="PyPI recent updates for mando" type="rss" xmlUrl="https://pypi.org/rss/project/mando/releases.xml" htmlUrl="https://pypi.org/project/mando/"/>
      <outline text="PyPI recent updates for manuel" type="rss" xmlUrl="https://pypi.org/rss/project/manuel/releases.xml" htmlUrl="https://pypi.org/project/manuel/"/>
      <outline text="PyPI recent updates for mapbox-earcut" type="rss" xmlUrl="https://pypi.org/rss/project/mapbox-earcut/releases.xml" htmlUrl="https://pypi.org/project/mapbox-earcut/"/>
      <outline text="PyPI recent updates for mapbox-vector-tile" type="rss" xmlUrl="https://pypi.org/rss/project/mapbox-vector-tile/releases.xml" htmlUrl="https://pypi.org/project/mapbox-vector-tile/"/>
      <outline text="PyPI recent updates for Markdown" type="rss" xmlUrl="https://pypi.org/rss/project/Markdown/releases.xml" htmlUrl="https://pypi.org/project/Markdown/"/>
      <outline text="PyPI recent updates for markdown2" type="rss" xmlUrl="https://pypi.org/rss/project/markdown2/releases.xml" htmlUrl="https://pypi.org/project/markdown2/"/>
      <outline text="PyPI recent updates for markdown-exec" type="rss" xmlUrl="https://pypi.org/rss/project/markdown-exec/releases.xml" htmlUrl="https://pypi.org/project/markdown-exec/"/>
      <outline text="PyPI recent updates for markdown-include" type="rss" xmlUrl="https://pypi.org/rss/project/markdown-include/releases.xml" htmlUrl="https://pypi.org/project/markdown-include/"/>
      <outline text="PyPI recent updates for markdown-it-py" type="rss" xmlUrl="https://pypi.org/rss/project/markdown-it-py/releases.xml" htmlUrl="https://pypi.org/project/markdown-it-py/"/>
      <outline text="PyPI recent updates for Markups" type="rss" xmlUrl="https://pypi.org/rss/project/Markups/releases.xml" htmlUrl="https://pypi.org/project/Markups/"/>
      <outline text="PyPI recent updates for MarkupSafe" type="rss" xmlUrl="https://pypi.org/rss/project/MarkupSafe/releases.xml" htmlUrl="https://pypi.org/project/MarkupSafe/"/>
      <outline text="PyPI recent updates for marshmallow" type="rss" xmlUrl="https://pypi.org/rss/project/marshmallow/releases.xml" htmlUrl="https://pypi.org/project/marshmallow/"/>
      <outline text="PyPI recent updates for matplotlib" type="rss" xmlUrl="https://pypi.org/rss/project/matplotlib/releases.xml" htmlUrl="https://pypi.org/project/matplotlib/"/>
      <outline text="PyPI recent updates for matplotlib-inline" type="rss" xmlUrl="https://pypi.org/rss/project/matplotlib-inline/releases.xml" htmlUrl="https://pypi.org/project/matplotlib-inline/"/>
      <outline text="PyPI recent updates for matrix-common" type="rss" xmlUrl="https://pypi.org/rss/project/matrix-common/releases.xml" htmlUrl="https://pypi.org/project/matrix-common/"/>
      <outline text="PyPI recent updates for matterhook" type="rss" xmlUrl="https://pypi.org/rss/project/matterhook/releases.xml" htmlUrl="https://pypi.org/project/matterhook/"/>
      <outline text="PyPI recent updates for mcbootflash" type="rss" xmlUrl="https://pypi.org/rss/project/mcbootflash/releases.xml" htmlUrl="https://pypi.org/project/mcbootflash/"/>
      <outline text="PyPI recent updates for mccabe" type="rss" xmlUrl="https://pypi.org/rss/project/mccabe/releases.xml" htmlUrl="https://pypi.org/project/mccabe/"/>
      <outline text="PyPI recent updates for mdit-py-plugins" type="rss" xmlUrl="https://pypi.org/rss/project/mdit-py-plugins/releases.xml" htmlUrl="https://pypi.org/project/mdit-py-plugins/"/>
      <outline text="PyPI recent updates for mdurl" type="rss" xmlUrl="https://pypi.org/rss/project/mdurl/releases.xml" htmlUrl="https://pypi.org/project/mdurl/"/>
      <outline text="PyPI recent updates for mdx-gh-links" type="rss" xmlUrl="https://pypi.org/rss/project/mdx-gh-links/releases.xml" htmlUrl="https://pypi.org/project/mdx-gh-links/"/>
      <outline text="PyPI recent updates for mecab-python" type="rss" xmlUrl="https://pypi.org/rss/project/mecab-python/releases.xml" htmlUrl="https://pypi.org/project/mecab-python/"/>
      <outline text="PyPI recent updates for MechanicalSoup" type="rss" xmlUrl="https://pypi.org/rss/project/MechanicalSoup/releases.xml" htmlUrl="https://pypi.org/project/MechanicalSoup/"/>
      <outline text="PyPI recent updates for mechanize" type="rss" xmlUrl="https://pypi.org/rss/project/mechanize/releases.xml" htmlUrl="https://pypi.org/project/mechanize/"/>
      <outline text="PyPI recent updates for mediafile" type="rss" xmlUrl="https://pypi.org/rss/project/mediafile/releases.xml" htmlUrl="https://pypi.org/project/mediafile/"/>
      <outline text="PyPI recent updates for memory-allocator" type="rss" xmlUrl="https://pypi.org/rss/project/memory-allocator/releases.xml" htmlUrl="https://pypi.org/project/memory-allocator/"/>
      <outline text="PyPI recent updates for merge3" type="rss" xmlUrl="https://pypi.org/rss/project/merge3/releases.xml" htmlUrl="https://pypi.org/project/merge3/"/>
      <outline text="PyPI recent updates for mergedeep" type="rss" xmlUrl="https://pypi.org/rss/project/mergedeep/releases.xml" htmlUrl="https://pypi.org/project/mergedeep/"/>
      <outline text="PyPI recent updates for mergedict" type="rss" xmlUrl="https://pypi.org/rss/project/mergedict/releases.xml" htmlUrl="https://pypi.org/project/mergedict/"/>
      <outline text="PyPI recent updates for meshio" type="rss" xmlUrl="https://pypi.org/rss/project/meshio/releases.xml" htmlUrl="https://pypi.org/project/meshio/"/>
      <outline text="PyPI recent updates for meson-python" type="rss" xmlUrl="https://pypi.org/rss/project/meson-python/releases.xml" htmlUrl="https://pypi.org/project/meson-python/"/>
      <outline text="PyPI recent updates for metakernel" type="rss" xmlUrl="https://pypi.org/rss/project/metakernel/releases.xml" htmlUrl="https://pypi.org/project/metakernel/"/>
      <outline text="PyPI recent updates for micawber" type="rss" xmlUrl="https://pypi.org/rss/project/micawber/releases.xml" htmlUrl="https://pypi.org/project/micawber/"/>
      <outline text="PyPI recent updates for mido" type="rss" xmlUrl="https://pypi.org/rss/project/mido/releases.xml" htmlUrl="https://pypi.org/project/mido/"/>
      <outline text="PyPI recent updates for mimerender" type="rss" xmlUrl="https://pypi.org/rss/project/mimerender/releases.xml" htmlUrl="https://pypi.org/project/mimerender/"/>
      <outline text="PyPI recent updates for minidb" type="rss" xmlUrl="https://pypi.org/rss/project/minidb/releases.xml" htmlUrl="https://pypi.org/project/minidb/"/>
      <outline text="PyPI recent updates for minify-html" type="rss" xmlUrl="https://pypi.org/rss/project/minify-html/releases.xml" htmlUrl="https://pypi.org/project/minify-html/"/>
      <outline text="PyPI recent updates for miniKanren" type="rss" xmlUrl="https://pypi.org/rss/project/miniKanren/releases.xml" htmlUrl="https://pypi.org/project/miniKanren/"/>
      <outline text="PyPI recent updates for MiniMock" type="rss" xmlUrl="https://pypi.org/rss/project/MiniMock/releases.xml" htmlUrl="https://pypi.org/project/MiniMock/"/>
      <outline text="PyPI recent updates for miniupnpc" type="rss" xmlUrl="https://pypi.org/rss/project/miniupnpc/releases.xml" htmlUrl="https://pypi.org/project/miniupnpc/"/>
      <outline text="PyPI recent updates for mistletoe" type="rss" xmlUrl="https://pypi.org/rss/project/mistletoe/releases.xml" htmlUrl="https://pypi.org/project/mistletoe/"/>
      <outline text="PyPI recent updates for mistune" type="rss" xmlUrl="https://pypi.org/rss/project/mistune/releases.xml" htmlUrl="https://pypi.org/project/mistune/"/>
      <outline text="PyPI recent updates for mitmproxy_wireguard" type="rss" xmlUrl="https://pypi.org/rss/project/mitmproxy_wireguard/releases.xml" htmlUrl="https://pypi.org/project/mitmproxy_wireguard/"/>
      <outline text="PyPI recent updates for mkautodoc" type="rss" xmlUrl="https://pypi.org/rss/project/mkautodoc/releases.xml" htmlUrl="https://pypi.org/project/mkautodoc/"/>
      <outline text="PyPI recent updates for mkdocs" type="rss" xmlUrl="https://pypi.org/rss/project/mkdocs/releases.xml" htmlUrl="https://pypi.org/project/mkdocs/"/>
      <outline text="PyPI recent updates for mkdocs-ansible" type="rss" xmlUrl="https://pypi.org/rss/project/mkdocs-ansible/releases.xml" htmlUrl="https://pypi.org/project/mkdocs-ansible/"/>
      <outline text="PyPI recent updates for mkdocs-autorefs" type="rss" xmlUrl="https://pypi.org/rss/project/mkdocs-autorefs/releases.xml" htmlUrl="https://pypi.org/project/mkdocs-autorefs/"/>
      <outline text="PyPI recent updates for mkdocs-bootstrap" type="rss" xmlUrl="https://pypi.org/rss/project/mkdocs-bootstrap/releases.xml" htmlUrl="https://pypi.org/project/mkdocs-bootstrap/"/>
      <outline text="PyPI recent updates for mkdocs-bootswatch" type="rss" xmlUrl="https://pypi.org/rss/project/mkdocs-bootswatch/releases.xml" htmlUrl="https://pypi.org/project/mkdocs-bootswatch/"/>
      <outline text="PyPI recent updates for mkdocs-gen-files" type="rss" xmlUrl="https://pypi.org/rss/project/mkdocs-gen-files/releases.xml" htmlUrl="https://pypi.org/project/mkdocs-gen-files/"/>
      <outline text="PyPI recent updates for mkdocs-get-deps" type="rss" xmlUrl="https://pypi.org/rss/project/mkdocs-get-deps/releases.xml" htmlUrl="https://pypi.org/project/mkdocs-get-deps/"/>
      <outline text="PyPI recent updates for mkdocs-git-authors-plugin" type="rss" xmlUrl="https://pypi.org/rss/project/mkdocs-git-authors-plugin/releases.xml" htmlUrl="https://pypi.org/project/mkdocs-git-authors-plugin/"/>
      <outline text="PyPI recent updates for mkdocs-git-revision-date-localized-plugin" type="rss" xmlUrl="https://pypi.org/rss/project/mkdocs-git-revision-date-localized-plugin/releases.xml" htmlUrl="https://pypi.org/project/mkdocs-git-revision-date-localized-plugin/"/>
      <outline text="PyPI recent updates for mkdocs-htmlproofer-plugin" type="rss" xmlUrl="https://pypi.org/rss/project/mkdocs-htmlproofer-plugin/releases.xml" htmlUrl="https://pypi.org/project/mkdocs-htmlproofer-plugin/"/>
      <outline text="PyPI recent updates for mkdocs-i18n" type="rss" xmlUrl="https://pypi.org/rss/project/mkdocs-i18n/releases.xml" htmlUrl="https://pypi.org/project/mkdocs-i18n/"/>
      <outline text="PyPI recent updates for mkdocs-macros-plugin" type="rss" xmlUrl="https://pypi.org/rss/project/mkdocs-macros-plugin/releases.xml" htmlUrl="https://pypi.org/project/mkdocs-macros-plugin/"/>
      <outline text="PyPI recent updates for mkdocs-material" type="rss" xmlUrl="https://pypi.org/rss/project/mkdocs-material/releases.xml" htmlUrl="https://pypi.org/project/mkdocs-material/"/>
      <outline text="PyPI recent updates for mkdocs-material-extensions" type="rss" xmlUrl="https://pypi.org/rss/project/mkdocs-material-extensions/releases.xml" htmlUrl="https://pypi.org/project/mkdocs-material-extensions/"/>
      <outline text="PyPI recent updates for mkdocs-minify-plugin" type="rss" xmlUrl="https://pypi.org/rss/project/mkdocs-minify-plugin/releases.xml" htmlUrl="https://pypi.org/project/mkdocs-minify-plugin/"/>
      <outline text="PyPI recent updates for mkdocs-monorepo-plugin" type="rss" xmlUrl="https://pypi.org/rss/project/mkdocs-monorepo-plugin/releases.xml" htmlUrl="https://pypi.org/project/mkdocs-monorepo-plugin/"/>
      <outline text="PyPI recent updates for mkdocs-pymdownx-material-extras" type="rss" xmlUrl="https://pypi.org/rss/project/mkdocs-pymdownx-material-extras/releases.xml" htmlUrl="https://pypi.org/project/mkdocs-pymdownx-material-extras/"/>
      <outline text="PyPI recent updates for mkdocs-redirects" type="rss" xmlUrl="https://pypi.org/rss/project/mkdocs-redirects/releases.xml" htmlUrl="https://pypi.org/project/mkdocs-redirects/"/>
      <outline text="PyPI recent updates for mkdocs-static-i18n" type="rss" xmlUrl="https://pypi.org/rss/project/mkdocs-static-i18n/releases.xml" htmlUrl="https://pypi.org/project/mkdocs-static-i18n/"/>
      <outline text="PyPI recent updates for mkdocstrings" type="rss" xmlUrl="https://pypi.org/rss/project/mkdocstrings/releases.xml" htmlUrl="https://pypi.org/project/mkdocstrings/"/>
      <outline text="PyPI recent updates for mkdocstrings-python" type="rss" xmlUrl="https://pypi.org/rss/project/mkdocstrings-python/releases.xml" htmlUrl="https://pypi.org/project/mkdocstrings-python/"/>
      <outline text="PyPI recent updates for ml-dtypes" type="rss" xmlUrl="https://pypi.org/rss/project/ml-dtypes/releases.xml" htmlUrl="https://pypi.org/project/ml-dtypes/"/>
      <outline text="PyPI recent updates for mmtf-python" type="rss" xmlUrl="https://pypi.org/rss/project/mmtf-python/releases.xml" htmlUrl="https://pypi.org/project/mmtf-python/"/>
      <outline text="PyPI recent updates for mock" type="rss" xmlUrl="https://pypi.org/rss/project/mock/releases.xml" htmlUrl="https://pypi.org/project/mock/"/>
      <outline text="PyPI recent updates for moddb" type="rss" xmlUrl="https://pypi.org/rss/project/moddb/releases.xml" htmlUrl="https://pypi.org/project/moddb/"/>
      <outline text="PyPI recent updates for more-itertools" type="rss" xmlUrl="https://pypi.org/rss/project/more-itertools/releases.xml" htmlUrl="https://pypi.org/project/more-itertools/"/>
      <outline text="PyPI recent updates for moto" type="rss" xmlUrl="https://pypi.org/rss/project/moto/releases.xml" htmlUrl="https://pypi.org/project/moto/"/>
      <outline text="PyPI recent updates for mpdlcd" type="rss" xmlUrl="https://pypi.org/rss/project/mpdlcd/releases.xml" htmlUrl="https://pypi.org/project/mpdlcd/"/>
      <outline text="PyPI recent updates for mpi4py" type="rss" xmlUrl="https://pypi.org/rss/project/mpi4py/releases.xml" htmlUrl="https://pypi.org/project/mpi4py/"/>
      <outline text="PyPI recent updates for mpmath" type="rss" xmlUrl="https://pypi.org/rss/project/mpmath/releases.xml" htmlUrl="https://pypi.org/project/mpmath/"/>
      <outline text="PyPI recent updates for mrcfile" type="rss" xmlUrl="https://pypi.org/rss/project/mrcfile/releases.xml" htmlUrl="https://pypi.org/project/mrcfile/"/>
      <outline text="PyPI recent updates for msgpack" type="rss" xmlUrl="https://pypi.org/rss/project/msgpack/releases.xml" htmlUrl="https://pypi.org/project/msgpack/"/>
      <outline text="PyPI recent updates for mss" type="rss" xmlUrl="https://pypi.org/rss/project/mss/releases.xml" htmlUrl="https://pypi.org/project/mss/"/>
      <outline text="PyPI recent updates for multidict" type="rss" xmlUrl="https://pypi.org/rss/project/multidict/releases.xml" htmlUrl="https://pypi.org/project/multidict/"/>
      <outline text="PyPI recent updates for multipledispatch" type="rss" xmlUrl="https://pypi.org/rss/project/multipledispatch/releases.xml" htmlUrl="https://pypi.org/project/multipledispatch/"/>
      <outline text="PyPI recent updates for multiprocess" type="rss" xmlUrl="https://pypi.org/rss/project/multiprocess/releases.xml" htmlUrl="https://pypi.org/project/multiprocess/"/>
      <outline text="PyPI recent updates for munch" type="rss" xmlUrl="https://pypi.org/rss/project/munch/releases.xml" htmlUrl="https://pypi.org/project/munch/"/>
      <outline text="PyPI recent updates for munkres" type="rss" xmlUrl="https://pypi.org/rss/project/munkres/releases.xml" htmlUrl="https://pypi.org/project/munkres/"/>
      <outline text="PyPI recent updates for musicbrainzngs" type="rss" xmlUrl="https://pypi.org/rss/project/musicbrainzngs/releases.xml" htmlUrl="https://pypi.org/project/musicbrainzngs/"/>
      <outline text="PyPI recent updates for mutagen" type="rss" xmlUrl="https://pypi.org/rss/project/mutagen/releases.xml" htmlUrl="https://pypi.org/project/mutagen/"/>
      <outline text="PyPI recent updates for mygpoclient" type="rss" xmlUrl="https://pypi.org/rss/project/mygpoclient/releases.xml" htmlUrl="https://pypi.org/project/mygpoclient/"/>
      <outline text="PyPI recent updates for mypy" type="rss" xmlUrl="https://pypi.org/rss/project/mypy/releases.xml" htmlUrl="https://pypi.org/project/mypy/"/>
      <outline text="PyPI recent updates for mypy-extensions" type="rss" xmlUrl="https://pypi.org/rss/project/mypy-extensions/releases.xml" htmlUrl="https://pypi.org/project/mypy-extensions/"/>
      <outline text="PyPI recent updates for mysqlclient" type="rss" xmlUrl="https://pypi.org/rss/project/mysqlclient/releases.xml" htmlUrl="https://pypi.org/project/mysqlclient/"/>
      <outline text="PyPI recent updates for myst-parser" type="rss" xmlUrl="https://pypi.org/rss/project/myst-parser/releases.xml" htmlUrl="https://pypi.org/project/myst-parser/"/>
      <outline text="PyPI recent updates for nagiosplugin" type="rss" xmlUrl="https://pypi.org/rss/project/nagiosplugin/releases.xml" htmlUrl="https://pypi.org/project/nagiosplugin/"/>
      <outline text="PyPI recent updates for natsort" type="rss" xmlUrl="https://pypi.org/rss/project/natsort/releases.xml" htmlUrl="https://pypi.org/project/natsort/"/>
      <outline text="PyPI recent updates for nbclassic" type="rss" xmlUrl="https://pypi.org/rss/project/nbclassic/releases.xml" htmlUrl="https://pypi.org/project/nbclassic/"/>
      <outline text="PyPI recent updates for nbclient" type="rss" xmlUrl="https://pypi.org/rss/project/nbclient/releases.xml" htmlUrl="https://pypi.org/project/nbclient/"/>
      <outline text="PyPI recent updates for nbconvert" type="rss" xmlUrl="https://pypi.org/rss/project/nbconvert/releases.xml" htmlUrl="https://pypi.org/project/nbconvert/"/>
      <outline text="PyPI recent updates for nbdime" type="rss" xmlUrl="https://pypi.org/rss/project/nbdime/releases.xml" htmlUrl="https://pypi.org/project/nbdime/"/>
      <outline text="PyPI recent updates for nbformat" type="rss" xmlUrl="https://pypi.org/rss/project/nbformat/releases.xml" htmlUrl="https://pypi.org/project/nbformat/"/>
      <outline text="PyPI recent updates for nbsphinx" type="rss" xmlUrl="https://pypi.org/rss/project/nbsphinx/releases.xml" htmlUrl="https://pypi.org/project/nbsphinx/"/>
      <outline text="PyPI recent updates for nbval" type="rss" xmlUrl="https://pypi.org/rss/project/nbval/releases.xml" htmlUrl="https://pypi.org/project/nbval/"/>
      <outline text="PyPI recent updates for nbxmpp" type="rss" xmlUrl="https://pypi.org/rss/project/nbxmpp/releases.xml" htmlUrl="https://pypi.org/project/nbxmpp/"/>
      <outline text="PyPI recent updates for neovim-remote" type="rss" xmlUrl="https://pypi.org/rss/project/neovim-remote/releases.xml" htmlUrl="https://pypi.org/project/neovim-remote/"/>
      <outline text="PyPI recent updates for nest-asyncio" type="rss" xmlUrl="https://pypi.org/rss/project/nest-asyncio/releases.xml" htmlUrl="https://pypi.org/project/nest-asyncio/"/>
      <outline text="PyPI recent updates for netaddr" type="rss" xmlUrl="https://pypi.org/rss/project/netaddr/releases.xml" htmlUrl="https://pypi.org/project/netaddr/"/>
      <outline text="PyPI recent updates for netCDF4" type="rss" xmlUrl="https://pypi.org/rss/project/netCDF4/releases.xml" htmlUrl="https://pypi.org/project/netCDF4/"/>
      <outline text="PyPI recent updates for netifaces" type="rss" xmlUrl="https://pypi.org/rss/project/netifaces/releases.xml" htmlUrl="https://pypi.org/project/netifaces/"/>
      <outline text="PyPI recent updates for NetLink" type="rss" xmlUrl="https://pypi.org/rss/project/NetLink/releases.xml" htmlUrl="https://pypi.org/project/NetLink/"/>
      <outline text="PyPI recent updates for networkx" type="rss" xmlUrl="https://pypi.org/rss/project/networkx/releases.xml" htmlUrl="https://pypi.org/project/networkx/"/>
      <outline text="PyPI recent updates for nextinspace" type="rss" xmlUrl="https://pypi.org/rss/project/nextinspace/releases.xml" htmlUrl="https://pypi.org/project/nextinspace/"/>
      <outline text="PyPI recent updates for nh3" type="rss" xmlUrl="https://pypi.org/rss/project/nh3/releases.xml" htmlUrl="https://pypi.org/project/nh3/"/>
      <outline text="PyPI recent updates for nnpy" type="rss" xmlUrl="https://pypi.org/rss/project/nnpy/releases.xml" htmlUrl="https://pypi.org/project/nnpy/"/>
      <outline text="PyPI recent updates for nodeenv" type="rss" xmlUrl="https://pypi.org/rss/project/nodeenv/releases.xml" htmlUrl="https://pypi.org/project/nodeenv/"/>
      <outline text="PyPI recent updates for node-semver" type="rss" xmlUrl="https://pypi.org/rss/project/node-semver/releases.xml" htmlUrl="https://pypi.org/project/node-semver/"/>
      <outline text="PyPI recent updates for noiseprotocol" type="rss" xmlUrl="https://pypi.org/rss/project/noiseprotocol/releases.xml" htmlUrl="https://pypi.org/project/noiseprotocol/"/>
      <outline text="PyPI recent updates for nose2" type="rss" xmlUrl="https://pypi.org/rss/project/nose2/releases.xml" htmlUrl="https://pypi.org/project/nose2/"/>
      <outline text="PyPI recent updates for noseOfYeti" type="rss" xmlUrl="https://pypi.org/rss/project/noseOfYeti/releases.xml" htmlUrl="https://pypi.org/project/noseOfYeti/"/>
      <outline text="PyPI recent updates for notebook" type="rss" xmlUrl="https://pypi.org/rss/project/notebook/releases.xml" htmlUrl="https://pypi.org/project/notebook/"/>
      <outline text="PyPI recent updates for notebook-shim" type="rss" xmlUrl="https://pypi.org/rss/project/notebook-shim/releases.xml" htmlUrl="https://pypi.org/project/notebook-shim/"/>
      <outline text="PyPI recent updates for notify2" type="rss" xmlUrl="https://pypi.org/rss/project/notify2/releases.xml" htmlUrl="https://pypi.org/project/notify2/"/>
      <outline text="PyPI recent updates for nox" type="rss" xmlUrl="https://pypi.org/rss/project/nox/releases.xml" htmlUrl="https://pypi.org/project/nox/"/>
      <outline text="PyPI recent updates for ntplib" type="rss" xmlUrl="https://pypi.org/rss/project/ntplib/releases.xml" htmlUrl="https://pypi.org/project/ntplib/"/>
      <outline text="PyPI recent updates for Nuitka" type="rss" xmlUrl="https://pypi.org/rss/project/Nuitka/releases.xml" htmlUrl="https://pypi.org/project/Nuitka/"/>
      <outline text="PyPI recent updates for numexpr" type="rss" xmlUrl="https://pypi.org/rss/project/numexpr/releases.xml" htmlUrl="https://pypi.org/project/numexpr/"/>
      <outline text="PyPI recent updates for numpy" type="rss" xmlUrl="https://pypi.org/rss/project/numpy/releases.xml" htmlUrl="https://pypi.org/project/numpy/"/>
      <outline text="PyPI recent updates for numpydoc" type="rss" xmlUrl="https://pypi.org/rss/project/numpydoc/releases.xml" htmlUrl="https://pypi.org/project/numpydoc/"/>
      <outline text="PyPI recent updates for oauthlib" type="rss" xmlUrl="https://pypi.org/rss/project/oauthlib/releases.xml" htmlUrl="https://pypi.org/project/oauthlib/"/>
      <outline text="PyPI recent updates for objgraph" type="rss" xmlUrl="https://pypi.org/rss/project/objgraph/releases.xml" htmlUrl="https://pypi.org/project/objgraph/"/>
      <outline text="PyPI recent updates for oct2py" type="rss" xmlUrl="https://pypi.org/rss/project/oct2py/releases.xml" htmlUrl="https://pypi.org/project/oct2py/"/>
      <outline text="PyPI recent updates for octave-kernel" type="rss" xmlUrl="https://pypi.org/rss/project/octave-kernel/releases.xml" htmlUrl="https://pypi.org/project/octave-kernel/"/>
      <outline text="PyPI recent updates for odfpy" type="rss" xmlUrl="https://pypi.org/rss/project/odfpy/releases.xml" htmlUrl="https://pypi.org/project/odfpy/"/>
      <outline text="PyPI recent updates for olefile" type="rss" xmlUrl="https://pypi.org/rss/project/olefile/releases.xml" htmlUrl="https://pypi.org/project/olefile/"/>
      <outline text="PyPI recent updates for omemo-dr" type="rss" xmlUrl="https://pypi.org/rss/project/omemo-dr/releases.xml" htmlUrl="https://pypi.org/project/omemo-dr/"/>
      <outline text="PyPI recent updates for Opcodes" type="rss" xmlUrl="https://pypi.org/rss/project/Opcodes/releases.xml" htmlUrl="https://pypi.org/project/Opcodes/"/>
      <outline text="PyPI recent updates for openapi3" type="rss" xmlUrl="https://pypi.org/rss/project/openapi3/releases.xml" htmlUrl="https://pypi.org/project/openapi3/"/>
      <outline text="PyPI recent updates for openapi-core" type="rss" xmlUrl="https://pypi.org/rss/project/openapi-core/releases.xml" htmlUrl="https://pypi.org/project/openapi-core/"/>
      <outline text="PyPI recent updates for openapi-schema-validator" type="rss" xmlUrl="https://pypi.org/rss/project/openapi-schema-validator/releases.xml" htmlUrl="https://pypi.org/project/openapi-schema-validator/"/>
      <outline text="PyPI recent updates for openapi-spec-validator" type="rss" xmlUrl="https://pypi.org/rss/project/openapi-spec-validator/releases.xml" htmlUrl="https://pypi.org/project/openapi-spec-validator/"/>
      <outline text="PyPI recent updates for openpyxl" type="rss" xmlUrl="https://pypi.org/rss/project/openpyxl/releases.xml" htmlUrl="https://pypi.org/project/openpyxl/"/>
      <outline text="PyPI recent updates for opensearch-py" type="rss" xmlUrl="https://pypi.org/rss/project/opensearch-py/releases.xml" htmlUrl="https://pypi.org/project/opensearch-py/"/>
      <outline text="PyPI recent updates for openstackdocstheme" type="rss" xmlUrl="https://pypi.org/rss/project/openstackdocstheme/releases.xml" htmlUrl="https://pypi.org/project/openstackdocstheme/"/>
      <outline text="PyPI recent updates for openstacksdk" type="rss" xmlUrl="https://pypi.org/rss/project/openstacksdk/releases.xml" htmlUrl="https://pypi.org/project/openstacksdk/"/>
      <outline text="PyPI recent updates for opentelemetry-api" type="rss" xmlUrl="https://pypi.org/rss/project/opentelemetry-api/releases.xml" htmlUrl="https://pypi.org/project/opentelemetry-api/"/>
      <outline text="PyPI recent updates for opentelemetry-sdk" type="rss" xmlUrl="https://pypi.org/rss/project/opentelemetry-sdk/releases.xml" htmlUrl="https://pypi.org/project/opentelemetry-sdk/"/>
      <outline text="PyPI recent updates for opentelemetry-semantic-conventions" type="rss" xmlUrl="https://pypi.org/rss/project/opentelemetry-semantic-conventions/releases.xml" htmlUrl="https://pypi.org/project/opentelemetry-semantic-conventions/"/>
      <outline text="PyPI recent updates for opt-einsum" type="rss" xmlUrl="https://pypi.org/rss/project/opt-einsum/releases.xml" htmlUrl="https://pypi.org/project/opt-einsum/"/>
      <outline text="PyPI recent updates for ordered-set" type="rss" xmlUrl="https://pypi.org/rss/project/ordered-set/releases.xml" htmlUrl="https://pypi.org/project/ordered-set/"/>
      <outline text="PyPI recent updates for orjson" type="rss" xmlUrl="https://pypi.org/rss/project/orjson/releases.xml" htmlUrl="https://pypi.org/project/orjson/"/>
      <outline text="PyPI recent updates for osc-lib" type="rss" xmlUrl="https://pypi.org/rss/project/osc-lib/releases.xml" htmlUrl="https://pypi.org/project/osc-lib/"/>
      <outline text="PyPI recent updates for os-client-config" type="rss" xmlUrl="https://pypi.org/rss/project/os-client-config/releases.xml" htmlUrl="https://pypi.org/project/os-client-config/"/>
      <outline text="PyPI recent updates for oslo.concurrency" type="rss" xmlUrl="https://pypi.org/rss/project/oslo.concurrency/releases.xml" htmlUrl="https://pypi.org/project/oslo.concurrency/"/>
      <outline text="PyPI recent updates for oslo.config" type="rss" xmlUrl="https://pypi.org/rss/project/oslo.config/releases.xml" htmlUrl="https://pypi.org/project/oslo.config/"/>
      <outline text="PyPI recent updates for oslo.context" type="rss" xmlUrl="https://pypi.org/rss/project/oslo.context/releases.xml" htmlUrl="https://pypi.org/project/oslo.context/"/>
      <outline text="PyPI recent updates for oslo.i18n" type="rss" xmlUrl="https://pypi.org/rss/project/oslo.i18n/releases.xml" htmlUrl="https://pypi.org/project/oslo.i18n/"/>
      <outline text="PyPI recent updates for oslo.log" type="rss" xmlUrl="https://pypi.org/rss/project/oslo.log/releases.xml" htmlUrl="https://pypi.org/project/oslo.log/"/>
      <outline text="PyPI recent updates for oslo.serialization" type="rss" xmlUrl="https://pypi.org/rss/project/oslo.serialization/releases.xml" htmlUrl="https://pypi.org/project/oslo.serialization/"/>
      <outline text="PyPI recent updates for oslotest" type="rss" xmlUrl="https://pypi.org/rss/project/oslotest/releases.xml" htmlUrl="https://pypi.org/project/oslotest/"/>
      <outline text="PyPI recent updates for oslo.utils" type="rss" xmlUrl="https://pypi.org/rss/project/oslo.utils/releases.xml" htmlUrl="https://pypi.org/project/oslo.utils/"/>
      <outline text="PyPI recent updates for os-service-types" type="rss" xmlUrl="https://pypi.org/rss/project/os-service-types/releases.xml" htmlUrl="https://pypi.org/project/os-service-types/"/>
      <outline text="PyPI recent updates for outcome" type="rss" xmlUrl="https://pypi.org/rss/project/outcome/releases.xml" htmlUrl="https://pypi.org/project/outcome/"/>
      <outline text="PyPI recent updates for OutputCheck" type="rss" xmlUrl="https://pypi.org/rss/project/OutputCheck/releases.xml" htmlUrl="https://pypi.org/project/OutputCheck/"/>
      <outline text="PyPI recent updates for overrides" type="rss" xmlUrl="https://pypi.org/rss/project/overrides/releases.xml" htmlUrl="https://pypi.org/project/overrides/"/>
      <outline text="PyPI recent updates for ovs" type="rss" xmlUrl="https://pypi.org/rss/project/ovs/releases.xml" htmlUrl="https://pypi.org/project/ovs/"/>
      <outline text="PyPI recent updates for OWSLib" type="rss" xmlUrl="https://pypi.org/rss/project/OWSLib/releases.xml" htmlUrl="https://pypi.org/project/OWSLib/"/>
      <outline text="PyPI recent updates for packaging" type="rss" xmlUrl="https://pypi.org/rss/project/packaging/releases.xml" htmlUrl="https://pypi.org/project/packaging/"/>
      <outline text="PyPI recent updates for paginate" type="rss" xmlUrl="https://pypi.org/rss/project/paginate/releases.xml" htmlUrl="https://pypi.org/project/paginate/"/>
      <outline text="PyPI recent updates for paho-mqtt" type="rss" xmlUrl="https://pypi.org/rss/project/paho-mqtt/releases.xml" htmlUrl="https://pypi.org/project/paho-mqtt/"/>
      <outline text="PyPI recent updates for Pallets-Sphinx-Themes" type="rss" xmlUrl="https://pypi.org/rss/project/Pallets-Sphinx-Themes/releases.xml" htmlUrl="https://pypi.org/project/Pallets-Sphinx-Themes/"/>
      <outline text="PyPI recent updates for pandas" type="rss" xmlUrl="https://pypi.org/rss/project/pandas/releases.xml" htmlUrl="https://pypi.org/project/pandas/"/>
      <outline text="PyPI recent updates for pandocfilters" type="rss" xmlUrl="https://pypi.org/rss/project/pandocfilters/releases.xml" htmlUrl="https://pypi.org/project/pandocfilters/"/>
      <outline text="PyPI recent updates for parallax" type="rss" xmlUrl="https://pypi.org/rss/project/parallax/releases.xml" htmlUrl="https://pypi.org/project/parallax/"/>
      <outline text="PyPI recent updates for parameterized" type="rss" xmlUrl="https://pypi.org/rss/project/parameterized/releases.xml" htmlUrl="https://pypi.org/project/parameterized/"/>
      <outline text="PyPI recent updates for paramiko" type="rss" xmlUrl="https://pypi.org/rss/project/paramiko/releases.xml" htmlUrl="https://pypi.org/project/paramiko/"/>
      <outline text="PyPI recent updates for parse" type="rss" xmlUrl="https://pypi.org/rss/project/parse/releases.xml" htmlUrl="https://pypi.org/project/parse/"/>
      <outline text="PyPI recent updates for parsedatetime" type="rss" xmlUrl="https://pypi.org/rss/project/parsedatetime/releases.xml" htmlUrl="https://pypi.org/project/parsedatetime/"/>
      <outline text="PyPI recent updates for parse-type" type="rss" xmlUrl="https://pypi.org/rss/project/parse-type/releases.xml" htmlUrl="https://pypi.org/project/parse-type/"/>
      <outline text="PyPI recent updates for parso" type="rss" xmlUrl="https://pypi.org/rss/project/parso/releases.xml" htmlUrl="https://pypi.org/project/parso/"/>
      <outline text="PyPI recent updates for partd" type="rss" xmlUrl="https://pypi.org/rss/project/partd/releases.xml" htmlUrl="https://pypi.org/project/partd/"/>
      <outline text="PyPI recent updates for parver" type="rss" xmlUrl="https://pypi.org/rss/project/parver/releases.xml" htmlUrl="https://pypi.org/project/parver/"/>
      <outline text="PyPI recent updates for passlib" type="rss" xmlUrl="https://pypi.org/rss/project/passlib/releases.xml" htmlUrl="https://pypi.org/project/passlib/"/>
      <outline text="PyPI recent updates for Paste" type="rss" xmlUrl="https://pypi.org/rss/project/Paste/releases.xml" htmlUrl="https://pypi.org/project/Paste/"/>
      <outline text="PyPI recent updates for PasteDeploy" type="rss" xmlUrl="https://pypi.org/rss/project/PasteDeploy/releases.xml" htmlUrl="https://pypi.org/project/PasteDeploy/"/>
      <outline text="PyPI recent updates for pastel" type="rss" xmlUrl="https://pypi.org/rss/project/pastel/releases.xml" htmlUrl="https://pypi.org/project/pastel/"/>
      <outline text="PyPI recent updates for patatt" type="rss" xmlUrl="https://pypi.org/rss/project/patatt/releases.xml" htmlUrl="https://pypi.org/project/patatt/"/>
      <outline text="PyPI recent updates for patch-ng" type="rss" xmlUrl="https://pypi.org/rss/project/patch-ng/releases.xml" htmlUrl="https://pypi.org/project/patch-ng/"/>
      <outline text="PyPI recent updates for path" type="rss" xmlUrl="https://pypi.org/rss/project/path/releases.xml" htmlUrl="https://pypi.org/project/path/"/>
      <outline text="PyPI recent updates for pathable" type="rss" xmlUrl="https://pypi.org/rss/project/pathable/releases.xml" htmlUrl="https://pypi.org/project/pathable/"/>
      <outline text="PyPI recent updates for path-and-address" type="rss" xmlUrl="https://pypi.org/rss/project/path-and-address/releases.xml" htmlUrl="https://pypi.org/project/path-and-address/"/>
      <outline text="PyPI recent updates for pathlib2" type="rss" xmlUrl="https://pypi.org/rss/project/pathlib2/releases.xml" htmlUrl="https://pypi.org/project/pathlib2/"/>
      <outline text="PyPI recent updates for pathspec" type="rss" xmlUrl="https://pypi.org/rss/project/pathspec/releases.xml" htmlUrl="https://pypi.org/project/pathspec/"/>
      <outline text="PyPI recent updates for pathvalidate" type="rss" xmlUrl="https://pypi.org/rss/project/pathvalidate/releases.xml" htmlUrl="https://pypi.org/project/pathvalidate/"/>
      <outline text="PyPI recent updates for patiencediff" type="rss" xmlUrl="https://pypi.org/rss/project/patiencediff/releases.xml" htmlUrl="https://pypi.org/project/patiencediff/"/>
      <outline text="PyPI recent updates for patsy" type="rss" xmlUrl="https://pypi.org/rss/project/patsy/releases.xml" htmlUrl="https://pypi.org/project/patsy/"/>
      <outline text="PyPI recent updates for pbkdf2" type="rss" xmlUrl="https://pypi.org/rss/project/pbkdf2/releases.xml" htmlUrl="https://pypi.org/project/pbkdf2/"/>
      <outline text="PyPI recent updates for pbr" type="rss" xmlUrl="https://pypi.org/rss/project/pbr/releases.xml" htmlUrl="https://pypi.org/project/pbr/"/>
      <outline text="PyPI recent updates for pbs-installer" type="rss" xmlUrl="https://pypi.org/rss/project/pbs-installer/releases.xml" htmlUrl="https://pypi.org/project/pbs-installer/"/>
      <outline text="PyPI recent updates for pdfrw" type="rss" xmlUrl="https://pypi.org/rss/project/pdfrw/releases.xml" htmlUrl="https://pypi.org/project/pdfrw/"/>
      <outline text="PyPI recent updates for pdm" type="rss" xmlUrl="https://pypi.org/rss/project/pdm/releases.xml" htmlUrl="https://pypi.org/project/pdm/"/>
      <outline text="PyPI recent updates for pdm-backend" type="rss" xmlUrl="https://pypi.org/rss/project/pdm-backend/releases.xml" htmlUrl="https://pypi.org/project/pdm-backend/"/>
      <outline text="PyPI recent updates for pdoc3" type="rss" xmlUrl="https://pypi.org/rss/project/pdoc3/releases.xml" htmlUrl="https://pypi.org/project/pdoc3/"/>
      <outline text="PyPI recent updates for PeachPy" type="rss" xmlUrl="https://pypi.org/rss/project/PeachPy/releases.xml" htmlUrl="https://pypi.org/project/PeachPy/"/>
      <outline text="PyPI recent updates for Pebble" type="rss" xmlUrl="https://pypi.org/rss/project/Pebble/releases.xml" htmlUrl="https://pypi.org/project/Pebble/"/>
      <outline text="PyPI recent updates for pecan" type="rss" xmlUrl="https://pypi.org/rss/project/pecan/releases.xml" htmlUrl="https://pypi.org/project/pecan/"/>
      <outline text="PyPI recent updates for peewee" type="rss" xmlUrl="https://pypi.org/rss/project/peewee/releases.xml" htmlUrl="https://pypi.org/project/peewee/"/>
      <outline text="PyPI recent updates for pefile" type="rss" xmlUrl="https://pypi.org/rss/project/pefile/releases.xml" htmlUrl="https://pypi.org/project/pefile/"/>
      <outline text="PyPI recent updates for pelican-minify" type="rss" xmlUrl="https://pypi.org/rss/project/pelican-minify/releases.xml" htmlUrl="https://pypi.org/project/pelican-minify/"/>
      <outline text="PyPI recent updates for pexpect" type="rss" xmlUrl="https://pypi.org/rss/project/pexpect/releases.xml" htmlUrl="https://pypi.org/project/pexpect/"/>
      <outline text="PyPI recent updates for pgspecial" type="rss" xmlUrl="https://pypi.org/rss/project/pgspecial/releases.xml" htmlUrl="https://pypi.org/project/pgspecial/"/>
      <outline text="PyPI recent updates for pgzero" type="rss" xmlUrl="https://pypi.org/rss/project/pgzero/releases.xml" htmlUrl="https://pypi.org/project/pgzero/"/>
      <outline text="PyPI recent updates for phonenumbers" type="rss" xmlUrl="https://pypi.org/rss/project/phonenumbers/releases.xml" htmlUrl="https://pypi.org/project/phonenumbers/"/>
      <outline text="PyPI recent updates for phply" type="rss" xmlUrl="https://pypi.org/rss/project/phply/releases.xml" htmlUrl="https://pypi.org/project/phply/"/>
      <outline text="PyPI recent updates for pickleshare" type="rss" xmlUrl="https://pypi.org/rss/project/pickleshare/releases.xml" htmlUrl="https://pypi.org/project/pickleshare/"/>
      <outline text="PyPI recent updates for picobox" type="rss" xmlUrl="https://pypi.org/rss/project/picobox/releases.xml" htmlUrl="https://pypi.org/project/picobox/"/>
      <outline text="PyPI recent updates for pid" type="rss" xmlUrl="https://pypi.org/rss/project/pid/releases.xml" htmlUrl="https://pypi.org/project/pid/"/>
      <outline text="PyPI recent updates for piexif" type="rss" xmlUrl="https://pypi.org/rss/project/piexif/releases.xml" htmlUrl="https://pypi.org/project/piexif/"/>
      <outline text="PyPI recent updates for pika" type="rss" xmlUrl="https://pypi.org/rss/project/pika/releases.xml" htmlUrl="https://pypi.org/project/pika/"/>
      <outline text="PyPI recent updates for pikepdf" type="rss" xmlUrl="https://pypi.org/rss/project/pikepdf/releases.xml" htmlUrl="https://pypi.org/project/pikepdf/"/>
      <outline text="PyPI recent updates for pillow" type="rss" xmlUrl="https://pypi.org/rss/project/pillow/releases.xml" htmlUrl="https://pypi.org/project/pillow/"/>
      <outline text="PyPI recent updates for pip" type="rss" xmlUrl="https://pypi.org/rss/project/pip/releases.xml" htmlUrl="https://pypi.org/project/pip/"/>
      <outline text="PyPI recent updates for pipdeptree" type="rss" xmlUrl="https://pypi.org/rss/project/pipdeptree/releases.xml" htmlUrl="https://pypi.org/project/pipdeptree/"/>
      <outline text="PyPI recent updates for pipenv" type="rss" xmlUrl="https://pypi.org/rss/project/pipenv/releases.xml" htmlUrl="https://pypi.org/project/pipenv/"/>
      <outline text="PyPI recent updates for pip-run" type="rss" xmlUrl="https://pypi.org/rss/project/pip-run/releases.xml" htmlUrl="https://pypi.org/project/pip-run/"/>
      <outline text="PyPI recent updates for pipx" type="rss" xmlUrl="https://pypi.org/rss/project/pipx/releases.xml" htmlUrl="https://pypi.org/project/pipx/"/>
      <outline text="PyPI recent updates for pkgconfig" type="rss" xmlUrl="https://pypi.org/rss/project/pkgconfig/releases.xml" htmlUrl="https://pypi.org/project/pkgconfig/"/>
      <outline text="PyPI recent updates for pkgcraft" type="rss" xmlUrl="https://pypi.org/rss/project/pkgcraft/releases.xml" htmlUrl="https://pypi.org/project/pkgcraft/"/>
      <outline text="PyPI recent updates for pkginfo" type="rss" xmlUrl="https://pypi.org/rss/project/pkginfo/releases.xml" htmlUrl="https://pypi.org/project/pkginfo/"/>
      <outline text="PyPI recent updates for platformdirs" type="rss" xmlUrl="https://pypi.org/rss/project/platformdirs/releases.xml" htmlUrl="https://pypi.org/project/platformdirs/"/>
      <outline text="PyPI recent updates for plette" type="rss" xmlUrl="https://pypi.org/rss/project/plette/releases.xml" htmlUrl="https://pypi.org/project/plette/"/>
      <outline text="PyPI recent updates for plotly" type="rss" xmlUrl="https://pypi.org/rss/project/plotly/releases.xml" htmlUrl="https://pypi.org/project/plotly/"/>
      <outline text="PyPI recent updates for plotly-geo" type="rss" xmlUrl="https://pypi.org/rss/project/plotly-geo/releases.xml" htmlUrl="https://pypi.org/project/plotly-geo/"/>
      <outline text="PyPI recent updates for pluggy" type="rss" xmlUrl="https://pypi.org/rss/project/pluggy/releases.xml" htmlUrl="https://pypi.org/project/pluggy/"/>
      <outline text="PyPI recent updates for pluginbase" type="rss" xmlUrl="https://pypi.org/rss/project/pluginbase/releases.xml" htmlUrl="https://pypi.org/project/pluginbase/"/>
      <outline text="PyPI recent updates for plumbum" type="rss" xmlUrl="https://pypi.org/rss/project/plumbum/releases.xml" htmlUrl="https://pypi.org/project/plumbum/"/>
      <outline text="PyPI recent updates for ply" type="rss" xmlUrl="https://pypi.org/rss/project/ply/releases.xml" htmlUrl="https://pypi.org/project/ply/"/>
      <outline text="PyPI recent updates for plyvel" type="rss" xmlUrl="https://pypi.org/rss/project/plyvel/releases.xml" htmlUrl="https://pypi.org/project/plyvel/"/>
      <outline text="PyPI recent updates for Pmw" type="rss" xmlUrl="https://pypi.org/rss/project/Pmw/releases.xml" htmlUrl="https://pypi.org/project/Pmw/"/>
      <outline text="PyPI recent updates for pocketlint" type="rss" xmlUrl="https://pypi.org/rss/project/pocketlint/releases.xml" htmlUrl="https://pypi.org/project/pocketlint/"/>
      <outline text="PyPI recent updates for pockets" type="rss" xmlUrl="https://pypi.org/rss/project/pockets/releases.xml" htmlUrl="https://pypi.org/project/pockets/"/>
      <outline text="PyPI recent updates for podcastparser" type="rss" xmlUrl="https://pypi.org/rss/project/podcastparser/releases.xml" htmlUrl="https://pypi.org/project/podcastparser/"/>
      <outline text="PyPI recent updates for podman" type="rss" xmlUrl="https://pypi.org/rss/project/podman/releases.xml" htmlUrl="https://pypi.org/project/podman/"/>
      <outline text="PyPI recent updates for poetry" type="rss" xmlUrl="https://pypi.org/rss/project/poetry/releases.xml" htmlUrl="https://pypi.org/project/poetry/"/>
      <outline text="PyPI recent updates for poetry-core" type="rss" xmlUrl="https://pypi.org/rss/project/poetry-core/releases.xml" htmlUrl="https://pypi.org/project/poetry-core/"/>
      <outline text="PyPI recent updates for poetry-plugin-export" type="rss" xmlUrl="https://pypi.org/rss/project/poetry-plugin-export/releases.xml" htmlUrl="https://pypi.org/project/poetry-plugin-export/"/>
      <outline text="PyPI recent updates for polib" type="rss" xmlUrl="https://pypi.org/rss/project/polib/releases.xml" htmlUrl="https://pypi.org/project/polib/"/>
      <outline text="PyPI recent updates for pooch" type="rss" xmlUrl="https://pypi.org/rss/project/pooch/releases.xml" htmlUrl="https://pypi.org/project/pooch/"/>
      <outline text="PyPI recent updates for portalocker" type="rss" xmlUrl="https://pypi.org/rss/project/portalocker/releases.xml" htmlUrl="https://pypi.org/project/portalocker/"/>
      <outline text="PyPI recent updates for portend" type="rss" xmlUrl="https://pypi.org/rss/project/portend/releases.xml" htmlUrl="https://pypi.org/project/portend/"/>
      <outline text="PyPI recent updates for poyo" type="rss" xmlUrl="https://pypi.org/rss/project/poyo/releases.xml" htmlUrl="https://pypi.org/project/poyo/"/>
      <outline text="PyPI recent updates for pplpy" type="rss" xmlUrl="https://pypi.org/rss/project/pplpy/releases.xml" htmlUrl="https://pypi.org/project/pplpy/"/>
      <outline text="PyPI recent updates for precis-i18n" type="rss" xmlUrl="https://pypi.org/rss/project/precis-i18n/releases.xml" htmlUrl="https://pypi.org/project/precis-i18n/"/>
      <outline text="PyPI recent updates for pretend" type="rss" xmlUrl="https://pypi.org/rss/project/pretend/releases.xml" htmlUrl="https://pypi.org/project/pretend/"/>
      <outline text="PyPI recent updates for prettytable" type="rss" xmlUrl="https://pypi.org/rss/project/prettytable/releases.xml" htmlUrl="https://pypi.org/project/prettytable/"/>
      <outline text="PyPI recent updates for primecountpy" type="rss" xmlUrl="https://pypi.org/rss/project/primecountpy/releases.xml" htmlUrl="https://pypi.org/project/primecountpy/"/>
      <outline text="PyPI recent updates for priority" type="rss" xmlUrl="https://pypi.org/rss/project/priority/releases.xml" htmlUrl="https://pypi.org/project/priority/"/>
      <outline text="PyPI recent updates for process-tests" type="rss" xmlUrl="https://pypi.org/rss/project/process-tests/releases.xml" htmlUrl="https://pypi.org/project/process-tests/"/>
      <outline text="PyPI recent updates for progress" type="rss" xmlUrl="https://pypi.org/rss/project/progress/releases.xml" htmlUrl="https://pypi.org/project/progress/"/>
      <outline text="PyPI recent updates for progressbar2" type="rss" xmlUrl="https://pypi.org/rss/project/progressbar2/releases.xml" htmlUrl="https://pypi.org/project/progressbar2/"/>
      <outline text="PyPI recent updates for prometheus-client" type="rss" xmlUrl="https://pypi.org/rss/project/prometheus-client/releases.xml" htmlUrl="https://pypi.org/project/prometheus-client/"/>
      <outline text="PyPI recent updates for prompt-toolkit" type="rss" xmlUrl="https://pypi.org/rss/project/prompt-toolkit/releases.xml" htmlUrl="https://pypi.org/project/prompt-toolkit/"/>
      <outline text="PyPI recent updates for protobuf" type="rss" xmlUrl="https://pypi.org/rss/project/protobuf/releases.xml" htmlUrl="https://pypi.org/project/protobuf/"/>
      <outline text="PyPI recent updates for proto-plus" type="rss" xmlUrl="https://pypi.org/rss/project/proto-plus/releases.xml" htmlUrl="https://pypi.org/project/proto-plus/"/>
      <outline text="PyPI recent updates for pslab" type="rss" xmlUrl="https://pypi.org/rss/project/pslab/releases.xml" htmlUrl="https://pypi.org/project/pslab/"/>
      <outline text="PyPI recent updates for psutil" type="rss" xmlUrl="https://pypi.org/rss/project/psutil/releases.xml" htmlUrl="https://pypi.org/project/psutil/"/>
      <outline text="PyPI recent updates for psycopg" type="rss" xmlUrl="https://pypi.org/rss/project/psycopg/releases.xml" htmlUrl="https://pypi.org/project/psycopg/"/>
      <outline text="PyPI recent updates for psycopg2" type="rss" xmlUrl="https://pypi.org/rss/project/psycopg2/releases.xml" htmlUrl="https://pypi.org/project/psycopg2/"/>
      <outline text="PyPI recent updates for ptyprocess" type="rss" xmlUrl="https://pypi.org/rss/project/ptyprocess/releases.xml" htmlUrl="https://pypi.org/project/ptyprocess/"/>
      <outline text="PyPI recent updates for publicsuffix" type="rss" xmlUrl="https://pypi.org/rss/project/publicsuffix/releases.xml" htmlUrl="https://pypi.org/project/publicsuffix/"/>
      <outline text="PyPI recent updates for pudb" type="rss" xmlUrl="https://pypi.org/rss/project/pudb/releases.xml" htmlUrl="https://pypi.org/project/pudb/"/>
      <outline text="PyPI recent updates for pulsectl" type="rss" xmlUrl="https://pypi.org/rss/project/pulsectl/releases.xml" htmlUrl="https://pypi.org/project/pulsectl/"/>
      <outline text="PyPI recent updates for pulsectl-asyncio" type="rss" xmlUrl="https://pypi.org/rss/project/pulsectl-asyncio/releases.xml" htmlUrl="https://pypi.org/project/pulsectl-asyncio/"/>
      <outline text="PyPI recent updates for pure-eval" type="rss" xmlUrl="https://pypi.org/rss/project/pure-eval/releases.xml" htmlUrl="https://pypi.org/project/pure-eval/"/>
      <outline text="PyPI recent updates for puremagic" type="rss" xmlUrl="https://pypi.org/rss/project/puremagic/releases.xml" htmlUrl="https://pypi.org/project/puremagic/"/>
      <outline text="PyPI recent updates for py" type="rss" xmlUrl="https://pypi.org/rss/project/py/releases.xml" htmlUrl="https://pypi.org/project/py/"/>
      <outline text="PyPI recent updates for pyacoustid" type="rss" xmlUrl="https://pypi.org/rss/project/pyacoustid/releases.xml" htmlUrl="https://pypi.org/project/pyacoustid/"/>
      <outline text="PyPI recent updates for pyaes" type="rss" xmlUrl="https://pypi.org/rss/project/pyaes/releases.xml" htmlUrl="https://pypi.org/project/pyaes/"/>
      <outline text="PyPI recent updates for pyalsa" type="rss" xmlUrl="https://pypi.org/rss/project/pyalsa/releases.xml" htmlUrl="https://pypi.org/project/pyalsa/"/>
      <outline text="PyPI recent updates for pyamg" type="rss" xmlUrl="https://pypi.org/rss/project/pyamg/releases.xml" htmlUrl="https://pypi.org/project/pyamg/"/>
      <outline text="PyPI recent updates for pyaml" type="rss" xmlUrl="https://pypi.org/rss/project/pyaml/releases.xml" htmlUrl="https://pypi.org/project/pyaml/"/>
      <outline text="PyPI recent updates for pyarrow" type="rss" xmlUrl="https://pypi.org/rss/project/pyarrow/releases.xml" htmlUrl="https://pypi.org/project/pyarrow/"/>
      <outline text="PyPI recent updates for pyasn1" type="rss" xmlUrl="https://pypi.org/rss/project/pyasn1/releases.xml" htmlUrl="https://pypi.org/project/pyasn1/"/>
      <outline text="PyPI recent updates for pyasn1-modules" type="rss" xmlUrl="https://pypi.org/rss/project/pyasn1-modules/releases.xml" htmlUrl="https://pypi.org/project/pyasn1-modules/"/>
      <outline text="PyPI recent updates for pyasynchat" type="rss" xmlUrl="https://pypi.org/rss/project/pyasynchat/releases.xml" htmlUrl="https://pypi.org/project/pyasynchat/"/>
      <outline text="PyPI recent updates for pyasyncore" type="rss" xmlUrl="https://pypi.org/rss/project/pyasyncore/releases.xml" htmlUrl="https://pypi.org/project/pyasyncore/"/>
      <outline text="PyPI recent updates for PyAudio" type="rss" xmlUrl="https://pypi.org/rss/project/PyAudio/releases.xml" htmlUrl="https://pypi.org/project/PyAudio/"/>
      <outline text="PyPI recent updates for pybind11" type="rss" xmlUrl="https://pypi.org/rss/project/pybind11/releases.xml" htmlUrl="https://pypi.org/project/pybind11/"/>
      <outline text="PyPI recent updates for pybtex" type="rss" xmlUrl="https://pypi.org/rss/project/pybtex/releases.xml" htmlUrl="https://pypi.org/project/pybtex/"/>
      <outline text="PyPI recent updates for pybtex-docutils" type="rss" xmlUrl="https://pypi.org/rss/project/pybtex-docutils/releases.xml" htmlUrl="https://pypi.org/project/pybtex-docutils/"/>
      <outline text="PyPI recent updates for pycairo" type="rss" xmlUrl="https://pypi.org/rss/project/pycairo/releases.xml" htmlUrl="https://pypi.org/project/pycairo/"/>
      <outline text="PyPI recent updates for pycares" type="rss" xmlUrl="https://pypi.org/rss/project/pycares/releases.xml" htmlUrl="https://pypi.org/project/pycares/"/>
      <outline text="PyPI recent updates for pycdio" type="rss" xmlUrl="https://pypi.org/rss/project/pycdio/releases.xml" htmlUrl="https://pypi.org/project/pycdio/"/>
      <outline text="PyPI recent updates for pychm" type="rss" xmlUrl="https://pypi.org/rss/project/pychm/releases.xml" htmlUrl="https://pypi.org/project/pychm/"/>
      <outline text="PyPI recent updates for PyChromecast" type="rss" xmlUrl="https://pypi.org/rss/project/PyChromecast/releases.xml" htmlUrl="https://pypi.org/project/PyChromecast/"/>
      <outline text="PyPI recent updates for pyClamd" type="rss" xmlUrl="https://pypi.org/rss/project/pyClamd/releases.xml" htmlUrl="https://pypi.org/project/pyClamd/"/>
      <outline text="PyPI recent updates for pyclipper" type="rss" xmlUrl="https://pypi.org/rss/project/pyclipper/releases.xml" htmlUrl="https://pypi.org/project/pyclipper/"/>
      <outline text="PyPI recent updates for pycodestyle" type="rss" xmlUrl="https://pypi.org/rss/project/pycodestyle/releases.xml" htmlUrl="https://pypi.org/project/pycodestyle/"/>
      <outline text="PyPI recent updates for pycollada" type="rss" xmlUrl="https://pypi.org/rss/project/pycollada/releases.xml" htmlUrl="https://pypi.org/project/pycollada/"/>
      <outline text="PyPI recent updates for pycountry" type="rss" xmlUrl="https://pypi.org/rss/project/pycountry/releases.xml" htmlUrl="https://pypi.org/project/pycountry/"/>
      <outline text="PyPI recent updates for pycparser" type="rss" xmlUrl="https://pypi.org/rss/project/pycparser/releases.xml" htmlUrl="https://pypi.org/project/pycparser/"/>
      <outline text="PyPI recent updates for py-cpuinfo" type="rss" xmlUrl="https://pypi.org/rss/project/py-cpuinfo/releases.xml" htmlUrl="https://pypi.org/project/py-cpuinfo/"/>
      <outline text="PyPI recent updates for pycryptodome" type="rss" xmlUrl="https://pypi.org/rss/project/pycryptodome/releases.xml" htmlUrl="https://pypi.org/project/pycryptodome/"/>
      <outline text="PyPI recent updates for pycuda" type="rss" xmlUrl="https://pypi.org/rss/project/pycuda/releases.xml" htmlUrl="https://pypi.org/project/pycuda/"/>
      <outline text="PyPI recent updates for pycups" type="rss" xmlUrl="https://pypi.org/rss/project/pycups/releases.xml" htmlUrl="https://pypi.org/project/pycups/"/>
      <outline text="PyPI recent updates for pycurl" type="rss" xmlUrl="https://pypi.org/rss/project/pycurl/releases.xml" htmlUrl="https://pypi.org/project/pycurl/"/>
      <outline text="PyPI recent updates for pycurl-requests" type="rss" xmlUrl="https://pypi.org/rss/project/pycurl-requests/releases.xml" htmlUrl="https://pypi.org/project/pycurl-requests/"/>
      <outline text="PyPI recent updates for pydantic" type="rss" xmlUrl="https://pypi.org/rss/project/pydantic/releases.xml" htmlUrl="https://pypi.org/project/pydantic/"/>
      <outline text="PyPI recent updates for pydantic-core" type="rss" xmlUrl="https://pypi.org/rss/project/pydantic-core/releases.xml" htmlUrl="https://pypi.org/project/pydantic-core/"/>
      <outline text="PyPI recent updates for pydata-sphinx-theme" type="rss" xmlUrl="https://pypi.org/rss/project/pydata-sphinx-theme/releases.xml" htmlUrl="https://pypi.org/project/pydata-sphinx-theme/"/>
      <outline text="PyPI recent updates for pydbus" type="rss" xmlUrl="https://pypi.org/rss/project/pydbus/releases.xml" htmlUrl="https://pypi.org/project/pydbus/"/>
      <outline text="PyPI recent updates for pyDes" type="rss" xmlUrl="https://pypi.org/rss/project/pyDes/releases.xml" htmlUrl="https://pypi.org/project/pyDes/"/>
      <outline text="PyPI recent updates for pydevd" type="rss" xmlUrl="https://pypi.org/rss/project/pydevd/releases.xml" htmlUrl="https://pypi.org/project/pydevd/"/>
      <outline text="PyPI recent updates for pydiffx" type="rss" xmlUrl="https://pypi.org/rss/project/pydiffx/releases.xml" htmlUrl="https://pypi.org/project/pydiffx/"/>
      <outline text="PyPI recent updates for pydot" type="rss" xmlUrl="https://pypi.org/rss/project/pydot/releases.xml" htmlUrl="https://pypi.org/project/pydot/"/>
      <outline text="PyPI recent updates for pydyf" type="rss" xmlUrl="https://pypi.org/rss/project/pydyf/releases.xml" htmlUrl="https://pypi.org/project/pydyf/"/>
      <outline text="PyPI recent updates for pyeclib" type="rss" xmlUrl="https://pypi.org/rss/project/pyeclib/releases.xml" htmlUrl="https://pypi.org/project/pyeclib/"/>
      <outline text="PyPI recent updates for pyelftools" type="rss" xmlUrl="https://pypi.org/rss/project/pyelftools/releases.xml" htmlUrl="https://pypi.org/project/pyelftools/"/>
      <outline text="PyPI recent updates for pyenchant" type="rss" xmlUrl="https://pypi.org/rss/project/pyenchant/releases.xml" htmlUrl="https://pypi.org/project/pyenchant/"/>
      <outline text="PyPI recent updates for pyfakefs" type="rss" xmlUrl="https://pypi.org/rss/project/pyfakefs/releases.xml" htmlUrl="https://pypi.org/project/pyfakefs/"/>
      <outline text="PyPI recent updates for pyflakes" type="rss" xmlUrl="https://pypi.org/rss/project/pyflakes/releases.xml" htmlUrl="https://pypi.org/project/pyflakes/"/>
      <outline text="PyPI recent updates for pyformance" type="rss" xmlUrl="https://pypi.org/rss/project/pyformance/releases.xml" htmlUrl="https://pypi.org/project/pyformance/"/>
      <outline text="PyPI recent updates for pyftpdlib" type="rss" xmlUrl="https://pypi.org/rss/project/pyftpdlib/releases.xml" htmlUrl="https://pypi.org/project/pyftpdlib/"/>
      <outline text="PyPI recent updates for pyfuse3" type="rss" xmlUrl="https://pypi.org/rss/project/pyfuse3/releases.xml" htmlUrl="https://pypi.org/project/pyfuse3/"/>
      <outline text="PyPI recent updates for pygal" type="rss" xmlUrl="https://pypi.org/rss/project/pygal/releases.xml" htmlUrl="https://pypi.org/project/pygal/"/>
      <outline text="PyPI recent updates for pygame" type="rss" xmlUrl="https://pypi.org/rss/project/pygame/releases.xml" htmlUrl="https://pypi.org/project/pygame/"/>
      <outline text="PyPI recent updates for pygccxml" type="rss" xmlUrl="https://pypi.org/rss/project/pygccxml/releases.xml" htmlUrl="https://pypi.org/project/pygccxml/"/>
      <outline text="PyPI recent updates for pygdbmi" type="rss" xmlUrl="https://pypi.org/rss/project/pygdbmi/releases.xml" htmlUrl="https://pypi.org/project/pygdbmi/"/>
      <outline text="PyPI recent updates for pyghmi" type="rss" xmlUrl="https://pypi.org/rss/project/pyghmi/releases.xml" htmlUrl="https://pypi.org/project/pyghmi/"/>
      <outline text="PyPI recent updates for pygit2" type="rss" xmlUrl="https://pypi.org/rss/project/pygit2/releases.xml" htmlUrl="https://pypi.org/project/pygit2/"/>
      <outline text="PyPI recent updates for PyGithub" type="rss" xmlUrl="https://pypi.org/rss/project/PyGithub/releases.xml" htmlUrl="https://pypi.org/project/PyGithub/"/>
      <outline text="PyPI recent updates for pyglet" type="rss" xmlUrl="https://pypi.org/rss/project/pyglet/releases.xml" htmlUrl="https://pypi.org/project/pyglet/"/>
      <outline text="PyPI recent updates for Pygments" type="rss" xmlUrl="https://pypi.org/rss/project/Pygments/releases.xml" htmlUrl="https://pypi.org/project/Pygments/"/>
      <outline text="PyPI recent updates for pygments-ansi-color" type="rss" xmlUrl="https://pypi.org/rss/project/pygments-ansi-color/releases.xml" htmlUrl="https://pypi.org/project/pygments-ansi-color/"/>
      <outline text="PyPI recent updates for pygments-github-lexers" type="rss" xmlUrl="https://pypi.org/rss/project/pygments-github-lexers/releases.xml" htmlUrl="https://pypi.org/project/pygments-github-lexers/"/>
      <outline text="PyPI recent updates for PyGObject" type="rss" xmlUrl="https://pypi.org/rss/project/PyGObject/releases.xml" htmlUrl="https://pypi.org/project/PyGObject/"/>
      <outline text="PyPI recent updates for pygraphviz" type="rss" xmlUrl="https://pypi.org/rss/project/pygraphviz/releases.xml" htmlUrl="https://pypi.org/project/pygraphviz/"/>
      <outline text="PyPI recent updates for PyGreSQL" type="rss" xmlUrl="https://pypi.org/rss/project/PyGreSQL/releases.xml" htmlUrl="https://pypi.org/project/PyGreSQL/"/>
      <outline text="PyPI recent updates for pyh2o" type="rss" xmlUrl="https://pypi.org/rss/project/pyh2o/releases.xml" htmlUrl="https://pypi.org/project/pyh2o/"/>
      <outline text="PyPI recent updates for PyHamcrest" type="rss" xmlUrl="https://pypi.org/rss/project/PyHamcrest/releases.xml" htmlUrl="https://pypi.org/project/PyHamcrest/"/>
      <outline text="PyPI recent updates for pyhcl" type="rss" xmlUrl="https://pypi.org/rss/project/pyhcl/releases.xml" htmlUrl="https://pypi.org/project/pyhcl/"/>
      <outline text="PyPI recent updates for PyICU" type="rss" xmlUrl="https://pypi.org/rss/project/PyICU/releases.xml" htmlUrl="https://pypi.org/project/PyICU/"/>
      <outline text="PyPI recent updates for pyinotify" type="rss" xmlUrl="https://pypi.org/rss/project/pyinotify/releases.xml" htmlUrl="https://pypi.org/project/pyinotify/"/>
      <outline text="PyPI recent updates for pyjsparser" type="rss" xmlUrl="https://pypi.org/rss/project/pyjsparser/releases.xml" htmlUrl="https://pypi.org/project/pyjsparser/"/>
      <outline text="PyPI recent updates for PyJWT" type="rss" xmlUrl="https://pypi.org/rss/project/PyJWT/releases.xml" htmlUrl="https://pypi.org/project/PyJWT/"/>
      <outline text="PyPI recent updates for pykka" type="rss" xmlUrl="https://pypi.org/rss/project/pykka/releases.xml" htmlUrl="https://pypi.org/project/pykka/"/>
      <outline text="PyPI recent updates for pykwalify" type="rss" xmlUrl="https://pypi.org/rss/project/pykwalify/releases.xml" htmlUrl="https://pypi.org/project/pykwalify/"/>
      <outline text="PyPI recent updates for pylast" type="rss" xmlUrl="https://pypi.org/rss/project/pylast/releases.xml" htmlUrl="https://pypi.org/project/pylast/"/>
      <outline text="PyPI recent updates for PyLaTeX" type="rss" xmlUrl="https://pypi.org/rss/project/PyLaTeX/releases.xml" htmlUrl="https://pypi.org/project/PyLaTeX/"/>
      <outline text="PyPI recent updates for pylatexenc" type="rss" xmlUrl="https://pypi.org/rss/project/pylatexenc/releases.xml" htmlUrl="https://pypi.org/project/pylatexenc/"/>
      <outline text="PyPI recent updates for pylev" type="rss" xmlUrl="https://pypi.org/rss/project/pylev/releases.xml" htmlUrl="https://pypi.org/project/pylev/"/>
      <outline text="PyPI recent updates for pylibacl" type="rss" xmlUrl="https://pypi.org/rss/project/pylibacl/releases.xml" htmlUrl="https://pypi.org/project/pylibacl/"/>
      <outline text="PyPI recent updates for pylibmc" type="rss" xmlUrl="https://pypi.org/rss/project/pylibmc/releases.xml" htmlUrl="https://pypi.org/project/pylibmc/"/>
      <outline text="PyPI recent updates for pylint" type="rss" xmlUrl="https://pypi.org/rss/project/pylint/releases.xml" htmlUrl="https://pypi.org/project/pylint/"/>
      <outline text="PyPI recent updates for pylint-venv" type="rss" xmlUrl="https://pypi.org/rss/project/pylint-venv/releases.xml" htmlUrl="https://pypi.org/project/pylint-venv/"/>
      <outline text="PyPI recent updates for pylru" type="rss" xmlUrl="https://pypi.org/rss/project/pylru/releases.xml" htmlUrl="https://pypi.org/project/pylru/"/>
      <outline text="PyPI recent updates for pyls-spyder" type="rss" xmlUrl="https://pypi.org/rss/project/pyls-spyder/releases.xml" htmlUrl="https://pypi.org/project/pyls-spyder/"/>
      <outline text="PyPI recent updates for pymacaroons" type="rss" xmlUrl="https://pypi.org/rss/project/pymacaroons/releases.xml" htmlUrl="https://pypi.org/project/pymacaroons/"/>
      <outline text="PyPI recent updates for pymad" type="rss" xmlUrl="https://pypi.org/rss/project/pymad/releases.xml" htmlUrl="https://pypi.org/project/pymad/"/>
      <outline text="PyPI recent updates for pymdown-extensions" type="rss" xmlUrl="https://pypi.org/rss/project/pymdown-extensions/releases.xml" htmlUrl="https://pypi.org/project/pymdown-extensions/"/>
      <outline text="PyPI recent updates for pymdstat" type="rss" xmlUrl="https://pypi.org/rss/project/pymdstat/releases.xml" htmlUrl="https://pypi.org/project/pymdstat/"/>
      <outline text="PyPI recent updates for pymediainfo" type="rss" xmlUrl="https://pypi.org/rss/project/pymediainfo/releases.xml" htmlUrl="https://pypi.org/project/pymediainfo/"/>
      <outline text="PyPI recent updates for pymetar" type="rss" xmlUrl="https://pypi.org/rss/project/pymetar/releases.xml" htmlUrl="https://pypi.org/project/pymetar/"/>
      <outline text="PyPI recent updates for pymongo" type="rss" xmlUrl="https://pypi.org/rss/project/pymongo/releases.xml" htmlUrl="https://pypi.org/project/pymongo/"/>
      <outline text="PyPI recent updates for PyMySQL" type="rss" xmlUrl="https://pypi.org/rss/project/PyMySQL/releases.xml" htmlUrl="https://pypi.org/project/PyMySQL/"/>
      <outline text="PyPI recent updates for PyNaCl" type="rss" xmlUrl="https://pypi.org/rss/project/PyNaCl/releases.xml" htmlUrl="https://pypi.org/project/PyNaCl/"/>
      <outline text="PyPI recent updates for pynvim" type="rss" xmlUrl="https://pypi.org/rss/project/pynvim/releases.xml" htmlUrl="https://pypi.org/project/pynvim/"/>
      <outline text="PyPI recent updates for pyocr" type="rss" xmlUrl="https://pypi.org/rss/project/pyocr/releases.xml" htmlUrl="https://pypi.org/project/pyocr/"/>
      <outline text="PyPI recent updates for pyopencl" type="rss" xmlUrl="https://pypi.org/rss/project/pyopencl/releases.xml" htmlUrl="https://pypi.org/project/pyopencl/"/>
      <outline text="PyPI recent updates for PyOpenGL" type="rss" xmlUrl="https://pypi.org/rss/project/PyOpenGL/releases.xml" htmlUrl="https://pypi.org/project/PyOpenGL/"/>
      <outline text="PyPI recent updates for PyOpenGL-accelerate" type="rss" xmlUrl="https://pypi.org/rss/project/PyOpenGL-accelerate/releases.xml" htmlUrl="https://pypi.org/project/PyOpenGL-accelerate/"/>
      <outline text="PyPI recent updates for pyOpenSSL" type="rss" xmlUrl="https://pypi.org/rss/project/pyOpenSSL/releases.xml" htmlUrl="https://pypi.org/project/pyOpenSSL/"/>
      <outline text="PyPI recent updates for pyotp" type="rss" xmlUrl="https://pypi.org/rss/project/pyotp/releases.xml" htmlUrl="https://pypi.org/project/pyotp/"/>
      <outline text="PyPI recent updates for pyparsing" type="rss" xmlUrl="https://pypi.org/rss/project/pyparsing/releases.xml" htmlUrl="https://pypi.org/project/pyparsing/"/>
      <outline text="PyPI recent updates for pyparted" type="rss" xmlUrl="https://pypi.org/rss/project/pyparted/releases.xml" htmlUrl="https://pypi.org/project/pyparted/"/>
      <outline text="PyPI recent updates for pypdf" type="rss" xmlUrl="https://pypi.org/rss/project/pypdf/releases.xml" htmlUrl="https://pypi.org/project/pypdf/"/>
      <outline text="PyPI recent updates for pyperclip" type="rss" xmlUrl="https://pypi.org/rss/project/pyperclip/releases.xml" htmlUrl="https://pypi.org/project/pyperclip/"/>
      <outline text="PyPI recent updates for pyphen" type="rss" xmlUrl="https://pypi.org/rss/project/pyphen/releases.xml" htmlUrl="https://pypi.org/project/pyphen/"/>
      <outline text="PyPI recent updates for pypillowfight" type="rss" xmlUrl="https://pypi.org/rss/project/pypillowfight/releases.xml" htmlUrl="https://pypi.org/project/pypillowfight/"/>
      <outline text="PyPI recent updates for pypiserver" type="rss" xmlUrl="https://pypi.org/rss/project/pypiserver/releases.xml" htmlUrl="https://pypi.org/project/pypiserver/"/>
      <outline text="PyPI recent updates for pypng" type="rss" xmlUrl="https://pypi.org/rss/project/pypng/releases.xml" htmlUrl="https://pypi.org/project/pypng/"/>
      <outline text="PyPI recent updates for pypresence" type="rss" xmlUrl="https://pypi.org/rss/project/pypresence/releases.xml" htmlUrl="https://pypi.org/project/pypresence/"/>
      <outline text="PyPI recent updates for pyprof2calltree" type="rss" xmlUrl="https://pypi.org/rss/project/pyprof2calltree/releases.xml" htmlUrl="https://pypi.org/project/pyprof2calltree/"/>
      <outline text="PyPI recent updates for pyproj" type="rss" xmlUrl="https://pypi.org/rss/project/pyproj/releases.xml" htmlUrl="https://pypi.org/project/pyproj/"/>
      <outline text="PyPI recent updates for pyproject-api" type="rss" xmlUrl="https://pypi.org/rss/project/pyproject-api/releases.xml" htmlUrl="https://pypi.org/project/pyproject-api/"/>
      <outline text="PyPI recent updates for pyproject-fmt" type="rss" xmlUrl="https://pypi.org/rss/project/pyproject-fmt/releases.xml" htmlUrl="https://pypi.org/project/pyproject-fmt/"/>
      <outline text="PyPI recent updates for pyproject-fmt-rust" type="rss" xmlUrl="https://pypi.org/rss/project/pyproject-fmt-rust/releases.xml" htmlUrl="https://pypi.org/project/pyproject-fmt-rust/"/>
      <outline text="PyPI recent updates for pyproject-hooks" type="rss" xmlUrl="https://pypi.org/rss/project/pyproject-hooks/releases.xml" htmlUrl="https://pypi.org/project/pyproject-hooks/"/>
      <outline text="PyPI recent updates for pyproject-metadata" type="rss" xmlUrl="https://pypi.org/rss/project/pyproject-metadata/releases.xml" htmlUrl="https://pypi.org/project/pyproject-metadata/"/>
      <outline text="PyPI recent updates for pypugjs" type="rss" xmlUrl="https://pypi.org/rss/project/pypugjs/releases.xml" htmlUrl="https://pypi.org/project/pypugjs/"/>
      <outline text="PyPI recent updates for PyQt5" type="rss" xmlUrl="https://pypi.org/rss/project/PyQt5/releases.xml" htmlUrl="https://pypi.org/project/PyQt5/"/>
      <outline text="PyPI recent updates for PyQt5-sip" type="rss" xmlUrl="https://pypi.org/rss/project/PyQt5-sip/releases.xml" htmlUrl="https://pypi.org/project/PyQt5-sip/"/>
      <outline text="PyPI recent updates for PyQt6" type="rss" xmlUrl="https://pypi.org/rss/project/PyQt6/releases.xml" htmlUrl="https://pypi.org/project/PyQt6/"/>
      <outline text="PyPI recent updates for PyQt6-sip" type="rss" xmlUrl="https://pypi.org/rss/project/PyQt6-sip/releases.xml" htmlUrl="https://pypi.org/project/PyQt6-sip/"/>
      <outline text="PyPI recent updates for PyQt6-WebEngine" type="rss" xmlUrl="https://pypi.org/rss/project/PyQt6-WebEngine/releases.xml" htmlUrl="https://pypi.org/project/PyQt6-WebEngine/"/>
      <outline text="PyPI recent updates for PyQt-builder" type="rss" xmlUrl="https://pypi.org/rss/project/PyQt-builder/releases.xml" htmlUrl="https://pypi.org/project/PyQt-builder/"/>
      <outline text="PyPI recent updates for pyqtgraph" type="rss" xmlUrl="https://pypi.org/rss/project/pyqtgraph/releases.xml" htmlUrl="https://pypi.org/project/pyqtgraph/"/>
      <outline text="PyPI recent updates for PyQtWebEngine" type="rss" xmlUrl="https://pypi.org/rss/project/PyQtWebEngine/releases.xml" htmlUrl="https://pypi.org/project/PyQtWebEngine/"/>
      <outline text="PyPI recent updates for pyquery" type="rss" xmlUrl="https://pypi.org/rss/project/pyquery/releases.xml" htmlUrl="https://pypi.org/project/pyquery/"/>
      <outline text="PyPI recent updates for pyrate-limiter" type="rss" xmlUrl="https://pypi.org/rss/project/pyrate-limiter/releases.xml" htmlUrl="https://pypi.org/project/pyrate-limiter/"/>
      <outline text="PyPI recent updates for pyRFC3339" type="rss" xmlUrl="https://pypi.org/rss/project/pyRFC3339/releases.xml" htmlUrl="https://pypi.org/project/pyRFC3339/"/>
      <outline text="PyPI recent updates for Pyro5" type="rss" xmlUrl="https://pypi.org/rss/project/Pyro5/releases.xml" htmlUrl="https://pypi.org/project/Pyro5/"/>
      <outline text="PyPI recent updates for pyroute2" type="rss" xmlUrl="https://pypi.org/rss/project/pyroute2/releases.xml" htmlUrl="https://pypi.org/project/pyroute2/"/>
      <outline text="PyPI recent updates for pyrqlite" type="rss" xmlUrl="https://pypi.org/rss/project/pyrqlite/releases.xml" htmlUrl="https://pypi.org/project/pyrqlite/"/>
      <outline text="PyPI recent updates for pyrsistent" type="rss" xmlUrl="https://pypi.org/rss/project/pyrsistent/releases.xml" htmlUrl="https://pypi.org/project/pyrsistent/"/>
      <outline text="PyPI recent updates for PyRSS2Gen" type="rss" xmlUrl="https://pypi.org/rss/project/PyRSS2Gen/releases.xml" htmlUrl="https://pypi.org/project/PyRSS2Gen/"/>
      <outline text="PyPI recent updates for pyscard" type="rss" xmlUrl="https://pypi.org/rss/project/pyscard/releases.xml" htmlUrl="https://pypi.org/project/pyscard/"/>
      <outline text="PyPI recent updates for pyscreenshot" type="rss" xmlUrl="https://pypi.org/rss/project/pyscreenshot/releases.xml" htmlUrl="https://pypi.org/project/pyscreenshot/"/>
      <outline text="PyPI recent updates for PySDL2" type="rss" xmlUrl="https://pypi.org/rss/project/PySDL2/releases.xml" htmlUrl="https://pypi.org/project/PySDL2/"/>
      <outline text="PyPI recent updates for pyserial" type="rss" xmlUrl="https://pypi.org/rss/project/pyserial/releases.xml" htmlUrl="https://pypi.org/project/pyserial/"/>
      <outline text="PyPI recent updates for PySide2" type="rss" xmlUrl="https://pypi.org/rss/project/PySide2/releases.xml" htmlUrl="https://pypi.org/project/PySide2/"/>
      <outline text="PyPI recent updates for PySide6" type="rss" xmlUrl="https://pypi.org/rss/project/PySide6/releases.xml" htmlUrl="https://pypi.org/project/PySide6/"/>
      <outline text="PyPI recent updates for pysimdjson" type="rss" xmlUrl="https://pypi.org/rss/project/pysimdjson/releases.xml" htmlUrl="https://pypi.org/project/pysimdjson/"/>
      <outline text="PyPI recent updates for pysmi" type="rss" xmlUrl="https://pypi.org/rss/project/pysmi/releases.xml" htmlUrl="https://pypi.org/project/pysmi/"/>
      <outline text="PyPI recent updates for pysnmp" type="rss" xmlUrl="https://pypi.org/rss/project/pysnmp/releases.xml" htmlUrl="https://pypi.org/project/pysnmp/"/>
      <outline text="PyPI recent updates for pysnmp-mibs" type="rss" xmlUrl="https://pypi.org/rss/project/pysnmp-mibs/releases.xml" htmlUrl="https://pypi.org/project/pysnmp-mibs/"/>
      <outline text="PyPI recent updates for PySocks" type="rss" xmlUrl="https://pypi.org/rss/project/PySocks/releases.xml" htmlUrl="https://pypi.org/project/PySocks/"/>
      <outline text="PyPI recent updates for pysol-cards" type="rss" xmlUrl="https://pypi.org/rss/project/pysol-cards/releases.xml" htmlUrl="https://pypi.org/project/pysol-cards/"/>
      <outline text="PyPI recent updates for pyspectrum2" type="rss" xmlUrl="https://pypi.org/rss/project/pyspectrum2/releases.xml" htmlUrl="https://pypi.org/project/pyspectrum2/"/>
      <outline text="PyPI recent updates for pyspelling" type="rss" xmlUrl="https://pypi.org/rss/project/pyspelling/releases.xml" htmlUrl="https://pypi.org/project/pyspelling/"/>
      <outline text="PyPI recent updates for pyspf" type="rss" xmlUrl="https://pypi.org/rss/project/pyspf/releases.xml" htmlUrl="https://pypi.org/project/pyspf/"/>
      <outline text="PyPI recent updates for pyspnego" type="rss" xmlUrl="https://pypi.org/rss/project/pyspnego/releases.xml" htmlUrl="https://pypi.org/project/pyspnego/"/>
      <outline text="PyPI recent updates for pysrt" type="rss" xmlUrl="https://pypi.org/rss/project/pysrt/releases.xml" htmlUrl="https://pypi.org/project/pysrt/"/>
      <outline text="PyPI recent updates for pystache" type="rss" xmlUrl="https://pypi.org/rss/project/pystache/releases.xml" htmlUrl="https://pypi.org/project/pystache/"/>
      <outline text="PyPI recent updates for pysvg-py3" type="rss" xmlUrl="https://pypi.org/rss/project/pysvg-py3/releases.xml" htmlUrl="https://pypi.org/project/pysvg-py3/"/>
      <outline text="PyPI recent updates for pyte" type="rss" xmlUrl="https://pypi.org/rss/project/pyte/releases.xml" htmlUrl="https://pypi.org/project/pyte/"/>
      <outline text="PyPI recent updates for pytesseract" type="rss" xmlUrl="https://pypi.org/rss/project/pytesseract/releases.xml" htmlUrl="https://pypi.org/project/pytesseract/"/>
      <outline text="PyPI recent updates for pytest" type="rss" xmlUrl="https://pypi.org/rss/project/pytest/releases.xml" htmlUrl="https://pypi.org/project/pytest/"/>
      <outline text="PyPI recent updates for pytest-aiohttp" type="rss" xmlUrl="https://pypi.org/rss/project/pytest-aiohttp/releases.xml" htmlUrl="https://pypi.org/project/pytest-aiohttp/"/>
      <outline text="PyPI recent updates for pytest-asyncio" type="rss" xmlUrl="https://pypi.org/rss/project/pytest-asyncio/releases.xml" htmlUrl="https://pypi.org/project/pytest-asyncio/"/>
      <outline text="PyPI recent updates for pytest-bdd" type="rss" xmlUrl="https://pypi.org/rss/project/pytest-bdd/releases.xml" htmlUrl="https://pypi.org/project/pytest-bdd/"/>
      <outline text="PyPI recent updates for pytest-check" type="rss" xmlUrl="https://pypi.org/rss/project/pytest-check/releases.xml" htmlUrl="https://pypi.org/project/pytest-check/"/>
      <outline text="PyPI recent updates for pytest_codeblocks" type="rss" xmlUrl="https://pypi.org/rss/project/pytest_codeblocks/releases.xml" htmlUrl="https://pypi.org/project/pytest_codeblocks/"/>
      <outline text="PyPI recent updates for pytest-console-scripts" type="rss" xmlUrl="https://pypi.org/rss/project/pytest-console-scripts/releases.xml" htmlUrl="https://pypi.org/project/pytest-console-scripts/"/>
      <outline text="PyPI recent updates for pytest-cov" type="rss" xmlUrl="https://pypi.org/rss/project/pytest-cov/releases.xml" htmlUrl="https://pypi.org/project/pytest-cov/"/>
      <outline text="PyPI recent updates for pytest-custom-exit-code" type="rss" xmlUrl="https://pypi.org/rss/project/pytest-custom-exit-code/releases.xml" htmlUrl="https://pypi.org/project/pytest-custom-exit-code/"/>
      <outline text="PyPI recent updates for pytest-datadir" type="rss" xmlUrl="https://pypi.org/rss/project/pytest-datadir/releases.xml" htmlUrl="https://pypi.org/project/pytest-datadir/"/>
      <outline text="PyPI recent updates for pytest-datafiles" type="rss" xmlUrl="https://pypi.org/rss/project/pytest-datafiles/releases.xml" htmlUrl="https://pypi.org/project/pytest-datafiles/"/>
      <outline text="PyPI recent updates for pytest-describe" type="rss" xmlUrl="https://pypi.org/rss/project/pytest-describe/releases.xml" htmlUrl="https://pypi.org/project/pytest-describe/"/>
      <outline text="PyPI recent updates for pytest-django" type="rss" xmlUrl="https://pypi.org/rss/project/pytest-django/releases.xml" htmlUrl="https://pypi.org/project/pytest-django/"/>
      <outline text="PyPI recent updates for pytest-env" type="rss" xmlUrl="https://pypi.org/rss/project/pytest-env/releases.xml" htmlUrl="https://pypi.org/project/pytest-env/"/>
      <outline text="PyPI recent updates for pytest-expect" type="rss" xmlUrl="https://pypi.org/rss/project/pytest-expect/releases.xml" htmlUrl="https://pypi.org/project/pytest-expect/"/>
      <outline text="PyPI recent updates for pytest-forked" type="rss" xmlUrl="https://pypi.org/rss/project/pytest-forked/releases.xml" htmlUrl="https://pypi.org/project/pytest-forked/"/>
      <outline text="PyPI recent updates for pytest-freezegun" type="rss" xmlUrl="https://pypi.org/rss/project/pytest-freezegun/releases.xml" htmlUrl="https://pypi.org/project/pytest-freezegun/"/>
      <outline text="PyPI recent updates for pytest-freezer" type="rss" xmlUrl="https://pypi.org/rss/project/pytest-freezer/releases.xml" htmlUrl="https://pypi.org/project/pytest-freezer/"/>
      <outline text="PyPI recent updates for pytest-golden" type="rss" xmlUrl="https://pypi.org/rss/project/pytest-golden/releases.xml" htmlUrl="https://pypi.org/project/pytest-golden/"/>
      <outline text="PyPI recent updates for pytest-helpers-namespace" type="rss" xmlUrl="https://pypi.org/rss/project/pytest-helpers-namespace/releases.xml" htmlUrl="https://pypi.org/project/pytest-helpers-namespace/"/>
      <outline text="PyPI recent updates for pytest-home" type="rss" xmlUrl="https://pypi.org/rss/project/pytest-home/releases.xml" htmlUrl="https://pypi.org/project/pytest-home/"/>
      <outline text="PyPI recent updates for pytest-httpbin" type="rss" xmlUrl="https://pypi.org/rss/project/pytest-httpbin/releases.xml" htmlUrl="https://pypi.org/project/pytest-httpbin/"/>
      <outline text="PyPI recent updates for pytest_httpserver" type="rss" xmlUrl="https://pypi.org/rss/project/pytest_httpserver/releases.xml" htmlUrl="https://pypi.org/project/pytest_httpserver/"/>
      <outline text="PyPI recent updates for pytest-httpx" type="rss" xmlUrl="https://pypi.org/rss/project/pytest-httpx/releases.xml" htmlUrl="https://pypi.org/project/pytest-httpx/"/>
      <outline text="PyPI recent updates for pytest-jupyter" type="rss" xmlUrl="https://pypi.org/rss/project/pytest-jupyter/releases.xml" htmlUrl="https://pypi.org/project/pytest-jupyter/"/>
      <outline text="PyPI recent updates for pytest-lazy-fixture" type="rss" xmlUrl="https://pypi.org/rss/project/pytest-lazy-fixture/releases.xml" htmlUrl="https://pypi.org/project/pytest-lazy-fixture/"/>
      <outline text="PyPI recent updates for pytest-lazy-fixtures" type="rss" xmlUrl="https://pypi.org/rss/project/pytest-lazy-fixtures/releases.xml" htmlUrl="https://pypi.org/project/pytest-lazy-fixtures/"/>
      <outline text="PyPI recent updates for pytest-localftpserver" type="rss" xmlUrl="https://pypi.org/rss/project/pytest-localftpserver/releases.xml" htmlUrl="https://pypi.org/project/pytest-localftpserver/"/>
      <outline text="PyPI recent updates for pytest-localserver" type="rss" xmlUrl="https://pypi.org/rss/project/pytest-localserver/releases.xml" htmlUrl="https://pypi.org/project/pytest-localserver/"/>
      <outline text="PyPI recent updates for pytest-markdown" type="rss" xmlUrl="https://pypi.org/rss/project/pytest-markdown/releases.xml" htmlUrl="https://pypi.org/project/pytest-markdown/"/>
      <outline text="PyPI recent updates for pytest-metadata" type="rss" xmlUrl="https://pypi.org/rss/project/pytest-metadata/releases.xml" htmlUrl="https://pypi.org/project/pytest-metadata/"/>
      <outline text="PyPI recent updates for pytest-mock" type="rss" xmlUrl="https://pypi.org/rss/project/pytest-mock/releases.xml" htmlUrl="https://pypi.org/project/pytest-mock/"/>
      <outline text="PyPI recent updates for pytest-mpl" type="rss" xmlUrl="https://pypi.org/rss/project/pytest-mpl/releases.xml" htmlUrl="https://pypi.org/project/pytest-mpl/"/>
      <outline text="PyPI recent updates for pytest-order" type="rss" xmlUrl="https://pypi.org/rss/project/pytest-order/releases.xml" htmlUrl="https://pypi.org/project/pytest-order/"/>
      <outline text="PyPI recent updates for pytest-ordering" type="rss" xmlUrl="https://pypi.org/rss/project/pytest-ordering/releases.xml" htmlUrl="https://pypi.org/project/pytest-ordering/"/>
      <outline text="PyPI recent updates for pytest_param_files" type="rss" xmlUrl="https://pypi.org/rss/project/pytest_param_files/releases.xml" htmlUrl="https://pypi.org/project/pytest_param_files/"/>
      <outline text="PyPI recent updates for pytest-plus" type="rss" xmlUrl="https://pypi.org/rss/project/pytest-plus/releases.xml" htmlUrl="https://pypi.org/project/pytest-plus/"/>
      <outline text="PyPI recent updates for pytest-qt" type="rss" xmlUrl="https://pypi.org/rss/project/pytest-qt/releases.xml" htmlUrl="https://pypi.org/project/pytest-qt/"/>
      <outline text="PyPI recent updates for pytest-recording" type="rss" xmlUrl="https://pypi.org/rss/project/pytest-recording/releases.xml" htmlUrl="https://pypi.org/project/pytest-recording/"/>
      <outline text="PyPI recent updates for pytest-regressions" type="rss" xmlUrl="https://pypi.org/rss/project/pytest-regressions/releases.xml" htmlUrl="https://pypi.org/project/pytest-regressions/"/>
      <outline text="PyPI recent updates for pytest-repeat" type="rss" xmlUrl="https://pypi.org/rss/project/pytest-repeat/releases.xml" htmlUrl="https://pypi.org/project/pytest-repeat/"/>
      <outline text="PyPI recent updates for pytest-reraise" type="rss" xmlUrl="https://pypi.org/rss/project/pytest-reraise/releases.xml" htmlUrl="https://pypi.org/project/pytest-reraise/"/>
      <outline text="PyPI recent updates for pytest-rerunfailures" type="rss" xmlUrl="https://pypi.org/rss/project/pytest-rerunfailures/releases.xml" htmlUrl="https://pypi.org/project/pytest-rerunfailures/"/>
      <outline text="PyPI recent updates for pytest-reserial" type="rss" xmlUrl="https://pypi.org/rss/project/pytest-reserial/releases.xml" htmlUrl="https://pypi.org/project/pytest-reserial/"/>
      <outline text="PyPI recent updates for pytest-salt-factories" type="rss" xmlUrl="https://pypi.org/rss/project/pytest-salt-factories/releases.xml" htmlUrl="https://pypi.org/project/pytest-salt-factories/"/>
      <outline text="PyPI recent updates for pytest-services" type="rss" xmlUrl="https://pypi.org/rss/project/pytest-services/releases.xml" htmlUrl="https://pypi.org/project/pytest-services/"/>
      <outline text="PyPI recent updates for pytest-shell-utilities" type="rss" xmlUrl="https://pypi.org/rss/project/pytest-shell-utilities/releases.xml" htmlUrl="https://pypi.org/project/pytest-shell-utilities/"/>
      <outline text="PyPI recent updates for pytest-skip-markers" type="rss" xmlUrl="https://pypi.org/rss/project/pytest-skip-markers/releases.xml" htmlUrl="https://pypi.org/project/pytest-skip-markers/"/>
      <outline text="PyPI recent updates for pytest-subprocess" type="rss" xmlUrl="https://pypi.org/rss/project/pytest-subprocess/releases.xml" htmlUrl="https://pypi.org/project/pytest-subprocess/"/>
      <outline text="PyPI recent updates for pytest-subtests" type="rss" xmlUrl="https://pypi.org/rss/project/pytest-subtests/releases.xml" htmlUrl="https://pypi.org/project/pytest-subtests/"/>
      <outline text="PyPI recent updates for pytest-sugar" type="rss" xmlUrl="https://pypi.org/rss/project/pytest-sugar/releases.xml" htmlUrl="https://pypi.org/project/pytest-sugar/"/>
      <outline text="PyPI recent updates for pytest-system-statistics" type="rss" xmlUrl="https://pypi.org/rss/project/pytest-system-statistics/releases.xml" htmlUrl="https://pypi.org/project/pytest-system-statistics/"/>
      <outline text="PyPI recent updates for pytest-tempdir" type="rss" xmlUrl="https://pypi.org/rss/project/pytest-tempdir/releases.xml" htmlUrl="https://pypi.org/project/pytest-tempdir/"/>
      <outline text="PyPI recent updates for pytest-testinfra" type="rss" xmlUrl="https://pypi.org/rss/project/pytest-testinfra/releases.xml" htmlUrl="https://pypi.org/project/pytest-testinfra/"/>
      <outline text="PyPI recent updates for pytest-timeout" type="rss" xmlUrl="https://pypi.org/rss/project/pytest-timeout/releases.xml" htmlUrl="https://pypi.org/project/pytest-timeout/"/>
      <outline text="PyPI recent updates for pytest-tornado" type="rss" xmlUrl="https://pypi.org/rss/project/pytest-tornado/releases.xml" htmlUrl="https://pypi.org/project/pytest-tornado/"/>
      <outline text="PyPI recent updates for pytest-tornasync" type="rss" xmlUrl="https://pypi.org/rss/project/pytest-tornasync/releases.xml" htmlUrl="https://pypi.org/project/pytest-tornasync/"/>
      <outline text="PyPI recent updates for pytest-trio" type="rss" xmlUrl="https://pypi.org/rss/project/pytest-trio/releases.xml" htmlUrl="https://pypi.org/project/pytest-trio/"/>
      <outline text="PyPI recent updates for pytest-twisted" type="rss" xmlUrl="https://pypi.org/rss/project/pytest-twisted/releases.xml" htmlUrl="https://pypi.org/project/pytest-twisted/"/>
      <outline text="PyPI recent updates for pytest-xdist" type="rss" xmlUrl="https://pypi.org/rss/project/pytest-xdist/releases.xml" htmlUrl="https://pypi.org/project/pytest-xdist/"/>
      <outline text="PyPI recent updates for pytest-xprocess" type="rss" xmlUrl="https://pypi.org/rss/project/pytest-xprocess/releases.xml" htmlUrl="https://pypi.org/project/pytest-xprocess/"/>
      <outline text="PyPI recent updates for pytest-xvfb" type="rss" xmlUrl="https://pypi.org/rss/project/pytest-xvfb/releases.xml" htmlUrl="https://pypi.org/project/pytest-xvfb/"/>
      <outline text="PyPI recent updates for python3-discogs-client" type="rss" xmlUrl="https://pypi.org/rss/project/python3-discogs-client/releases.xml" htmlUrl="https://pypi.org/project/python3-discogs-client/"/>
      <outline text="PyPI recent updates for python3-saml" type="rss" xmlUrl="https://pypi.org/rss/project/python3-saml/releases.xml" htmlUrl="https://pypi.org/project/python3-saml/"/>
      <outline text="PyPI recent updates for python-augeas" type="rss" xmlUrl="https://pypi.org/rss/project/python-augeas/releases.xml" htmlUrl="https://pypi.org/project/python-augeas/"/>
      <outline text="PyPI recent updates for python-axolotl" type="rss" xmlUrl="https://pypi.org/rss/project/python-axolotl/releases.xml" htmlUrl="https://pypi.org/project/python-axolotl/"/>
      <outline text="PyPI recent updates for python-axolotl-curve25519" type="rss" xmlUrl="https://pypi.org/rss/project/python-axolotl-curve25519/releases.xml" htmlUrl="https://pypi.org/project/python-axolotl-curve25519/"/>
      <outline text="PyPI recent updates for python-box" type="rss" xmlUrl="https://pypi.org/rss/project/python-box/releases.xml" htmlUrl="https://pypi.org/project/python-box/"/>
      <outline text="PyPI recent updates for python-bugzilla" type="rss" xmlUrl="https://pypi.org/rss/project/python-bugzilla/releases.xml" htmlUrl="https://pypi.org/project/python-bugzilla/"/>
      <outline text="PyPI recent updates for python-cinderclient" type="rss" xmlUrl="https://pypi.org/rss/project/python-cinderclient/releases.xml" htmlUrl="https://pypi.org/project/python-cinderclient/"/>
      <outline text="PyPI recent updates for python-constraint" type="rss" xmlUrl="https://pypi.org/rss/project/python-constraint/releases.xml" htmlUrl="https://pypi.org/project/python-constraint/"/>
      <outline text="PyPI recent updates for python-ctags3" type="rss" xmlUrl="https://pypi.org/rss/project/python-ctags3/releases.xml" htmlUrl="https://pypi.org/project/python-ctags3/"/>
      <outline text="PyPI recent updates for python-daemon" type="rss" xmlUrl="https://pypi.org/rss/project/python-daemon/releases.xml" htmlUrl="https://pypi.org/project/python-daemon/"/>
      <outline text="PyPI recent updates for python-dateutil" type="rss" xmlUrl="https://pypi.org/rss/project/python-dateutil/releases.xml" htmlUrl="https://pypi.org/project/python-dateutil/"/>
      <outline text="PyPI recent updates for python-dbusmock" type="rss" xmlUrl="https://pypi.org/rss/project/python-dbusmock/releases.xml" htmlUrl="https://pypi.org/project/python-dbusmock/"/>
      <outline text="PyPI recent updates for python-debian" type="rss" xmlUrl="https://pypi.org/rss/project/python-debian/releases.xml" htmlUrl="https://pypi.org/project/python-debian/"/>
      <outline text="PyPI recent updates for pythondialog" type="rss" xmlUrl="https://pypi.org/rss/project/pythondialog/releases.xml" htmlUrl="https://pypi.org/project/pythondialog/"/>
      <outline text="PyPI recent updates for python-dotenv" type="rss" xmlUrl="https://pypi.org/rss/project/python-dotenv/releases.xml" htmlUrl="https://pypi.org/project/python-dotenv/"/>
      <outline text="PyPI recent updates for python-editor" type="rss" xmlUrl="https://pypi.org/rss/project/python-editor/releases.xml" htmlUrl="https://pypi.org/project/python-editor/"/>
      <outline text="PyPI recent updates for python-engineio" type="rss" xmlUrl="https://pypi.org/rss/project/python-engineio/releases.xml" htmlUrl="https://pypi.org/project/python-engineio/"/>
      <outline text="PyPI recent updates for pythonfinder" type="rss" xmlUrl="https://pypi.org/rss/project/pythonfinder/releases.xml" htmlUrl="https://pypi.org/project/pythonfinder/"/>
      <outline text="PyPI recent updates for python-gammu" type="rss" xmlUrl="https://pypi.org/rss/project/python-gammu/releases.xml" htmlUrl="https://pypi.org/project/python-gammu/"/>
      <outline text="PyPI recent updates for python-gflags" type="rss" xmlUrl="https://pypi.org/rss/project/python-gflags/releases.xml" htmlUrl="https://pypi.org/project/python-gflags/"/>
      <outline text="PyPI recent updates for python-glanceclient" type="rss" xmlUrl="https://pypi.org/rss/project/python-glanceclient/releases.xml" htmlUrl="https://pypi.org/project/python-glanceclient/"/>
      <outline text="PyPI recent updates for python-gnupg" type="rss" xmlUrl="https://pypi.org/rss/project/python-gnupg/releases.xml" htmlUrl="https://pypi.org/project/python-gnupg/"/>
      <outline text="PyPI recent updates for python-ironicclient" type="rss" xmlUrl="https://pypi.org/rss/project/python-ironicclient/releases.xml" htmlUrl="https://pypi.org/project/python-ironicclient/"/>
      <outline text="PyPI recent updates for python-jose" type="rss" xmlUrl="https://pypi.org/rss/project/python-jose/releases.xml" htmlUrl="https://pypi.org/project/python-jose/"/>
      <outline text="PyPI recent updates for python-json-logger" type="rss" xmlUrl="https://pypi.org/rss/project/python-json-logger/releases.xml" htmlUrl="https://pypi.org/project/python-json-logger/"/>
      <outline text="PyPI recent updates for python-keystoneclient" type="rss" xmlUrl="https://pypi.org/rss/project/python-keystoneclient/releases.xml" htmlUrl="https://pypi.org/project/python-keystoneclient/"/>
      <outline text="PyPI recent updates for python-ldap" type="rss" xmlUrl="https://pypi.org/rss/project/python-ldap/releases.xml" htmlUrl="https://pypi.org/project/python-ldap/"/>
      <outline text="PyPI recent updates for python-lsp-black" type="rss" xmlUrl="https://pypi.org/rss/project/python-lsp-black/releases.xml" htmlUrl="https://pypi.org/project/python-lsp-black/"/>
      <outline text="PyPI recent updates for python-lsp-jsonrpc" type="rss" xmlUrl="https://pypi.org/rss/project/python-lsp-jsonrpc/releases.xml" htmlUrl="https://pypi.org/project/python-lsp-jsonrpc/"/>
      <outline text="PyPI recent updates for python-lsp-server" type="rss" xmlUrl="https://pypi.org/rss/project/python-lsp-server/releases.xml" htmlUrl="https://pypi.org/project/python-lsp-server/"/>
      <outline text="PyPI recent updates for python-ly" type="rss" xmlUrl="https://pypi.org/rss/project/python-ly/releases.xml" htmlUrl="https://pypi.org/project/python-ly/"/>
      <outline text="PyPI recent updates for python-lzo" type="rss" xmlUrl="https://pypi.org/rss/project/python-lzo/releases.xml" htmlUrl="https://pypi.org/project/python-lzo/"/>
      <outline text="PyPI recent updates for python-magic" type="rss" xmlUrl="https://pypi.org/rss/project/python-magic/releases.xml" htmlUrl="https://pypi.org/project/python-magic/"/>
      <outline text="PyPI recent updates for python-markdown-math" type="rss" xmlUrl="https://pypi.org/rss/project/python-markdown-math/releases.xml" htmlUrl="https://pypi.org/project/python-markdown-math/"/>
      <outline text="PyPI recent updates for python-memcached" type="rss" xmlUrl="https://pypi.org/rss/project/python-memcached/releases.xml" htmlUrl="https://pypi.org/project/python-memcached/"/>
      <outline text="PyPI recent updates for python-mimeparse" type="rss" xmlUrl="https://pypi.org/rss/project/python-mimeparse/releases.xml" htmlUrl="https://pypi.org/project/python-mimeparse/"/>
      <outline text="PyPI recent updates for python-mpd2" type="rss" xmlUrl="https://pypi.org/rss/project/python-mpd2/releases.xml" htmlUrl="https://pypi.org/project/python-mpd2/"/>
      <outline text="PyPI recent updates for python-mpv" type="rss" xmlUrl="https://pypi.org/rss/project/python-mpv/releases.xml" htmlUrl="https://pypi.org/project/python-mpv/"/>
      <outline text="PyPI recent updates for python-multipart" type="rss" xmlUrl="https://pypi.org/rss/project/python-multipart/releases.xml" htmlUrl="https://pypi.org/project/python-multipart/"/>
      <outline text="PyPI recent updates for pythonnet" type="rss" xmlUrl="https://pypi.org/rss/project/pythonnet/releases.xml" htmlUrl="https://pypi.org/project/pythonnet/"/>
      <outline text="PyPI recent updates for python-neutronclient" type="rss" xmlUrl="https://pypi.org/rss/project/python-neutronclient/releases.xml" htmlUrl="https://pypi.org/project/python-neutronclient/"/>
      <outline text="PyPI recent updates for python-novaclient" type="rss" xmlUrl="https://pypi.org/rss/project/python-novaclient/releases.xml" htmlUrl="https://pypi.org/project/python-novaclient/"/>
      <outline text="PyPI recent updates for python-openstackclient" type="rss" xmlUrl="https://pypi.org/rss/project/python-openstackclient/releases.xml" htmlUrl="https://pypi.org/project/python-openstackclient/"/>
      <outline text="PyPI recent updates for python-pam" type="rss" xmlUrl="https://pypi.org/rss/project/python-pam/releases.xml" htmlUrl="https://pypi.org/project/python-pam/"/>
      <outline text="PyPI recent updates for python-poppler-qt5" type="rss" xmlUrl="https://pypi.org/rss/project/python-poppler-qt5/releases.xml" htmlUrl="https://pypi.org/project/python-poppler-qt5/"/>
      <outline text="PyPI recent updates for python-ptrace" type="rss" xmlUrl="https://pypi.org/rss/project/python-ptrace/releases.xml" htmlUrl="https://pypi.org/project/python-ptrace/"/>
      <outline text="PyPI recent updates for python-redmine" type="rss" xmlUrl="https://pypi.org/rss/project/python-redmine/releases.xml" htmlUrl="https://pypi.org/project/python-redmine/"/>
      <outline text="PyPI recent updates for python-rtmidi" type="rss" xmlUrl="https://pypi.org/rss/project/python-rtmidi/releases.xml" htmlUrl="https://pypi.org/project/python-rtmidi/"/>
      <outline text="PyPI recent updates for python-slugify" type="rss" xmlUrl="https://pypi.org/rss/project/python-slugify/releases.xml" htmlUrl="https://pypi.org/project/python-slugify/"/>
      <outline text="PyPI recent updates for python-snappy" type="rss" xmlUrl="https://pypi.org/rss/project/python-snappy/releases.xml" htmlUrl="https://pypi.org/project/python-snappy/"/>
      <outline text="PyPI recent updates for python-socks" type="rss" xmlUrl="https://pypi.org/rss/project/python-socks/releases.xml" htmlUrl="https://pypi.org/project/python-socks/"/>
      <outline text="PyPI recent updates for python-stdnum" type="rss" xmlUrl="https://pypi.org/rss/project/python-stdnum/releases.xml" htmlUrl="https://pypi.org/project/python-stdnum/"/>
      <outline text="PyPI recent updates for python-subunit" type="rss" xmlUrl="https://pypi.org/rss/project/python-subunit/releases.xml" htmlUrl="https://pypi.org/project/python-subunit/"/>
      <outline text="PyPI recent updates for python-swiftclient" type="rss" xmlUrl="https://pypi.org/rss/project/python-swiftclient/releases.xml" htmlUrl="https://pypi.org/project/python-swiftclient/"/>
      <outline text="PyPI recent updates for python-systemd" type="rss" xmlUrl="https://pypi.org/rss/project/python-systemd/releases.xml" htmlUrl="https://pypi.org/project/python-systemd/"/>
      <outline text="PyPI recent updates for python-tlsh" type="rss" xmlUrl="https://pypi.org/rss/project/python-tlsh/releases.xml" htmlUrl="https://pypi.org/project/python-tlsh/"/>
      <outline text="PyPI recent updates for python-utils" type="rss" xmlUrl="https://pypi.org/rss/project/python-utils/releases.xml" htmlUrl="https://pypi.org/project/python-utils/"/>
      <outline text="PyPI recent updates for python-vlc" type="rss" xmlUrl="https://pypi.org/rss/project/python-vlc/releases.xml" htmlUrl="https://pypi.org/project/python-vlc/"/>
      <outline text="PyPI recent updates for python-xlib" type="rss" xmlUrl="https://pypi.org/rss/project/python-xlib/releases.xml" htmlUrl="https://pypi.org/project/python-xlib/"/>
      <outline text="PyPI recent updates for python-xmp-toolkit" type="rss" xmlUrl="https://pypi.org/rss/project/python-xmp-toolkit/releases.xml" htmlUrl="https://pypi.org/project/python-xmp-toolkit/"/>
      <outline text="PyPI recent updates for pythran" type="rss" xmlUrl="https://pypi.org/rss/project/pythran/releases.xml" htmlUrl="https://pypi.org/project/pythran/"/>
      <outline text="PyPI recent updates for pytidylib" type="rss" xmlUrl="https://pypi.org/rss/project/pytidylib/releases.xml" htmlUrl="https://pypi.org/project/pytidylib/"/>
      <outline text="PyPI recent updates for pytimeparse" type="rss" xmlUrl="https://pypi.org/rss/project/pytimeparse/releases.xml" htmlUrl="https://pypi.org/project/pytimeparse/"/>
      <outline text="PyPI recent updates for pytoolconfig" type="rss" xmlUrl="https://pypi.org/rss/project/pytoolconfig/releases.xml" htmlUrl="https://pypi.org/project/pytoolconfig/"/>
      <outline text="PyPI recent updates for pytools" type="rss" xmlUrl="https://pypi.org/rss/project/pytools/releases.xml" htmlUrl="https://pypi.org/project/pytools/"/>
      <outline text="PyPI recent updates for PyTrie" type="rss" xmlUrl="https://pypi.org/rss/project/PyTrie/releases.xml" htmlUrl="https://pypi.org/project/PyTrie/"/>
      <outline text="PyPI recent updates for pytz" type="rss" xmlUrl="https://pypi.org/rss/project/pytz/releases.xml" htmlUrl="https://pypi.org/project/pytz/"/>
      <outline text="PyPI recent updates for pytzdata" type="rss" xmlUrl="https://pypi.org/rss/project/pytzdata/releases.xml" htmlUrl="https://pypi.org/project/pytzdata/"/>
      <outline text="PyPI recent updates for pyu2f" type="rss" xmlUrl="https://pypi.org/rss/project/pyu2f/releases.xml" htmlUrl="https://pypi.org/project/pyu2f/"/>
      <outline text="PyPI recent updates for py-ubjson" type="rss" xmlUrl="https://pypi.org/rss/project/py-ubjson/releases.xml" htmlUrl="https://pypi.org/project/py-ubjson/"/>
      <outline text="PyPI recent updates for pyuca" type="rss" xmlUrl="https://pypi.org/rss/project/pyuca/releases.xml" htmlUrl="https://pypi.org/project/pyuca/"/>
      <outline text="PyPI recent updates for pyudev" type="rss" xmlUrl="https://pypi.org/rss/project/pyudev/releases.xml" htmlUrl="https://pypi.org/project/pyudev/"/>
      <outline text="PyPI recent updates for pyupgrade" type="rss" xmlUrl="https://pypi.org/rss/project/pyupgrade/releases.xml" htmlUrl="https://pypi.org/project/pyupgrade/"/>
      <outline text="PyPI recent updates for pyusb" type="rss" xmlUrl="https://pypi.org/rss/project/pyusb/releases.xml" htmlUrl="https://pypi.org/project/pyusb/"/>
      <outline text="PyPI recent updates for PyVirtualDisplay" type="rss" xmlUrl="https://pypi.org/rss/project/PyVirtualDisplay/releases.xml" htmlUrl="https://pypi.org/project/PyVirtualDisplay/"/>
      <outline text="PyPI recent updates for PyWavelets" type="rss" xmlUrl="https://pypi.org/rss/project/PyWavelets/releases.xml" htmlUrl="https://pypi.org/project/PyWavelets/"/>
      <outline text="PyPI recent updates for pywayland" type="rss" xmlUrl="https://pypi.org/rss/project/pywayland/releases.xml" htmlUrl="https://pypi.org/project/pywayland/"/>
      <outline text="PyPI recent updates for pywinrm" type="rss" xmlUrl="https://pypi.org/rss/project/pywinrm/releases.xml" htmlUrl="https://pypi.org/project/pywinrm/"/>
      <outline text="PyPI recent updates for pywlroots" type="rss" xmlUrl="https://pypi.org/rss/project/pywlroots/releases.xml" htmlUrl="https://pypi.org/project/pywlroots/"/>
      <outline text="PyPI recent updates for PyX" type="rss" xmlUrl="https://pypi.org/rss/project/PyX/releases.xml" htmlUrl="https://pypi.org/project/PyX/"/>
      <outline text="PyPI recent updates for pyxattr" type="rss" xmlUrl="https://pypi.org/rss/project/pyxattr/releases.xml" htmlUrl="https://pypi.org/project/pyxattr/"/>
      <outline text="PyPI recent updates for pyxDamerauLevenshtein" type="rss" xmlUrl="https://pypi.org/rss/project/pyxDamerauLevenshtein/releases.xml" htmlUrl="https://pypi.org/project/pyxDamerauLevenshtein/"/>
      <outline text="PyPI recent updates for pyxdg" type="rss" xmlUrl="https://pypi.org/rss/project/pyxdg/releases.xml" htmlUrl="https://pypi.org/project/pyxdg/"/>
      <outline text="PyPI recent updates for PyYAML" type="rss" xmlUrl="https://pypi.org/rss/project/PyYAML/releases.xml" htmlUrl="https://pypi.org/project/PyYAML/"/>
      <outline text="PyPI recent updates for pyyaml_env_tag" type="rss" xmlUrl="https://pypi.org/rss/project/pyyaml_env_tag/releases.xml" htmlUrl="https://pypi.org/project/pyyaml_env_tag/"/>
      <outline text="PyPI recent updates for py-zabbix" type="rss" xmlUrl="https://pypi.org/rss/project/py-zabbix/releases.xml" htmlUrl="https://pypi.org/project/py-zabbix/"/>
      <outline text="PyPI recent updates for pyzbar" type="rss" xmlUrl="https://pypi.org/rss/project/pyzbar/releases.xml" htmlUrl="https://pypi.org/project/pyzbar/"/>
      <outline text="PyPI recent updates for pyzmq" type="rss" xmlUrl="https://pypi.org/rss/project/pyzmq/releases.xml" htmlUrl="https://pypi.org/project/pyzmq/"/>
      <outline text="PyPI recent updates for pyzotero" type="rss" xmlUrl="https://pypi.org/rss/project/pyzotero/releases.xml" htmlUrl="https://pypi.org/project/pyzotero/"/>
      <outline text="PyPI recent updates for QDarkStyle" type="rss" xmlUrl="https://pypi.org/rss/project/QDarkStyle/releases.xml" htmlUrl="https://pypi.org/project/QDarkStyle/"/>
      <outline text="PyPI recent updates for qiskit" type="rss" xmlUrl="https://pypi.org/rss/project/qiskit/releases.xml" htmlUrl="https://pypi.org/project/qiskit/"/>
      <outline text="PyPI recent updates for qiskit-aer" type="rss" xmlUrl="https://pypi.org/rss/project/qiskit-aer/releases.xml" htmlUrl="https://pypi.org/project/qiskit-aer/"/>
      <outline text="PyPI recent updates for qpageview" type="rss" xmlUrl="https://pypi.org/rss/project/qpageview/releases.xml" htmlUrl="https://pypi.org/project/qpageview/"/>
      <outline text="PyPI recent updates for qrcode" type="rss" xmlUrl="https://pypi.org/rss/project/qrcode/releases.xml" htmlUrl="https://pypi.org/project/qrcode/"/>
      <outline text="PyPI recent updates for QScintilla" type="rss" xmlUrl="https://pypi.org/rss/project/QScintilla/releases.xml" htmlUrl="https://pypi.org/project/QScintilla/"/>
      <outline text="PyPI recent updates for qstylizer" type="rss" xmlUrl="https://pypi.org/rss/project/qstylizer/releases.xml" htmlUrl="https://pypi.org/project/qstylizer/"/>
      <outline text="PyPI recent updates for QtAwesome" type="rss" xmlUrl="https://pypi.org/rss/project/QtAwesome/releases.xml" htmlUrl="https://pypi.org/project/QtAwesome/"/>
      <outline text="PyPI recent updates for qtconsole" type="rss" xmlUrl="https://pypi.org/rss/project/qtconsole/releases.xml" htmlUrl="https://pypi.org/project/qtconsole/"/>
      <outline text="PyPI recent updates for QtPy" type="rss" xmlUrl="https://pypi.org/rss/project/QtPy/releases.xml" htmlUrl="https://pypi.org/project/QtPy/"/>
      <outline text="PyPI recent updates for qtsass" type="rss" xmlUrl="https://pypi.org/rss/project/qtsass/releases.xml" htmlUrl="https://pypi.org/project/qtsass/"/>
      <outline text="PyPI recent updates for quantities" type="rss" xmlUrl="https://pypi.org/rss/project/quantities/releases.xml" htmlUrl="https://pypi.org/project/quantities/"/>
      <outline text="PyPI recent updates for Quart" type="rss" xmlUrl="https://pypi.org/rss/project/Quart/releases.xml" htmlUrl="https://pypi.org/project/Quart/"/>
      <outline text="PyPI recent updates for quart-trio" type="rss" xmlUrl="https://pypi.org/rss/project/quart-trio/releases.xml" htmlUrl="https://pypi.org/project/quart-trio/"/>
      <outline text="PyPI recent updates for radon" type="rss" xmlUrl="https://pypi.org/rss/project/radon/releases.xml" htmlUrl="https://pypi.org/project/radon/"/>
      <outline text="PyPI recent updates for raet" type="rss" xmlUrl="https://pypi.org/rss/project/raet/releases.xml" htmlUrl="https://pypi.org/project/raet/"/>
      <outline text="PyPI recent updates for random2" type="rss" xmlUrl="https://pypi.org/rss/project/random2/releases.xml" htmlUrl="https://pypi.org/project/random2/"/>
      <outline text="PyPI recent updates for rapidfuzz" type="rss" xmlUrl="https://pypi.org/rss/project/rapidfuzz/releases.xml" htmlUrl="https://pypi.org/project/rapidfuzz/"/>
      <outline text="PyPI recent updates for rapidfuzz-capi" type="rss" xmlUrl="https://pypi.org/rss/project/rapidfuzz-capi/releases.xml" htmlUrl="https://pypi.org/project/rapidfuzz-capi/"/>
      <outline text="PyPI recent updates for rarfile" type="rss" xmlUrl="https://pypi.org/rss/project/rarfile/releases.xml" htmlUrl="https://pypi.org/project/rarfile/"/>
      <outline text="PyPI recent updates for ratelimit" type="rss" xmlUrl="https://pypi.org/rss/project/ratelimit/releases.xml" htmlUrl="https://pypi.org/project/ratelimit/"/>
      <outline text="PyPI recent updates for rdflib" type="rss" xmlUrl="https://pypi.org/rss/project/rdflib/releases.xml" htmlUrl="https://pypi.org/project/rdflib/"/>
      <outline text="PyPI recent updates for readme-renderer" type="rss" xmlUrl="https://pypi.org/rss/project/readme-renderer/releases.xml" htmlUrl="https://pypi.org/project/readme-renderer/"/>
      <outline text="PyPI recent updates for readthedocs-sphinx-ext" type="rss" xmlUrl="https://pypi.org/rss/project/readthedocs-sphinx-ext/releases.xml" htmlUrl="https://pypi.org/project/readthedocs-sphinx-ext/"/>
      <outline text="PyPI recent updates for readtime" type="rss" xmlUrl="https://pypi.org/rss/project/readtime/releases.xml" htmlUrl="https://pypi.org/project/readtime/"/>
      <outline text="PyPI recent updates for re-assert" type="rss" xmlUrl="https://pypi.org/rss/project/re-assert/releases.xml" htmlUrl="https://pypi.org/project/re-assert/"/>
      <outline text="PyPI recent updates for rebulk" type="rss" xmlUrl="https://pypi.org/rss/project/rebulk/releases.xml" htmlUrl="https://pypi.org/project/rebulk/"/>
      <outline text="PyPI recent updates for recommonmark" type="rss" xmlUrl="https://pypi.org/rss/project/recommonmark/releases.xml" htmlUrl="https://pypi.org/project/recommonmark/"/>
      <outline text="PyPI recent updates for recurring-ical-events" type="rss" xmlUrl="https://pypi.org/rss/project/recurring-ical-events/releases.xml" htmlUrl="https://pypi.org/project/recurring-ical-events/"/>
      <outline text="PyPI recent updates for redis" type="rss" xmlUrl="https://pypi.org/rss/project/redis/releases.xml" htmlUrl="https://pypi.org/project/redis/"/>
      <outline text="PyPI recent updates for reedsolo" type="rss" xmlUrl="https://pypi.org/rss/project/reedsolo/releases.xml" htmlUrl="https://pypi.org/project/reedsolo/"/>
      <outline text="PyPI recent updates for referencing" type="rss" xmlUrl="https://pypi.org/rss/project/referencing/releases.xml" htmlUrl="https://pypi.org/project/referencing/"/>
      <outline text="PyPI recent updates for reflink" type="rss" xmlUrl="https://pypi.org/rss/project/reflink/releases.xml" htmlUrl="https://pypi.org/project/reflink/"/>
      <outline text="PyPI recent updates for regex" type="rss" xmlUrl="https://pypi.org/rss/project/regex/releases.xml" htmlUrl="https://pypi.org/project/regex/"/>
      <outline text="PyPI recent updates for regress" type="rss" xmlUrl="https://pypi.org/rss/project/regress/releases.xml" htmlUrl="https://pypi.org/project/regress/"/>
      <outline text="PyPI recent updates for rencode" type="rss" xmlUrl="https://pypi.org/rss/project/rencode/releases.xml" htmlUrl="https://pypi.org/project/rencode/"/>
      <outline text="PyPI recent updates for reno" type="rss" xmlUrl="https://pypi.org/rss/project/reno/releases.xml" htmlUrl="https://pypi.org/project/reno/"/>
      <outline text="PyPI recent updates for reportlab" type="rss" xmlUrl="https://pypi.org/rss/project/reportlab/releases.xml" htmlUrl="https://pypi.org/project/reportlab/"/>
      <outline text="PyPI recent updates for repoze.lru" type="rss" xmlUrl="https://pypi.org/rss/project/repoze.lru/releases.xml" htmlUrl="https://pypi.org/project/repoze.lru/"/>
      <outline text="PyPI recent updates for requests" type="rss" xmlUrl="https://pypi.org/rss/project/requests/releases.xml" htmlUrl="https://pypi.org/project/requests/"/>
      <outline text="PyPI recent updates for requests-cache" type="rss" xmlUrl="https://pypi.org/rss/project/requests-cache/releases.xml" htmlUrl="https://pypi.org/project/requests-cache/"/>
      <outline text="PyPI recent updates for requests-credssp" type="rss" xmlUrl="https://pypi.org/rss/project/requests-credssp/releases.xml" htmlUrl="https://pypi.org/project/requests-credssp/"/>
      <outline text="PyPI recent updates for requests_download" type="rss" xmlUrl="https://pypi.org/rss/project/requests_download/releases.xml" htmlUrl="https://pypi.org/project/requests_download/"/>
      <outline text="PyPI recent updates for requestsexceptions" type="rss" xmlUrl="https://pypi.org/rss/project/requestsexceptions/releases.xml" htmlUrl="https://pypi.org/project/requestsexceptions/"/>
      <outline text="PyPI recent updates for requests-file" type="rss" xmlUrl="https://pypi.org/rss/project/requests-file/releases.xml" htmlUrl="https://pypi.org/project/requests-file/"/>
      <outline text="PyPI recent updates for requests-futures" type="rss" xmlUrl="https://pypi.org/rss/project/requests-futures/releases.xml" htmlUrl="https://pypi.org/project/requests-futures/"/>
      <outline text="PyPI recent updates for requests-kerberos" type="rss" xmlUrl="https://pypi.org/rss/project/requests-kerberos/releases.xml" htmlUrl="https://pypi.org/project/requests-kerberos/"/>
      <outline text="PyPI recent updates for requests-mock" type="rss" xmlUrl="https://pypi.org/rss/project/requests-mock/releases.xml" htmlUrl="https://pypi.org/project/requests-mock/"/>
      <outline text="PyPI recent updates for requests-ntlm" type="rss" xmlUrl="https://pypi.org/rss/project/requests-ntlm/releases.xml" htmlUrl="https://pypi.org/project/requests-ntlm/"/>
      <outline text="PyPI recent updates for requests-oauthlib" type="rss" xmlUrl="https://pypi.org/rss/project/requests-oauthlib/releases.xml" htmlUrl="https://pypi.org/project/requests-oauthlib/"/>
      <outline text="PyPI recent updates for requests-toolbelt" type="rss" xmlUrl="https://pypi.org/rss/project/requests-toolbelt/releases.xml" htmlUrl="https://pypi.org/project/requests-toolbelt/"/>
      <outline text="PyPI recent updates for requests-unixsocket" type="rss" xmlUrl="https://pypi.org/rss/project/requests-unixsocket/releases.xml" htmlUrl="https://pypi.org/project/requests-unixsocket/"/>
      <outline text="PyPI recent updates for requests-wsgi-adapter" type="rss" xmlUrl="https://pypi.org/rss/project/requests-wsgi-adapter/releases.xml" htmlUrl="https://pypi.org/project/requests-wsgi-adapter/"/>
      <outline text="PyPI recent updates for resolvelib" type="rss" xmlUrl="https://pypi.org/rss/project/resolvelib/releases.xml" htmlUrl="https://pypi.org/project/resolvelib/"/>
      <outline text="PyPI recent updates for responses" type="rss" xmlUrl="https://pypi.org/rss/project/responses/releases.xml" htmlUrl="https://pypi.org/project/responses/"/>
      <outline text="PyPI recent updates for respx" type="rss" xmlUrl="https://pypi.org/rss/project/respx/releases.xml" htmlUrl="https://pypi.org/project/respx/"/>
      <outline text="PyPI recent updates for restructuredtext-lint" type="rss" xmlUrl="https://pypi.org/rss/project/restructuredtext-lint/releases.xml" htmlUrl="https://pypi.org/project/restructuredtext-lint/"/>
      <outline text="PyPI recent updates for retry-decorator" type="rss" xmlUrl="https://pypi.org/rss/project/retry-decorator/releases.xml" htmlUrl="https://pypi.org/project/retry-decorator/"/>
      <outline text="PyPI recent updates for retrying" type="rss" xmlUrl="https://pypi.org/rss/project/retrying/releases.xml" htmlUrl="https://pypi.org/project/retrying/"/>
      <outline text="PyPI recent updates for rfc3339-validator" type="rss" xmlUrl="https://pypi.org/rss/project/rfc3339-validator/releases.xml" htmlUrl="https://pypi.org/project/rfc3339-validator/"/>
      <outline text="PyPI recent updates for rfc3986" type="rss" xmlUrl="https://pypi.org/rss/project/rfc3986/releases.xml" htmlUrl="https://pypi.org/project/rfc3986/"/>
      <outline text="PyPI recent updates for rfc3986-validator" type="rss" xmlUrl="https://pypi.org/rss/project/rfc3986-validator/releases.xml" htmlUrl="https://pypi.org/project/rfc3986-validator/"/>
      <outline text="PyPI recent updates for rfc3987" type="rss" xmlUrl="https://pypi.org/rss/project/rfc3987/releases.xml" htmlUrl="https://pypi.org/project/rfc3987/"/>
      <outline text="PyPI recent updates for rich" type="rss" xmlUrl="https://pypi.org/rss/project/rich/releases.xml" htmlUrl="https://pypi.org/project/rich/"/>
      <outline text="PyPI recent updates for roman" type="rss" xmlUrl="https://pypi.org/rss/project/roman/releases.xml" htmlUrl="https://pypi.org/project/roman/"/>
      <outline text="PyPI recent updates for rope" type="rss" xmlUrl="https://pypi.org/rss/project/rope/releases.xml" htmlUrl="https://pypi.org/project/rope/"/>
      <outline text="PyPI recent updates for ropemode" type="rss" xmlUrl="https://pypi.org/rss/project/ropemode/releases.xml" htmlUrl="https://pypi.org/project/ropemode/"/>
      <outline text="PyPI recent updates for Routes" type="rss" xmlUrl="https://pypi.org/rss/project/Routes/releases.xml" htmlUrl="https://pypi.org/project/Routes/"/>
      <outline text="PyPI recent updates for rpds-py" type="rss" xmlUrl="https://pypi.org/rss/project/rpds-py/releases.xml" htmlUrl="https://pypi.org/project/rpds-py/"/>
      <outline text="PyPI recent updates for rply" type="rss" xmlUrl="https://pypi.org/rss/project/rply/releases.xml" htmlUrl="https://pypi.org/project/rply/"/>
      <outline text="PyPI recent updates for rpy2" type="rss" xmlUrl="https://pypi.org/rss/project/rpy2/releases.xml" htmlUrl="https://pypi.org/project/rpy2/"/>
      <outline text="PyPI recent updates for rpyc" type="rss" xmlUrl="https://pypi.org/rss/project/rpyc/releases.xml" htmlUrl="https://pypi.org/project/rpyc/"/>
      <outline text="PyPI recent updates for rq" type="rss" xmlUrl="https://pypi.org/rss/project/rq/releases.xml" htmlUrl="https://pypi.org/project/rq/"/>
      <outline text="PyPI recent updates for rsa" type="rss" xmlUrl="https://pypi.org/rss/project/rsa/releases.xml" htmlUrl="https://pypi.org/project/rsa/"/>
      <outline text="PyPI recent updates for rst.linker" type="rss" xmlUrl="https://pypi.org/rss/project/rst.linker/releases.xml" htmlUrl="https://pypi.org/project/rst.linker/"/>
      <outline text="PyPI recent updates for RTIMULib" type="rss" xmlUrl="https://pypi.org/rss/project/RTIMULib/releases.xml" htmlUrl="https://pypi.org/project/RTIMULib/"/>
      <outline text="PyPI recent updates for rtslib-fb" type="rss" xmlUrl="https://pypi.org/rss/project/rtslib-fb/releases.xml" htmlUrl="https://pypi.org/project/rtslib-fb/"/>
      <outline text="PyPI recent updates for ruamel.yaml" type="rss" xmlUrl="https://pypi.org/rss/project/ruamel.yaml/releases.xml" htmlUrl="https://pypi.org/project/ruamel.yaml/"/>
      <outline text="PyPI recent updates for ruamel.yaml.clib" type="rss" xmlUrl="https://pypi.org/rss/project/ruamel.yaml.clib/releases.xml" htmlUrl="https://pypi.org/project/ruamel.yaml.clib/"/>
      <outline text="PyPI recent updates for rustworkx" type="rss" xmlUrl="https://pypi.org/rss/project/rustworkx/releases.xml" htmlUrl="https://pypi.org/project/rustworkx/"/>
      <outline text="PyPI recent updates for s3transfer" type="rss" xmlUrl="https://pypi.org/rss/project/s3transfer/releases.xml" htmlUrl="https://pypi.org/project/s3transfer/"/>
      <outline text="PyPI recent updates for sabctools" type="rss" xmlUrl="https://pypi.org/rss/project/sabctools/releases.xml" htmlUrl="https://pypi.org/project/sabctools/"/>
      <outline text="PyPI recent updates for sarge" type="rss" xmlUrl="https://pypi.org/rss/project/sarge/releases.xml" htmlUrl="https://pypi.org/project/sarge/"/>
      <outline text="PyPI recent updates for sarif-om" type="rss" xmlUrl="https://pypi.org/rss/project/sarif-om/releases.xml" htmlUrl="https://pypi.org/project/sarif-om/"/>
      <outline text="PyPI recent updates for schema" type="rss" xmlUrl="https://pypi.org/rss/project/schema/releases.xml" htmlUrl="https://pypi.org/project/schema/"/>
      <outline text="PyPI recent updates for scikit-build" type="rss" xmlUrl="https://pypi.org/rss/project/scikit-build/releases.xml" htmlUrl="https://pypi.org/project/scikit-build/"/>
      <outline text="PyPI recent updates for scikit-build-core" type="rss" xmlUrl="https://pypi.org/rss/project/scikit-build-core/releases.xml" htmlUrl="https://pypi.org/project/scikit-build-core/"/>
      <outline text="PyPI recent updates for scikit-image" type="rss" xmlUrl="https://pypi.org/rss/project/scikit-image/releases.xml" htmlUrl="https://pypi.org/project/scikit-image/"/>
      <outline text="PyPI recent updates for scikit-learn" type="rss" xmlUrl="https://pypi.org/rss/project/scikit-learn/releases.xml" htmlUrl="https://pypi.org/project/scikit-learn/"/>
      <outline text="PyPI recent updates for scipy" type="rss" xmlUrl="https://pypi.org/rss/project/scipy/releases.xml" htmlUrl="https://pypi.org/project/scipy/"/>
      <outline text="PyPI recent updates for scripttest" type="rss" xmlUrl="https://pypi.org/rss/project/scripttest/releases.xml" htmlUrl="https://pypi.org/project/scripttest/"/>
      <outline text="PyPI recent updates for scrypt" type="rss" xmlUrl="https://pypi.org/rss/project/scrypt/releases.xml" htmlUrl="https://pypi.org/project/scrypt/"/>
      <outline text="PyPI recent updates for seaborn" type="rss" xmlUrl="https://pypi.org/rss/project/seaborn/releases.xml" htmlUrl="https://pypi.org/project/seaborn/"/>
      <outline text="PyPI recent updates for SecretStorage" type="rss" xmlUrl="https://pypi.org/rss/project/SecretStorage/releases.xml" htmlUrl="https://pypi.org/project/SecretStorage/"/>
      <outline text="PyPI recent updates for seedir" type="rss" xmlUrl="https://pypi.org/rss/project/seedir/releases.xml" htmlUrl="https://pypi.org/project/seedir/"/>
      <outline text="PyPI recent updates for segno" type="rss" xmlUrl="https://pypi.org/rss/project/segno/releases.xml" htmlUrl="https://pypi.org/project/segno/"/>
      <outline text="PyPI recent updates for selenium" type="rss" xmlUrl="https://pypi.org/rss/project/selenium/releases.xml" htmlUrl="https://pypi.org/project/selenium/"/>
      <outline text="PyPI recent updates for semantic-version" type="rss" xmlUrl="https://pypi.org/rss/project/semantic-version/releases.xml" htmlUrl="https://pypi.org/project/semantic-version/"/>
      <outline text="PyPI recent updates for semver" type="rss" xmlUrl="https://pypi.org/rss/project/semver/releases.xml" htmlUrl="https://pypi.org/project/semver/"/>
      <outline text="PyPI recent updates for Send2Trash" type="rss" xmlUrl="https://pypi.org/rss/project/Send2Trash/releases.xml" htmlUrl="https://pypi.org/project/Send2Trash/"/>
      <outline text="PyPI recent updates for sense-hat" type="rss" xmlUrl="https://pypi.org/rss/project/sense-hat/releases.xml" htmlUrl="https://pypi.org/project/sense-hat/"/>
      <outline text="PyPI recent updates for sentry-sdk" type="rss" xmlUrl="https://pypi.org/rss/project/sentry-sdk/releases.xml" htmlUrl="https://pypi.org/project/sentry-sdk/"/>
      <outline text="PyPI recent updates for serpent" type="rss" xmlUrl="https://pypi.org/rss/project/serpent/releases.xml" htmlUrl="https://pypi.org/project/serpent/"/>
      <outline text="PyPI recent updates for serverfiles" type="rss" xmlUrl="https://pypi.org/rss/project/serverfiles/releases.xml" htmlUrl="https://pypi.org/project/serverfiles/"/>
      <outline text="PyPI recent updates for service-identity" type="rss" xmlUrl="https://pypi.org/rss/project/service-identity/releases.xml" htmlUrl="https://pypi.org/project/service-identity/"/>
      <outline text="PyPI recent updates for setproctitle" type="rss" xmlUrl="https://pypi.org/rss/project/setproctitle/releases.xml" htmlUrl="https://pypi.org/project/setproctitle/"/>
      <outline text="PyPI recent updates for setuptools" type="rss" xmlUrl="https://pypi.org/rss/project/setuptools/releases.xml" htmlUrl="https://pypi.org/project/setuptools/"/>
      <outline text="PyPI recent updates for setuptools-gettext" type="rss" xmlUrl="https://pypi.org/rss/project/setuptools-gettext/releases.xml" htmlUrl="https://pypi.org/project/setuptools-gettext/"/>
      <outline text="PyPI recent updates for setuptools-git" type="rss" xmlUrl="https://pypi.org/rss/project/setuptools-git/releases.xml" htmlUrl="https://pypi.org/project/setuptools-git/"/>
      <outline text="PyPI recent updates for setuptools-rust" type="rss" xmlUrl="https://pypi.org/rss/project/setuptools-rust/releases.xml" htmlUrl="https://pypi.org/project/setuptools-rust/"/>
      <outline text="PyPI recent updates for setuptools-scm" type="rss" xmlUrl="https://pypi.org/rss/project/setuptools-scm/releases.xml" htmlUrl="https://pypi.org/project/setuptools-scm/"/>
      <outline text="PyPI recent updates for sexpdata" type="rss" xmlUrl="https://pypi.org/rss/project/sexpdata/releases.xml" htmlUrl="https://pypi.org/project/sexpdata/"/>
      <outline text="PyPI recent updates for sgmllib3k" type="rss" xmlUrl="https://pypi.org/rss/project/sgmllib3k/releases.xml" htmlUrl="https://pypi.org/project/sgmllib3k/"/>
      <outline text="PyPI recent updates for sh" type="rss" xmlUrl="https://pypi.org/rss/project/sh/releases.xml" htmlUrl="https://pypi.org/project/sh/"/>
      <outline text="PyPI recent updates for shapely" type="rss" xmlUrl="https://pypi.org/rss/project/shapely/releases.xml" htmlUrl="https://pypi.org/project/shapely/"/>
      <outline text="PyPI recent updates for shellingham" type="rss" xmlUrl="https://pypi.org/rss/project/shellingham/releases.xml" htmlUrl="https://pypi.org/project/shellingham/"/>
      <outline text="PyPI recent updates for shiboken2" type="rss" xmlUrl="https://pypi.org/rss/project/shiboken2/releases.xml" htmlUrl="https://pypi.org/project/shiboken2/"/>
      <outline text="PyPI recent updates for shiboken6" type="rss" xmlUrl="https://pypi.org/rss/project/shiboken6/releases.xml" htmlUrl="https://pypi.org/project/shiboken6/"/>
      <outline text="PyPI recent updates for shtab" type="rss" xmlUrl="https://pypi.org/rss/project/shtab/releases.xml" htmlUrl="https://pypi.org/project/shtab/"/>
      <outline text="PyPI recent updates for signature-dispatch" type="rss" xmlUrl="https://pypi.org/rss/project/signature-dispatch/releases.xml" htmlUrl="https://pypi.org/project/signature-dispatch/"/>
      <outline text="PyPI recent updates for signedjson" type="rss" xmlUrl="https://pypi.org/rss/project/signedjson/releases.xml" htmlUrl="https://pypi.org/project/signedjson/"/>
      <outline text="PyPI recent updates for simber" type="rss" xmlUrl="https://pypi.org/rss/project/simber/releases.xml" htmlUrl="https://pypi.org/project/simber/"/>
      <outline text="PyPI recent updates for simpervisor" type="rss" xmlUrl="https://pypi.org/rss/project/simpervisor/releases.xml" htmlUrl="https://pypi.org/project/simpervisor/"/>
      <outline text="PyPI recent updates for simplebayes" type="rss" xmlUrl="https://pypi.org/rss/project/simplebayes/releases.xml" htmlUrl="https://pypi.org/project/simplebayes/"/>
      <outline text="PyPI recent updates for simpleeval" type="rss" xmlUrl="https://pypi.org/rss/project/simpleeval/releases.xml" htmlUrl="https://pypi.org/project/simpleeval/"/>
      <outline text="PyPI recent updates for simplejson" type="rss" xmlUrl="https://pypi.org/rss/project/simplejson/releases.xml" htmlUrl="https://pypi.org/project/simplejson/"/>
      <outline text="PyPI recent updates for simplekml" type="rss" xmlUrl="https://pypi.org/rss/project/simplekml/releases.xml" htmlUrl="https://pypi.org/project/simplekml/"/>
      <outline text="PyPI recent updates for simple-websocket" type="rss" xmlUrl="https://pypi.org/rss/project/simple-websocket/releases.xml" htmlUrl="https://pypi.org/project/simple-websocket/"/>
      <outline text="PyPI recent updates for simpy" type="rss" xmlUrl="https://pypi.org/rss/project/simpy/releases.xml" htmlUrl="https://pypi.org/project/simpy/"/>
      <outline text="PyPI recent updates for simsimd" type="rss" xmlUrl="https://pypi.org/rss/project/simsimd/releases.xml" htmlUrl="https://pypi.org/project/simsimd/"/>
      <outline text="PyPI recent updates for sip" type="rss" xmlUrl="https://pypi.org/rss/project/sip/releases.xml" htmlUrl="https://pypi.org/project/sip/"/>
      <outline text="PyPI recent updates for six" type="rss" xmlUrl="https://pypi.org/rss/project/six/releases.xml" htmlUrl="https://pypi.org/project/six/"/>
      <outline text="PyPI recent updates for slixmpp" type="rss" xmlUrl="https://pypi.org/rss/project/slixmpp/releases.xml" htmlUrl="https://pypi.org/project/slixmpp/"/>
      <outline text="PyPI recent updates for smartypants" type="rss" xmlUrl="https://pypi.org/rss/project/smartypants/releases.xml" htmlUrl="https://pypi.org/project/smartypants/"/>
      <outline text="PyPI recent updates for smbus2" type="rss" xmlUrl="https://pypi.org/rss/project/smbus2/releases.xml" htmlUrl="https://pypi.org/project/smbus2/"/>
      <outline text="PyPI recent updates for smmap" type="rss" xmlUrl="https://pypi.org/rss/project/smmap/releases.xml" htmlUrl="https://pypi.org/project/smmap/"/>
      <outline text="PyPI recent updates for snakeoil" type="rss" xmlUrl="https://pypi.org/rss/project/snakeoil/releases.xml" htmlUrl="https://pypi.org/project/snakeoil/"/>
      <outline text="PyPI recent updates for snaketrace" type="rss" xmlUrl="https://pypi.org/rss/project/snaketrace/releases.xml" htmlUrl="https://pypi.org/project/snaketrace/"/>
      <outline text="PyPI recent updates for snakeviz" type="rss" xmlUrl="https://pypi.org/rss/project/snakeviz/releases.xml" htmlUrl="https://pypi.org/project/snakeviz/"/>
      <outline text="PyPI recent updates for snapshottest" type="rss" xmlUrl="https://pypi.org/rss/project/snapshottest/releases.xml" htmlUrl="https://pypi.org/project/snapshottest/"/>
      <outline text="PyPI recent updates for sniffio" type="rss" xmlUrl="https://pypi.org/rss/project/sniffio/releases.xml" htmlUrl="https://pypi.org/project/sniffio/"/>
      <outline text="PyPI recent updates for snowballstemmer" type="rss" xmlUrl="https://pypi.org/rss/project/snowballstemmer/releases.xml" htmlUrl="https://pypi.org/project/snowballstemmer/"/>
      <outline text="PyPI recent updates for socketIO-client-nexus" type="rss" xmlUrl="https://pypi.org/rss/project/socketIO-client-nexus/releases.xml" htmlUrl="https://pypi.org/project/socketIO-client-nexus/"/>
      <outline text="PyPI recent updates for socksio" type="rss" xmlUrl="https://pypi.org/rss/project/socksio/releases.xml" htmlUrl="https://pypi.org/project/socksio/"/>
      <outline text="PyPI recent updates for sortedcontainers" type="rss" xmlUrl="https://pypi.org/rss/project/sortedcontainers/releases.xml" htmlUrl="https://pypi.org/project/sortedcontainers/"/>
      <outline text="PyPI recent updates for soupsieve" type="rss" xmlUrl="https://pypi.org/rss/project/soupsieve/releases.xml" htmlUrl="https://pypi.org/project/soupsieve/"/>
      <outline text="PyPI recent updates for spake2" type="rss" xmlUrl="https://pypi.org/rss/project/spake2/releases.xml" htmlUrl="https://pypi.org/project/spake2/"/>
      <outline text="PyPI recent updates for spdx-tools" type="rss" xmlUrl="https://pypi.org/rss/project/spdx-tools/releases.xml" htmlUrl="https://pypi.org/project/spdx-tools/"/>
      <outline text="PyPI recent updates for speg" type="rss" xmlUrl="https://pypi.org/rss/project/speg/releases.xml" htmlUrl="https://pypi.org/project/speg/"/>
      <outline text="PyPI recent updates for Sphinx" type="rss" xmlUrl="https://pypi.org/rss/project/Sphinx/releases.xml" htmlUrl="https://pypi.org/project/Sphinx/"/>
      <outline text="PyPI recent updates for sphinx-argparse" type="rss" xmlUrl="https://pypi.org/rss/project/sphinx-argparse/releases.xml" htmlUrl="https://pypi.org/project/sphinx-argparse/"/>
      <outline text="PyPI recent updates for sphinx-autoapi" type="rss" xmlUrl="https://pypi.org/rss/project/sphinx-autoapi/releases.xml" htmlUrl="https://pypi.org/project/sphinx-autoapi/"/>
      <outline text="PyPI recent updates for sphinx-autodoc-typehints" type="rss" xmlUrl="https://pypi.org/rss/project/sphinx-autodoc-typehints/releases.xml" htmlUrl="https://pypi.org/project/sphinx-autodoc-typehints/"/>
      <outline text="PyPI recent updates for sphinx-basic-ng" type="rss" xmlUrl="https://pypi.org/rss/project/sphinx-basic-ng/releases.xml" htmlUrl="https://pypi.org/project/sphinx-basic-ng/"/>
      <outline text="PyPI recent updates for sphinx-bootstrap-theme" type="rss" xmlUrl="https://pypi.org/rss/project/sphinx-bootstrap-theme/releases.xml" htmlUrl="https://pypi.org/project/sphinx-bootstrap-theme/"/>
      <outline text="PyPI recent updates for sphinx-celery" type="rss" xmlUrl="https://pypi.org/rss/project/sphinx-celery/releases.xml" htmlUrl="https://pypi.org/project/sphinx-celery/"/>
      <outline text="PyPI recent updates for sphinxcontrib-apidoc" type="rss" xmlUrl="https://pypi.org/rss/project/sphinxcontrib-apidoc/releases.xml" htmlUrl="https://pypi.org/project/sphinxcontrib-apidoc/"/>
      <outline text="PyPI recent updates for sphinxcontrib-applehelp" type="rss" xmlUrl="https://pypi.org/rss/project/sphinxcontrib-applehelp/releases.xml" htmlUrl="https://pypi.org/project/sphinxcontrib-applehelp/"/>
      <outline text="PyPI recent updates for sphinxcontrib-autoprogram" type="rss" xmlUrl="https://pypi.org/rss/project/sphinxcontrib-autoprogram/releases.xml" htmlUrl="https://pypi.org/project/sphinxcontrib-autoprogram/"/>
      <outline text="PyPI recent updates for sphinxcontrib-bibtex" type="rss" xmlUrl="https://pypi.org/rss/project/sphinxcontrib-bibtex/releases.xml" htmlUrl="https://pypi.org/project/sphinxcontrib-bibtex/"/>
      <outline text="PyPI recent updates for sphinxcontrib-devhelp" type="rss" xmlUrl="https://pypi.org/rss/project/sphinxcontrib-devhelp/releases.xml" htmlUrl="https://pypi.org/project/sphinxcontrib-devhelp/"/>
      <outline text="PyPI recent updates for sphinxcontrib-doxylink" type="rss" xmlUrl="https://pypi.org/rss/project/sphinxcontrib-doxylink/releases.xml" htmlUrl="https://pypi.org/project/sphinxcontrib-doxylink/"/>
      <outline text="PyPI recent updates for sphinxcontrib_github_alt" type="rss" xmlUrl="https://pypi.org/rss/project/sphinxcontrib_github_alt/releases.xml" htmlUrl="https://pypi.org/project/sphinxcontrib_github_alt/"/>
      <outline text="PyPI recent updates for sphinxcontrib-htmlhelp" type="rss" xmlUrl="https://pypi.org/rss/project/sphinxcontrib-htmlhelp/releases.xml" htmlUrl="https://pypi.org/project/sphinxcontrib-htmlhelp/"/>
      <outline text="PyPI recent updates for sphinxcontrib-httpdomain" type="rss" xmlUrl="https://pypi.org/rss/project/sphinxcontrib-httpdomain/releases.xml" htmlUrl="https://pypi.org/project/sphinxcontrib-httpdomain/"/>
      <outline text="PyPI recent updates for sphinxcontrib-jquery" type="rss" xmlUrl="https://pypi.org/rss/project/sphinxcontrib-jquery/releases.xml" htmlUrl="https://pypi.org/project/sphinxcontrib-jquery/"/>
      <outline text="PyPI recent updates for sphinxcontrib-jsmath" type="rss" xmlUrl="https://pypi.org/rss/project/sphinxcontrib-jsmath/releases.xml" htmlUrl="https://pypi.org/project/sphinxcontrib-jsmath/"/>
      <outline text="PyPI recent updates for sphinxcontrib-log-cabinet" type="rss" xmlUrl="https://pypi.org/rss/project/sphinxcontrib-log-cabinet/releases.xml" htmlUrl="https://pypi.org/project/sphinxcontrib-log-cabinet/"/>
      <outline text="PyPI recent updates for sphinxcontrib-plantuml" type="rss" xmlUrl="https://pypi.org/rss/project/sphinxcontrib-plantuml/releases.xml" htmlUrl="https://pypi.org/project/sphinxcontrib-plantuml/"/>
      <outline text="PyPI recent updates for sphinxcontrib-programoutput" type="rss" xmlUrl="https://pypi.org/rss/project/sphinxcontrib-programoutput/releases.xml" htmlUrl="https://pypi.org/project/sphinxcontrib-programoutput/"/>
      <outline text="PyPI recent updates for sphinxcontrib-qthelp" type="rss" xmlUrl="https://pypi.org/rss/project/sphinxcontrib-qthelp/releases.xml" htmlUrl="https://pypi.org/project/sphinxcontrib-qthelp/"/>
      <outline text="PyPI recent updates for sphinxcontrib-serializinghtml" type="rss" xmlUrl="https://pypi.org/rss/project/sphinxcontrib-serializinghtml/releases.xml" htmlUrl="https://pypi.org/project/sphinxcontrib-serializinghtml/"/>
      <outline text="PyPI recent updates for sphinxcontrib-spelling" type="rss" xmlUrl="https://pypi.org/rss/project/sphinxcontrib-spelling/releases.xml" htmlUrl="https://pypi.org/project/sphinxcontrib-spelling/"/>
      <outline text="PyPI recent updates for sphinxcontrib-trio" type="rss" xmlUrl="https://pypi.org/rss/project/sphinxcontrib-trio/releases.xml" htmlUrl="https://pypi.org/project/sphinxcontrib-trio/"/>
      <outline text="PyPI recent updates for sphinxcontrib-websupport" type="rss" xmlUrl="https://pypi.org/rss/project/sphinxcontrib-websupport/releases.xml" htmlUrl="https://pypi.org/project/sphinxcontrib-websupport/"/>
      <outline text="PyPI recent updates for sphinx-copybutton" type="rss" xmlUrl="https://pypi.org/rss/project/sphinx-copybutton/releases.xml" htmlUrl="https://pypi.org/project/sphinx-copybutton/"/>
      <outline text="PyPI recent updates for sphinxemoji" type="rss" xmlUrl="https://pypi.org/rss/project/sphinxemoji/releases.xml" htmlUrl="https://pypi.org/project/sphinxemoji/"/>
      <outline text="PyPI recent updates for sphinx-epytext" type="rss" xmlUrl="https://pypi.org/rss/project/sphinx-epytext/releases.xml" htmlUrl="https://pypi.org/project/sphinx-epytext/"/>
      <outline text="PyPI recent updates for sphinx-gallery" type="rss" xmlUrl="https://pypi.org/rss/project/sphinx-gallery/releases.xml" htmlUrl="https://pypi.org/project/sphinx-gallery/"/>
      <outline text="PyPI recent updates for sphinx-inline-tabs" type="rss" xmlUrl="https://pypi.org/rss/project/sphinx-inline-tabs/releases.xml" htmlUrl="https://pypi.org/project/sphinx-inline-tabs/"/>
      <outline text="PyPI recent updates for sphinx-issues" type="rss" xmlUrl="https://pypi.org/rss/project/sphinx-issues/releases.xml" htmlUrl="https://pypi.org/project/sphinx-issues/"/>
      <outline text="PyPI recent updates for sphinx-lv2-theme" type="rss" xmlUrl="https://pypi.org/rss/project/sphinx-lv2-theme/releases.xml" htmlUrl="https://pypi.org/project/sphinx-lv2-theme/"/>
      <outline text="PyPI recent updates for sphinx-multiversion" type="rss" xmlUrl="https://pypi.org/rss/project/sphinx-multiversion/releases.xml" htmlUrl="https://pypi.org/project/sphinx-multiversion/"/>
      <outline text="PyPI recent updates for sphinx-notfound-page" type="rss" xmlUrl="https://pypi.org/rss/project/sphinx-notfound-page/releases.xml" htmlUrl="https://pypi.org/project/sphinx-notfound-page/"/>
      <outline text="PyPI recent updates for sphinx-panels" type="rss" xmlUrl="https://pypi.org/rss/project/sphinx-panels/releases.xml" htmlUrl="https://pypi.org/project/sphinx-panels/"/>
      <outline text="PyPI recent updates for sphinx-press-theme" type="rss" xmlUrl="https://pypi.org/rss/project/sphinx-press-theme/releases.xml" htmlUrl="https://pypi.org/project/sphinx-press-theme/"/>
      <outline text="PyPI recent updates for sphinx-prompt" type="rss" xmlUrl="https://pypi.org/rss/project/sphinx-prompt/releases.xml" htmlUrl="https://pypi.org/project/sphinx-prompt/"/>
      <outline text="PyPI recent updates for sphinx_pytest" type="rss" xmlUrl="https://pypi.org/rss/project/sphinx_pytest/releases.xml" htmlUrl="https://pypi.org/project/sphinx_pytest/"/>
      <outline text="PyPI recent updates for sphinx-rtd-theme" type="rss" xmlUrl="https://pypi.org/rss/project/sphinx-rtd-theme/releases.xml" htmlUrl="https://pypi.org/project/sphinx-rtd-theme/"/>
      <outline text="PyPI recent updates for sphinx-selective-exclude" type="rss" xmlUrl="https://pypi.org/rss/project/sphinx-selective-exclude/releases.xml" htmlUrl="https://pypi.org/project/sphinx-selective-exclude/"/>
      <outline text="PyPI recent updates for sphinx-tabs" type="rss" xmlUrl="https://pypi.org/rss/project/sphinx-tabs/releases.xml" htmlUrl="https://pypi.org/project/sphinx-tabs/"/>
      <outline text="PyPI recent updates for sphinxygen" type="rss" xmlUrl="https://pypi.org/rss/project/sphinxygen/releases.xml" htmlUrl="https://pypi.org/project/sphinxygen/"/>
      <outline text="PyPI recent updates for sphobjinv" type="rss" xmlUrl="https://pypi.org/rss/project/sphobjinv/releases.xml" htmlUrl="https://pypi.org/project/sphobjinv/"/>
      <outline text="PyPI recent updates for spotipy" type="rss" xmlUrl="https://pypi.org/rss/project/spotipy/releases.xml" htmlUrl="https://pypi.org/project/spotipy/"/>
      <outline text="PyPI recent updates for spur" type="rss" xmlUrl="https://pypi.org/rss/project/spur/releases.xml" htmlUrl="https://pypi.org/project/spur/"/>
      <outline text="PyPI recent updates for spyder" type="rss" xmlUrl="https://pypi.org/rss/project/spyder/releases.xml" htmlUrl="https://pypi.org/project/spyder/"/>
      <outline text="PyPI recent updates for spyder-kernels" type="rss" xmlUrl="https://pypi.org/rss/project/spyder-kernels/releases.xml" htmlUrl="https://pypi.org/project/spyder-kernels/"/>
      <outline text="PyPI recent updates for spyder-line-profiler" type="rss" xmlUrl="https://pypi.org/rss/project/spyder-line-profiler/releases.xml" htmlUrl="https://pypi.org/project/spyder-line-profiler/"/>
      <outline text="PyPI recent updates for spyder-notebook" type="rss" xmlUrl="https://pypi.org/rss/project/spyder-notebook/releases.xml" htmlUrl="https://pypi.org/project/spyder-notebook/"/>
      <outline text="PyPI recent updates for spyder-terminal" type="rss" xmlUrl="https://pypi.org/rss/project/spyder-terminal/releases.xml" htmlUrl="https://pypi.org/project/spyder-terminal/"/>
      <outline text="PyPI recent updates for spyder-unittest" type="rss" xmlUrl="https://pypi.org/rss/project/spyder-unittest/releases.xml" htmlUrl="https://pypi.org/project/spyder-unittest/"/>
      <outline text="PyPI recent updates for spyder-vim" type="rss" xmlUrl="https://pypi.org/rss/project/spyder-vim/releases.xml" htmlUrl="https://pypi.org/project/spyder-vim/"/>
      <outline text="PyPI recent updates for SQLAlchemy" type="rss" xmlUrl="https://pypi.org/rss/project/SQLAlchemy/releases.xml" htmlUrl="https://pypi.org/project/SQLAlchemy/"/>
      <outline text="PyPI recent updates for sqlalchemy-rqlite" type="rss" xmlUrl="https://pypi.org/rss/project/sqlalchemy-rqlite/releases.xml" htmlUrl="https://pypi.org/project/sqlalchemy-rqlite/"/>
      <outline text="PyPI recent updates for sqlglot" type="rss" xmlUrl="https://pypi.org/rss/project/sqlglot/releases.xml" htmlUrl="https://pypi.org/project/sqlglot/"/>
      <outline text="PyPI recent updates for sqlitedict" type="rss" xmlUrl="https://pypi.org/rss/project/sqlitedict/releases.xml" htmlUrl="https://pypi.org/project/sqlitedict/"/>
      <outline text="PyPI recent updates for sqlparse" type="rss" xmlUrl="https://pypi.org/rss/project/sqlparse/releases.xml" htmlUrl="https://pypi.org/project/sqlparse/"/>
      <outline text="PyPI recent updates for sshpubkeys" type="rss" xmlUrl="https://pypi.org/rss/project/sshpubkeys/releases.xml" htmlUrl="https://pypi.org/project/sshpubkeys/"/>
      <outline text="PyPI recent updates for sshtunnel" type="rss" xmlUrl="https://pypi.org/rss/project/sshtunnel/releases.xml" htmlUrl="https://pypi.org/project/sshtunnel/"/>
      <outline text="PyPI recent updates for stack-data" type="rss" xmlUrl="https://pypi.org/rss/project/stack-data/releases.xml" htmlUrl="https://pypi.org/project/stack-data/"/>
      <outline text="PyPI recent updates for stapler" type="rss" xmlUrl="https://pypi.org/rss/project/stapler/releases.xml" htmlUrl="https://pypi.org/project/stapler/"/>
      <outline text="PyPI recent updates for starlette" type="rss" xmlUrl="https://pypi.org/rss/project/starlette/releases.xml" htmlUrl="https://pypi.org/project/starlette/"/>
      <outline text="PyPI recent updates for statsd" type="rss" xmlUrl="https://pypi.org/rss/project/statsd/releases.xml" htmlUrl="https://pypi.org/project/statsd/"/>
      <outline text="PyPI recent updates for statsmodels" type="rss" xmlUrl="https://pypi.org/rss/project/statsmodels/releases.xml" htmlUrl="https://pypi.org/project/statsmodels/"/>
      <outline text="PyPI recent updates for stdio-mgr" type="rss" xmlUrl="https://pypi.org/rss/project/stdio-mgr/releases.xml" htmlUrl="https://pypi.org/project/stdio-mgr/"/>
      <outline text="PyPI recent updates for stestr" type="rss" xmlUrl="https://pypi.org/rss/project/stestr/releases.xml" htmlUrl="https://pypi.org/project/stestr/"/>
      <outline text="PyPI recent updates for stevedore" type="rss" xmlUrl="https://pypi.org/rss/project/stevedore/releases.xml" htmlUrl="https://pypi.org/project/stevedore/"/>
      <outline text="PyPI recent updates for stomp-py" type="rss" xmlUrl="https://pypi.org/rss/project/stomp-py/releases.xml" htmlUrl="https://pypi.org/project/stomp-py/"/>
      <outline text="PyPI recent updates for strict-rfc3339" type="rss" xmlUrl="https://pypi.org/rss/project/strict-rfc3339/releases.xml" htmlUrl="https://pypi.org/project/strict-rfc3339/"/>
      <outline text="PyPI recent updates for stripe" type="rss" xmlUrl="https://pypi.org/rss/project/stripe/releases.xml" htmlUrl="https://pypi.org/project/stripe/"/>
      <outline text="PyPI recent updates for structlog" type="rss" xmlUrl="https://pypi.org/rss/project/structlog/releases.xml" htmlUrl="https://pypi.org/project/structlog/"/>
      <outline text="PyPI recent updates for subprocess-tee" type="rss" xmlUrl="https://pypi.org/rss/project/subprocess-tee/releases.xml" htmlUrl="https://pypi.org/project/subprocess-tee/"/>
      <outline text="PyPI recent updates for suds-community" type="rss" xmlUrl="https://pypi.org/rss/project/suds-community/releases.xml" htmlUrl="https://pypi.org/project/suds-community/"/>
      <outline text="PyPI recent updates for superqt" type="rss" xmlUrl="https://pypi.org/rss/project/superqt/releases.xml" htmlUrl="https://pypi.org/project/superqt/"/>
      <outline text="PyPI recent updates for sure" type="rss" xmlUrl="https://pypi.org/rss/project/sure/releases.xml" htmlUrl="https://pypi.org/project/sure/"/>
      <outline text="PyPI recent updates for svglib" type="rss" xmlUrl="https://pypi.org/rss/project/svglib/releases.xml" htmlUrl="https://pypi.org/project/svglib/"/>
      <outline text="PyPI recent updates for svg.path" type="rss" xmlUrl="https://pypi.org/rss/project/svg.path/releases.xml" htmlUrl="https://pypi.org/project/svg.path/"/>
      <outline text="PyPI recent updates for svgwrite" type="rss" xmlUrl="https://pypi.org/rss/project/svgwrite/releases.xml" htmlUrl="https://pypi.org/project/svgwrite/"/>
      <outline text="PyPI recent updates for swagger-spec-validator" type="rss" xmlUrl="https://pypi.org/rss/project/swagger-spec-validator/releases.xml" htmlUrl="https://pypi.org/project/swagger-spec-validator/"/>
      <outline text="PyPI recent updates for sybil" type="rss" xmlUrl="https://pypi.org/rss/project/sybil/releases.xml" htmlUrl="https://pypi.org/project/sybil/"/>
      <outline text="PyPI recent updates for symengine" type="rss" xmlUrl="https://pypi.org/rss/project/symengine/releases.xml" htmlUrl="https://pypi.org/project/symengine/"/>
      <outline text="PyPI recent updates for sympy" type="rss" xmlUrl="https://pypi.org/rss/project/sympy/releases.xml" htmlUrl="https://pypi.org/project/sympy/"/>
      <outline text="PyPI recent updates for tables" type="rss" xmlUrl="https://pypi.org/rss/project/tables/releases.xml" htmlUrl="https://pypi.org/project/tables/"/>
      <outline text="PyPI recent updates for tabulate" type="rss" xmlUrl="https://pypi.org/rss/project/tabulate/releases.xml" htmlUrl="https://pypi.org/project/tabulate/"/>
      <outline text="PyPI recent updates for tagpy" type="rss" xmlUrl="https://pypi.org/rss/project/tagpy/releases.xml" htmlUrl="https://pypi.org/project/tagpy/"/>
      <outline text="PyPI recent updates for tap.py" type="rss" xmlUrl="https://pypi.org/rss/project/tap.py/releases.xml" htmlUrl="https://pypi.org/project/tap.py/"/>
      <outline text="PyPI recent updates for taskgroup" type="rss" xmlUrl="https://pypi.org/rss/project/taskgroup/releases.xml" htmlUrl="https://pypi.org/project/taskgroup/"/>
      <outline text="PyPI recent updates for tasklib" type="rss" xmlUrl="https://pypi.org/rss/project/tasklib/releases.xml" htmlUrl="https://pypi.org/project/tasklib/"/>
      <outline text="PyPI recent updates for tavalidate" type="rss" xmlUrl="https://pypi.org/rss/project/tavalidate/releases.xml" htmlUrl="https://pypi.org/project/tavalidate/"/>
      <outline text="PyPI recent updates for tavern" type="rss" xmlUrl="https://pypi.org/rss/project/tavern/releases.xml" htmlUrl="https://pypi.org/project/tavern/"/>
      <outline text="PyPI recent updates for tblib" type="rss" xmlUrl="https://pypi.org/rss/project/tblib/releases.xml" htmlUrl="https://pypi.org/project/tblib/"/>
      <outline text="PyPI recent updates for tcolorpy" type="rss" xmlUrl="https://pypi.org/rss/project/tcolorpy/releases.xml" htmlUrl="https://pypi.org/project/tcolorpy/"/>
      <outline text="PyPI recent updates for tekore" type="rss" xmlUrl="https://pypi.org/rss/project/tekore/releases.xml" htmlUrl="https://pypi.org/project/tekore/"/>
      <outline text="PyPI recent updates for tempest" type="rss" xmlUrl="https://pypi.org/rss/project/tempest/releases.xml" htmlUrl="https://pypi.org/project/tempest/"/>
      <outline text="PyPI recent updates for tempora" type="rss" xmlUrl="https://pypi.org/rss/project/tempora/releases.xml" htmlUrl="https://pypi.org/project/tempora/"/>
      <outline text="PyPI recent updates for tenacity" type="rss" xmlUrl="https://pypi.org/rss/project/tenacity/releases.xml" htmlUrl="https://pypi.org/project/tenacity/"/>
      <outline text="PyPI recent updates for termcolor" type="rss" xmlUrl="https://pypi.org/rss/project/termcolor/releases.xml" htmlUrl="https://pypi.org/project/termcolor/"/>
      <outline text="PyPI recent updates for terminado" type="rss" xmlUrl="https://pypi.org/rss/project/terminado/releases.xml" htmlUrl="https://pypi.org/project/terminado/"/>
      <outline text="PyPI recent updates for terminaltables" type="rss" xmlUrl="https://pypi.org/rss/project/terminaltables/releases.xml" htmlUrl="https://pypi.org/project/terminaltables/"/>
      <outline text="PyPI recent updates for testfixtures" type="rss" xmlUrl="https://pypi.org/rss/project/testfixtures/releases.xml" htmlUrl="https://pypi.org/project/testfixtures/"/>
      <outline text="PyPI recent updates for testpath" type="rss" xmlUrl="https://pypi.org/rss/project/testpath/releases.xml" htmlUrl="https://pypi.org/project/testpath/"/>
      <outline text="PyPI recent updates for testresources" type="rss" xmlUrl="https://pypi.org/rss/project/testresources/releases.xml" htmlUrl="https://pypi.org/project/testresources/"/>
      <outline text="PyPI recent updates for testscenarios" type="rss" xmlUrl="https://pypi.org/rss/project/testscenarios/releases.xml" htmlUrl="https://pypi.org/project/testscenarios/"/>
      <outline text="PyPI recent updates for testtools" type="rss" xmlUrl="https://pypi.org/rss/project/testtools/releases.xml" htmlUrl="https://pypi.org/project/testtools/"/>
      <outline text="PyPI recent updates for textdistance" type="rss" xmlUrl="https://pypi.org/rss/project/textdistance/releases.xml" htmlUrl="https://pypi.org/project/textdistance/"/>
      <outline text="PyPI recent updates for textile" type="rss" xmlUrl="https://pypi.org/rss/project/textile/releases.xml" htmlUrl="https://pypi.org/project/textile/"/>
      <outline text="PyPI recent updates for texttable" type="rss" xmlUrl="https://pypi.org/rss/project/texttable/releases.xml" htmlUrl="https://pypi.org/project/texttable/"/>
      <outline text="PyPI recent updates for text-unidecode" type="rss" xmlUrl="https://pypi.org/rss/project/text-unidecode/releases.xml" htmlUrl="https://pypi.org/project/text-unidecode/"/>
      <outline text="PyPI recent updates for textX" type="rss" xmlUrl="https://pypi.org/rss/project/textX/releases.xml" htmlUrl="https://pypi.org/project/textX/"/>
      <outline text="PyPI recent updates for threadpoolctl" type="rss" xmlUrl="https://pypi.org/rss/project/threadpoolctl/releases.xml" htmlUrl="https://pypi.org/project/threadpoolctl/"/>
      <outline text="PyPI recent updates for three-merge" type="rss" xmlUrl="https://pypi.org/rss/project/three-merge/releases.xml" htmlUrl="https://pypi.org/project/three-merge/"/>
      <outline text="PyPI recent updates for thrift" type="rss" xmlUrl="https://pypi.org/rss/project/thrift/releases.xml" htmlUrl="https://pypi.org/project/thrift/"/>
      <outline text="PyPI recent updates for thriftpy2" type="rss" xmlUrl="https://pypi.org/rss/project/thriftpy2/releases.xml" htmlUrl="https://pypi.org/project/thriftpy2/"/>
      <outline text="PyPI recent updates for tifffile" type="rss" xmlUrl="https://pypi.org/rss/project/tifffile/releases.xml" htmlUrl="https://pypi.org/project/tifffile/"/>
      <outline text="PyPI recent updates for time-machine" type="rss" xmlUrl="https://pypi.org/rss/project/time-machine/releases.xml" htmlUrl="https://pypi.org/project/time-machine/"/>
      <outline text="PyPI recent updates for timeout-decorator" type="rss" xmlUrl="https://pypi.org/rss/project/timeout-decorator/releases.xml" htmlUrl="https://pypi.org/project/timeout-decorator/"/>
      <outline text="PyPI recent updates for tinycss2" type="rss" xmlUrl="https://pypi.org/rss/project/tinycss2/releases.xml" htmlUrl="https://pypi.org/project/tinycss2/"/>
      <outline text="PyPI recent updates for tiny-proxy" type="rss" xmlUrl="https://pypi.org/rss/project/tiny-proxy/releases.xml" htmlUrl="https://pypi.org/project/tiny-proxy/"/>
      <outline text="PyPI recent updates for tld" type="rss" xmlUrl="https://pypi.org/rss/project/tld/releases.xml" htmlUrl="https://pypi.org/project/tld/"/>
      <outline text="PyPI recent updates for tldextract" type="rss" xmlUrl="https://pypi.org/rss/project/tldextract/releases.xml" htmlUrl="https://pypi.org/project/tldextract/"/>
      <outline text="PyPI recent updates for tokenize-rt" type="rss" xmlUrl="https://pypi.org/rss/project/tokenize-rt/releases.xml" htmlUrl="https://pypi.org/project/tokenize-rt/"/>
      <outline text="PyPI recent updates for tomli" type="rss" xmlUrl="https://pypi.org/rss/project/tomli/releases.xml" htmlUrl="https://pypi.org/project/tomli/"/>
      <outline text="PyPI recent updates for tomli-w" type="rss" xmlUrl="https://pypi.org/rss/project/tomli-w/releases.xml" htmlUrl="https://pypi.org/project/tomli-w/"/>
      <outline text="PyPI recent updates for tomlkit" type="rss" xmlUrl="https://pypi.org/rss/project/tomlkit/releases.xml" htmlUrl="https://pypi.org/project/tomlkit/"/>
      <outline text="PyPI recent updates for toolz" type="rss" xmlUrl="https://pypi.org/rss/project/toolz/releases.xml" htmlUrl="https://pypi.org/project/toolz/"/>
      <outline text="PyPI recent updates for toposort" type="rss" xmlUrl="https://pypi.org/rss/project/toposort/releases.xml" htmlUrl="https://pypi.org/project/toposort/"/>
      <outline text="PyPI recent updates for tornado" type="rss" xmlUrl="https://pypi.org/rss/project/tornado/releases.xml" htmlUrl="https://pypi.org/project/tornado/"/>
      <outline text="PyPI recent updates for towncrier" type="rss" xmlUrl="https://pypi.org/rss/project/towncrier/releases.xml" htmlUrl="https://pypi.org/project/towncrier/"/>
      <outline text="PyPI recent updates for tox" type="rss" xmlUrl="https://pypi.org/rss/project/tox/releases.xml" htmlUrl="https://pypi.org/project/tox/"/>
      <outline text="PyPI recent updates for tpm2-pytss" type="rss" xmlUrl="https://pypi.org/rss/project/tpm2-pytss/releases.xml" htmlUrl="https://pypi.org/project/tpm2-pytss/"/>
      <outline text="PyPI recent updates for tqdm" type="rss" xmlUrl="https://pypi.org/rss/project/tqdm/releases.xml" htmlUrl="https://pypi.org/project/tqdm/"/>
      <outline text="PyPI recent updates for traitlets" type="rss" xmlUrl="https://pypi.org/rss/project/traitlets/releases.xml" htmlUrl="https://pypi.org/project/traitlets/"/>
      <outline text="PyPI recent updates for transitions" type="rss" xmlUrl="https://pypi.org/rss/project/transitions/releases.xml" htmlUrl="https://pypi.org/project/transitions/"/>
      <outline text="PyPI recent updates for translate-toolkit" type="rss" xmlUrl="https://pypi.org/rss/project/translate-toolkit/releases.xml" htmlUrl="https://pypi.org/project/translate-toolkit/"/>
      <outline text="PyPI recent updates for tree-sitter" type="rss" xmlUrl="https://pypi.org/rss/project/tree-sitter/releases.xml" htmlUrl="https://pypi.org/project/tree-sitter/"/>
      <outline text="PyPI recent updates for treq" type="rss" xmlUrl="https://pypi.org/rss/project/treq/releases.xml" htmlUrl="https://pypi.org/project/treq/"/>
      <outline text="PyPI recent updates for trimesh" type="rss" xmlUrl="https://pypi.org/rss/project/trimesh/releases.xml" htmlUrl="https://pypi.org/project/trimesh/"/>
      <outline text="PyPI recent updates for trio" type="rss" xmlUrl="https://pypi.org/rss/project/trio/releases.xml" htmlUrl="https://pypi.org/project/trio/"/>
      <outline text="PyPI recent updates for trio-websocket" type="rss" xmlUrl="https://pypi.org/rss/project/trio-websocket/releases.xml" htmlUrl="https://pypi.org/project/trio-websocket/"/>
      <outline text="PyPI recent updates for trove-classifiers" type="rss" xmlUrl="https://pypi.org/rss/project/trove-classifiers/releases.xml" htmlUrl="https://pypi.org/project/trove-classifiers/"/>
      <outline text="PyPI recent updates for trustme" type="rss" xmlUrl="https://pypi.org/rss/project/trustme/releases.xml" htmlUrl="https://pypi.org/project/trustme/"/>
      <outline text="PyPI recent updates for truststore" type="rss" xmlUrl="https://pypi.org/rss/project/truststore/releases.xml" htmlUrl="https://pypi.org/project/truststore/"/>
      <outline text="PyPI recent updates for Tubes" type="rss" xmlUrl="https://pypi.org/rss/project/Tubes/releases.xml" htmlUrl="https://pypi.org/project/Tubes/"/>
      <outline text="PyPI recent updates for twine" type="rss" xmlUrl="https://pypi.org/rss/project/twine/releases.xml" htmlUrl="https://pypi.org/project/twine/"/>
      <outline text="PyPI recent updates for Twisted" type="rss" xmlUrl="https://pypi.org/rss/project/Twisted/releases.xml" htmlUrl="https://pypi.org/project/Twisted/"/>
      <outline text="PyPI recent updates for twython" type="rss" xmlUrl="https://pypi.org/rss/project/twython/releases.xml" htmlUrl="https://pypi.org/project/twython/"/>
      <outline text="PyPI recent updates for txaio" type="rss" xmlUrl="https://pypi.org/rss/project/txaio/releases.xml" htmlUrl="https://pypi.org/project/txaio/"/>
      <outline text="PyPI recent updates for txAMQP" type="rss" xmlUrl="https://pypi.org/rss/project/txAMQP/releases.xml" htmlUrl="https://pypi.org/project/txAMQP/"/>
      <outline text="PyPI recent updates for txredisapi" type="rss" xmlUrl="https://pypi.org/rss/project/txredisapi/releases.xml" htmlUrl="https://pypi.org/project/txredisapi/"/>
      <outline text="PyPI recent updates for txrequests" type="rss" xmlUrl="https://pypi.org/rss/project/txrequests/releases.xml" htmlUrl="https://pypi.org/project/txrequests/"/>
      <outline text="PyPI recent updates for txtorcon" type="rss" xmlUrl="https://pypi.org/rss/project/txtorcon/releases.xml" htmlUrl="https://pypi.org/project/txtorcon/"/>
      <outline text="PyPI recent updates for typeguard" type="rss" xmlUrl="https://pypi.org/rss/project/typeguard/releases.xml" htmlUrl="https://pypi.org/project/typeguard/"/>
      <outline text="PyPI recent updates for types-docutils" type="rss" xmlUrl="https://pypi.org/rss/project/types-docutils/releases.xml" htmlUrl="https://pypi.org/project/types-docutils/"/>
      <outline text="PyPI recent updates for types-gdb" type="rss" xmlUrl="https://pypi.org/rss/project/types-gdb/releases.xml" htmlUrl="https://pypi.org/project/types-gdb/"/>
      <outline text="PyPI recent updates for types-psutil" type="rss" xmlUrl="https://pypi.org/rss/project/types-psutil/releases.xml" htmlUrl="https://pypi.org/project/types-psutil/"/>
      <outline text="PyPI recent updates for types-setuptools" type="rss" xmlUrl="https://pypi.org/rss/project/types-setuptools/releases.xml" htmlUrl="https://pypi.org/project/types-setuptools/"/>
      <outline text="PyPI recent updates for typing-extensions" type="rss" xmlUrl="https://pypi.org/rss/project/typing-extensions/releases.xml" htmlUrl="https://pypi.org/project/typing-extensions/"/>
      <outline text="PyPI recent updates for typogrify" type="rss" xmlUrl="https://pypi.org/rss/project/typogrify/releases.xml" htmlUrl="https://pypi.org/project/typogrify/"/>
      <outline text="PyPI recent updates for tzlocal" type="rss" xmlUrl="https://pypi.org/rss/project/tzlocal/releases.xml" htmlUrl="https://pypi.org/project/tzlocal/"/>
      <outline text="PyPI recent updates for ubelt" type="rss" xmlUrl="https://pypi.org/rss/project/ubelt/releases.xml" htmlUrl="https://pypi.org/project/ubelt/"/>
      <outline text="PyPI recent updates for uc-micro-py" type="rss" xmlUrl="https://pypi.org/rss/project/uc-micro-py/releases.xml" htmlUrl="https://pypi.org/project/uc-micro-py/"/>
      <outline text="PyPI recent updates for ujson" type="rss" xmlUrl="https://pypi.org/rss/project/ujson/releases.xml" htmlUrl="https://pypi.org/project/ujson/"/>
      <outline text="PyPI recent updates for ukkonen" type="rss" xmlUrl="https://pypi.org/rss/project/ukkonen/releases.xml" htmlUrl="https://pypi.org/project/ukkonen/"/>
      <outline text="PyPI recent updates for u-msgpack-python" type="rss" xmlUrl="https://pypi.org/rss/project/u-msgpack-python/releases.xml" htmlUrl="https://pypi.org/project/u-msgpack-python/"/>
      <outline text="PyPI recent updates for unasync" type="rss" xmlUrl="https://pypi.org/rss/project/unasync/releases.xml" htmlUrl="https://pypi.org/project/unasync/"/>
      <outline text="PyPI recent updates for uncertainties" type="rss" xmlUrl="https://pypi.org/rss/project/uncertainties/releases.xml" htmlUrl="https://pypi.org/project/uncertainties/"/>
      <outline text="PyPI recent updates for unearth" type="rss" xmlUrl="https://pypi.org/rss/project/unearth/releases.xml" htmlUrl="https://pypi.org/project/unearth/"/>
      <outline text="PyPI recent updates for Unidecode" type="rss" xmlUrl="https://pypi.org/rss/project/Unidecode/releases.xml" htmlUrl="https://pypi.org/project/Unidecode/"/>
      <outline text="PyPI recent updates for unidiff" type="rss" xmlUrl="https://pypi.org/rss/project/unidiff/releases.xml" htmlUrl="https://pypi.org/project/unidiff/"/>
      <outline text="PyPI recent updates for unittest-mixins" type="rss" xmlUrl="https://pypi.org/rss/project/unittest-mixins/releases.xml" htmlUrl="https://pypi.org/project/unittest-mixins/"/>
      <outline text="PyPI recent updates for unpaddedbase64" type="rss" xmlUrl="https://pypi.org/rss/project/unpaddedbase64/releases.xml" htmlUrl="https://pypi.org/project/unpaddedbase64/"/>
      <outline text="PyPI recent updates for unrardll" type="rss" xmlUrl="https://pypi.org/rss/project/unrardll/releases.xml" htmlUrl="https://pypi.org/project/unrardll/"/>
      <outline text="PyPI recent updates for untangle" type="rss" xmlUrl="https://pypi.org/rss/project/untangle/releases.xml" htmlUrl="https://pypi.org/project/untangle/"/>
      <outline text="PyPI recent updates for uri-template" type="rss" xmlUrl="https://pypi.org/rss/project/uri-template/releases.xml" htmlUrl="https://pypi.org/project/uri-template/"/>
      <outline text="PyPI recent updates for uritemplate" type="rss" xmlUrl="https://pypi.org/rss/project/uritemplate/releases.xml" htmlUrl="https://pypi.org/project/uritemplate/"/>
      <outline text="PyPI recent updates for uritools" type="rss" xmlUrl="https://pypi.org/rss/project/uritools/releases.xml" htmlUrl="https://pypi.org/project/uritools/"/>
      <outline text="PyPI recent updates for urllib3" type="rss" xmlUrl="https://pypi.org/rss/project/urllib3/releases.xml" htmlUrl="https://pypi.org/project/urllib3/"/>
      <outline text="PyPI recent updates for url-normalize" type="rss" xmlUrl="https://pypi.org/rss/project/url-normalize/releases.xml" htmlUrl="https://pypi.org/project/url-normalize/"/>
      <outline text="PyPI recent updates for urwid" type="rss" xmlUrl="https://pypi.org/rss/project/urwid/releases.xml" htmlUrl="https://pypi.org/project/urwid/"/>
      <outline text="PyPI recent updates for urwid-readline" type="rss" xmlUrl="https://pypi.org/rss/project/urwid-readline/releases.xml" htmlUrl="https://pypi.org/project/urwid-readline/"/>
      <outline text="PyPI recent updates for urwidtrees" type="rss" xmlUrl="https://pypi.org/rss/project/urwidtrees/releases.xml" htmlUrl="https://pypi.org/project/urwidtrees/"/>
      <outline text="PyPI recent updates for userpath" type="rss" xmlUrl="https://pypi.org/rss/project/userpath/releases.xml" htmlUrl="https://pypi.org/project/userpath/"/>
      <outline text="PyPI recent updates for uTidylib" type="rss" xmlUrl="https://pypi.org/rss/project/uTidylib/releases.xml" htmlUrl="https://pypi.org/project/uTidylib/"/>
      <outline text="PyPI recent updates for uv" type="rss" xmlUrl="https://pypi.org/rss/project/uv/releases.xml" htmlUrl="https://pypi.org/project/uv/"/>
      <outline text="PyPI recent updates for uvicorn" type="rss" xmlUrl="https://pypi.org/rss/project/uvicorn/releases.xml" htmlUrl="https://pypi.org/project/uvicorn/"/>
      <outline text="PyPI recent updates for uvloop" type="rss" xmlUrl="https://pypi.org/rss/project/uvloop/releases.xml" htmlUrl="https://pypi.org/project/uvloop/"/>
      <outline text="PyPI recent updates for validators" type="rss" xmlUrl="https://pypi.org/rss/project/validators/releases.xml" htmlUrl="https://pypi.org/project/validators/"/>
      <outline text="PyPI recent updates for varlink" type="rss" xmlUrl="https://pypi.org/rss/project/varlink/releases.xml" htmlUrl="https://pypi.org/project/varlink/"/>
      <outline text="PyPI recent updates for vcrpy" type="rss" xmlUrl="https://pypi.org/rss/project/vcrpy/releases.xml" htmlUrl="https://pypi.org/project/vcrpy/"/>
      <outline text="PyPI recent updates for vdf" type="rss" xmlUrl="https://pypi.org/rss/project/vdf/releases.xml" htmlUrl="https://pypi.org/project/vdf/"/>
      <outline text="PyPI recent updates for vdirsyncer" type="rss" xmlUrl="https://pypi.org/rss/project/vdirsyncer/releases.xml" htmlUrl="https://pypi.org/project/vdirsyncer/"/>
      <outline text="PyPI recent updates for vecrec" type="rss" xmlUrl="https://pypi.org/rss/project/vecrec/releases.xml" htmlUrl="https://pypi.org/project/vecrec/"/>
      <outline text="PyPI recent updates for verboselogs" type="rss" xmlUrl="https://pypi.org/rss/project/verboselogs/releases.xml" htmlUrl="https://pypi.org/project/verboselogs/"/>
      <outline text="PyPI recent updates for versioneer" type="rss" xmlUrl="https://pypi.org/rss/project/versioneer/releases.xml" htmlUrl="https://pypi.org/project/versioneer/"/>
      <outline text="PyPI recent updates for versioningit" type="rss" xmlUrl="https://pypi.org/rss/project/versioningit/releases.xml" htmlUrl="https://pypi.org/project/versioningit/"/>
      <outline text="PyPI recent updates for vine" type="rss" xmlUrl="https://pypi.org/rss/project/vine/releases.xml" htmlUrl="https://pypi.org/project/vine/"/>
      <outline text="PyPI recent updates for virtualenv" type="rss" xmlUrl="https://pypi.org/rss/project/virtualenv/releases.xml" htmlUrl="https://pypi.org/project/virtualenv/"/>
      <outline text="PyPI recent updates for virtualenv-clone" type="rss" xmlUrl="https://pypi.org/rss/project/virtualenv-clone/releases.xml" htmlUrl="https://pypi.org/project/virtualenv-clone/"/>
      <outline text="PyPI recent updates for virtualenvwrapper" type="rss" xmlUrl="https://pypi.org/rss/project/virtualenvwrapper/releases.xml" htmlUrl="https://pypi.org/project/virtualenvwrapper/"/>
      <outline text="PyPI recent updates for visitor" type="rss" xmlUrl="https://pypi.org/rss/project/visitor/releases.xml" htmlUrl="https://pypi.org/project/visitor/"/>
      <outline text="PyPI recent updates for vobject" type="rss" xmlUrl="https://pypi.org/rss/project/vobject/releases.xml" htmlUrl="https://pypi.org/project/vobject/"/>
      <outline text="PyPI recent updates for voluptuous" type="rss" xmlUrl="https://pypi.org/rss/project/voluptuous/releases.xml" htmlUrl="https://pypi.org/project/voluptuous/"/>
      <outline text="PyPI recent updates for vpython" type="rss" xmlUrl="https://pypi.org/rss/project/vpython/releases.xml" htmlUrl="https://pypi.org/project/vpython/"/>
      <outline text="PyPI recent updates for waitress" type="rss" xmlUrl="https://pypi.org/rss/project/waitress/releases.xml" htmlUrl="https://pypi.org/project/waitress/"/>
      <outline text="PyPI recent updates for Wand" type="rss" xmlUrl="https://pypi.org/rss/project/Wand/releases.xml" htmlUrl="https://pypi.org/project/Wand/"/>
      <outline text="PyPI recent updates for warlock" type="rss" xmlUrl="https://pypi.org/rss/project/warlock/releases.xml" htmlUrl="https://pypi.org/project/warlock/"/>
      <outline text="PyPI recent updates for watchdog" type="rss" xmlUrl="https://pypi.org/rss/project/watchdog/releases.xml" htmlUrl="https://pypi.org/project/watchdog/"/>
      <outline text="PyPI recent updates for watchfiles" type="rss" xmlUrl="https://pypi.org/rss/project/watchfiles/releases.xml" htmlUrl="https://pypi.org/project/watchfiles/"/>
      <outline text="PyPI recent updates for wcag-contrast-ratio" type="rss" xmlUrl="https://pypi.org/rss/project/wcag-contrast-ratio/releases.xml" htmlUrl="https://pypi.org/project/wcag-contrast-ratio/"/>
      <outline text="PyPI recent updates for wcmatch" type="rss" xmlUrl="https://pypi.org/rss/project/wcmatch/releases.xml" htmlUrl="https://pypi.org/project/wcmatch/"/>
      <outline text="PyPI recent updates for wcwidth" type="rss" xmlUrl="https://pypi.org/rss/project/wcwidth/releases.xml" htmlUrl="https://pypi.org/project/wcwidth/"/>
      <outline text="PyPI recent updates for weasyprint" type="rss" xmlUrl="https://pypi.org/rss/project/weasyprint/releases.xml" htmlUrl="https://pypi.org/project/weasyprint/"/>
      <outline text="PyPI recent updates for webcolors" type="rss" xmlUrl="https://pypi.org/rss/project/webcolors/releases.xml" htmlUrl="https://pypi.org/project/webcolors/"/>
      <outline text="PyPI recent updates for webencodings" type="rss" xmlUrl="https://pypi.org/rss/project/webencodings/releases.xml" htmlUrl="https://pypi.org/project/webencodings/"/>
      <outline text="PyPI recent updates for WebOb" type="rss" xmlUrl="https://pypi.org/rss/project/WebOb/releases.xml" htmlUrl="https://pypi.org/project/WebOb/"/>
      <outline text="PyPI recent updates for websocket-client" type="rss" xmlUrl="https://pypi.org/rss/project/websocket-client/releases.xml" htmlUrl="https://pypi.org/project/websocket-client/"/>
      <outline text="PyPI recent updates for websockets" type="rss" xmlUrl="https://pypi.org/rss/project/websockets/releases.xml" htmlUrl="https://pypi.org/project/websockets/"/>
      <outline text="PyPI recent updates for websockify" type="rss" xmlUrl="https://pypi.org/rss/project/websockify/releases.xml" htmlUrl="https://pypi.org/project/websockify/"/>
      <outline text="PyPI recent updates for WebTest" type="rss" xmlUrl="https://pypi.org/rss/project/WebTest/releases.xml" htmlUrl="https://pypi.org/project/WebTest/"/>
      <outline text="PyPI recent updates for Werkzeug" type="rss" xmlUrl="https://pypi.org/rss/project/Werkzeug/releases.xml" htmlUrl="https://pypi.org/project/Werkzeug/"/>
      <outline text="PyPI recent updates for whatever" type="rss" xmlUrl="https://pypi.org/rss/project/whatever/releases.xml" htmlUrl="https://pypi.org/project/whatever/"/>
      <outline text="PyPI recent updates for whatthepatch" type="rss" xmlUrl="https://pypi.org/rss/project/whatthepatch/releases.xml" htmlUrl="https://pypi.org/project/whatthepatch/"/>
      <outline text="PyPI recent updates for wheel" type="rss" xmlUrl="https://pypi.org/rss/project/wheel/releases.xml" htmlUrl="https://pypi.org/project/wheel/"/>
      <outline text="PyPI recent updates for whisper" type="rss" xmlUrl="https://pypi.org/rss/project/whisper/releases.xml" htmlUrl="https://pypi.org/project/whisper/"/>
      <outline text="PyPI recent updates for Whoosh" type="rss" xmlUrl="https://pypi.org/rss/project/Whoosh/releases.xml" htmlUrl="https://pypi.org/project/Whoosh/"/>
      <outline text="PyPI recent updates for widgetsnbextension" type="rss" xmlUrl="https://pypi.org/rss/project/widgetsnbextension/releases.xml" htmlUrl="https://pypi.org/project/widgetsnbextension/"/>
      <outline text="PyPI recent updates for wrapt" type="rss" xmlUrl="https://pypi.org/rss/project/wrapt/releases.xml" htmlUrl="https://pypi.org/project/wrapt/"/>
      <outline text="PyPI recent updates for wsaccel" type="rss" xmlUrl="https://pypi.org/rss/project/wsaccel/releases.xml" htmlUrl="https://pypi.org/project/wsaccel/"/>
      <outline text="PyPI recent updates for WSGIProxy2" type="rss" xmlUrl="https://pypi.org/rss/project/WSGIProxy2/releases.xml" htmlUrl="https://pypi.org/project/WSGIProxy2/"/>
      <outline text="PyPI recent updates for wsproto" type="rss" xmlUrl="https://pypi.org/rss/project/wsproto/releases.xml" htmlUrl="https://pypi.org/project/wsproto/"/>
      <outline text="PyPI recent updates for WTForms" type="rss" xmlUrl="https://pypi.org/rss/project/WTForms/releases.xml" htmlUrl="https://pypi.org/project/WTForms/"/>
      <outline text="PyPI recent updates for wurlitzer" type="rss" xmlUrl="https://pypi.org/rss/project/wurlitzer/releases.xml" htmlUrl="https://pypi.org/project/wurlitzer/"/>
      <outline text="PyPI recent updates for wxPython" type="rss" xmlUrl="https://pypi.org/rss/project/wxPython/releases.xml" htmlUrl="https://pypi.org/project/wxPython/"/>
      <outline text="PyPI recent updates for xarray" type="rss" xmlUrl="https://pypi.org/rss/project/xarray/releases.xml" htmlUrl="https://pypi.org/project/xarray/"/>
      <outline text="PyPI recent updates for xcffib" type="rss" xmlUrl="https://pypi.org/rss/project/xcffib/releases.xml" htmlUrl="https://pypi.org/project/xcffib/"/>
      <outline text="PyPI recent updates for xdoctest" type="rss" xmlUrl="https://pypi.org/rss/project/xdoctest/releases.xml" htmlUrl="https://pypi.org/project/xdoctest/"/>
      <outline text="PyPI recent updates for xkbcommon" type="rss" xmlUrl="https://pypi.org/rss/project/xkbcommon/releases.xml" htmlUrl="https://pypi.org/project/xkbcommon/"/>
      <outline text="PyPI recent updates for xlrd" type="rss" xmlUrl="https://pypi.org/rss/project/xlrd/releases.xml" htmlUrl="https://pypi.org/project/xlrd/"/>
      <outline text="PyPI recent updates for XlsxWriter" type="rss" xmlUrl="https://pypi.org/rss/project/XlsxWriter/releases.xml" htmlUrl="https://pypi.org/project/XlsxWriter/"/>
      <outline text="PyPI recent updates for xlwt" type="rss" xmlUrl="https://pypi.org/rss/project/xlwt/releases.xml" htmlUrl="https://pypi.org/project/xlwt/"/>
      <outline text="PyPI recent updates for xmlschema" type="rss" xmlUrl="https://pypi.org/rss/project/xmlschema/releases.xml" htmlUrl="https://pypi.org/project/xmlschema/"/>
      <outline text="PyPI recent updates for xmlsec" type="rss" xmlUrl="https://pypi.org/rss/project/xmlsec/releases.xml" htmlUrl="https://pypi.org/project/xmlsec/"/>
      <outline text="PyPI recent updates for xmltodict" type="rss" xmlUrl="https://pypi.org/rss/project/xmltodict/releases.xml" htmlUrl="https://pypi.org/project/xmltodict/"/>
      <outline text="PyPI recent updates for xvfbwrapper" type="rss" xmlUrl="https://pypi.org/rss/project/xvfbwrapper/releases.xml" htmlUrl="https://pypi.org/project/xvfbwrapper/"/>
      <outline text="PyPI recent updates for x-wr-timezone" type="rss" xmlUrl="https://pypi.org/rss/project/x-wr-timezone/releases.xml" htmlUrl="https://pypi.org/project/x-wr-timezone/"/>
      <outline text="PyPI recent updates for xxhash" type="rss" xmlUrl="https://pypi.org/rss/project/xxhash/releases.xml" htmlUrl="https://pypi.org/project/xxhash/"/>
      <outline text="PyPI recent updates for yapf" type="rss" xmlUrl="https://pypi.org/rss/project/yapf/releases.xml" htmlUrl="https://pypi.org/project/yapf/"/>
      <outline text="PyPI recent updates for yappi" type="rss" xmlUrl="https://pypi.org/rss/project/yappi/releases.xml" htmlUrl="https://pypi.org/project/yappi/"/>
      <outline text="PyPI recent updates for Yapsy" type="rss" xmlUrl="https://pypi.org/rss/project/Yapsy/releases.xml" htmlUrl="https://pypi.org/project/Yapsy/"/>
      <outline text="PyPI recent updates for yara-python" type="rss" xmlUrl="https://pypi.org/rss/project/yara-python/releases.xml" htmlUrl="https://pypi.org/project/yara-python/"/>
      <outline text="PyPI recent updates for yarl" type="rss" xmlUrl="https://pypi.org/rss/project/yarl/releases.xml" htmlUrl="https://pypi.org/project/yarl/"/>
      <outline text="PyPI recent updates for yaswfp" type="rss" xmlUrl="https://pypi.org/rss/project/yaswfp/releases.xml" htmlUrl="https://pypi.org/project/yaswfp/"/>
      <outline text="PyPI recent updates for yattag" type="rss" xmlUrl="https://pypi.org/rss/project/yattag/releases.xml" htmlUrl="https://pypi.org/project/yattag/"/>
      <outline text="PyPI recent updates for yaxmldiff" type="rss" xmlUrl="https://pypi.org/rss/project/yaxmldiff/releases.xml" htmlUrl="https://pypi.org/project/yaxmldiff/"/>
      <outline text="PyPI recent updates for youtube-search-python" type="rss" xmlUrl="https://pypi.org/rss/project/youtube-search-python/releases.xml" htmlUrl="https://pypi.org/project/youtube-search-python/"/>
      <outline text="PyPI recent updates for ytmusicapi" type="rss" xmlUrl="https://pypi.org/rss/project/ytmusicapi/releases.xml" htmlUrl="https://pypi.org/project/ytmusicapi/"/>
      <outline text="PyPI recent updates for zc.lockfile" type="rss" xmlUrl="https://pypi.org/rss/project/zc.lockfile/releases.xml" htmlUrl="https://pypi.org/project/zc.lockfile/"/>
      <outline text="PyPI recent updates for ZConfig" type="rss" xmlUrl="https://pypi.org/rss/project/ZConfig/releases.xml" htmlUrl="https://pypi.org/project/ZConfig/"/>
      <outline text="PyPI recent updates for zeep" type="rss" xmlUrl="https://pypi.org/rss/project/zeep/releases.xml" htmlUrl="https://pypi.org/project/zeep/"/>
      <outline text="PyPI recent updates for zeroconf" type="rss" xmlUrl="https://pypi.org/rss/project/zeroconf/releases.xml" htmlUrl="https://pypi.org/project/zeroconf/"/>
      <outline text="PyPI recent updates for zipp" type="rss" xmlUrl="https://pypi.org/rss/project/zipp/releases.xml" htmlUrl="https://pypi.org/project/zipp/"/>
      <outline text="PyPI recent updates for zope.component" type="rss" xmlUrl="https://pypi.org/rss/project/zope.component/releases.xml" htmlUrl="https://pypi.org/project/zope.component/"/>
      <outline text="PyPI recent updates for zope.configuration" type="rss" xmlUrl="https://pypi.org/rss/project/zope.configuration/releases.xml" htmlUrl="https://pypi.org/project/zope.configuration/"/>
      <outline text="PyPI recent updates for zope.deprecation" type="rss" xmlUrl="https://pypi.org/rss/project/zope.deprecation/releases.xml" htmlUrl="https://pypi.org/project/zope.deprecation/"/>
      <outline text="PyPI recent updates for zope.event" type="rss" xmlUrl="https://pypi.org/rss/project/zope.event/releases.xml" htmlUrl="https://pypi.org/project/zope.event/"/>
      <outline text="PyPI recent updates for zope.exceptions" type="rss" xmlUrl="https://pypi.org/rss/project/zope.exceptions/releases.xml" htmlUrl="https://pypi.org/project/zope.exceptions/"/>
      <outline text="PyPI recent updates for zope.hookable" type="rss" xmlUrl="https://pypi.org/rss/project/zope.hookable/releases.xml" htmlUrl="https://pypi.org/project/zope.hookable/"/>
      <outline text="PyPI recent updates for zope.i18nmessageid" type="rss" xmlUrl="https://pypi.org/rss/project/zope.i18nmessageid/releases.xml" htmlUrl="https://pypi.org/project/zope.i18nmessageid/"/>
      <outline text="PyPI recent updates for zope.interface" type="rss" xmlUrl="https://pypi.org/rss/project/zope.interface/releases.xml" htmlUrl="https://pypi.org/project/zope.interface/"/>
      <outline text="PyPI recent updates for zope.schema" type="rss" xmlUrl="https://pypi.org/rss/project/zope.schema/releases.xml" htmlUrl="https://pypi.org/project/zope.schema/"/>
      <outline text="PyPI recent updates for zope.testing" type="rss" xmlUrl="https://pypi.org/rss/project/zope.testing/releases.xml" htmlUrl="https://pypi.org/project/zope.testing/"/>
      <outline text="PyPI recent updates for zstandard" type="rss" xmlUrl="https://pypi.org/rss/project/zstandard/releases.xml" htmlUrl="https://pypi.org/project/zstandard/"/>
      <outline text="PyPI recent updates for zstd" type="rss" xmlUrl="https://pypi.org/rss/project/zstd/releases.xml" htmlUrl="https://pypi.org/project/zstd/"/>
      <outline text="Release notes from bareos" type="atom" xmlUrl="https://github.com/bareos/bareos/releases.atom" htmlUrl="https://github.com/bareos/bareos/releases"/>
      <outline text="Release notes from brotli" type="atom" xmlUrl="https://github.com/google/brotli/releases.atom" htmlUrl="https://github.com/google/brotli/releases"/>
      <outline text="Release notes from btrfs-progs" type="atom" xmlUrl="https://github.com/kdave/btrfs-progs/releases.atom" htmlUrl="https://github.com/kdave/btrfs-progs/releases"/>
      <outline text="Release notes from chainstream" type="atom" xmlUrl="https://github.com/rrthomas/chainstream/releases.atom" htmlUrl="https://github.com/rrthomas/chainstream/releases"/>
      <outline text="Release notes from cpython" type="atom" xmlUrl="https://github.com/python/cpython/releases.atom" htmlUrl="https://github.com/python/cpython/releases"/>
      <outline text="Release notes from elfix" type="atom" xmlUrl="https://github.com/gentoo/elfix/releases.atom" htmlUrl="https://github.com/gentoo/elfix/releases"/>
      <outline text="Release notes from gdb-pt-dump" type="atom" xmlUrl="https://github.com/martinradev/gdb-pt-dump/releases.atom" htmlUrl="https://github.com/martinradev/gdb-pt-dump/releases"/>
      <outline text="Release notes from liblarch" type="atom" xmlUrl="https://github.com/getting-things-gnome/liblarch/releases.atom" htmlUrl="https://github.com/getting-things-gnome/liblarch/releases"/>
      <outline text="Release notes from llvm-project" type="atom" xmlUrl="https://github.com/llvm/llvm-project/releases.atom" htmlUrl="https://github.com/llvm/llvm-project/releases"/>
      <outline text="Release notes from pivy" type="atom" xmlUrl="https://github.com/coin3d/pivy/releases.atom" htmlUrl="https://github.com/coin3d/pivy/releases"/>
      <outline text="Release notes from pyDeComp" type="atom" xmlUrl="https://github.com/dol-sen/pyDeComp/releases.atom" htmlUrl="https://github.com/dol-sen/pyDeComp/releases"/>
      <outline text="Release notes from Pymacs" type="atom" xmlUrl="https://github.com/dgentry/Pymacs/releases.atom" htmlUrl="https://github.com/dgentry/Pymacs/releases"/>
      <outline text="Release notes from pymdown-lexers" type="atom" xmlUrl="https://github.com/facelessuser/pymdown-lexers/releases.atom" htmlUrl="https://github.com/facelessuser/pymdown-lexers/releases"/>
      <outline text="Release notes from pymountboot" type="atom" xmlUrl="https://github.com/projg2/pymountboot/releases.atom" htmlUrl="https://github.com/projg2/pymountboot/releases"/>
      <outline text="Release notes from pyotherside" type="atom" xmlUrl="https://github.com/thp/pyotherside/releases.atom" htmlUrl="https://github.com/thp/pyotherside/releases"/>
      <outline text="Release notes from pypy" type="atom" xmlUrl="https://github.com/pypy/pypy/releases.atom" htmlUrl="https://github.com/pypy/pypy/releases"/>
      <outline text="Release notes from python3-lxc" type="atom" xmlUrl="https://github.com/lxc/python3-lxc/releases.atom" htmlUrl="https://github.com/lxc/python3-lxc/releases"/>
      <outline text="Release notes from python3-xapp" type="atom" xmlUrl="https://github.com/linuxmint/python3-xapp/releases.atom" htmlUrl="https://github.com/linuxmint/python3-xapp/releases"/>
      <outline text="Release notes from python-caja" type="atom" xmlUrl="https://github.com/mate-desktop/python-caja/releases.atom" htmlUrl="https://github.com/mate-desktop/python-caja/releases"/>
      <outline text="Release notes from python-exec" type="atom" xmlUrl="https://github.com/projg2/python-exec/releases.atom" htmlUrl="https://github.com/projg2/python-exec/releases"/>
      <outline text="Release notes from pyzor" type="atom" xmlUrl="https://github.com/SpamExperts/pyzor/releases.atom" htmlUrl="https://github.com/SpamExperts/pyzor/releases"/>
      <outline text="Release notes from ssl-fetch" type="atom" xmlUrl="https://github.com/dol-sen/ssl-fetch/releases.atom" htmlUrl="https://github.com/dol-sen/ssl-fetch/releases"/>
      <outline text="Release notes from stripe-mock" type="atom" xmlUrl="https://github.com/stripe/stripe-mock/releases.atom" htmlUrl="https://github.com/stripe/stripe-mock/releases"/>
      <outline text="Release notes from unittest-or-fail" type="atom" xmlUrl="https://github.com/projg2/unittest-or-fail/releases.atom" htmlUrl="https://github.com/projg2/unittest-or-fail/releases"/>
    </outline>
  </body>
</opml>