summaryrefslogtreecommitdiff
blob: 60fbd9ac5fe9fa80c0de87cbaf03f44c9023c37d (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
<?xml version="1.0"?>
<opml version="1.0">
  <head>
    <title>Python Release Feeds</title>
  </head>
  <body>
      <outline title="python" text="python" description="python" type="folder">
        <outline title="PyPI recent updates for 3to2" text="PyPI recent updates for 3to2" description="PyPI recent updates for 3to2" type="rss" xmlUrl="https://pypi.org/rss/project/3to2/releases.xml" htmlUrl="https://pypi.org/project/3to2/"/>
        <outline title="PyPI recent updates for absl-py" text="PyPI recent updates for absl-py" description="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 title="PyPI recent updates for abydos" text="PyPI recent updates for abydos" description="PyPI recent updates for abydos" type="rss" xmlUrl="https://pypi.org/rss/project/abydos/releases.xml" htmlUrl="https://pypi.org/project/abydos/"/>
        <outline title="PyPI recent updates for adblock" text="PyPI recent updates for adblock" description="PyPI recent updates for adblock" type="rss" xmlUrl="https://pypi.org/rss/project/adblock/releases.xml" htmlUrl="https://pypi.org/project/adblock/"/>
        <outline title="PyPI recent updates for aesara" text="PyPI recent updates for aesara" description="PyPI recent updates for aesara" type="rss" xmlUrl="https://pypi.org/rss/project/aesara/releases.xml" htmlUrl="https://pypi.org/project/aesara/"/>
        <outline title="PyPI recent updates for agate" text="PyPI recent updates for agate" description="PyPI recent updates for agate" type="rss" xmlUrl="https://pypi.org/rss/project/agate/releases.xml" htmlUrl="https://pypi.org/project/agate/"/>
        <outline title="PyPI recent updates for agate-dbf" text="PyPI recent updates for agate-dbf" description="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 title="PyPI recent updates for agate-excel" text="PyPI recent updates for agate-excel" description="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 title="PyPI recent updates for agate-sql" text="PyPI recent updates for agate-sql" description="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 title="PyPI recent updates for aiodns" text="PyPI recent updates for aiodns" description="PyPI recent updates for aiodns" type="rss" xmlUrl="https://pypi.org/rss/project/aiodns/releases.xml" htmlUrl="https://pypi.org/project/aiodns/"/>
        <outline title="PyPI recent updates for aiofiles" text="PyPI recent updates for aiofiles" description="PyPI recent updates for aiofiles" type="rss" xmlUrl="https://pypi.org/rss/project/aiofiles/releases.xml" htmlUrl="https://pypi.org/project/aiofiles/"/>
        <outline title="PyPI recent updates for aiohttp" text="PyPI recent updates for aiohttp" description="PyPI recent updates for aiohttp" type="rss" xmlUrl="https://pypi.org/rss/project/aiohttp/releases.xml" htmlUrl="https://pypi.org/project/aiohttp/"/>
        <outline title="PyPI recent updates for aiohttp-socks" text="PyPI recent updates for aiohttp-socks" description="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 title="PyPI recent updates for aiohttp-theme" text="PyPI recent updates for aiohttp-theme" description="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 title="PyPI recent updates for aiohttp_cors" text="PyPI recent updates for aiohttp_cors" description="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 title="PyPI recent updates for aiohttp_jinja2" text="PyPI recent updates for aiohttp_jinja2" description="PyPI recent updates for aiohttp_jinja2" type="rss" xmlUrl="https://pypi.org/rss/project/aiohttp_jinja2/releases.xml" htmlUrl="https://pypi.org/project/aiohttp-jinja2/"/>
        <outline title="PyPI recent updates for aiopylgtv" text="PyPI recent updates for aiopylgtv" description="PyPI recent updates for aiopylgtv" type="rss" xmlUrl="https://pypi.org/rss/project/aiopylgtv/releases.xml" htmlUrl="https://pypi.org/project/aiopylgtv/"/>
        <outline title="PyPI recent updates for aioresponses" text="PyPI recent updates for aioresponses" description="PyPI recent updates for aioresponses" type="rss" xmlUrl="https://pypi.org/rss/project/aioresponses/releases.xml" htmlUrl="https://pypi.org/project/aioresponses/"/>
        <outline title="PyPI recent updates for aioredis" text="PyPI recent updates for aioredis" description="PyPI recent updates for aioredis" type="rss" xmlUrl="https://pypi.org/rss/project/aioredis/releases.xml" htmlUrl="https://pypi.org/project/aioredis/"/>
        <outline title="PyPI recent updates for aiorpcX" text="PyPI recent updates for aiorpcX" description="PyPI recent updates for aiorpcX" type="rss" xmlUrl="https://pypi.org/rss/project/aiorpcX/releases.xml" htmlUrl="https://pypi.org/project/aiorpcx/"/>
        <outline title="PyPI recent updates for aiosignal" text="PyPI recent updates for aiosignal" description="PyPI recent updates for aiosignal" type="rss" xmlUrl="https://pypi.org/rss/project/aiosignal/releases.xml" htmlUrl="https://pypi.org/project/aiosignal/"/>
        <outline title="PyPI recent updates for aiosmtpd" text="PyPI recent updates for aiosmtpd" description="PyPI recent updates for aiosmtpd" type="rss" xmlUrl="https://pypi.org/rss/project/aiosmtpd/releases.xml" htmlUrl="https://pypi.org/project/aiosmtpd/"/>
        <outline title="PyPI recent updates for ajsonrpc" text="PyPI recent updates for ajsonrpc" description="PyPI recent updates for ajsonrpc" type="rss" xmlUrl="https://pypi.org/rss/project/ajsonrpc/releases.xml" htmlUrl="https://pypi.org/project/ajsonrpc/"/>
        <outline title="PyPI recent updates for alabaster" text="PyPI recent updates for alabaster" description="PyPI recent updates for alabaster" type="rss" xmlUrl="https://pypi.org/rss/project/alabaster/releases.xml" htmlUrl="https://pypi.org/project/alabaster/"/>
        <outline title="PyPI recent updates for alagitpull" text="PyPI recent updates for alagitpull" description="PyPI recent updates for alagitpull" type="rss" xmlUrl="https://pypi.org/rss/project/alagitpull/releases.xml" htmlUrl="https://pypi.org/project/alagitpull/"/>
        <outline title="PyPI recent updates for alembic" text="PyPI recent updates for alembic" description="PyPI recent updates for alembic" type="rss" xmlUrl="https://pypi.org/rss/project/alembic/releases.xml" htmlUrl="https://pypi.org/project/alembic/"/>
        <outline title="PyPI recent updates for amodem" text="PyPI recent updates for amodem" description="PyPI recent updates for amodem" type="rss" xmlUrl="https://pypi.org/rss/project/amodem/releases.xml" htmlUrl="https://pypi.org/project/amodem/"/>
        <outline title="PyPI recent updates for amqp" text="PyPI recent updates for amqp" description="PyPI recent updates for amqp" type="rss" xmlUrl="https://pypi.org/rss/project/amqp/releases.xml" htmlUrl="https://pypi.org/project/amqp/"/>
        <outline title="PyPI recent updates for aniso8601" text="PyPI recent updates for aniso8601" description="PyPI recent updates for aniso8601" type="rss" xmlUrl="https://pypi.org/rss/project/aniso8601/releases.xml" htmlUrl="https://pypi.org/project/aniso8601/"/>
        <outline title="PyPI recent updates for ansi" text="PyPI recent updates for ansi" description="PyPI recent updates for ansi" type="rss" xmlUrl="https://pypi.org/rss/project/ansi/releases.xml" htmlUrl="https://pypi.org/project/ansi/"/>
        <outline title="PyPI recent updates for ansi2html" text="PyPI recent updates for ansi2html" description="PyPI recent updates for ansi2html" type="rss" xmlUrl="https://pypi.org/rss/project/ansi2html/releases.xml" htmlUrl="https://pypi.org/project/ansi2html/"/>
        <outline title="PyPI recent updates for ansible-compat" text="PyPI recent updates for ansible-compat" description="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 title="PyPI recent updates for ansible-pygments" text="PyPI recent updates for ansible-pygments" description="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 title="PyPI recent updates for ansible-runner" text="PyPI recent updates for ansible-runner" description="PyPI recent updates for ansible-runner" type="rss" xmlUrl="https://pypi.org/rss/project/ansible-runner/releases.xml" htmlUrl="https://pypi.org/project/ansible-runner/"/>
        <outline title="PyPI recent updates for ansicolor" text="PyPI recent updates for ansicolor" description="PyPI recent updates for ansicolor" type="rss" xmlUrl="https://pypi.org/rss/project/ansicolor/releases.xml" htmlUrl="https://pypi.org/project/ansicolor/"/>
        <outline title="PyPI recent updates for anyio" text="PyPI recent updates for anyio" description="PyPI recent updates for anyio" type="rss" xmlUrl="https://pypi.org/rss/project/anyio/releases.xml" htmlUrl="https://pypi.org/project/anyio/"/>
        <outline title="PyPI recent updates for AnyQt" text="PyPI recent updates for AnyQt" description="PyPI recent updates for AnyQt" type="rss" xmlUrl="https://pypi.org/rss/project/AnyQt/releases.xml" htmlUrl="https://pypi.org/project/anyqt/"/>
        <outline title="PyPI recent updates for apipkg" text="PyPI recent updates for apipkg" description="PyPI recent updates for apipkg" type="rss" xmlUrl="https://pypi.org/rss/project/apipkg/releases.xml" htmlUrl="https://pypi.org/project/apipkg/"/>
        <outline title="PyPI recent updates for apispec" text="PyPI recent updates for apispec" description="PyPI recent updates for apispec" type="rss" xmlUrl="https://pypi.org/rss/project/apispec/releases.xml" htmlUrl="https://pypi.org/project/apispec/"/>
        <outline title="PyPI recent updates for appdirs" text="PyPI recent updates for appdirs" description="PyPI recent updates for appdirs" type="rss" xmlUrl="https://pypi.org/rss/project/appdirs/releases.xml" htmlUrl="https://pypi.org/project/appdirs/"/>
        <outline title="PyPI recent updates for APScheduler" text="PyPI recent updates for APScheduler" description="PyPI recent updates for APScheduler" type="rss" xmlUrl="https://pypi.org/rss/project/APScheduler/releases.xml" htmlUrl="https://pypi.org/project/apscheduler/"/>
        <outline title="PyPI recent updates for apsw" text="PyPI recent updates for apsw" description="PyPI recent updates for apsw" type="rss" xmlUrl="https://pypi.org/rss/project/apsw/releases.xml" htmlUrl="https://pypi.org/project/apsw/"/>
        <outline title="PyPI recent updates for argcomplete" text="PyPI recent updates for argcomplete" description="PyPI recent updates for argcomplete" type="rss" xmlUrl="https://pypi.org/rss/project/argcomplete/releases.xml" htmlUrl="https://pypi.org/project/argcomplete/"/>
        <outline title="PyPI recent updates for argh" text="PyPI recent updates for argh" description="PyPI recent updates for argh" type="rss" xmlUrl="https://pypi.org/rss/project/argh/releases.xml" htmlUrl="https://pypi.org/project/argh/"/>
        <outline title="PyPI recent updates for argon2-cffi" text="PyPI recent updates for argon2-cffi" description="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 title="PyPI recent updates for argon2-cffi-bindings" text="PyPI recent updates for argon2-cffi-bindings" description="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 title="PyPI recent updates for argparse-manpage" text="PyPI recent updates for argparse-manpage" description="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 title="PyPI recent updates for Arpeggio" text="PyPI recent updates for Arpeggio" description="PyPI recent updates for Arpeggio" type="rss" xmlUrl="https://pypi.org/rss/project/Arpeggio/releases.xml" htmlUrl="https://pypi.org/project/arpeggio/"/>
        <outline title="PyPI recent updates for arrow" text="PyPI recent updates for arrow" description="PyPI recent updates for arrow" type="rss" xmlUrl="https://pypi.org/rss/project/arrow/releases.xml" htmlUrl="https://pypi.org/project/arrow/"/>
        <outline title="PyPI recent updates for asgiref" text="PyPI recent updates for asgiref" description="PyPI recent updates for asgiref" type="rss" xmlUrl="https://pypi.org/rss/project/asgiref/releases.xml" htmlUrl="https://pypi.org/project/asgiref/"/>
        <outline title="PyPI recent updates for asn1crypto" text="PyPI recent updates for asn1crypto" description="PyPI recent updates for asn1crypto" type="rss" xmlUrl="https://pypi.org/rss/project/asn1crypto/releases.xml" htmlUrl="https://pypi.org/project/asn1crypto/"/>
        <outline title="PyPI recent updates for asteval" text="PyPI recent updates for asteval" description="PyPI recent updates for asteval" type="rss" xmlUrl="https://pypi.org/rss/project/asteval/releases.xml" htmlUrl="https://pypi.org/project/asteval/"/>
        <outline title="PyPI recent updates for astor" text="PyPI recent updates for astor" description="PyPI recent updates for astor" type="rss" xmlUrl="https://pypi.org/rss/project/astor/releases.xml" htmlUrl="https://pypi.org/project/astor/"/>
        <outline title="PyPI recent updates for astroid" text="PyPI recent updates for astroid" description="PyPI recent updates for astroid" type="rss" xmlUrl="https://pypi.org/rss/project/astroid/releases.xml" htmlUrl="https://pypi.org/project/astroid/"/>
        <outline title="PyPI recent updates for asttokens" text="PyPI recent updates for asttokens" description="PyPI recent updates for asttokens" type="rss" xmlUrl="https://pypi.org/rss/project/asttokens/releases.xml" htmlUrl="https://pypi.org/project/asttokens/"/>
        <outline title="PyPI recent updates for astunparse" text="PyPI recent updates for astunparse" description="PyPI recent updates for astunparse" type="rss" xmlUrl="https://pypi.org/rss/project/astunparse/releases.xml" htmlUrl="https://pypi.org/project/astunparse/"/>
        <outline title="PyPI recent updates for async-timeout" text="PyPI recent updates for async-timeout" description="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 title="PyPI recent updates for async_generator" text="PyPI recent updates for async_generator" description="PyPI recent updates for async_generator" type="rss" xmlUrl="https://pypi.org/rss/project/async_generator/releases.xml" htmlUrl="https://pypi.org/project/async-generator/"/>
        <outline title="PyPI recent updates for async_lru" text="PyPI recent updates for async_lru" description="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 title="PyPI recent updates for asyncstdlib" text="PyPI recent updates for asyncstdlib" description="PyPI recent updates for asyncstdlib" type="rss" xmlUrl="https://pypi.org/rss/project/asyncstdlib/releases.xml" htmlUrl="https://pypi.org/project/asyncstdlib/"/>
        <outline title="PyPI recent updates for atomicwrites" text="PyPI recent updates for atomicwrites" description="PyPI recent updates for atomicwrites" type="rss" xmlUrl="https://pypi.org/rss/project/atomicwrites/releases.xml" htmlUrl="https://pypi.org/project/atomicwrites/"/>
        <outline title="PyPI recent updates for atpublic" text="PyPI recent updates for atpublic" description="PyPI recent updates for atpublic" type="rss" xmlUrl="https://pypi.org/rss/project/atpublic/releases.xml" htmlUrl="https://pypi.org/project/atpublic/"/>
        <outline title="PyPI recent updates for attrs" text="PyPI recent updates for attrs" description="PyPI recent updates for attrs" type="rss" xmlUrl="https://pypi.org/rss/project/attrs/releases.xml" htmlUrl="https://pypi.org/project/attrs/"/>
        <outline title="PyPI recent updates for audioread" text="PyPI recent updates for audioread" description="PyPI recent updates for audioread" type="rss" xmlUrl="https://pypi.org/rss/project/audioread/releases.xml" htmlUrl="https://pypi.org/project/audioread/"/>
        <outline title="PyPI recent updates for authheaders" text="PyPI recent updates for authheaders" description="PyPI recent updates for authheaders" type="rss" xmlUrl="https://pypi.org/rss/project/authheaders/releases.xml" htmlUrl="https://pypi.org/project/authheaders/"/>
        <outline title="PyPI recent updates for authres" text="PyPI recent updates for authres" description="PyPI recent updates for authres" type="rss" xmlUrl="https://pypi.org/rss/project/authres/releases.xml" htmlUrl="https://pypi.org/project/authres/"/>
        <outline title="PyPI recent updates for autobahn" text="PyPI recent updates for autobahn" description="PyPI recent updates for autobahn" type="rss" xmlUrl="https://pypi.org/rss/project/autobahn/releases.xml" htmlUrl="https://pypi.org/project/autobahn/"/>
        <outline title="PyPI recent updates for Automat" text="PyPI recent updates for Automat" description="PyPI recent updates for Automat" type="rss" xmlUrl="https://pypi.org/rss/project/Automat/releases.xml" htmlUrl="https://pypi.org/project/automat/"/>
        <outline title="PyPI recent updates for automaton" text="PyPI recent updates for automaton" description="PyPI recent updates for automaton" type="rss" xmlUrl="https://pypi.org/rss/project/automaton/releases.xml" htmlUrl="https://pypi.org/project/automaton/"/>
        <outline title="PyPI recent updates for autopage" text="PyPI recent updates for autopage" description="PyPI recent updates for autopage" type="rss" xmlUrl="https://pypi.org/rss/project/autopage/releases.xml" htmlUrl="https://pypi.org/project/autopage/"/>
        <outline title="PyPI recent updates for autopep8" text="PyPI recent updates for autopep8" description="PyPI recent updates for autopep8" type="rss" xmlUrl="https://pypi.org/rss/project/autopep8/releases.xml" htmlUrl="https://pypi.org/project/autopep8/"/>
        <outline title="PyPI recent updates for autoprop" text="PyPI recent updates for autoprop" description="PyPI recent updates for autoprop" type="rss" xmlUrl="https://pypi.org/rss/project/autoprop/releases.xml" htmlUrl="https://pypi.org/project/autoprop/"/>
        <outline title="PyPI recent updates for aws-sam-translator" text="PyPI recent updates for aws-sam-translator" description="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 title="PyPI recent updates for aws-xray-sdk" text="PyPI recent updates for aws-xray-sdk" description="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 title="PyPI recent updates for awscli" text="PyPI recent updates for awscli" description="PyPI recent updates for awscli" type="rss" xmlUrl="https://pypi.org/rss/project/awscli/releases.xml" htmlUrl="https://pypi.org/project/awscli/"/>
        <outline title="PyPI recent updates for awxkit" text="PyPI recent updates for awxkit" description="PyPI recent updates for awxkit" type="rss" xmlUrl="https://pypi.org/rss/project/awxkit/releases.xml" htmlUrl="https://pypi.org/project/awxkit/"/>
        <outline title="PyPI recent updates for Babel" text="PyPI recent updates for Babel" description="PyPI recent updates for Babel" type="rss" xmlUrl="https://pypi.org/rss/project/Babel/releases.xml" htmlUrl="https://pypi.org/project/babel/"/>
        <outline title="PyPI recent updates for babelfish" text="PyPI recent updates for babelfish" description="PyPI recent updates for babelfish" type="rss" xmlUrl="https://pypi.org/rss/project/babelfish/releases.xml" htmlUrl="https://pypi.org/project/babelfish/"/>
        <outline title="PyPI recent updates for backcall" text="PyPI recent updates for backcall" description="PyPI recent updates for backcall" type="rss" xmlUrl="https://pypi.org/rss/project/backcall/releases.xml" htmlUrl="https://pypi.org/project/backcall/"/>
        <outline title="PyPI recent updates for backoff" text="PyPI recent updates for backoff" description="PyPI recent updates for backoff" type="rss" xmlUrl="https://pypi.org/rss/project/backoff/releases.xml" htmlUrl="https://pypi.org/project/backoff/"/>
        <outline title="PyPI recent updates for backports" text="PyPI recent updates for backports" description="PyPI recent updates for backports" type="rss" xmlUrl="https://pypi.org/rss/project/backports/releases.xml" htmlUrl="https://pypi.org/project/backports/"/>
        <outline title="PyPI recent updates for backports.csv" text="PyPI recent updates for backports.csv" description="PyPI recent updates for backports.csv" type="rss" xmlUrl="https://pypi.org/rss/project/backports.csv/releases.xml" htmlUrl="https://pypi.org/project/backports-csv/"/>
        <outline title="PyPI recent updates for backports.entry-points-selectable" text="PyPI recent updates for backports.entry-points-selectable" description="PyPI recent updates for backports.entry-points-selectable" type="rss" xmlUrl="https://pypi.org/rss/project/backports-entry-points-selectable/releases.xml" htmlUrl="https://pypi.org/project/backports-entry-points-selectable/"/>
        <outline title="PyPI recent updates for backports.os" text="PyPI recent updates for backports.os" description="PyPI recent updates for backports.os" type="rss" xmlUrl="https://pypi.org/rss/project/backports.os/releases.xml" htmlUrl="https://pypi.org/project/backports-os/"/>
        <outline title="PyPI recent updates for backports.tempfile" text="PyPI recent updates for backports.tempfile" description="PyPI recent updates for backports.tempfile" type="rss" xmlUrl="https://pypi.org/rss/project/backports.tempfile/releases.xml" htmlUrl="https://pypi.org/project/backports-tempfile/"/>
        <outline title="PyPI recent updates for backports.weakref" text="PyPI recent updates for backports.weakref" description="PyPI recent updates for backports.weakref" type="rss" xmlUrl="https://pypi.org/rss/project/backports.weakref/releases.xml" htmlUrl="https://pypi.org/project/backports-weakref/"/>
        <outline title="PyPI recent updates for backports.zoneinfo" text="PyPI recent updates for backports.zoneinfo" description="PyPI recent updates for backports.zoneinfo" type="rss" xmlUrl="https://pypi.org/rss/project/backports.zoneinfo/releases.xml" htmlUrl="https://pypi.org/project/backports-zoneinfo/"/>
        <outline title="PyPI recent updates for backrefs" text="PyPI recent updates for backrefs" description="PyPI recent updates for backrefs" type="rss" xmlUrl="https://pypi.org/rss/project/backrefs/releases.xml" htmlUrl="https://pypi.org/project/backrefs/"/>
        <outline title="PyPI recent updates for bandit" text="PyPI recent updates for bandit" description="PyPI recent updates for bandit" type="rss" xmlUrl="https://pypi.org/rss/project/bandit/releases.xml" htmlUrl="https://pypi.org/project/bandit/"/>
        <outline title="PyPI recent updates for bashate" text="PyPI recent updates for bashate" description="PyPI recent updates for bashate" type="rss" xmlUrl="https://pypi.org/rss/project/bashate/releases.xml" htmlUrl="https://pypi.org/project/bashate/"/>
        <outline title="PyPI recent updates for basho-erlastic" text="PyPI recent updates for basho-erlastic" description="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 title="PyPI recent updates for bcrypt" text="PyPI recent updates for bcrypt" description="PyPI recent updates for bcrypt" type="rss" xmlUrl="https://pypi.org/rss/project/bcrypt/releases.xml" htmlUrl="https://pypi.org/project/bcrypt/"/>
        <outline title="PyPI recent updates for beagle" text="PyPI recent updates for beagle" description="PyPI recent updates for beagle" type="rss" xmlUrl="https://pypi.org/rss/project/beagle/releases.xml" htmlUrl="https://pypi.org/project/beagle/"/>
        <outline title="PyPI recent updates for beautifulsoup4" text="PyPI recent updates for beautifulsoup4" description="PyPI recent updates for beautifulsoup4" type="rss" xmlUrl="https://pypi.org/rss/project/beautifulsoup4/releases.xml" htmlUrl="https://pypi.org/project/beautifulsoup4/"/>
        <outline title="PyPI recent updates for beniget" text="PyPI recent updates for beniget" description="PyPI recent updates for beniget" type="rss" xmlUrl="https://pypi.org/rss/project/beniget/releases.xml" htmlUrl="https://pypi.org/project/beniget/"/>
        <outline title="PyPI recent updates for berkeleydb" text="PyPI recent updates for berkeleydb" description="PyPI recent updates for berkeleydb" type="rss" xmlUrl="https://pypi.org/rss/project/berkeleydb/releases.xml" htmlUrl="https://pypi.org/project/berkeleydb/"/>
        <outline title="PyPI recent updates for bert" text="PyPI recent updates for bert" description="PyPI recent updates for bert" type="rss" xmlUrl="https://pypi.org/rss/project/bert/releases.xml" htmlUrl="https://pypi.org/project/bert/"/>
        <outline title="PyPI recent updates for betamax" text="PyPI recent updates for betamax" description="PyPI recent updates for betamax" type="rss" xmlUrl="https://pypi.org/rss/project/betamax/releases.xml" htmlUrl="https://pypi.org/project/betamax/"/>
        <outline title="PyPI recent updates for betamax-matchers" text="PyPI recent updates for betamax-matchers" description="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 title="PyPI recent updates for bibtexparser" text="PyPI recent updates for bibtexparser" description="PyPI recent updates for bibtexparser" type="rss" xmlUrl="https://pypi.org/rss/project/bibtexparser/releases.xml" htmlUrl="https://pypi.org/project/bibtexparser/"/>
        <outline title="PyPI recent updates for binaryornot" text="PyPI recent updates for binaryornot" description="PyPI recent updates for binaryornot" type="rss" xmlUrl="https://pypi.org/rss/project/binaryornot/releases.xml" htmlUrl="https://pypi.org/project/binaryornot/"/>
        <outline title="PyPI recent updates for bitarray" text="PyPI recent updates for bitarray" description="PyPI recent updates for bitarray" type="rss" xmlUrl="https://pypi.org/rss/project/bitarray/releases.xml" htmlUrl="https://pypi.org/project/bitarray/"/>
        <outline title="PyPI recent updates for bitstring" text="PyPI recent updates for bitstring" description="PyPI recent updates for bitstring" type="rss" xmlUrl="https://pypi.org/rss/project/bitstring/releases.xml" htmlUrl="https://pypi.org/project/bitstring/"/>
        <outline title="PyPI recent updates for BitVector" text="PyPI recent updates for BitVector" description="PyPI recent updates for BitVector" type="rss" xmlUrl="https://pypi.org/rss/project/BitVector/releases.xml" htmlUrl="https://pypi.org/project/bitvector/"/>
        <outline title="PyPI recent updates for black" text="PyPI recent updates for black" description="PyPI recent updates for black" type="rss" xmlUrl="https://pypi.org/rss/project/black/releases.xml" htmlUrl="https://pypi.org/project/black/"/>
        <outline title="PyPI recent updates for bleach" text="PyPI recent updates for bleach" description="PyPI recent updates for bleach" type="rss" xmlUrl="https://pypi.org/rss/project/bleach/releases.xml" htmlUrl="https://pypi.org/project/bleach/"/>
        <outline title="PyPI recent updates for blessed" text="PyPI recent updates for blessed" description="PyPI recent updates for blessed" type="rss" xmlUrl="https://pypi.org/rss/project/blessed/releases.xml" htmlUrl="https://pypi.org/project/blessed/"/>
        <outline title="PyPI recent updates for blessings" text="PyPI recent updates for blessings" description="PyPI recent updates for blessings" type="rss" xmlUrl="https://pypi.org/rss/project/blessings/releases.xml" htmlUrl="https://pypi.org/project/blessings/"/>
        <outline title="PyPI recent updates for blinker" text="PyPI recent updates for blinker" description="PyPI recent updates for blinker" type="rss" xmlUrl="https://pypi.org/rss/project/blinker/releases.xml" htmlUrl="https://pypi.org/project/blinker/"/>
        <outline title="PyPI recent updates for blockdiag" text="PyPI recent updates for blockdiag" description="PyPI recent updates for blockdiag" type="rss" xmlUrl="https://pypi.org/rss/project/blockdiag/releases.xml" htmlUrl="https://pypi.org/project/blockdiag/"/>
        <outline title="PyPI recent updates for blosc" text="PyPI recent updates for blosc" description="PyPI recent updates for blosc" type="rss" xmlUrl="https://pypi.org/rss/project/blosc/releases.xml" htmlUrl="https://pypi.org/project/blosc/"/>
        <outline title="PyPI recent updates for bluelet" text="PyPI recent updates for bluelet" description="PyPI recent updates for bluelet" type="rss" xmlUrl="https://pypi.org/rss/project/bluelet/releases.xml" htmlUrl="https://pypi.org/project/bluelet/"/>
        <outline title="PyPI recent updates for blurb" text="PyPI recent updates for blurb" description="PyPI recent updates for blurb" type="rss" xmlUrl="https://pypi.org/rss/project/blurb/releases.xml" htmlUrl="https://pypi.org/project/blurb/"/>
        <outline title="PyPI recent updates for boltons" text="PyPI recent updates for boltons" description="PyPI recent updates for boltons" type="rss" xmlUrl="https://pypi.org/rss/project/boltons/releases.xml" htmlUrl="https://pypi.org/project/boltons/"/>
        <outline title="PyPI recent updates for booleanOperations" text="PyPI recent updates for booleanOperations" description="PyPI recent updates for booleanOperations" type="rss" xmlUrl="https://pypi.org/rss/project/booleanOperations/releases.xml" htmlUrl="https://pypi.org/project/booleanoperations/"/>
        <outline title="PyPI recent updates for boto" text="PyPI recent updates for boto" description="PyPI recent updates for boto" type="rss" xmlUrl="https://pypi.org/rss/project/boto/releases.xml" htmlUrl="https://pypi.org/project/boto/"/>
        <outline title="PyPI recent updates for boto3" text="PyPI recent updates for boto3" description="PyPI recent updates for boto3" type="rss" xmlUrl="https://pypi.org/rss/project/boto3/releases.xml" htmlUrl="https://pypi.org/project/boto3/"/>
        <outline title="PyPI recent updates for botocore" text="PyPI recent updates for botocore" description="PyPI recent updates for botocore" type="rss" xmlUrl="https://pypi.org/rss/project/botocore/releases.xml" htmlUrl="https://pypi.org/project/botocore/"/>
        <outline title="PyPI recent updates for bottle" text="PyPI recent updates for bottle" description="PyPI recent updates for bottle" type="rss" xmlUrl="https://pypi.org/rss/project/bottle/releases.xml" htmlUrl="https://pypi.org/project/bottle/"/>
        <outline title="PyPI recent updates for Bottleneck" text="PyPI recent updates for Bottleneck" description="PyPI recent updates for Bottleneck" type="rss" xmlUrl="https://pypi.org/rss/project/Bottleneck/releases.xml" htmlUrl="https://pypi.org/project/bottleneck/"/>
        <outline title="PyPI recent updates for bpython" text="PyPI recent updates for bpython" description="PyPI recent updates for bpython" type="rss" xmlUrl="https://pypi.org/rss/project/bpython/releases.xml" htmlUrl="https://pypi.org/project/bpython/"/>
        <outline title="PyPI recent updates for build" text="PyPI recent updates for build" description="PyPI recent updates for build" type="rss" xmlUrl="https://pypi.org/rss/project/build/releases.xml" htmlUrl="https://pypi.org/project/build/"/>
        <outline title="PyPI recent updates for bracex" text="PyPI recent updates for bracex" description="PyPI recent updates for bracex" type="rss" xmlUrl="https://pypi.org/rss/project/bracex/releases.xml" htmlUrl="https://pypi.org/project/bracex/"/>
        <outline title="PyPI recent updates for braintree" text="PyPI recent updates for braintree" description="PyPI recent updates for braintree" type="rss" xmlUrl="https://pypi.org/rss/project/braintree/releases.xml" htmlUrl="https://pypi.org/project/braintree/"/>
        <outline title="PyPI recent updates for breathe" text="PyPI recent updates for breathe" description="PyPI recent updates for breathe" type="rss" xmlUrl="https://pypi.org/rss/project/breathe/releases.xml" htmlUrl="https://pypi.org/project/breathe/"/>
        <outline title="PyPI recent updates for brotlicffi" text="PyPI recent updates for brotlicffi" description="PyPI recent updates for brotlicffi" type="rss" xmlUrl="https://pypi.org/rss/project/brotlicffi/releases.xml" htmlUrl="https://pypi.org/project/brotlicffi/"/>
        <outline title="PyPI recent updates for brotlipy" text="PyPI recent updates for brotlipy" description="PyPI recent updates for brotlipy" type="rss" xmlUrl="https://pypi.org/rss/project/brotlipy/releases.xml" htmlUrl="https://pypi.org/project/brotlipy/"/>
        <outline title="PyPI recent updates for brython" text="PyPI recent updates for brython" description="PyPI recent updates for brython" type="rss" xmlUrl="https://pypi.org/rss/project/brython/releases.xml" htmlUrl="https://pypi.org/project/brython/"/>
        <outline title="PyPI recent updates for bsddb3" text="PyPI recent updates for bsddb3" description="PyPI recent updates for bsddb3" type="rss" xmlUrl="https://pypi.org/rss/project/bsddb3/releases.xml" htmlUrl="https://pypi.org/project/bsddb3/"/>
        <outline title="PyPI recent updates for cached-property" text="PyPI recent updates for cached-property" description="PyPI recent updates for cached-property" type="rss" xmlUrl="https://pypi.org/rss/project/cached-property/releases.xml" htmlUrl="https://pypi.org/project/cached-property/"/>
        <outline title="PyPI recent updates for cachelib" text="PyPI recent updates for cachelib" description="PyPI recent updates for cachelib" type="rss" xmlUrl="https://pypi.org/rss/project/cachelib/releases.xml" htmlUrl="https://pypi.org/project/cachelib/"/>
        <outline title="PyPI recent updates for cachetools" text="PyPI recent updates for cachetools" description="PyPI recent updates for cachetools" type="rss" xmlUrl="https://pypi.org/rss/project/cachetools/releases.xml" htmlUrl="https://pypi.org/project/cachetools/"/>
        <outline title="PyPI recent updates for cairocffi" text="PyPI recent updates for cairocffi" description="PyPI recent updates for cairocffi" type="rss" xmlUrl="https://pypi.org/rss/project/cairocffi/releases.xml" htmlUrl="https://pypi.org/project/cairocffi/"/>
        <outline title="PyPI recent updates for CangJie" text="PyPI recent updates for CangJie" description="PyPI recent updates for CangJie" type="rss" xmlUrl="https://pypi.org/rss/project/CangJie/releases.xml" htmlUrl="https://pypi.org/project/cangjie/"/>
        <outline title="PyPI recent updates for capturer" text="PyPI recent updates for capturer" description="PyPI recent updates for capturer" type="rss" xmlUrl="https://pypi.org/rss/project/capturer/releases.xml" htmlUrl="https://pypi.org/project/capturer/"/>
        <outline title="PyPI recent updates for carbon" text="PyPI recent updates for carbon" description="PyPI recent updates for carbon" type="rss" xmlUrl="https://pypi.org/rss/project/carbon/releases.xml" htmlUrl="https://pypi.org/project/carbon/"/>
        <outline title="PyPI recent updates for case" text="PyPI recent updates for case" description="PyPI recent updates for case" type="rss" xmlUrl="https://pypi.org/rss/project/case/releases.xml" htmlUrl="https://pypi.org/project/case/"/>
        <outline title="PyPI recent updates for castellan" text="PyPI recent updates for castellan" description="PyPI recent updates for castellan" type="rss" xmlUrl="https://pypi.org/rss/project/castellan/releases.xml" htmlUrl="https://pypi.org/project/castellan/"/>
        <outline title="PyPI recent updates for casttube" text="PyPI recent updates for casttube" description="PyPI recent updates for casttube" type="rss" xmlUrl="https://pypi.org/rss/project/casttube/releases.xml" htmlUrl="https://pypi.org/project/casttube/"/>
        <outline title="PyPI recent updates for catkin-pkg" text="PyPI recent updates for catkin-pkg" description="PyPI recent updates for catkin-pkg" type="rss" xmlUrl="https://pypi.org/rss/project/catkin-pkg/releases.xml" htmlUrl="https://pypi.org/project/catkin-pkg/"/>
        <outline title="PyPI recent updates for cattrs" text="PyPI recent updates for cattrs" description="PyPI recent updates for cattrs" type="rss" xmlUrl="https://pypi.org/rss/project/cattrs/releases.xml" htmlUrl="https://pypi.org/project/cattrs/"/>
        <outline title="PyPI recent updates for cbor" text="PyPI recent updates for cbor" description="PyPI recent updates for cbor" type="rss" xmlUrl="https://pypi.org/rss/project/cbor/releases.xml" htmlUrl="https://pypi.org/project/cbor/"/>
        <outline title="PyPI recent updates for cbor2" text="PyPI recent updates for cbor2" description="PyPI recent updates for cbor2" type="rss" xmlUrl="https://pypi.org/rss/project/cbor2/releases.xml" htmlUrl="https://pypi.org/project/cbor2/"/>
        <outline title="PyPI recent updates for cchardet" text="PyPI recent updates for cchardet" description="PyPI recent updates for cchardet" type="rss" xmlUrl="https://pypi.org/rss/project/cchardet/releases.xml" htmlUrl="https://pypi.org/project/cchardet/"/>
        <outline title="PyPI recent updates for Cerberus" text="PyPI recent updates for Cerberus" description="PyPI recent updates for Cerberus" type="rss" xmlUrl="https://pypi.org/rss/project/cerberus/releases.xml" htmlUrl="https://pypi.org/project/cerberus/"/>
        <outline title="PyPI recent updates for certifi" text="PyPI recent updates for certifi" description="PyPI recent updates for certifi" type="rss" xmlUrl="https://pypi.org/rss/project/certifi/releases.xml" htmlUrl="https://pypi.org/project/certifi/"/>
        <outline title="PyPI recent updates for certifi-system-store" text="PyPI recent updates for certifi-system-store" description="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 title="PyPI recent updates for cffi" text="PyPI recent updates for cffi" description="PyPI recent updates for cffi" type="rss" xmlUrl="https://pypi.org/rss/project/cffi/releases.xml" htmlUrl="https://pypi.org/project/cffi/"/>
        <outline title="PyPI recent updates for cfgv" text="PyPI recent updates for cfgv" description="PyPI recent updates for cfgv" type="rss" xmlUrl="https://pypi.org/rss/project/cfgv/releases.xml" htmlUrl="https://pypi.org/project/cfgv/"/>
        <outline title="PyPI recent updates for cfn-lint" text="PyPI recent updates for cfn-lint" description="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 title="PyPI recent updates for cftime" text="PyPI recent updates for cftime" description="PyPI recent updates for cftime" type="rss" xmlUrl="https://pypi.org/rss/project/cftime/releases.xml" htmlUrl="https://pypi.org/project/cftime/"/>
        <outline title="PyPI recent updates for cgroup-utils" text="PyPI recent updates for cgroup-utils" description="PyPI recent updates for cgroup-utils" type="rss" xmlUrl="https://pypi.org/rss/project/cgroup-utils/releases.xml" htmlUrl="https://pypi.org/project/cgroup-utils/"/>
        <outline title="PyPI recent updates for chai" text="PyPI recent updates for chai" description="PyPI recent updates for chai" type="rss" xmlUrl="https://pypi.org/rss/project/chai/releases.xml" htmlUrl="https://pypi.org/project/chai/"/>
        <outline title="PyPI recent updates for chainmap" text="PyPI recent updates for chainmap" description="PyPI recent updates for chainmap" type="rss" xmlUrl="https://pypi.org/rss/project/chainmap/releases.xml" htmlUrl="https://pypi.org/project/chainmap/"/>
        <outline title="PyPI recent updates for Chameleon" text="PyPI recent updates for Chameleon" description="PyPI recent updates for Chameleon" type="rss" xmlUrl="https://pypi.org/rss/project/Chameleon/releases.xml" htmlUrl="https://pypi.org/project/chameleon/"/>
        <outline title="PyPI recent updates for characteristic" text="PyPI recent updates for characteristic" description="PyPI recent updates for characteristic" type="rss" xmlUrl="https://pypi.org/rss/project/characteristic/releases.xml" htmlUrl="https://pypi.org/project/characteristic/"/>
        <outline title="PyPI recent updates for chardet" text="PyPI recent updates for chardet" description="PyPI recent updates for chardet" type="rss" xmlUrl="https://pypi.org/rss/project/chardet/releases.xml" htmlUrl="https://pypi.org/project/chardet/"/>
        <outline title="PyPI recent updates for charset-normalizer" text="PyPI recent updates for charset-normalizer" description="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 title="PyPI recent updates for chart-studio" text="PyPI recent updates for chart-studio" description="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 title="PyPI recent updates for Cheetah3" text="PyPI recent updates for Cheetah3" description="PyPI recent updates for Cheetah3" type="rss" xmlUrl="https://pypi.org/rss/project/Cheetah3/releases.xml" htmlUrl="https://pypi.org/project/cheetah3/"/>
        <outline title="PyPI recent updates for cheroot" text="PyPI recent updates for cheroot" description="PyPI recent updates for cheroot" type="rss" xmlUrl="https://pypi.org/rss/project/cheroot/releases.xml" htmlUrl="https://pypi.org/project/cheroot/"/>
        <outline title="PyPI recent updates for CherryPy" text="PyPI recent updates for CherryPy" description="PyPI recent updates for CherryPy" type="rss" xmlUrl="https://pypi.org/rss/project/CherryPy/releases.xml" htmlUrl="https://pypi.org/project/cherrypy/"/>
        <outline title="PyPI recent updates for chump" text="PyPI recent updates for chump" description="PyPI recent updates for chump" type="rss" xmlUrl="https://pypi.org/rss/project/chump/releases.xml" htmlUrl="https://pypi.org/project/chump/"/>
        <outline title="PyPI recent updates for citeproc-py" text="PyPI recent updates for citeproc-py" description="PyPI recent updates for citeproc-py" type="rss" xmlUrl="https://pypi.org/rss/project/citeproc-py/releases.xml" htmlUrl="https://pypi.org/project/citeproc-py/"/>
        <outline title="PyPI recent updates for CJKwrap" text="PyPI recent updates for CJKwrap" description="PyPI recent updates for CJKwrap" type="rss" xmlUrl="https://pypi.org/rss/project/CJKwrap/releases.xml" htmlUrl="https://pypi.org/project/cjkwrap/"/>
        <outline title="PyPI recent updates for cleo" text="PyPI recent updates for cleo" description="PyPI recent updates for cleo" type="rss" xmlUrl="https://pypi.org/rss/project/cleo/releases.xml" htmlUrl="https://pypi.org/project/cleo/"/>
        <outline title="PyPI recent updates for cli-helpers" text="PyPI recent updates for cli-helpers" description="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 title="PyPI recent updates for click" text="PyPI recent updates for click" description="PyPI recent updates for click" type="rss" xmlUrl="https://pypi.org/rss/project/click/releases.xml" htmlUrl="https://pypi.org/project/click/"/>
        <outline title="PyPI recent updates for click-default-group" text="PyPI recent updates for click-default-group" description="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 title="PyPI recent updates for click-help-colors" text="PyPI recent updates for click-help-colors" description="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 title="PyPI recent updates for click-log" text="PyPI recent updates for click-log" description="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 title="PyPI recent updates for click-plugins" text="PyPI recent updates for click-plugins" description="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 title="PyPI recent updates for click-threading" text="PyPI recent updates for click-threading" description="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 title="PyPI recent updates for cliff" text="PyPI recent updates for cliff" description="PyPI recent updates for cliff" type="rss" xmlUrl="https://pypi.org/rss/project/cliff/releases.xml" htmlUrl="https://pypi.org/project/cliff/"/>
        <outline title="PyPI recent updates for clikit" text="PyPI recent updates for clikit" description="PyPI recent updates for clikit" type="rss" xmlUrl="https://pypi.org/rss/project/clikit/releases.xml" htmlUrl="https://pypi.org/project/clikit/"/>
        <outline title="PyPI recent updates for clint" text="PyPI recent updates for clint" description="PyPI recent updates for clint" type="rss" xmlUrl="https://pypi.org/rss/project/clint/releases.xml" htmlUrl="https://pypi.org/project/clint/"/>
        <outline title="PyPI recent updates for cloudpickle" text="PyPI recent updates for cloudpickle" description="PyPI recent updates for cloudpickle" type="rss" xmlUrl="https://pypi.org/rss/project/cloudpickle/releases.xml" htmlUrl="https://pypi.org/project/cloudpickle/"/>
        <outline title="PyPI recent updates for cloudscraper" text="PyPI recent updates for cloudscraper" description="PyPI recent updates for cloudscraper" type="rss" xmlUrl="https://pypi.org/rss/project/cloudscraper/releases.xml" htmlUrl="https://pypi.org/project/cloudscraper/"/>
        <outline title="PyPI recent updates for cmd2" text="PyPI recent updates for cmd2" description="PyPI recent updates for cmd2" type="rss" xmlUrl="https://pypi.org/rss/project/cmd2/releases.xml" htmlUrl="https://pypi.org/project/cmd2/"/>
        <outline title="PyPI recent updates for collective.checkdocs" text="PyPI recent updates for collective.checkdocs" description="PyPI recent updates for collective.checkdocs" type="rss" xmlUrl="https://pypi.org/rss/project/collective.checkdocs/releases.xml" htmlUrl="https://pypi.org/project/collective-checkdocs/"/>
        <outline title="PyPI recent updates for colorama" text="PyPI recent updates for colorama" description="PyPI recent updates for colorama" type="rss" xmlUrl="https://pypi.org/rss/project/colorama/releases.xml" htmlUrl="https://pypi.org/project/colorama/"/>
        <outline title="PyPI recent updates for colorclass" text="PyPI recent updates for colorclass" description="PyPI recent updates for colorclass" type="rss" xmlUrl="https://pypi.org/rss/project/colorclass/releases.xml" htmlUrl="https://pypi.org/project/colorclass/"/>
        <outline title="PyPI recent updates for coloredlogs" text="PyPI recent updates for coloredlogs" description="PyPI recent updates for coloredlogs" type="rss" xmlUrl="https://pypi.org/rss/project/coloredlogs/releases.xml" htmlUrl="https://pypi.org/project/coloredlogs/"/>
        <outline title="PyPI recent updates for colorlog" text="PyPI recent updates for colorlog" description="PyPI recent updates for colorlog" type="rss" xmlUrl="https://pypi.org/rss/project/colorlog/releases.xml" htmlUrl="https://pypi.org/project/colorlog/"/>
        <outline title="PyPI recent updates for colorspacious" text="PyPI recent updates for colorspacious" description="PyPI recent updates for colorspacious" type="rss" xmlUrl="https://pypi.org/rss/project/colorspacious/releases.xml" htmlUrl="https://pypi.org/project/colorspacious/"/>
        <outline title="PyPI recent updates for commentjson" text="PyPI recent updates for commentjson" description="PyPI recent updates for commentjson" type="rss" xmlUrl="https://pypi.org/rss/project/commentjson/releases.xml" htmlUrl="https://pypi.org/project/commentjson/"/>
        <outline title="PyPI recent updates for CommonMark" text="PyPI recent updates for CommonMark" description="PyPI recent updates for CommonMark" type="rss" xmlUrl="https://pypi.org/rss/project/CommonMark/releases.xml" htmlUrl="https://pypi.org/project/commonmark/"/>
        <outline title="PyPI recent updates for ConfigArgParse" text="PyPI recent updates for ConfigArgParse" description="PyPI recent updates for ConfigArgParse" type="rss" xmlUrl="https://pypi.org/rss/project/ConfigArgParse/releases.xml" htmlUrl="https://pypi.org/project/configargparse/"/>
        <outline title="PyPI recent updates for configclass" text="PyPI recent updates for configclass" description="PyPI recent updates for configclass" type="rss" xmlUrl="https://pypi.org/rss/project/configclass/releases.xml" htmlUrl="https://pypi.org/project/configclass/"/>
        <outline title="PyPI recent updates for configclass" text="PyPI recent updates for configclass" description="PyPI recent updates for configclass" type="rss" xmlUrl="https://pypi.org/rss/project/configclass/releases.xml" htmlUrl="https://pypi.org/project/configclass/"/>
        <outline title="PyPI recent updates for configobj" text="PyPI recent updates for configobj" description="PyPI recent updates for configobj" type="rss" xmlUrl="https://pypi.org/rss/project/configobj/releases.xml" htmlUrl="https://pypi.org/project/configobj/"/>
        <outline title="PyPI recent updates for configshell-fb" text="PyPI recent updates for configshell-fb" description="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 title="PyPI recent updates for confuse" text="PyPI recent updates for confuse" description="PyPI recent updates for confuse" type="rss" xmlUrl="https://pypi.org/rss/project/confuse/releases.xml" htmlUrl="https://pypi.org/project/confuse/"/>
        <outline title="PyPI recent updates for cons" text="PyPI recent updates for cons" description="PyPI recent updates for cons" type="rss" xmlUrl="https://pypi.org/rss/project/cons/releases.xml" htmlUrl="https://pypi.org/project/cons/"/>
        <outline title="PyPI recent updates for consonance" text="PyPI recent updates for consonance" description="PyPI recent updates for consonance" type="rss" xmlUrl="https://pypi.org/rss/project/consonance/releases.xml" htmlUrl="https://pypi.org/project/consonance/"/>
        <outline title="PyPI recent updates for constantly" text="PyPI recent updates for constantly" description="PyPI recent updates for constantly" type="rss" xmlUrl="https://pypi.org/rss/project/constantly/releases.xml" htmlUrl="https://pypi.org/project/constantly/"/>
        <outline title="PyPI recent updates for construct" text="PyPI recent updates for construct" description="PyPI recent updates for construct" type="rss" xmlUrl="https://pypi.org/rss/project/construct/releases.xml" htmlUrl="https://pypi.org/project/construct/"/>
        <outline title="PyPI recent updates for contextlib2" text="PyPI recent updates for contextlib2" description="PyPI recent updates for contextlib2" type="rss" xmlUrl="https://pypi.org/rss/project/contextlib2/releases.xml" htmlUrl="https://pypi.org/project/contextlib2/"/>
        <outline title="PyPI recent updates for cookies" text="PyPI recent updates for cookies" description="PyPI recent updates for cookies" type="rss" xmlUrl="https://pypi.org/rss/project/cookies/releases.xml" htmlUrl="https://pypi.org/project/cookies/"/>
        <outline title="PyPI recent updates for coreapi" text="PyPI recent updates for coreapi" description="PyPI recent updates for coreapi" type="rss" xmlUrl="https://pypi.org/rss/project/coreapi/releases.xml" htmlUrl="https://pypi.org/project/coreapi/"/>
        <outline title="PyPI recent updates for coreschema" text="PyPI recent updates for coreschema" description="PyPI recent updates for coreschema" type="rss" xmlUrl="https://pypi.org/rss/project/coreschema/releases.xml" htmlUrl="https://pypi.org/project/coreschema/"/>
        <outline title="PyPI recent updates for cov-core" text="PyPI recent updates for cov-core" description="PyPI recent updates for cov-core" type="rss" xmlUrl="https://pypi.org/rss/project/cov-core/releases.xml" htmlUrl="https://pypi.org/project/cov-core/"/>
        <outline title="PyPI recent updates for coverage" text="PyPI recent updates for coverage" description="PyPI recent updates for coverage" type="rss" xmlUrl="https://pypi.org/rss/project/coverage/releases.xml" htmlUrl="https://pypi.org/project/coverage/"/>
        <outline title="PyPI recent updates for CppHeaderParser" text="PyPI recent updates for CppHeaderParser" description="PyPI recent updates for CppHeaderParser" type="rss" xmlUrl="https://pypi.org/rss/project/cppheaderparser/releases.xml" htmlUrl="https://pypi.org/project/cppheaderparser/"/>
        <outline title="PyPI recent updates for cppy" text="PyPI recent updates for cppy" description="PyPI recent updates for cppy" type="rss" xmlUrl="https://pypi.org/rss/project/cppy/releases.xml" htmlUrl="https://pypi.org/project/cppy/"/>
        <outline title="PyPI recent updates for crashtest" text="PyPI recent updates for crashtest" description="PyPI recent updates for crashtest" type="rss" xmlUrl="https://pypi.org/rss/project/crashtest/releases.xml" htmlUrl="https://pypi.org/project/crashtest/"/>
        <outline title="PyPI recent updates for crcmod" text="PyPI recent updates for crcmod" description="PyPI recent updates for crcmod" type="rss" xmlUrl="https://pypi.org/rss/project/crcmod/releases.xml" htmlUrl="https://pypi.org/project/crcmod/"/>
        <outline title="PyPI recent updates for croniter" text="PyPI recent updates for croniter" description="PyPI recent updates for croniter" type="rss" xmlUrl="https://pypi.org/rss/project/croniter/releases.xml" htmlUrl="https://pypi.org/project/croniter/"/>
        <outline title="PyPI recent updates for cryptography" text="PyPI recent updates for cryptography" description="PyPI recent updates for cryptography" type="rss" xmlUrl="https://pypi.org/rss/project/cryptography/releases.xml" htmlUrl="https://pypi.org/project/cryptography/"/>
        <outline title="PyPI recent updates for cson" text="PyPI recent updates for cson" description="PyPI recent updates for cson" type="rss" xmlUrl="https://pypi.org/rss/project/cson/releases.xml" htmlUrl="https://pypi.org/project/cson/"/>
        <outline title="PyPI recent updates for csscompressor" text="PyPI recent updates for csscompressor" description="PyPI recent updates for csscompressor" type="rss" xmlUrl="https://pypi.org/rss/project/csscompressor/releases.xml" htmlUrl="https://pypi.org/project/csscompressor/"/>
        <outline title="PyPI recent updates for css-parser" text="PyPI recent updates for css-parser" description="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 title="PyPI recent updates for cssselect" text="PyPI recent updates for cssselect" description="PyPI recent updates for cssselect" type="rss" xmlUrl="https://pypi.org/rss/project/cssselect/releases.xml" htmlUrl="https://pypi.org/project/cssselect/"/>
        <outline title="PyPI recent updates for cssselect2" text="PyPI recent updates for cssselect2" description="PyPI recent updates for cssselect2" type="rss" xmlUrl="https://pypi.org/rss/project/cssselect2/releases.xml" htmlUrl="https://pypi.org/project/cssselect2/"/>
        <outline title="PyPI recent updates for cssutils" text="PyPI recent updates for cssutils" description="PyPI recent updates for cssutils" type="rss" xmlUrl="https://pypi.org/rss/project/cssutils/releases.xml" htmlUrl="https://pypi.org/project/cssutils/"/>
        <outline title="PyPI recent updates for cstruct" text="PyPI recent updates for cstruct" description="PyPI recent updates for cstruct" type="rss" xmlUrl="https://pypi.org/rss/project/cstruct/releases.xml" htmlUrl="https://pypi.org/project/cstruct/"/>
        <outline title="PyPI recent updates for csv23" text="PyPI recent updates for csv23" description="PyPI recent updates for csv23" type="rss" xmlUrl="https://pypi.org/rss/project/csv23/releases.xml" htmlUrl="https://pypi.org/project/csv23/"/>
        <outline title="PyPI recent updates for csvkit" text="PyPI recent updates for csvkit" description="PyPI recent updates for csvkit" type="rss" xmlUrl="https://pypi.org/rss/project/csvkit/releases.xml" htmlUrl="https://pypi.org/project/csvkit/"/>
        <outline title="PyPI recent updates for ctypescrypto" text="PyPI recent updates for ctypescrypto" description="PyPI recent updates for ctypescrypto" type="rss" xmlUrl="https://pypi.org/rss/project/ctypescrypto/releases.xml" htmlUrl="https://pypi.org/project/ctypescrypto/"/>
        <outline title="PyPI recent updates for ctypesgen" text="PyPI recent updates for ctypesgen" description="PyPI recent updates for ctypesgen" type="rss" xmlUrl="https://pypi.org/rss/project/ctypesgen/releases.xml" htmlUrl="https://pypi.org/project/ctypesgen/"/>
        <outline title="PyPI recent updates for cursive" text="PyPI recent updates for cursive" description="PyPI recent updates for cursive" type="rss" xmlUrl="https://pypi.org/rss/project/cursive/releases.xml" htmlUrl="https://pypi.org/project/cursive/"/>
        <outline title="PyPI recent updates for curtsies" text="PyPI recent updates for curtsies" description="PyPI recent updates for curtsies" type="rss" xmlUrl="https://pypi.org/rss/project/curtsies/releases.xml" htmlUrl="https://pypi.org/project/curtsies/"/>
        <outline title="PyPI recent updates for cvxopt" text="PyPI recent updates for cvxopt" description="PyPI recent updates for cvxopt" type="rss" xmlUrl="https://pypi.org/rss/project/cvxopt/releases.xml" htmlUrl="https://pypi.org/project/cvxopt/"/>
        <outline title="PyPI recent updates for cwcwidth" text="PyPI recent updates for cwcwidth" description="PyPI recent updates for cwcwidth" type="rss" xmlUrl="https://pypi.org/rss/project/cwcwidth/releases.xml" htmlUrl="https://pypi.org/project/cwcwidth/"/>
        <outline title="PyPI recent updates for cx_Freeze" text="PyPI recent updates for cx_Freeze" description="PyPI recent updates for cx_Freeze" type="rss" xmlUrl="https://pypi.org/rss/project/cx_Freeze/releases.xml" htmlUrl="https://pypi.org/project/cx-freeze/"/>
        <outline title="PyPI recent updates for Cycler" text="PyPI recent updates for Cycler" description="PyPI recent updates for Cycler" type="rss" xmlUrl="https://pypi.org/rss/project/Cycler/releases.xml" htmlUrl="https://pypi.org/project/cycler/"/>
        <outline title="PyPI recent updates for Cython" text="PyPI recent updates for Cython" description="PyPI recent updates for Cython" type="rss" xmlUrl="https://pypi.org/rss/project/Cython/releases.xml" htmlUrl="https://pypi.org/project/cython/"/>
        <outline title="PyPI recent updates for cython-test-exception-raiser" text="PyPI recent updates for cython-test-exception-raiser" description="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 title="PyPI recent updates for cytoolz" text="PyPI recent updates for cytoolz" description="PyPI recent updates for cytoolz" type="rss" xmlUrl="https://pypi.org/rss/project/cytoolz/releases.xml" htmlUrl="https://pypi.org/project/cytoolz/"/>
        <outline title="PyPI recent updates for daemonize" text="PyPI recent updates for daemonize" description="PyPI recent updates for daemonize" type="rss" xmlUrl="https://pypi.org/rss/project/daemonize/releases.xml" htmlUrl="https://pypi.org/project/daemonize/"/>
        <outline title="PyPI recent updates for dask" text="PyPI recent updates for dask" description="PyPI recent updates for dask" type="rss" xmlUrl="https://pypi.org/rss/project/dask/releases.xml" htmlUrl="https://pypi.org/project/dask/"/>
        <outline title="PyPI recent updates for dbfread" text="PyPI recent updates for dbfread" description="PyPI recent updates for dbfread" type="rss" xmlUrl="https://pypi.org/rss/project/dbfread/releases.xml" htmlUrl="https://pypi.org/project/dbfread/"/>
        <outline title="PyPI recent updates for dbus-python" text="PyPI recent updates for dbus-python" description="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 title="PyPI recent updates for DBUtils" text="PyPI recent updates for DBUtils" description="PyPI recent updates for DBUtils" type="rss" xmlUrl="https://pypi.org/rss/project/DBUtils/releases.xml" htmlUrl="https://pypi.org/project/dbutils/"/>
        <outline title="PyPI recent updates for ddt" text="PyPI recent updates for ddt" description="PyPI recent updates for ddt" type="rss" xmlUrl="https://pypi.org/rss/project/ddt/releases.xml" htmlUrl="https://pypi.org/project/ddt/"/>
        <outline title="PyPI recent updates for debtcollector" text="PyPI recent updates for debtcollector" description="PyPI recent updates for debtcollector" type="rss" xmlUrl="https://pypi.org/rss/project/debtcollector/releases.xml" htmlUrl="https://pypi.org/project/debtcollector/"/>
        <outline title="PyPI recent updates for debugpy" text="PyPI recent updates for debugpy" description="PyPI recent updates for debugpy" type="rss" xmlUrl="https://pypi.org/rss/project/debugpy/releases.xml" htmlUrl="https://pypi.org/project/debugpy/"/>
        <outline title="PyPI recent updates for decorator" text="PyPI recent updates for decorator" description="PyPI recent updates for decorator" type="rss" xmlUrl="https://pypi.org/rss/project/decorator/releases.xml" htmlUrl="https://pypi.org/project/decorator/"/>
        <outline title="PyPI recent updates for deepmerge" text="PyPI recent updates for deepmerge" description="PyPI recent updates for deepmerge" type="rss" xmlUrl="https://pypi.org/rss/project/deepmerge/releases.xml" htmlUrl="https://pypi.org/project/deepmerge/"/>
        <outline title="PyPI recent updates for defcon" text="PyPI recent updates for defcon" description="PyPI recent updates for defcon" type="rss" xmlUrl="https://pypi.org/rss/project/defcon/releases.xml" htmlUrl="https://pypi.org/project/defcon/"/>
        <outline title="PyPI recent updates for defusedxml" text="PyPI recent updates for defusedxml" description="PyPI recent updates for defusedxml" type="rss" xmlUrl="https://pypi.org/rss/project/defusedxml/releases.xml" htmlUrl="https://pypi.org/project/defusedxml/"/>
        <outline title="PyPI recent updates for denonavr" text="PyPI recent updates for denonavr" description="PyPI recent updates for denonavr" type="rss" xmlUrl="https://pypi.org/rss/project/denonavr/releases.xml" htmlUrl="https://pypi.org/project/denonavr/"/>
        <outline title="PyPI recent updates for Deprecated" text="PyPI recent updates for Deprecated" description="PyPI recent updates for Deprecated" type="rss" xmlUrl="https://pypi.org/rss/project/Deprecated/releases.xml" htmlUrl="https://pypi.org/project/deprecated/"/>
        <outline title="PyPI recent updates for deprecation" text="PyPI recent updates for deprecation" description="PyPI recent updates for deprecation" type="rss" xmlUrl="https://pypi.org/rss/project/deprecation/releases.xml" htmlUrl="https://pypi.org/project/deprecation/"/>
        <outline title="PyPI recent updates for dictdiffer" text="PyPI recent updates for dictdiffer" description="PyPI recent updates for dictdiffer" type="rss" xmlUrl="https://pypi.org/rss/project/dictdiffer/releases.xml" htmlUrl="https://pypi.org/project/dictdiffer/"/>
        <outline title="PyPI recent updates for dicttoxml" text="PyPI recent updates for dicttoxml" description="PyPI recent updates for dicttoxml" type="rss" xmlUrl="https://pypi.org/rss/project/dicttoxml/releases.xml" htmlUrl="https://pypi.org/project/dicttoxml/"/>
        <outline title="PyPI recent updates for diff-match-patch" text="PyPI recent updates for diff-match-patch" description="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 title="PyPI recent updates for dill" text="PyPI recent updates for dill" description="PyPI recent updates for dill" type="rss" xmlUrl="https://pypi.org/rss/project/dill/releases.xml" htmlUrl="https://pypi.org/project/dill/"/>
        <outline title="PyPI recent updates for discid" text="PyPI recent updates for discid" description="PyPI recent updates for discid" type="rss" xmlUrl="https://pypi.org/rss/project/discid/releases.xml" htmlUrl="https://pypi.org/project/discid/"/>
        <outline title="PyPI recent updates for discogs-client" text="PyPI recent updates for discogs-client" description="PyPI recent updates for discogs-client" type="rss" xmlUrl="https://pypi.org/rss/project/discogs-client/releases.xml" htmlUrl="https://pypi.org/project/discogs-client/"/>
        <outline title="PyPI recent updates for diskcache" text="PyPI recent updates for diskcache" description="PyPI recent updates for diskcache" type="rss" xmlUrl="https://pypi.org/rss/project/diskcache/releases.xml" htmlUrl="https://pypi.org/project/diskcache/"/>
        <outline title="PyPI recent updates for dissononce" text="PyPI recent updates for dissononce" description="PyPI recent updates for dissononce" type="rss" xmlUrl="https://pypi.org/rss/project/dissononce/releases.xml" htmlUrl="https://pypi.org/project/dissononce/"/>
        <outline title="PyPI recent updates for distlib" text="PyPI recent updates for distlib" description="PyPI recent updates for distlib" type="rss" xmlUrl="https://pypi.org/rss/project/distlib/releases.xml" htmlUrl="https://pypi.org/project/distlib/"/>
        <outline title="PyPI recent updates for distro" text="PyPI recent updates for distro" description="PyPI recent updates for distro" type="rss" xmlUrl="https://pypi.org/rss/project/distro/releases.xml" htmlUrl="https://pypi.org/project/distro/"/>
        <outline title="PyPI recent updates for dj-database-url" text="PyPI recent updates for dj-database-url" description="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 title="PyPI recent updates for dj-search-url" text="PyPI recent updates for dj-search-url" description="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 title="PyPI recent updates for Django" text="PyPI recent updates for Django" description="PyPI recent updates for Django" type="rss" xmlUrl="https://pypi.org/rss/project/Django/releases.xml" htmlUrl="https://pypi.org/project/django/"/>
        <outline title="PyPI recent updates for django-allauth" text="PyPI recent updates for django-allauth" description="PyPI recent updates for django-allauth" type="rss" xmlUrl="https://pypi.org/rss/project/django-allauth/releases.xml" htmlUrl="https://pypi.org/project/django-allauth/"/>
        <outline title="PyPI recent updates for django-appconf" text="PyPI recent updates for django-appconf" description="PyPI recent updates for django-appconf" type="rss" xmlUrl="https://pypi.org/rss/project/django-appconf/releases.xml" htmlUrl="https://pypi.org/project/django-appconf/"/>
        <outline title="PyPI recent updates for django-auth-ldap" text="PyPI recent updates for django-auth-ldap" description="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 title="PyPI recent updates for django-cacheops" text="PyPI recent updates for django-cacheops" description="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 title="PyPI recent updates for django-compressor" text="PyPI recent updates for django-compressor" description="PyPI recent updates for django-compressor" type="rss" xmlUrl="https://pypi.org/rss/project/django-compressor/releases.xml" htmlUrl="https://pypi.org/project/django-compressor/"/>
        <outline title="PyPI recent updates for django-configurations" text="PyPI recent updates for django-configurations" description="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 title="PyPI recent updates for django-cors-headers" text="PyPI recent updates for django-cors-headers" description="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 title="PyPI recent updates for django-debug-toolbar" text="PyPI recent updates for django-debug-toolbar" description="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 title="PyPI recent updates for django-extensions" text="PyPI recent updates for django-extensions" description="PyPI recent updates for django-extensions" type="rss" xmlUrl="https://pypi.org/rss/project/django-extensions/releases.xml" htmlUrl="https://pypi.org/project/django-extensions/"/>
        <outline title="PyPI recent updates for django-filter" text="PyPI recent updates for django-filter" description="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 title="PyPI recent updates for django-gravatar2" text="PyPI recent updates for django-gravatar2" description="PyPI recent updates for django-gravatar2" type="rss" xmlUrl="https://pypi.org/rss/project/django-gravatar2/releases.xml" htmlUrl="https://pypi.org/project/django-gravatar2/"/>
        <outline title="PyPI recent updates for django-haystack" text="PyPI recent updates for django-haystack" description="PyPI recent updates for django-haystack" type="rss" xmlUrl="https://pypi.org/rss/project/django-haystack/releases.xml" htmlUrl="https://pypi.org/project/django-haystack/"/>
        <outline title="PyPI recent updates for django-js-asset" text="PyPI recent updates for django-js-asset" description="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 title="PyPI recent updates for django-mptt" text="PyPI recent updates for django-mptt" description="PyPI recent updates for django-mptt" type="rss" xmlUrl="https://pypi.org/rss/project/django-mptt/releases.xml" htmlUrl="https://pypi.org/project/django-mptt/"/>
        <outline title="PyPI recent updates for django-otp" text="PyPI recent updates for django-otp" description="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 title="PyPI recent updates for django-pglocks" text="PyPI recent updates for django-pglocks" description="PyPI recent updates for django-pglocks" type="rss" xmlUrl="https://pypi.org/rss/project/django-pglocks/releases.xml" htmlUrl="https://pypi.org/project/django-pglocks/"/>
        <outline title="PyPI recent updates for django-picklefield" text="PyPI recent updates for django-picklefield" description="PyPI recent updates for django-picklefield" type="rss" xmlUrl="https://pypi.org/rss/project/django-picklefield/releases.xml" htmlUrl="https://pypi.org/project/django-picklefield/"/>
        <outline title="PyPI recent updates for django-polymorphic" text="PyPI recent updates for django-polymorphic" description="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 title="PyPI recent updates for django-prometheus" text="PyPI recent updates for django-prometheus" description="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 title="PyPI recent updates for django-q" text="PyPI recent updates for django-q" description="PyPI recent updates for django-q" type="rss" xmlUrl="https://pypi.org/rss/project/django-q/releases.xml" htmlUrl="https://pypi.org/project/django-q/"/>
        <outline title="PyPI recent updates for django-redis" text="PyPI recent updates for django-redis" description="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 title="PyPI recent updates for django-rq" text="PyPI recent updates for django-rq" description="PyPI recent updates for django-rq" type="rss" xmlUrl="https://pypi.org/rss/project/django-rq/releases.xml" htmlUrl="https://pypi.org/project/django-rq/"/>
        <outline title="PyPI recent updates for django-sortedm2m" text="PyPI recent updates for django-sortedm2m" description="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 title="PyPI recent updates for django-tables2" text="PyPI recent updates for django-tables2" description="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 title="PyPI recent updates for django-tagging" text="PyPI recent updates for django-tagging" description="PyPI recent updates for django-tagging" type="rss" xmlUrl="https://pypi.org/rss/project/django-tagging/releases.xml" htmlUrl="https://pypi.org/project/django-tagging/"/>
        <outline title="PyPI recent updates for django-taggit" text="PyPI recent updates for django-taggit" description="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 title="PyPI recent updates for django-taggit-serializer" text="PyPI recent updates for django-taggit-serializer" description="PyPI recent updates for django-taggit-serializer" type="rss" xmlUrl="https://pypi.org/rss/project/django-taggit-serializer/releases.xml" htmlUrl="https://pypi.org/project/django-taggit-serializer/"/>
        <outline title="PyPI recent updates for django-timezone-field" text="PyPI recent updates for django-timezone-field" description="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 title="PyPI recent updates for djangorestframework" text="PyPI recent updates for djangorestframework" description="PyPI recent updates for djangorestframework" type="rss" xmlUrl="https://pypi.org/rss/project/djangorestframework/releases.xml" htmlUrl="https://pypi.org/project/djangorestframework/"/>
        <outline title="PyPI recent updates for dkimpy" text="PyPI recent updates for dkimpy" description="PyPI recent updates for dkimpy" type="rss" xmlUrl="https://pypi.org/rss/project/dkimpy/releases.xml" htmlUrl="https://pypi.org/project/dkimpy/"/>
        <outline title="PyPI recent updates for dns-lexicon" text="PyPI recent updates for dns-lexicon" description="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 title="PyPI recent updates for dnspython" text="PyPI recent updates for dnspython" description="PyPI recent updates for dnspython" type="rss" xmlUrl="https://pypi.org/rss/project/dnspython/releases.xml" htmlUrl="https://pypi.org/project/dnspython/"/>
        <outline title="PyPI recent updates for doc8" text="PyPI recent updates for doc8" description="PyPI recent updates for doc8" type="rss" xmlUrl="https://pypi.org/rss/project/doc8/releases.xml" htmlUrl="https://pypi.org/project/doc8/"/>
        <outline title="PyPI recent updates for docker-py" text="PyPI recent updates for docker-py" description="PyPI recent updates for docker-py" type="rss" xmlUrl="https://pypi.org/rss/project/docker-py/releases.xml" htmlUrl="https://pypi.org/project/docker-py/"/>
        <outline title="PyPI recent updates for docker-pycreds" text="PyPI recent updates for docker-pycreds" description="PyPI recent updates for docker-pycreds" type="rss" xmlUrl="https://pypi.org/rss/project/docker-pycreds/releases.xml" htmlUrl="https://pypi.org/project/docker-pycreds/"/>
        <outline title="PyPI recent updates for dockerpty" text="PyPI recent updates for dockerpty" description="PyPI recent updates for dockerpty" type="rss" xmlUrl="https://pypi.org/rss/project/dockerpty/releases.xml" htmlUrl="https://pypi.org/project/dockerpty/"/>
        <outline title="PyPI recent updates for docopt" text="PyPI recent updates for docopt" description="PyPI recent updates for docopt" type="rss" xmlUrl="https://pypi.org/rss/project/docopt/releases.xml" htmlUrl="https://pypi.org/project/docopt/"/>
        <outline title="PyPI recent updates for doctest-ignore-unicode" text="PyPI recent updates for doctest-ignore-unicode" description="PyPI recent updates for doctest-ignore-unicode" type="rss" xmlUrl="https://pypi.org/rss/project/doctest-ignore-unicode/releases.xml" htmlUrl="https://pypi.org/project/doctest-ignore-unicode/"/>
        <outline title="PyPI recent updates for docutils" text="PyPI recent updates for docutils" description="PyPI recent updates for docutils" type="rss" xmlUrl="https://pypi.org/rss/project/docutils/releases.xml" htmlUrl="https://pypi.org/project/docutils/"/>
        <outline title="PyPI recent updates for docutils-glep" text="PyPI recent updates for docutils-glep" description="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 title="PyPI recent updates for dogpile.cache" text="PyPI recent updates for dogpile.cache" description="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 title="PyPI recent updates for doit" text="PyPI recent updates for doit" description="PyPI recent updates for doit" type="rss" xmlUrl="https://pypi.org/rss/project/doit/releases.xml" htmlUrl="https://pypi.org/project/doit/"/>
        <outline title="PyPI recent updates for doit-py" text="PyPI recent updates for doit-py" description="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 title="PyPI recent updates for dominate" text="PyPI recent updates for dominate" description="PyPI recent updates for dominate" type="rss" xmlUrl="https://pypi.org/rss/project/dominate/releases.xml" htmlUrl="https://pypi.org/project/dominate/"/>
        <outline title="PyPI recent updates for doublex" text="PyPI recent updates for doublex" description="PyPI recent updates for doublex" type="rss" xmlUrl="https://pypi.org/rss/project/doublex/releases.xml" htmlUrl="https://pypi.org/project/doublex/"/>
        <outline title="PyPI recent updates for doublex-expects" text="PyPI recent updates for doublex-expects" description="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 title="PyPI recent updates for drf-yasg" text="PyPI recent updates for drf-yasg" description="PyPI recent updates for drf-yasg" type="rss" xmlUrl="https://pypi.org/rss/project/drf-yasg/releases.xml" htmlUrl="https://pypi.org/project/drf-yasg/"/>
        <outline title="PyPI recent updates for duecredit" text="PyPI recent updates for duecredit" description="PyPI recent updates for duecredit" type="rss" xmlUrl="https://pypi.org/rss/project/duecredit/releases.xml" htmlUrl="https://pypi.org/project/duecredit/"/>
        <outline title="PyPI recent updates for dugong" text="PyPI recent updates for dugong" description="PyPI recent updates for dugong" type="rss" xmlUrl="https://pypi.org/rss/project/dugong/releases.xml" htmlUrl="https://pypi.org/project/dugong/"/>
        <outline title="PyPI recent updates for dulwich" text="PyPI recent updates for dulwich" description="PyPI recent updates for dulwich" type="rss" xmlUrl="https://pypi.org/rss/project/dulwich/releases.xml" htmlUrl="https://pypi.org/project/dulwich/"/>
        <outline title="PyPI recent updates for easy-thumbnails" text="PyPI recent updates for easy-thumbnails" description="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 title="PyPI recent updates for EasyProcess" text="PyPI recent updates for EasyProcess" description="PyPI recent updates for EasyProcess" type="rss" xmlUrl="https://pypi.org/rss/project/EasyProcess/releases.xml" htmlUrl="https://pypi.org/project/easyprocess/"/>
        <outline title="PyPI recent updates for ebuildtester" text="PyPI recent updates for ebuildtester" description="PyPI recent updates for ebuildtester" type="rss" xmlUrl="https://pypi.org/rss/project/ebuildtester/releases.xml" htmlUrl="https://pypi.org/project/ebuildtester/"/>
        <outline title="PyPI recent updates for ecdsa" text="PyPI recent updates for ecdsa" description="PyPI recent updates for ecdsa" type="rss" xmlUrl="https://pypi.org/rss/project/ecdsa/releases.xml" htmlUrl="https://pypi.org/project/ecdsa/"/>
        <outline title="PyPI recent updates for editdistance-s" text="PyPI recent updates for editdistance-s" description="PyPI recent updates for editdistance-s" type="rss" xmlUrl="https://pypi.org/rss/project/editdistance-s/releases.xml" htmlUrl="https://pypi.org/project/editdistance-s/"/>
        <outline title="PyPI recent updates for EditorConfig" text="PyPI recent updates for EditorConfig" description="PyPI recent updates for EditorConfig" type="rss" xmlUrl="https://pypi.org/rss/project/EditorConfig/releases.xml" htmlUrl="https://pypi.org/project/editorconfig/"/>
        <outline title="PyPI recent updates for elasticsearch7" text="PyPI recent updates for elasticsearch7" description="PyPI recent updates for elasticsearch7" type="rss" xmlUrl="https://pypi.org/rss/project/elasticsearch7/releases.xml" htmlUrl="https://pypi.org/project/elasticsearch7/"/>
        <outline title="PyPI recent updates for elementpath" text="PyPI recent updates for elementpath" description="PyPI recent updates for elementpath" type="rss" xmlUrl="https://pypi.org/rss/project/elementpath/releases.xml" htmlUrl="https://pypi.org/project/elementpath/"/>
        <outline title="PyPI recent updates for email-validator" text="PyPI recent updates for email-validator" description="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 title="PyPI recent updates for emcee" text="PyPI recent updates for emcee" description="PyPI recent updates for emcee" type="rss" xmlUrl="https://pypi.org/rss/project/emcee/releases.xml" htmlUrl="https://pypi.org/project/emcee/"/>
        <outline title="PyPI recent updates for emoji" text="PyPI recent updates for emoji" description="PyPI recent updates for emoji" type="rss" xmlUrl="https://pypi.org/rss/project/emoji/releases.xml" htmlUrl="https://pypi.org/project/emoji/"/>
        <outline title="PyPI recent updates for empy" text="PyPI recent updates for empy" description="PyPI recent updates for empy" type="rss" xmlUrl="https://pypi.org/rss/project/empy/releases.xml" htmlUrl="https://pypi.org/project/empy/"/>
        <outline title="PyPI recent updates for enrich" text="PyPI recent updates for enrich" description="PyPI recent updates for enrich" type="rss" xmlUrl="https://pypi.org/rss/project/enrich/releases.xml" htmlUrl="https://pypi.org/project/enrich/"/>
        <outline title="PyPI recent updates for entrypoint2" text="PyPI recent updates for entrypoint2" description="PyPI recent updates for entrypoint2" type="rss" xmlUrl="https://pypi.org/rss/project/entrypoint2/releases.xml" htmlUrl="https://pypi.org/project/entrypoint2/"/>
        <outline title="PyPI recent updates for entrypoints" text="PyPI recent updates for entrypoints" description="PyPI recent updates for entrypoints" type="rss" xmlUrl="https://pypi.org/rss/project/entrypoints/releases.xml" htmlUrl="https://pypi.org/project/entrypoints/"/>
        <outline title="PyPI recent updates for enzyme" text="PyPI recent updates for enzyme" description="PyPI recent updates for enzyme" type="rss" xmlUrl="https://pypi.org/rss/project/enzyme/releases.xml" htmlUrl="https://pypi.org/project/enzyme/"/>
        <outline title="PyPI recent updates for eradicate" text="PyPI recent updates for eradicate" description="PyPI recent updates for eradicate" type="rss" xmlUrl="https://pypi.org/rss/project/eradicate/releases.xml" htmlUrl="https://pypi.org/project/eradicate/"/>
        <outline title="PyPI recent updates for errorhandler" text="PyPI recent updates for errorhandler" description="PyPI recent updates for errorhandler" type="rss" xmlUrl="https://pypi.org/rss/project/errorhandler/releases.xml" htmlUrl="https://pypi.org/project/errorhandler/"/>
        <outline title="PyPI recent updates for et_xmlfile" text="PyPI recent updates for et_xmlfile" description="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 title="PyPI recent updates for etuples" text="PyPI recent updates for etuples" description="PyPI recent updates for etuples" type="rss" xmlUrl="https://pypi.org/rss/project/etuples/releases.xml" htmlUrl="https://pypi.org/project/etuples/"/>
        <outline title="PyPI recent updates for ethtool" text="PyPI recent updates for ethtool" description="PyPI recent updates for ethtool" type="rss" xmlUrl="https://pypi.org/rss/project/ethtool/releases.xml" htmlUrl="https://pypi.org/project/ethtool/"/>
        <outline title="PyPI recent updates for etuples" text="PyPI recent updates for etuples" description="PyPI recent updates for etuples" type="rss" xmlUrl="https://pypi.org/rss/project/etuples/releases.xml" htmlUrl="https://pypi.org/project/etuples/"/>
        <outline title="PyPI recent updates for evdev" text="PyPI recent updates for evdev" description="PyPI recent updates for evdev" type="rss" xmlUrl="https://pypi.org/rss/project/evdev/releases.xml" htmlUrl="https://pypi.org/project/evdev/"/>
        <outline title="PyPI recent updates for eventlet" text="PyPI recent updates for eventlet" description="PyPI recent updates for eventlet" type="rss" xmlUrl="https://pypi.org/rss/project/eventlet/releases.xml" htmlUrl="https://pypi.org/project/eventlet/"/>
        <outline title="PyPI recent updates for ewmh" text="PyPI recent updates for ewmh" description="PyPI recent updates for ewmh" type="rss" xmlUrl="https://pypi.org/rss/project/ewmh/releases.xml" htmlUrl="https://pypi.org/project/ewmh/"/>
        <outline title="PyPI recent updates for exam" text="PyPI recent updates for exam" description="PyPI recent updates for exam" type="rss" xmlUrl="https://pypi.org/rss/project/exam/releases.xml" htmlUrl="https://pypi.org/project/exam/"/>
        <outline title="PyPI recent updates for execnet" text="PyPI recent updates for execnet" description="PyPI recent updates for execnet" type="rss" xmlUrl="https://pypi.org/rss/project/execnet/releases.xml" htmlUrl="https://pypi.org/project/execnet/"/>
        <outline title="PyPI recent updates for executing" text="PyPI recent updates for executing" description="PyPI recent updates for executing" type="rss" xmlUrl="https://pypi.org/rss/project/executing/releases.xml" htmlUrl="https://pypi.org/project/executing/"/>
        <outline title="PyPI recent updates for expects" text="PyPI recent updates for expects" description="PyPI recent updates for expects" type="rss" xmlUrl="https://pypi.org/rss/project/expects/releases.xml" htmlUrl="https://pypi.org/project/expects/"/>
        <outline title="PyPI recent updates for extras" text="PyPI recent updates for extras" description="PyPI recent updates for extras" type="rss" xmlUrl="https://pypi.org/rss/project/extras/releases.xml" htmlUrl="https://pypi.org/project/extras/"/>
        <outline title="PyPI recent updates for eyeD3" text="PyPI recent updates for eyeD3" description="PyPI recent updates for eyeD3" type="rss" xmlUrl="https://pypi.org/rss/project/eyeD3/releases.xml" htmlUrl="https://pypi.org/project/eyed3/"/>
        <outline title="PyPI recent updates for Faker" text="PyPI recent updates for Faker" description="PyPI recent updates for Faker" type="rss" xmlUrl="https://pypi.org/rss/project/Faker/releases.xml" htmlUrl="https://pypi.org/project/faker/"/>
        <outline title="PyPI recent updates for fakeredis" text="PyPI recent updates for fakeredis" description="PyPI recent updates for fakeredis" type="rss" xmlUrl="https://pypi.org/rss/project/fakeredis/releases.xml" htmlUrl="https://pypi.org/project/fakeredis/"/>
        <outline title="PyPI recent updates for falcon" text="PyPI recent updates for falcon" description="PyPI recent updates for falcon" type="rss" xmlUrl="https://pypi.org/rss/project/falcon/releases.xml" htmlUrl="https://pypi.org/project/falcon/"/>
        <outline title="PyPI recent updates for fasteners" text="PyPI recent updates for fasteners" description="PyPI recent updates for fasteners" type="rss" xmlUrl="https://pypi.org/rss/project/fasteners/releases.xml" htmlUrl="https://pypi.org/project/fasteners/"/>
        <outline title="PyPI recent updates for fastimport" text="PyPI recent updates for fastimport" description="PyPI recent updates for fastimport" type="rss" xmlUrl="https://pypi.org/rss/project/fastimport/releases.xml" htmlUrl="https://pypi.org/project/fastimport/"/>
        <outline title="PyPI recent updates for fastjsonschema" text="PyPI recent updates for fastjsonschema" description="PyPI recent updates for fastjsonschema" type="rss" xmlUrl="https://pypi.org/rss/project/fastjsonschema/releases.xml" htmlUrl="https://pypi.org/project/fastjsonschema/"/>
        <outline title="PyPI recent updates for fb-re2" text="PyPI recent updates for fb-re2" description="PyPI recent updates for fb-re2" type="rss" xmlUrl="https://pypi.org/rss/project/fb-re2/releases.xml" htmlUrl="https://pypi.org/project/fb-re2/"/>
        <outline title="PyPI recent updates for feedgenerator" text="PyPI recent updates for feedgenerator" description="PyPI recent updates for feedgenerator" type="rss" xmlUrl="https://pypi.org/rss/project/feedgenerator/releases.xml" htmlUrl="https://pypi.org/project/feedgenerator/"/>
        <outline title="PyPI recent updates for feedparser" text="PyPI recent updates for feedparser" description="PyPI recent updates for feedparser" type="rss" xmlUrl="https://pypi.org/rss/project/feedparser/releases.xml" htmlUrl="https://pypi.org/project/feedparser/"/>
        <outline title="PyPI recent updates for fido2" text="PyPI recent updates for fido2" description="PyPI recent updates for fido2" type="rss" xmlUrl="https://pypi.org/rss/project/fido2/releases.xml" htmlUrl="https://pypi.org/project/fido2/"/>
        <outline title="PyPI recent updates for fields" text="PyPI recent updates for fields" description="PyPI recent updates for fields" type="rss" xmlUrl="https://pypi.org/rss/project/fields/releases.xml" htmlUrl="https://pypi.org/project/fields/"/>
        <outline title="PyPI recent updates for filelock" text="PyPI recent updates for filelock" description="PyPI recent updates for filelock" type="rss" xmlUrl="https://pypi.org/rss/project/filelock/releases.xml" htmlUrl="https://pypi.org/project/filelock/"/>
        <outline title="PyPI recent updates for filetype" text="PyPI recent updates for filetype" description="PyPI recent updates for filetype" type="rss" xmlUrl="https://pypi.org/rss/project/filetype/releases.xml" htmlUrl="https://pypi.org/project/filetype/"/>
        <outline title="PyPI recent updates for findimports" text="PyPI recent updates for findimports" description="PyPI recent updates for findimports" type="rss" xmlUrl="https://pypi.org/rss/project/findimports/releases.xml" htmlUrl="https://pypi.org/project/findimports/"/>
        <outline title="PyPI recent updates for fitsio" text="PyPI recent updates for fitsio" description="PyPI recent updates for fitsio" type="rss" xmlUrl="https://pypi.org/rss/project/fitsio/releases.xml" htmlUrl="https://pypi.org/project/fitsio/"/>
        <outline title="PyPI recent updates for fixtures" text="PyPI recent updates for fixtures" description="PyPI recent updates for fixtures" type="rss" xmlUrl="https://pypi.org/rss/project/fixtures/releases.xml" htmlUrl="https://pypi.org/project/fixtures/"/>
        <outline title="PyPI recent updates for flake8" text="PyPI recent updates for flake8" description="PyPI recent updates for flake8" type="rss" xmlUrl="https://pypi.org/rss/project/flake8/releases.xml" htmlUrl="https://pypi.org/project/flake8/"/>
        <outline title="PyPI recent updates for flake8-import-order" text="PyPI recent updates for flake8-import-order" description="PyPI recent updates for flake8-import-order" type="rss" xmlUrl="https://pypi.org/rss/project/flake8-import-order/releases.xml" htmlUrl="https://pypi.org/project/flake8-import-order/"/>
        <outline title="PyPI recent updates for flake8-polyfill" text="PyPI recent updates for flake8-polyfill" description="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 title="PyPI recent updates for flaky" text="PyPI recent updates for flaky" description="PyPI recent updates for flaky" type="rss" xmlUrl="https://pypi.org/rss/project/flaky/releases.xml" htmlUrl="https://pypi.org/project/flaky/"/>
        <outline title="PyPI recent updates for Flask" text="PyPI recent updates for Flask" description="PyPI recent updates for Flask" type="rss" xmlUrl="https://pypi.org/rss/project/Flask/releases.xml" htmlUrl="https://pypi.org/project/flask/"/>
        <outline title="PyPI recent updates for Flask-API" text="PyPI recent updates for Flask-API" description="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 title="PyPI recent updates for Flask-Assets" text="PyPI recent updates for Flask-Assets" description="PyPI recent updates for Flask-Assets" type="rss" xmlUrl="https://pypi.org/rss/project/Flask-Assets/releases.xml" htmlUrl="https://pypi.org/project/flask-assets/"/>
        <outline title="PyPI recent updates for Flask-Babel" text="PyPI recent updates for Flask-Babel" description="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 title="PyPI recent updates for Flask-BabelEx" text="PyPI recent updates for Flask-BabelEx" description="PyPI recent updates for Flask-BabelEx" type="rss" xmlUrl="https://pypi.org/rss/project/Flask-BabelEx/releases.xml" htmlUrl="https://pypi.org/project/flask-babelex/"/>
        <outline title="PyPI recent updates for Flask-Compress" text="PyPI recent updates for Flask-Compress" description="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 title="PyPI recent updates for Flask-Cors" text="PyPI recent updates for Flask-Cors" description="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 title="PyPI recent updates for Flask-Debug" text="PyPI recent updates for Flask-Debug" description="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 title="PyPI recent updates for Flask-Gravatar" text="PyPI recent updates for Flask-Gravatar" description="PyPI recent updates for Flask-Gravatar" type="rss" xmlUrl="https://pypi.org/rss/project/Flask-Gravatar/releases.xml" htmlUrl="https://pypi.org/project/flask-gravatar/"/>
        <outline title="PyPI recent updates for Flask-HTMLmin" text="PyPI recent updates for Flask-HTMLmin" description="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 title="PyPI recent updates for Flask-Login" text="PyPI recent updates for Flask-Login" description="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 title="PyPI recent updates for Flask-Mail" text="PyPI recent updates for Flask-Mail" description="PyPI recent updates for Flask-Mail" type="rss" xmlUrl="https://pypi.org/rss/project/Flask-Mail/releases.xml" htmlUrl="https://pypi.org/project/flask-mail/"/>
        <outline title="PyPI recent updates for Flask-Migrate" text="PyPI recent updates for Flask-Migrate" description="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 title="PyPI recent updates for flask-mongoengine" text="PyPI recent updates for flask-mongoengine" description="PyPI recent updates for flask-mongoengine" type="rss" xmlUrl="https://pypi.org/rss/project/flask-mongoengine/releases.xml" htmlUrl="https://pypi.org/project/flask-mongoengine/"/>
        <outline title="PyPI recent updates for flask-nav" text="PyPI recent updates for flask-nav" description="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 title="PyPI recent updates for flask-paginate" text="PyPI recent updates for flask-paginate" description="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 title="PyPI recent updates for Flask-Paranoid" text="PyPI recent updates for Flask-Paranoid" description="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 title="PyPI recent updates for Flask-Principal" text="PyPI recent updates for Flask-Principal" description="PyPI recent updates for Flask-Principal" type="rss" xmlUrl="https://pypi.org/rss/project/Flask-Principal/releases.xml" htmlUrl="https://pypi.org/project/flask-principal/"/>
        <outline title="PyPI recent updates for Flask-RESTful" text="PyPI recent updates for Flask-RESTful" description="PyPI recent updates for Flask-RESTful" type="rss" xmlUrl="https://pypi.org/rss/project/Flask-RESTful/releases.xml" htmlUrl="https://pypi.org/project/flask-restful/"/>
        <outline title="PyPI recent updates for Flask-Script" text="PyPI recent updates for Flask-Script" description="PyPI recent updates for Flask-Script" type="rss" xmlUrl="https://pypi.org/rss/project/Flask-Script/releases.xml" htmlUrl="https://pypi.org/project/flask-script/"/>
        <outline title="PyPI recent updates for Flask-Security-Too" text="PyPI recent updates for Flask-Security-Too" description="PyPI recent updates for Flask-Security-Too" type="rss" xmlUrl="https://pypi.org/rss/project/Flask-Security-Too/releases.xml" htmlUrl="https://pypi.org/project/flask-security-too/"/>
        <outline title="PyPI recent updates for Flask-Sphinx-Themes" text="PyPI recent updates for Flask-Sphinx-Themes" description="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 title="PyPI recent updates for Flask-SQLAlchemy" text="PyPI recent updates for Flask-SQLAlchemy" description="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 title="PyPI recent updates for Flask-WTF" text="PyPI recent updates for Flask-WTF" description="PyPI recent updates for Flask-WTF" type="rss" xmlUrl="https://pypi.org/rss/project/Flask-WTF/releases.xml" htmlUrl="https://pypi.org/project/flask-wtf/"/>
        <outline title="PyPI recent updates for flatbuffers" text="PyPI recent updates for flatbuffers" description="PyPI recent updates for flatbuffers" type="rss" xmlUrl="https://pypi.org/rss/project/flatbuffers/releases.xml" htmlUrl="https://pypi.org/project/flatbuffers/"/>
        <outline title="PyPI recent updates for fleep" text="PyPI recent updates for fleep" description="PyPI recent updates for fleep" type="rss" xmlUrl="https://pypi.org/rss/project/fleep/releases.xml" htmlUrl="https://pypi.org/project/fleep/"/>
        <outline title="PyPI recent updates for flexmock" text="PyPI recent updates for flexmock" description="PyPI recent updates for flexmock" type="rss" xmlUrl="https://pypi.org/rss/project/flexmock/releases.xml" htmlUrl="https://pypi.org/project/flexmock/"/>
        <outline title="PyPI recent updates for flit" text="PyPI recent updates for flit" description="PyPI recent updates for flit" type="rss" xmlUrl="https://pypi.org/rss/project/flit/releases.xml" htmlUrl="https://pypi.org/project/flit/"/>
        <outline title="PyPI recent updates for flit-core" text="PyPI recent updates for flit-core" description="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 title="PyPI recent updates for flufl.bounce" text="PyPI recent updates for flufl.bounce" description="PyPI recent updates for flufl.bounce" type="rss" xmlUrl="https://pypi.org/rss/project/flufl.bounce/releases.xml" htmlUrl="https://pypi.org/project/flufl-bounce/"/>
        <outline title="PyPI recent updates for flufl.i18n" text="PyPI recent updates for flufl.i18n" description="PyPI recent updates for flufl.i18n" type="rss" xmlUrl="https://pypi.org/rss/project/flufl.i18n/releases.xml" htmlUrl="https://pypi.org/project/flufl-i18n/"/>
        <outline title="PyPI recent updates for flufl.lock" text="PyPI recent updates for flufl.lock" description="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 title="PyPI recent updates for flufl.testing" text="PyPI recent updates for flufl.testing" description="PyPI recent updates for flufl.testing" type="rss" xmlUrl="https://pypi.org/rss/project/flufl.testing/releases.xml" htmlUrl="https://pypi.org/project/flufl-testing/"/>
        <outline title="PyPI recent updates for fonttools" text="PyPI recent updates for fonttools" description="PyPI recent updates for fonttools" type="rss" xmlUrl="https://pypi.org/rss/project/fonttools/releases.xml" htmlUrl="https://pypi.org/project/fonttools/"/>
        <outline title="PyPI recent updates for fqdn" text="PyPI recent updates for fqdn" description="PyPI recent updates for fqdn" type="rss" xmlUrl="https://pypi.org/rss/project/fqdn/releases.xml" htmlUrl="https://pypi.org/project/fqdn/"/>
        <outline title="PyPI recent updates for freezegun" text="PyPI recent updates for freezegun" description="PyPI recent updates for freezegun" type="rss" xmlUrl="https://pypi.org/rss/project/freezegun/releases.xml" htmlUrl="https://pypi.org/project/freezegun/"/>
        <outline title="PyPI recent updates for fritzconnection" text="PyPI recent updates for fritzconnection" description="PyPI recent updates for fritzconnection" type="rss" xmlUrl="https://pypi.org/rss/project/fritzconnection/releases.xml" htmlUrl="https://pypi.org/project/fritzconnection/"/>
        <outline title="PyPI recent updates for Frozen-Flask" text="PyPI recent updates for Frozen-Flask" description="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 title="PyPI recent updates for frozenlist" text="PyPI recent updates for frozenlist" description="PyPI recent updates for frozenlist" type="rss" xmlUrl="https://pypi.org/rss/project/frozenlist/releases.xml" htmlUrl="https://pypi.org/project/frozenlist/"/>
        <outline title="PyPI recent updates for fs" text="PyPI recent updates for fs" description="PyPI recent updates for fs" type="rss" xmlUrl="https://pypi.org/rss/project/fs/releases.xml" htmlUrl="https://pypi.org/project/fs/"/>
        <outline title="PyPI recent updates for fsspec" text="PyPI recent updates for fsspec" description="PyPI recent updates for fsspec" type="rss" xmlUrl="https://pypi.org/rss/project/fsspec/releases.xml" htmlUrl="https://pypi.org/project/fsspec/"/>
        <outline title="PyPI recent updates for fudge" text="PyPI recent updates for fudge" description="PyPI recent updates for fudge" type="rss" xmlUrl="https://pypi.org/rss/project/fudge/releases.xml" htmlUrl="https://pypi.org/project/fudge/"/>
        <outline title="PyPI recent updates for funcparserlib" text="PyPI recent updates for funcparserlib" description="PyPI recent updates for funcparserlib" type="rss" xmlUrl="https://pypi.org/rss/project/funcparserlib/releases.xml" htmlUrl="https://pypi.org/project/funcparserlib/"/>
        <outline title="PyPI recent updates for funcsigs" text="PyPI recent updates for funcsigs" description="PyPI recent updates for funcsigs" type="rss" xmlUrl="https://pypi.org/rss/project/funcsigs/releases.xml" htmlUrl="https://pypi.org/project/funcsigs/"/>
        <outline title="PyPI recent updates for funcy" text="PyPI recent updates for funcy" description="PyPI recent updates for funcy" type="rss" xmlUrl="https://pypi.org/rss/project/funcy/releases.xml" htmlUrl="https://pypi.org/project/funcy/"/>
        <outline title="PyPI recent updates for furo" text="PyPI recent updates for furo" description="PyPI recent updates for furo" type="rss" xmlUrl="https://pypi.org/rss/project/furo/releases.xml" htmlUrl="https://pypi.org/project/furo/"/>
        <outline title="PyPI recent updates for fuse-python" text="PyPI recent updates for fuse-python" description="PyPI recent updates for fuse-python" type="rss" xmlUrl="https://pypi.org/rss/project/fuse-python/releases.xml" htmlUrl="https://pypi.org/project/fuse-python/"/>
        <outline title="PyPI recent updates for fusepy" text="PyPI recent updates for fusepy" description="PyPI recent updates for fusepy" type="rss" xmlUrl="https://pypi.org/rss/project/fusepy/releases.xml" htmlUrl="https://pypi.org/project/fusepy/"/>
        <outline title="PyPI recent updates for future" text="PyPI recent updates for future" description="PyPI recent updates for future" type="rss" xmlUrl="https://pypi.org/rss/project/future/releases.xml" htmlUrl="https://pypi.org/project/future/"/>
        <outline title="PyPI recent updates for futurist" text="PyPI recent updates for futurist" description="PyPI recent updates for futurist" type="rss" xmlUrl="https://pypi.org/rss/project/futurist/releases.xml" htmlUrl="https://pypi.org/project/futurist/"/>
        <outline title="PyPI recent updates for fuzzywuzzy" text="PyPI recent updates for fuzzywuzzy" description="PyPI recent updates for fuzzywuzzy" type="rss" xmlUrl="https://pypi.org/rss/project/fuzzywuzzy/releases.xml" htmlUrl="https://pypi.org/project/fuzzywuzzy/"/>
        <outline title="PyPI recent updates for gast" text="PyPI recent updates for gast" description="PyPI recent updates for gast" type="rss" xmlUrl="https://pypi.org/rss/project/gast/releases.xml" htmlUrl="https://pypi.org/project/gast/"/>
        <outline title="PyPI recent updates for gatt" text="PyPI recent updates for gatt" description="PyPI recent updates for gatt" type="rss" xmlUrl="https://pypi.org/rss/project/gatt/releases.xml" htmlUrl="https://pypi.org/project/gatt/"/>
        <outline title="PyPI recent updates for gcs-oauth2-boto-plugin" text="PyPI recent updates for gcs-oauth2-boto-plugin" description="PyPI recent updates for gcs-oauth2-boto-plugin" type="rss" xmlUrl="https://pypi.org/rss/project/gcs-oauth2-boto-plugin/releases.xml" htmlUrl="https://pypi.org/project/gcs-oauth2-boto-plugin/"/>
        <outline title="PyPI recent updates for Genshi" text="PyPI recent updates for Genshi" description="PyPI recent updates for Genshi" type="rss" xmlUrl="https://pypi.org/rss/project/Genshi/releases.xml" htmlUrl="https://pypi.org/project/genshi/"/>
        <outline title="PyPI recent updates for genson" text="PyPI recent updates for genson" description="PyPI recent updates for genson" type="rss" xmlUrl="https://pypi.org/rss/project/genson/releases.xml" htmlUrl="https://pypi.org/project/genson/"/>
        <outline title="PyPI recent updates for genty" text="PyPI recent updates for genty" description="PyPI recent updates for genty" type="rss" xmlUrl="https://pypi.org/rss/project/genty/releases.xml" htmlUrl="https://pypi.org/project/genty/"/>
        <outline title="PyPI recent updates for GeoIP" text="PyPI recent updates for GeoIP" description="PyPI recent updates for GeoIP" type="rss" xmlUrl="https://pypi.org/rss/project/GeoIP/releases.xml" htmlUrl="https://pypi.org/project/geoip/"/>
        <outline title="PyPI recent updates for gevent" text="PyPI recent updates for gevent" description="PyPI recent updates for gevent" type="rss" xmlUrl="https://pypi.org/rss/project/gevent/releases.xml" htmlUrl="https://pypi.org/project/gevent/"/>
        <outline title="PyPI recent updates for gevent-websocket" text="PyPI recent updates for gevent-websocket" description="PyPI recent updates for gevent-websocket" type="rss" xmlUrl="https://pypi.org/rss/project/gevent-websocket/releases.xml" htmlUrl="https://pypi.org/project/gevent-websocket/"/>
        <outline title="PyPI recent updates for geventhttpclient" text="PyPI recent updates for geventhttpclient" description="PyPI recent updates for geventhttpclient" type="rss" xmlUrl="https://pypi.org/rss/project/geventhttpclient/releases.xml" htmlUrl="https://pypi.org/project/geventhttpclient/"/>
        <outline title="PyPI recent updates for ghp-import" text="PyPI recent updates for ghp-import" description="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 title="PyPI recent updates for git-review" text="PyPI recent updates for git-review" description="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 title="PyPI recent updates for gitdb" text="PyPI recent updates for gitdb" description="PyPI recent updates for gitdb" type="rss" xmlUrl="https://pypi.org/rss/project/gitdb/releases.xml" htmlUrl="https://pypi.org/project/gitdb/"/>
        <outline title="PyPI recent updates for gitdb2" text="PyPI recent updates for gitdb2" description="PyPI recent updates for gitdb2" type="rss" xmlUrl="https://pypi.org/rss/project/gitdb2/releases.xml" htmlUrl="https://pypi.org/project/gitdb2/"/>
        <outline title="PyPI recent updates for github3.py" text="PyPI recent updates for github3.py" description="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 title="PyPI recent updates for GitPython" text="PyPI recent updates for GitPython" description="PyPI recent updates for GitPython" type="rss" xmlUrl="https://pypi.org/rss/project/GitPython/releases.xml" htmlUrl="https://pypi.org/project/gitpython/"/>
        <outline title="PyPI recent updates for glance_store" text="PyPI recent updates for glance_store" description="PyPI recent updates for glance_store" type="rss" xmlUrl="https://pypi.org/rss/project/glance_store/releases.xml" htmlUrl="https://pypi.org/project/glance-store/"/>
        <outline title="PyPI recent updates for glob2" text="PyPI recent updates for glob2" description="PyPI recent updates for glob2" type="rss" xmlUrl="https://pypi.org/rss/project/glob2/releases.xml" htmlUrl="https://pypi.org/project/glob2/"/>
        <outline title="PyPI recent updates for glooey" text="PyPI recent updates for glooey" description="PyPI recent updates for glooey" type="rss" xmlUrl="https://pypi.org/rss/project/glooey/releases.xml" htmlUrl="https://pypi.org/project/glooey/"/>
        <outline title="PyPI recent updates for gmpy2" text="PyPI recent updates for gmpy2" description="PyPI recent updates for gmpy2" type="rss" xmlUrl="https://pypi.org/rss/project/gmpy2/releases.xml" htmlUrl="https://pypi.org/project/gmpy2/"/>
        <outline title="PyPI recent updates for google-api-core" text="PyPI recent updates for google-api-core" description="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 title="PyPI recent updates for google-api-python-client" text="PyPI recent updates for google-api-python-client" description="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 title="PyPI recent updates for google-apitools" text="PyPI recent updates for google-apitools" description="PyPI recent updates for google-apitools" type="rss" xmlUrl="https://pypi.org/rss/project/google-apitools/releases.xml" htmlUrl="https://pypi.org/project/google-apitools/"/>
        <outline title="PyPI recent updates for google-auth" text="PyPI recent updates for google-auth" description="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 title="PyPI recent updates for google-auth-httplib2" text="PyPI recent updates for google-auth-httplib2" description="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 title="PyPI recent updates for google-auth-oauthlib" text="PyPI recent updates for google-auth-oauthlib" description="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 title="PyPI recent updates for google-pasta" text="PyPI recent updates for google-pasta" description="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 title="PyPI recent updates for google-reauth" text="PyPI recent updates for google-reauth" description="PyPI recent updates for google-reauth" type="rss" xmlUrl="https://pypi.org/rss/project/google-reauth/releases.xml" htmlUrl="https://pypi.org/project/google-reauth/"/>
        <outline title="PyPI recent updates for googleapis-common-protos" text="PyPI recent updates for googleapis-common-protos" description="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 title="PyPI recent updates for graph-tool" text="PyPI recent updates for graph-tool" description="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 title="PyPI recent updates for graphviz" text="PyPI recent updates for graphviz" description="PyPI recent updates for graphviz" type="rss" xmlUrl="https://pypi.org/rss/project/graphviz/releases.xml" htmlUrl="https://pypi.org/project/graphviz/"/>
        <outline title="PyPI recent updates for greenlet" text="PyPI recent updates for greenlet" description="PyPI recent updates for greenlet" type="rss" xmlUrl="https://pypi.org/rss/project/greenlet/releases.xml" htmlUrl="https://pypi.org/project/greenlet/"/>
        <outline title="PyPI recent updates for greenstalk" text="PyPI recent updates for greenstalk" description="PyPI recent updates for greenstalk" type="rss" xmlUrl="https://pypi.org/rss/project/greenstalk/releases.xml" htmlUrl="https://pypi.org/project/greenstalk/"/>
        <outline title="PyPI recent updates for GridDataFormats" text="PyPI recent updates for GridDataFormats" description="PyPI recent updates for GridDataFormats" type="rss" xmlUrl="https://pypi.org/rss/project/GridDataFormats/releases.xml" htmlUrl="https://pypi.org/project/griddataformats/"/>
        <outline title="PyPI recent updates for grpcio" text="PyPI recent updates for grpcio" description="PyPI recent updates for grpcio" type="rss" xmlUrl="https://pypi.org/rss/project/grpcio/releases.xml" htmlUrl="https://pypi.org/project/grpcio/"/>
        <outline title="PyPI recent updates for grpcio-testing" text="PyPI recent updates for grpcio-testing" description="PyPI recent updates for grpcio-testing" type="rss" xmlUrl="https://pypi.org/rss/project/grpcio-testing/releases.xml" htmlUrl="https://pypi.org/project/grpcio-testing/"/>
        <outline title="PyPI recent updates for grpcio-tools" text="PyPI recent updates for grpcio-tools" description="PyPI recent updates for grpcio-tools" type="rss" xmlUrl="https://pypi.org/rss/project/grpcio-tools/releases.xml" htmlUrl="https://pypi.org/project/grpcio-tools/"/>
        <outline title="PyPI recent updates for gsd" text="PyPI recent updates for gsd" description="PyPI recent updates for gsd" type="rss" xmlUrl="https://pypi.org/rss/project/gsd/releases.xml" htmlUrl="https://pypi.org/project/gsd/"/>
        <outline title="PyPI recent updates for guessit" text="PyPI recent updates for guessit" description="PyPI recent updates for guessit" type="rss" xmlUrl="https://pypi.org/rss/project/guessit/releases.xml" htmlUrl="https://pypi.org/project/guessit/"/>
        <outline title="PyPI recent updates for gunicorn" text="PyPI recent updates for gunicorn" description="PyPI recent updates for gunicorn" type="rss" xmlUrl="https://pypi.org/rss/project/gunicorn/releases.xml" htmlUrl="https://pypi.org/project/gunicorn/"/>
        <outline title="PyPI recent updates for guzzle_sphinx_theme" text="PyPI recent updates for guzzle_sphinx_theme" description="PyPI recent updates for guzzle_sphinx_theme" type="rss" xmlUrl="https://pypi.org/rss/project/guzzle_sphinx_theme/releases.xml" htmlUrl="https://pypi.org/project/guzzle-sphinx-theme/"/>
        <outline title="PyPI recent updates for h11" text="PyPI recent updates for h11" description="PyPI recent updates for h11" type="rss" xmlUrl="https://pypi.org/rss/project/h11/releases.xml" htmlUrl="https://pypi.org/project/h11/"/>
        <outline title="PyPI recent updates for h2" text="PyPI recent updates for h2" description="PyPI recent updates for h2" type="rss" xmlUrl="https://pypi.org/rss/project/h2/releases.xml" htmlUrl="https://pypi.org/project/h2/"/>
        <outline title="PyPI recent updates for h5py" text="PyPI recent updates for h5py" description="PyPI recent updates for h5py" type="rss" xmlUrl="https://pypi.org/rss/project/h5py/releases.xml" htmlUrl="https://pypi.org/project/h5py/"/>
        <outline title="PyPI recent updates for hacking" text="PyPI recent updates for hacking" description="PyPI recent updates for hacking" type="rss" xmlUrl="https://pypi.org/rss/project/hacking/releases.xml" htmlUrl="https://pypi.org/project/hacking/"/>
        <outline title="PyPI recent updates for happybase" text="PyPI recent updates for happybase" description="PyPI recent updates for happybase" type="rss" xmlUrl="https://pypi.org/rss/project/happybase/releases.xml" htmlUrl="https://pypi.org/project/happybase/"/>
        <outline title="PyPI recent updates for hcloud" text="PyPI recent updates for hcloud" description="PyPI recent updates for hcloud" type="rss" xmlUrl="https://pypi.org/rss/project/hcloud/releases.xml" htmlUrl="https://pypi.org/project/hcloud/"/>
        <outline title="PyPI recent updates for HeapDict" text="PyPI recent updates for HeapDict" description="PyPI recent updates for HeapDict" type="rss" xmlUrl="https://pypi.org/rss/project/HeapDict/releases.xml" htmlUrl="https://pypi.org/project/heapdict/"/>
        <outline title="PyPI recent updates for helpdev" text="PyPI recent updates for helpdev" description="PyPI recent updates for helpdev" type="rss" xmlUrl="https://pypi.org/rss/project/helpdev/releases.xml" htmlUrl="https://pypi.org/project/helpdev/"/>
        <outline title="PyPI recent updates for hgdistver" text="PyPI recent updates for hgdistver" description="PyPI recent updates for hgdistver" type="rss" xmlUrl="https://pypi.org/rss/project/hgdistver/releases.xml" htmlUrl="https://pypi.org/project/hgdistver/"/>
        <outline title="PyPI recent updates for hiredis" text="PyPI recent updates for hiredis" description="PyPI recent updates for hiredis" type="rss" xmlUrl="https://pypi.org/rss/project/hiredis/releases.xml" htmlUrl="https://pypi.org/project/hiredis/"/>
        <outline title="PyPI recent updates for hpack" text="PyPI recent updates for hpack" description="PyPI recent updates for hpack" type="rss" xmlUrl="https://pypi.org/rss/project/hpack/releases.xml" htmlUrl="https://pypi.org/project/hpack/"/>
        <outline title="PyPI recent updates for html2text" text="PyPI recent updates for html2text" description="PyPI recent updates for html2text" type="rss" xmlUrl="https://pypi.org/rss/project/html2text/releases.xml" htmlUrl="https://pypi.org/project/html2text/"/>
        <outline title="PyPI recent updates for html5-parser" text="PyPI recent updates for html5-parser" description="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 title="PyPI recent updates for html5lib" text="PyPI recent updates for html5lib" description="PyPI recent updates for html5lib" type="rss" xmlUrl="https://pypi.org/rss/project/html5lib/releases.xml" htmlUrl="https://pypi.org/project/html5lib/"/>
        <outline title="PyPI recent updates for htmlmin" text="PyPI recent updates for htmlmin" description="PyPI recent updates for htmlmin" type="rss" xmlUrl="https://pypi.org/rss/project/htmlmin/releases.xml" htmlUrl="https://pypi.org/project/htmlmin/"/>
        <outline title="PyPI recent updates for httmock" text="PyPI recent updates for httmock" description="PyPI recent updates for httmock" type="rss" xmlUrl="https://pypi.org/rss/project/httmock/releases.xml" htmlUrl="https://pypi.org/project/httmock/"/>
        <outline title="PyPI recent updates for http-parser" text="PyPI recent updates for http-parser" description="PyPI recent updates for http-parser" type="rss" xmlUrl="https://pypi.org/rss/project/http-parser/releases.xml" htmlUrl="https://pypi.org/project/http-parser/"/>
        <outline title="PyPI recent updates for httpauth" text="PyPI recent updates for httpauth" description="PyPI recent updates for httpauth" type="rss" xmlUrl="https://pypi.org/rss/project/httpauth/releases.xml" htmlUrl="https://pypi.org/project/httpauth/"/>
        <outline title="PyPI recent updates for httpbin" text="PyPI recent updates for httpbin" description="PyPI recent updates for httpbin" type="rss" xmlUrl="https://pypi.org/rss/project/httpbin/releases.xml" htmlUrl="https://pypi.org/project/httpbin/"/>
        <outline title="PyPI recent updates for httpcore" text="PyPI recent updates for httpcore" description="PyPI recent updates for httpcore" type="rss" xmlUrl="https://pypi.org/rss/project/httpcore/releases.xml" htmlUrl="https://pypi.org/project/httpcore/"/>
        <outline title="PyPI recent updates for httplib2" text="PyPI recent updates for httplib2" description="PyPI recent updates for httplib2" type="rss" xmlUrl="https://pypi.org/rss/project/httplib2/releases.xml" htmlUrl="https://pypi.org/project/httplib2/"/>
        <outline title="PyPI recent updates for httpretty" text="PyPI recent updates for httpretty" description="PyPI recent updates for httpretty" type="rss" xmlUrl="https://pypi.org/rss/project/httpretty/releases.xml" htmlUrl="https://pypi.org/project/httpretty/"/>
        <outline title="PyPI recent updates for httpx" text="PyPI recent updates for httpx" description="PyPI recent updates for httpx" type="rss" xmlUrl="https://pypi.org/rss/project/httpx/releases.xml" htmlUrl="https://pypi.org/project/httpx/"/>
        <outline title="PyPI recent updates for huawei-lte-api" text="PyPI recent updates for huawei-lte-api" description="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 title="PyPI recent updates for humanfriendly" text="PyPI recent updates for humanfriendly" description="PyPI recent updates for humanfriendly" type="rss" xmlUrl="https://pypi.org/rss/project/humanfriendly/releases.xml" htmlUrl="https://pypi.org/project/humanfriendly/"/>
        <outline title="PyPI recent updates for humanize" text="PyPI recent updates for humanize" description="PyPI recent updates for humanize" type="rss" xmlUrl="https://pypi.org/rss/project/humanize/releases.xml" htmlUrl="https://pypi.org/project/humanize/"/>
        <outline title="PyPI recent updates for hvac" text="PyPI recent updates for hvac" description="PyPI recent updates for hvac" type="rss" xmlUrl="https://pypi.org/rss/project/hvac/releases.xml" htmlUrl="https://pypi.org/project/hvac/"/>
        <outline title="PyPI recent updates for hyperframe" text="PyPI recent updates for hyperframe" description="PyPI recent updates for hyperframe" type="rss" xmlUrl="https://pypi.org/rss/project/hyperframe/releases.xml" htmlUrl="https://pypi.org/project/hyperframe/"/>
        <outline title="PyPI recent updates for hyperlink" text="PyPI recent updates for hyperlink" description="PyPI recent updates for hyperlink" type="rss" xmlUrl="https://pypi.org/rss/project/hyperlink/releases.xml" htmlUrl="https://pypi.org/project/hyperlink/"/>
        <outline title="PyPI recent updates for hypothesis" text="PyPI recent updates for hypothesis" description="PyPI recent updates for hypothesis" type="rss" xmlUrl="https://pypi.org/rss/project/hypothesis/releases.xml" htmlUrl="https://pypi.org/project/hypothesis/"/>
        <outline title="PyPI recent updates for icalendar" text="PyPI recent updates for icalendar" description="PyPI recent updates for icalendar" type="rss" xmlUrl="https://pypi.org/rss/project/icalendar/releases.xml" htmlUrl="https://pypi.org/project/icalendar/"/>
        <outline title="PyPI recent updates for identify" text="PyPI recent updates for identify" description="PyPI recent updates for identify" type="rss" xmlUrl="https://pypi.org/rss/project/identify/releases.xml" htmlUrl="https://pypi.org/project/identify/"/>
        <outline title="PyPI recent updates for idna" text="PyPI recent updates for idna" description="PyPI recent updates for idna" type="rss" xmlUrl="https://pypi.org/rss/project/idna/releases.xml" htmlUrl="https://pypi.org/project/idna/"/>
        <outline title="PyPI recent updates for ifaddr" text="PyPI recent updates for ifaddr" description="PyPI recent updates for ifaddr" type="rss" xmlUrl="https://pypi.org/rss/project/ifaddr/releases.xml" htmlUrl="https://pypi.org/project/ifaddr/"/>
        <outline title="PyPI recent updates for ijson" text="PyPI recent updates for ijson" description="PyPI recent updates for ijson" type="rss" xmlUrl="https://pypi.org/rss/project/ijson/releases.xml" htmlUrl="https://pypi.org/project/ijson/"/>
        <outline title="PyPI recent updates for imageio" text="PyPI recent updates for imageio" description="PyPI recent updates for imageio" type="rss" xmlUrl="https://pypi.org/rss/project/imageio/releases.xml" htmlUrl="https://pypi.org/project/imageio/"/>
        <outline title="PyPI recent updates for imageio-ffmpeg" text="PyPI recent updates for imageio-ffmpeg" description="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 title="PyPI recent updates for imagesize" text="PyPI recent updates for imagesize" description="PyPI recent updates for imagesize" type="rss" xmlUrl="https://pypi.org/rss/project/imagesize/releases.xml" htmlUrl="https://pypi.org/project/imagesize/"/>
        <outline title="PyPI recent updates for IMAPClient" text="PyPI recent updates for IMAPClient" description="PyPI recent updates for IMAPClient" type="rss" xmlUrl="https://pypi.org/rss/project/IMAPClient/releases.xml" htmlUrl="https://pypi.org/project/imapclient/"/>
        <outline title="PyPI recent updates for iminuit" text="PyPI recent updates for iminuit" description="PyPI recent updates for iminuit" type="rss" xmlUrl="https://pypi.org/rss/project/iminuit/releases.xml" htmlUrl="https://pypi.org/project/iminuit/"/>
        <outline title="PyPI recent updates for immutables" text="PyPI recent updates for immutables" description="PyPI recent updates for immutables" type="rss" xmlUrl="https://pypi.org/rss/project/immutables/releases.xml" htmlUrl="https://pypi.org/project/immutables/"/>
        <outline title="PyPI recent updates for importlib-metadata" text="PyPI recent updates for importlib-metadata" description="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 title="PyPI recent updates for importlib_resources" text="PyPI recent updates for importlib_resources" description="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 title="PyPI recent updates for imread" text="PyPI recent updates for imread" description="PyPI recent updates for imread" type="rss" xmlUrl="https://pypi.org/rss/project/imread/releases.xml" htmlUrl="https://pypi.org/project/imread/"/>
        <outline title="PyPI recent updates for incremental" text="PyPI recent updates for incremental" description="PyPI recent updates for incremental" type="rss" xmlUrl="https://pypi.org/rss/project/incremental/releases.xml" htmlUrl="https://pypi.org/project/incremental/"/>
        <outline title="PyPI recent updates for indexed-gzip" text="PyPI recent updates for indexed-gzip" description="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 title="PyPI recent updates for inflect" text="PyPI recent updates for inflect" description="PyPI recent updates for inflect" type="rss" xmlUrl="https://pypi.org/rss/project/inflect/releases.xml" htmlUrl="https://pypi.org/project/inflect/"/>
        <outline title="PyPI recent updates for inflection" text="PyPI recent updates for inflection" description="PyPI recent updates for inflection" type="rss" xmlUrl="https://pypi.org/rss/project/inflection/releases.xml" htmlUrl="https://pypi.org/project/inflection/"/>
        <outline title="PyPI recent updates for influxdb" text="PyPI recent updates for influxdb" description="PyPI recent updates for influxdb" type="rss" xmlUrl="https://pypi.org/rss/project/influxdb/releases.xml" htmlUrl="https://pypi.org/project/influxdb/"/>
        <outline title="PyPI recent updates for iniconfig" text="PyPI recent updates for iniconfig" description="PyPI recent updates for iniconfig" type="rss" xmlUrl="https://pypi.org/rss/project/iniconfig/releases.xml" htmlUrl="https://pypi.org/project/iniconfig/"/>
        <outline title="PyPI recent updates for iniparse" text="PyPI recent updates for iniparse" description="PyPI recent updates for iniparse" type="rss" xmlUrl="https://pypi.org/rss/project/iniparse/releases.xml" htmlUrl="https://pypi.org/project/iniparse/"/>
        <outline title="PyPI recent updates for IntelHex" text="PyPI recent updates for IntelHex" description="PyPI recent updates for IntelHex" type="rss" xmlUrl="https://pypi.org/rss/project/IntelHex/releases.xml" htmlUrl="https://pypi.org/project/intelhex/"/>
        <outline title="PyPI recent updates for intervaltree" text="PyPI recent updates for intervaltree" description="PyPI recent updates for intervaltree" type="rss" xmlUrl="https://pypi.org/rss/project/intervaltree/releases.xml" htmlUrl="https://pypi.org/project/intervaltree/"/>
        <outline title="PyPI recent updates for intreehooks" text="PyPI recent updates for intreehooks" description="PyPI recent updates for intreehooks" type="rss" xmlUrl="https://pypi.org/rss/project/intreehooks/releases.xml" htmlUrl="https://pypi.org/project/intreehooks/"/>
        <outline title="PyPI recent updates for iocapture" text="PyPI recent updates for iocapture" description="PyPI recent updates for iocapture" type="rss" xmlUrl="https://pypi.org/rss/project/iocapture/releases.xml" htmlUrl="https://pypi.org/project/iocapture/"/>
        <outline title="PyPI recent updates for ioflo" text="PyPI recent updates for ioflo" description="PyPI recent updates for ioflo" type="rss" xmlUrl="https://pypi.org/rss/project/ioflo/releases.xml" htmlUrl="https://pypi.org/project/ioflo/"/>
        <outline title="PyPI recent updates for ipaddr" text="PyPI recent updates for ipaddr" description="PyPI recent updates for ipaddr" type="rss" xmlUrl="https://pypi.org/rss/project/ipaddr/releases.xml" htmlUrl="https://pypi.org/project/ipaddr/"/>
        <outline title="PyPI recent updates for ipdb" text="PyPI recent updates for ipdb" description="PyPI recent updates for ipdb" type="rss" xmlUrl="https://pypi.org/rss/project/ipdb/releases.xml" htmlUrl="https://pypi.org/project/ipdb/"/>
        <outline title="PyPI recent updates for IPy" text="PyPI recent updates for IPy" description="PyPI recent updates for IPy" type="rss" xmlUrl="https://pypi.org/rss/project/IPy/releases.xml" htmlUrl="https://pypi.org/project/ipy/"/>
        <outline title="PyPI recent updates for ipykernel" text="PyPI recent updates for ipykernel" description="PyPI recent updates for ipykernel" type="rss" xmlUrl="https://pypi.org/rss/project/ipykernel/releases.xml" htmlUrl="https://pypi.org/project/ipykernel/"/>
        <outline title="PyPI recent updates for ipyparallel" text="PyPI recent updates for ipyparallel" description="PyPI recent updates for ipyparallel" type="rss" xmlUrl="https://pypi.org/rss/project/ipyparallel/releases.xml" htmlUrl="https://pypi.org/project/ipyparallel/"/>
        <outline title="PyPI recent updates for ipython" text="PyPI recent updates for ipython" description="PyPI recent updates for ipython" type="rss" xmlUrl="https://pypi.org/rss/project/ipython/releases.xml" htmlUrl="https://pypi.org/project/ipython/"/>
        <outline title="PyPI recent updates for ipython_genutils" text="PyPI recent updates for ipython_genutils" description="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 title="PyPI recent updates for ipywidgets" text="PyPI recent updates for ipywidgets" description="PyPI recent updates for ipywidgets" type="rss" xmlUrl="https://pypi.org/rss/project/ipywidgets/releases.xml" htmlUrl="https://pypi.org/project/ipywidgets/"/>
        <outline title="PyPI recent updates for irc" text="PyPI recent updates for irc" description="PyPI recent updates for irc" type="rss" xmlUrl="https://pypi.org/rss/project/irc/releases.xml" htmlUrl="https://pypi.org/project/irc/"/>
        <outline title="PyPI recent updates for iso8601" text="PyPI recent updates for iso8601" description="PyPI recent updates for iso8601" type="rss" xmlUrl="https://pypi.org/rss/project/iso8601/releases.xml" htmlUrl="https://pypi.org/project/iso8601/"/>
        <outline title="PyPI recent updates for isodate" text="PyPI recent updates for isodate" description="PyPI recent updates for isodate" type="rss" xmlUrl="https://pypi.org/rss/project/isodate/releases.xml" htmlUrl="https://pypi.org/project/isodate/"/>
        <outline title="PyPI recent updates for isoduration" text="PyPI recent updates for isoduration" description="PyPI recent updates for isoduration" type="rss" xmlUrl="https://pypi.org/rss/project/isoduration/releases.xml" htmlUrl="https://pypi.org/project/isoduration/"/>
        <outline title="PyPI recent updates for isort" text="PyPI recent updates for isort" description="PyPI recent updates for isort" type="rss" xmlUrl="https://pypi.org/rss/project/isort/releases.xml" htmlUrl="https://pypi.org/project/isort/"/>
        <outline title="PyPI recent updates for itsdangerous" text="PyPI recent updates for itsdangerous" description="PyPI recent updates for itsdangerous" type="rss" xmlUrl="https://pypi.org/rss/project/itsdangerous/releases.xml" htmlUrl="https://pypi.org/project/itsdangerous/"/>
        <outline title="PyPI recent updates for itypes" text="PyPI recent updates for itypes" description="PyPI recent updates for itypes" type="rss" xmlUrl="https://pypi.org/rss/project/itypes/releases.xml" htmlUrl="https://pypi.org/project/itypes/"/>
        <outline title="PyPI recent updates for jaraco.classes" text="PyPI recent updates for jaraco.classes" description="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 title="PyPI recent updates for jaraco.collections" text="PyPI recent updates for jaraco.collections" description="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 title="PyPI recent updates for jaraco.context" text="PyPI recent updates for jaraco.context" description="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 title="PyPI recent updates for jaraco.envs" text="PyPI recent updates for jaraco.envs" description="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 title="PyPI recent updates for jaraco.functools" text="PyPI recent updates for jaraco.functools" description="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 title="PyPI recent updates for jaraco.itertools" text="PyPI recent updates for jaraco.itertools" description="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 title="PyPI recent updates for jaraco.logging" text="PyPI recent updates for jaraco.logging" description="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 title="PyPI recent updates for jaraco.packaging" text="PyPI recent updates for jaraco.packaging" description="PyPI recent updates for jaraco.packaging" type="rss" xmlUrl="https://pypi.org/rss/project/jaraco.packaging/releases.xml" htmlUrl="https://pypi.org/project/jaraco-packaging/"/>
        <outline title="PyPI recent updates for jaraco.path" text="PyPI recent updates for jaraco.path" description="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 title="PyPI recent updates for jaraco.stream" text="PyPI recent updates for jaraco.stream" description="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 title="PyPI recent updates for jaraco.text" text="PyPI recent updates for jaraco.text" description="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 title="PyPI recent updates for jc" text="PyPI recent updates for jc" description="PyPI recent updates for jc" type="rss" xmlUrl="https://pypi.org/rss/project/jc/releases.xml" htmlUrl="https://pypi.org/project/jc/"/>
        <outline title="PyPI recent updates for jdcal" text="PyPI recent updates for jdcal" description="PyPI recent updates for jdcal" type="rss" xmlUrl="https://pypi.org/rss/project/jdcal/releases.xml" htmlUrl="https://pypi.org/project/jdcal/"/>
        <outline title="PyPI recent updates for jedi" text="PyPI recent updates for jedi" description="PyPI recent updates for jedi" type="rss" xmlUrl="https://pypi.org/rss/project/jedi/releases.xml" htmlUrl="https://pypi.org/project/jedi/"/>
        <outline title="PyPI recent updates for jeepney" text="PyPI recent updates for jeepney" description="PyPI recent updates for jeepney" type="rss" xmlUrl="https://pypi.org/rss/project/jeepney/releases.xml" htmlUrl="https://pypi.org/project/jeepney/"/>
        <outline title="PyPI recent updates for jellyfish" text="PyPI recent updates for jellyfish" description="PyPI recent updates for jellyfish" type="rss" xmlUrl="https://pypi.org/rss/project/jellyfish/releases.xml" htmlUrl="https://pypi.org/project/jellyfish/"/>
        <outline title="PyPI recent updates for jikanpy" text="PyPI recent updates for jikanpy" description="PyPI recent updates for jikanpy" type="rss" xmlUrl="https://pypi.org/rss/project/jikanpy/releases.xml" htmlUrl="https://pypi.org/project/jikanpy/"/>
        <outline title="PyPI recent updates for Jinja2" text="PyPI recent updates for Jinja2" description="PyPI recent updates for Jinja2" type="rss" xmlUrl="https://pypi.org/rss/project/Jinja2/releases.xml" htmlUrl="https://pypi.org/project/jinja2/"/>
        <outline title="PyPI recent updates for jinja2-time" text="PyPI recent updates for jinja2-time" description="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 title="PyPI recent updates for jinja2_pluralize" text="PyPI recent updates for jinja2_pluralize" description="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 title="PyPI recent updates for jmespath" text="PyPI recent updates for jmespath" description="PyPI recent updates for jmespath" type="rss" xmlUrl="https://pypi.org/rss/project/jmespath/releases.xml" htmlUrl="https://pypi.org/project/jmespath/"/>
        <outline title="PyPI recent updates for joblib" text="PyPI recent updates for joblib" description="PyPI recent updates for joblib" type="rss" xmlUrl="https://pypi.org/rss/project/joblib/releases.xml" htmlUrl="https://pypi.org/project/joblib/"/>
        <outline title="PyPI recent updates for josepy" text="PyPI recent updates for josepy" description="PyPI recent updates for josepy" type="rss" xmlUrl="https://pypi.org/rss/project/josepy/releases.xml" htmlUrl="https://pypi.org/project/josepy/"/>
        <outline title="PyPI recent updates for jq" text="PyPI recent updates for jq" description="PyPI recent updates for jq" type="rss" xmlUrl="https://pypi.org/rss/project/jq/releases.xml" htmlUrl="https://pypi.org/project/jq/"/>
        <outline title="PyPI recent updates for jschema-to-python" text="PyPI recent updates for jschema-to-python" description="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 title="PyPI recent updates for jsmin" text="PyPI recent updates for jsmin" description="PyPI recent updates for jsmin" type="rss" xmlUrl="https://pypi.org/rss/project/jsmin/releases.xml" htmlUrl="https://pypi.org/project/jsmin/"/>
        <outline title="PyPI recent updates for json5" text="PyPI recent updates for json5" description="PyPI recent updates for json5" type="rss" xmlUrl="https://pypi.org/rss/project/json5/releases.xml" htmlUrl="https://pypi.org/project/json5/"/>
        <outline title="PyPI recent updates for json-rpc" text="PyPI recent updates for json-rpc" description="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 title="PyPI recent updates for jsondiff" text="PyPI recent updates for jsondiff" description="PyPI recent updates for jsondiff" type="rss" xmlUrl="https://pypi.org/rss/project/jsondiff/releases.xml" htmlUrl="https://pypi.org/project/jsondiff/"/>
        <outline title="PyPI recent updates for jsonext" text="PyPI recent updates for jsonext" description="PyPI recent updates for jsonext" type="rss" xmlUrl="https://pypi.org/rss/project/jsonext/releases.xml" htmlUrl="https://pypi.org/project/jsonext/"/>
        <outline title="PyPI recent updates for jsonmerge" text="PyPI recent updates for jsonmerge" description="PyPI recent updates for jsonmerge" type="rss" xmlUrl="https://pypi.org/rss/project/jsonmerge/releases.xml" htmlUrl="https://pypi.org/project/jsonmerge/"/>
        <outline title="PyPI recent updates for jsonpatch" text="PyPI recent updates for jsonpatch" description="PyPI recent updates for jsonpatch" type="rss" xmlUrl="https://pypi.org/rss/project/jsonpatch/releases.xml" htmlUrl="https://pypi.org/project/jsonpatch/"/>
        <outline title="PyPI recent updates for jsonpickle" text="PyPI recent updates for jsonpickle" description="PyPI recent updates for jsonpickle" type="rss" xmlUrl="https://pypi.org/rss/project/jsonpickle/releases.xml" htmlUrl="https://pypi.org/project/jsonpickle/"/>
        <outline title="PyPI recent updates for jsonpointer" text="PyPI recent updates for jsonpointer" description="PyPI recent updates for jsonpointer" type="rss" xmlUrl="https://pypi.org/rss/project/jsonpointer/releases.xml" htmlUrl="https://pypi.org/project/jsonpointer/"/>
        <outline title="PyPI recent updates for jsonref" text="PyPI recent updates for jsonref" description="PyPI recent updates for jsonref" type="rss" xmlUrl="https://pypi.org/rss/project/jsonref/releases.xml" htmlUrl="https://pypi.org/project/jsonref/"/>
        <outline title="PyPI recent updates for jsonrpclib" text="PyPI recent updates for jsonrpclib" description="PyPI recent updates for jsonrpclib" type="rss" xmlUrl="https://pypi.org/rss/project/jsonrpclib/releases.xml" htmlUrl="https://pypi.org/project/jsonrpclib/"/>
        <outline title="PyPI recent updates for jsonschema" text="PyPI recent updates for jsonschema" description="PyPI recent updates for jsonschema" type="rss" xmlUrl="https://pypi.org/rss/project/jsonschema/releases.xml" htmlUrl="https://pypi.org/project/jsonschema/"/>
        <outline title="PyPI recent updates for jsonxs" text="PyPI recent updates for jsonxs" description="PyPI recent updates for jsonxs" type="rss" xmlUrl="https://pypi.org/rss/project/jsonxs/releases.xml" htmlUrl="https://pypi.org/project/jsonxs/"/>
        <outline title="PyPI recent updates for junit-xml" text="PyPI recent updates for junit-xml" description="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 title="PyPI recent updates for jupyter" text="PyPI recent updates for jupyter" description="PyPI recent updates for jupyter" type="rss" xmlUrl="https://pypi.org/rss/project/jupyter/releases.xml" htmlUrl="https://pypi.org/project/jupyter/"/>
        <outline title="PyPI recent updates for jupyter-lsp" text="PyPI recent updates for jupyter-lsp" description="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 title="PyPI recent updates for jupyter-packaging" text="PyPI recent updates for jupyter-packaging" description="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 title="PyPI recent updates for jupyter-server" text="PyPI recent updates for jupyter-server" description="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 title="PyPI recent updates for jupyter-server-mathjax" text="PyPI recent updates for jupyter-server-mathjax" description="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 title="PyPI recent updates for jupyter-server-proxy" text="PyPI recent updates for jupyter-server-proxy" description="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 title="PyPI recent updates for jupyter_client" text="PyPI recent updates for jupyter_client" description="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 title="PyPI recent updates for jupyter_console" text="PyPI recent updates for jupyter_console" description="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 title="PyPI recent updates for jupyter_core" text="PyPI recent updates for jupyter_core" description="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 title="PyPI recent updates for jupyterlab" text="PyPI recent updates for jupyterlab" description="PyPI recent updates for jupyterlab" type="rss" xmlUrl="https://pypi.org/rss/project/jupyterlab/releases.xml" htmlUrl="https://pypi.org/project/jupyterlab/"/>
        <outline title="PyPI recent updates for jupyterlab-lsp" text="PyPI recent updates for jupyterlab-lsp" description="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 title="PyPI recent updates for jupyterlab-server" text="PyPI recent updates for jupyterlab-server" description="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 title="PyPI recent updates for jupyterlab-pygments" text="PyPI recent updates for jupyterlab-pygments" description="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 title="PyPI recent updates for jwcrypto" text="PyPI recent updates for jwcrypto" description="PyPI recent updates for jwcrypto" type="rss" xmlUrl="https://pypi.org/rss/project/jwcrypto/releases.xml" htmlUrl="https://pypi.org/project/jwcrypto/"/>
        <outline title="PyPI recent updates for jwt" text="PyPI recent updates for jwt" description="PyPI recent updates for jwt" type="rss" xmlUrl="https://pypi.org/rss/project/jwt/releases.xml" htmlUrl="https://pypi.org/project/jwt/"/>
        <outline title="PyPI recent updates for k5test" text="PyPI recent updates for k5test" description="PyPI recent updates for k5test" type="rss" xmlUrl="https://pypi.org/rss/project/k5test/releases.xml" htmlUrl="https://pypi.org/project/k5test/"/>
        <outline title="PyPI recent updates for kafka-python" text="PyPI recent updates for kafka-python" description="PyPI recent updates for kafka-python" type="rss" xmlUrl="https://pypi.org/rss/project/kafka-python/releases.xml" htmlUrl="https://pypi.org/project/kafka-python/"/>
        <outline title="PyPI recent updates for kaitaistruct" text="PyPI recent updates for kaitaistruct" description="PyPI recent updates for kaitaistruct" type="rss" xmlUrl="https://pypi.org/rss/project/kaitaistruct/releases.xml" htmlUrl="https://pypi.org/project/kaitaistruct/"/>
        <outline title="PyPI recent updates for kaptan" text="PyPI recent updates for kaptan" description="PyPI recent updates for kaptan" type="rss" xmlUrl="https://pypi.org/rss/project/kaptan/releases.xml" htmlUrl="https://pypi.org/project/kaptan/"/>
        <outline title="PyPI recent updates for kazoo" text="PyPI recent updates for kazoo" description="PyPI recent updates for kazoo" type="rss" xmlUrl="https://pypi.org/rss/project/kazoo/releases.xml" htmlUrl="https://pypi.org/project/kazoo/"/>
        <outline title="PyPI recent updates for kconfiglib" text="PyPI recent updates for kconfiglib" description="PyPI recent updates for kconfiglib" type="rss" xmlUrl="https://pypi.org/rss/project/kconfiglib/releases.xml" htmlUrl="https://pypi.org/project/kconfiglib/"/>
        <outline title="PyPI recent updates for keep" text="PyPI recent updates for keep" description="PyPI recent updates for keep" type="rss" xmlUrl="https://pypi.org/rss/project/keep/releases.xml" htmlUrl="https://pypi.org/project/keep/"/>
        <outline title="PyPI recent updates for kerberos" text="PyPI recent updates for kerberos" description="PyPI recent updates for kerberos" type="rss" xmlUrl="https://pypi.org/rss/project/kerberos/releases.xml" htmlUrl="https://pypi.org/project/kerberos/"/>
        <outline title="PyPI recent updates for keyring" text="PyPI recent updates for keyring" description="PyPI recent updates for keyring" type="rss" xmlUrl="https://pypi.org/rss/project/keyring/releases.xml" htmlUrl="https://pypi.org/project/keyring/"/>
        <outline title="PyPI recent updates for keystoneauth1" text="PyPI recent updates for keystoneauth1" description="PyPI recent updates for keystoneauth1" type="rss" xmlUrl="https://pypi.org/rss/project/keystoneauth1/releases.xml" htmlUrl="https://pypi.org/project/keystoneauth1/"/>
        <outline title="PyPI recent updates for keystonemiddleware" text="PyPI recent updates for keystonemiddleware" description="PyPI recent updates for keystonemiddleware" type="rss" xmlUrl="https://pypi.org/rss/project/keystonemiddleware/releases.xml" htmlUrl="https://pypi.org/project/keystonemiddleware/"/>
        <outline title="PyPI recent updates for keyutils" text="PyPI recent updates for keyutils" description="PyPI recent updates for keyutils" type="rss" xmlUrl="https://pypi.org/rss/project/keyutils/releases.xml" htmlUrl="https://pypi.org/project/keyutils/"/>
        <outline title="PyPI recent updates for kiwisolver" text="PyPI recent updates for kiwisolver" description="PyPI recent updates for kiwisolver" type="rss" xmlUrl="https://pypi.org/rss/project/kiwisolver/releases.xml" htmlUrl="https://pypi.org/project/kiwisolver/"/>
        <outline title="PyPI recent updates for klein" text="PyPI recent updates for klein" description="PyPI recent updates for klein" type="rss" xmlUrl="https://pypi.org/rss/project/klein/releases.xml" htmlUrl="https://pypi.org/project/klein/"/>
        <outline title="PyPI recent updates for kombu" text="PyPI recent updates for kombu" description="PyPI recent updates for kombu" type="rss" xmlUrl="https://pypi.org/rss/project/kombu/releases.xml" htmlUrl="https://pypi.org/project/kombu/"/>
        <outline title="PyPI recent updates for krb5" text="PyPI recent updates for krb5" description="PyPI recent updates for krb5" type="rss" xmlUrl="https://pypi.org/rss/project/krb5/releases.xml" htmlUrl="https://pypi.org/project/krb5/"/>
        <outline title="PyPI recent updates for lark-parser" text="PyPI recent updates for lark-parser" description="PyPI recent updates for lark-parser" type="rss" xmlUrl="https://pypi.org/rss/project/lark-parser/releases.xml" htmlUrl="https://pypi.org/project/lark-parser/"/>
        <outline title="PyPI recent updates for latexcodec" text="PyPI recent updates for latexcodec" description="PyPI recent updates for latexcodec" type="rss" xmlUrl="https://pypi.org/rss/project/latexcodec/releases.xml" htmlUrl="https://pypi.org/project/latexcodec/"/>
        <outline title="PyPI recent updates for lazr.config" text="PyPI recent updates for lazr.config" description="PyPI recent updates for lazr.config" type="rss" xmlUrl="https://pypi.org/rss/project/lazr.config/releases.xml" htmlUrl="https://pypi.org/project/lazr-config/"/>
        <outline title="PyPI recent updates for lazr.delegates" text="PyPI recent updates for lazr.delegates" description="PyPI recent updates for lazr.delegates" type="rss" xmlUrl="https://pypi.org/rss/project/lazr.delegates/releases.xml" htmlUrl="https://pypi.org/project/lazr-delegates/"/>
        <outline title="PyPI recent updates for lazy-object-proxy" text="PyPI recent updates for lazy-object-proxy" description="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 title="PyPI recent updates for lcdproc" text="PyPI recent updates for lcdproc" description="PyPI recent updates for lcdproc" type="rss" xmlUrl="https://pypi.org/rss/project/lcdproc/releases.xml" htmlUrl="https://pypi.org/project/lcdproc/"/>
        <outline title="PyPI recent updates for ldap3" text="PyPI recent updates for ldap3" description="PyPI recent updates for ldap3" type="rss" xmlUrl="https://pypi.org/rss/project/ldap3/releases.xml" htmlUrl="https://pypi.org/project/ldap3/"/>
        <outline title="PyPI recent updates for ldappool" text="PyPI recent updates for ldappool" description="PyPI recent updates for ldappool" type="rss" xmlUrl="https://pypi.org/rss/project/ldappool/releases.xml" htmlUrl="https://pypi.org/project/ldappool/"/>
        <outline title="PyPI recent updates for leather" text="PyPI recent updates for leather" description="PyPI recent updates for leather" type="rss" xmlUrl="https://pypi.org/rss/project/leather/releases.xml" htmlUrl="https://pypi.org/project/leather/"/>
        <outline title="PyPI recent updates for lesscpy" text="PyPI recent updates for lesscpy" description="PyPI recent updates for lesscpy" type="rss" xmlUrl="https://pypi.org/rss/project/lesscpy/releases.xml" htmlUrl="https://pypi.org/project/lesscpy/"/>
        <outline title="PyPI recent updates for lhafile" text="PyPI recent updates for lhafile" description="PyPI recent updates for lhafile" type="rss" xmlUrl="https://pypi.org/rss/project/lhafile/releases.xml" htmlUrl="https://pypi.org/project/lhafile/"/>
        <outline title="PyPI recent updates for libarchive-c" text="PyPI recent updates for libarchive-c" description="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 title="PyPI recent updates for libevdev" text="PyPI recent updates for libevdev" description="PyPI recent updates for libevdev" type="rss" xmlUrl="https://pypi.org/rss/project/libevdev/releases.xml" htmlUrl="https://pypi.org/project/libevdev/"/>
        <outline title="PyPI recent updates for libnacl" text="PyPI recent updates for libnacl" description="PyPI recent updates for libnacl" type="rss" xmlUrl="https://pypi.org/rss/project/libnacl/releases.xml" htmlUrl="https://pypi.org/project/libnacl/"/>
        <outline title="PyPI recent updates for libpy-simdjson" text="PyPI recent updates for libpy-simdjson" description="PyPI recent updates for libpy-simdjson" type="rss" xmlUrl="https://pypi.org/rss/project/libpy-simdjson/releases.xml" htmlUrl="https://pypi.org/project/libpy-simdjson/"/>
        <outline title="PyPI recent updates for libsass" text="PyPI recent updates for libsass" description="PyPI recent updates for libsass" type="rss" xmlUrl="https://pypi.org/rss/project/libsass/releases.xml" htmlUrl="https://pypi.org/project/libsass/"/>
        <outline title="PyPI recent updates for libtmux" text="PyPI recent updates for libtmux" description="PyPI recent updates for libtmux" type="rss" xmlUrl="https://pypi.org/rss/project/libtmux/releases.xml" htmlUrl="https://pypi.org/project/libtmux/"/>
        <outline title="PyPI recent updates for libvirt-python" text="PyPI recent updates for libvirt-python" description="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 title="PyPI recent updates for line_profiler" text="PyPI recent updates for line_profiler" description="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 title="PyPI recent updates for linecache2" text="PyPI recent updates for linecache2" description="PyPI recent updates for linecache2" type="rss" xmlUrl="https://pypi.org/rss/project/linecache2/releases.xml" htmlUrl="https://pypi.org/project/linecache2/"/>
        <outline title="PyPI recent updates for lit" text="PyPI recent updates for lit" description="PyPI recent updates for lit" type="rss" xmlUrl="https://pypi.org/rss/project/lit/releases.xml" htmlUrl="https://pypi.org/project/lit/"/>
        <outline title="PyPI recent updates for livereload" text="PyPI recent updates for livereload" description="PyPI recent updates for livereload" type="rss" xmlUrl="https://pypi.org/rss/project/livereload/releases.xml" htmlUrl="https://pypi.org/project/livereload/"/>
        <outline title="PyPI recent updates for llfuse" text="PyPI recent updates for llfuse" description="PyPI recent updates for llfuse" type="rss" xmlUrl="https://pypi.org/rss/project/llfuse/releases.xml" htmlUrl="https://pypi.org/project/llfuse/"/>
        <outline title="PyPI recent updates for llvmlite" text="PyPI recent updates for llvmlite" description="PyPI recent updates for llvmlite" type="rss" xmlUrl="https://pypi.org/rss/project/llvmlite/releases.xml" htmlUrl="https://pypi.org/project/llvmlite/"/>
        <outline title="PyPI recent updates for lmdb" text="PyPI recent updates for lmdb" description="PyPI recent updates for lmdb" type="rss" xmlUrl="https://pypi.org/rss/project/lmdb/releases.xml" htmlUrl="https://pypi.org/project/lmdb/"/>
        <outline title="PyPI recent updates for lmfit" text="PyPI recent updates for lmfit" description="PyPI recent updates for lmfit" type="rss" xmlUrl="https://pypi.org/rss/project/lmfit/releases.xml" htmlUrl="https://pypi.org/project/lmfit/"/>
        <outline title="PyPI recent updates for locket" text="PyPI recent updates for locket" description="PyPI recent updates for locket" type="rss" xmlUrl="https://pypi.org/rss/project/locket/releases.xml" htmlUrl="https://pypi.org/project/locket/"/>
        <outline title="PyPI recent updates for lockfile" text="PyPI recent updates for lockfile" description="PyPI recent updates for lockfile" type="rss" xmlUrl="https://pypi.org/rss/project/lockfile/releases.xml" htmlUrl="https://pypi.org/project/lockfile/"/>
        <outline title="PyPI recent updates for Logbook" text="PyPI recent updates for Logbook" description="PyPI recent updates for Logbook" type="rss" xmlUrl="https://pypi.org/rss/project/Logbook/releases.xml" htmlUrl="https://pypi.org/project/logbook/"/>
        <outline title="PyPI recent updates for logfury" text="PyPI recent updates for logfury" description="PyPI recent updates for logfury" type="rss" xmlUrl="https://pypi.org/rss/project/logfury/releases.xml" htmlUrl="https://pypi.org/project/logfury/"/>
        <outline title="PyPI recent updates for logical-unification" text="PyPI recent updates for logical-unification" description="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 title="PyPI recent updates for loguru" text="PyPI recent updates for loguru" description="PyPI recent updates for loguru" type="rss" xmlUrl="https://pypi.org/rss/project/loguru/releases.xml" htmlUrl="https://pypi.org/project/loguru/"/>
        <outline title="PyPI recent updates for logutils" text="PyPI recent updates for logutils" description="PyPI recent updates for logutils" type="rss" xmlUrl="https://pypi.org/rss/project/logutils/releases.xml" htmlUrl="https://pypi.org/project/logutils/"/>
        <outline title="PyPI recent updates for loky" text="PyPI recent updates for loky" description="PyPI recent updates for loky" type="rss" xmlUrl="https://pypi.org/rss/project/loky/releases.xml" htmlUrl="https://pypi.org/project/loky/"/>
        <outline title="PyPI recent updates for lunr" text="PyPI recent updates for lunr" description="PyPI recent updates for lunr" type="rss" xmlUrl="https://pypi.org/rss/project/lunr/releases.xml" htmlUrl="https://pypi.org/project/lunr/"/>
        <outline title="PyPI recent updates for lxml" text="PyPI recent updates for lxml" description="PyPI recent updates for lxml" type="rss" xmlUrl="https://pypi.org/rss/project/lxml/releases.xml" htmlUrl="https://pypi.org/project/lxml/"/>
        <outline title="PyPI recent updates for lz4" text="PyPI recent updates for lz4" description="PyPI recent updates for lz4" type="rss" xmlUrl="https://pypi.org/rss/project/lz4/releases.xml" htmlUrl="https://pypi.org/project/lz4/"/>
        <outline title="PyPI recent updates for M2Crypto" text="PyPI recent updates for M2Crypto" description="PyPI recent updates for M2Crypto" type="rss" xmlUrl="https://pypi.org/rss/project/M2Crypto/releases.xml" htmlUrl="https://pypi.org/project/m2crypto/"/>
        <outline title="PyPI recent updates for m2r" text="PyPI recent updates for m2r" description="PyPI recent updates for m2r" type="rss" xmlUrl="https://pypi.org/rss/project/m2r/releases.xml" htmlUrl="https://pypi.org/project/m2r/"/>
        <outline title="PyPI recent updates for Mako" text="PyPI recent updates for Mako" description="PyPI recent updates for Mako" type="rss" xmlUrl="https://pypi.org/rss/project/Mako/releases.xml" htmlUrl="https://pypi.org/project/mako/"/>
        <outline title="PyPI recent updates for mamba" text="PyPI recent updates for mamba" description="PyPI recent updates for mamba" type="rss" xmlUrl="https://pypi.org/rss/project/mamba/releases.xml" htmlUrl="https://pypi.org/project/mamba/"/>
        <outline title="PyPI recent updates for mando" text="PyPI recent updates for mando" description="PyPI recent updates for mando" type="rss" xmlUrl="https://pypi.org/rss/project/mando/releases.xml" htmlUrl="https://pypi.org/project/mando/"/>
        <outline title="PyPI recent updates for manuel" text="PyPI recent updates for manuel" description="PyPI recent updates for manuel" type="rss" xmlUrl="https://pypi.org/rss/project/manuel/releases.xml" htmlUrl="https://pypi.org/project/manuel/"/>
        <outline title="PyPI recent updates for Markdown" text="PyPI recent updates for Markdown" description="PyPI recent updates for Markdown" type="rss" xmlUrl="https://pypi.org/rss/project/Markdown/releases.xml" htmlUrl="https://pypi.org/project/markdown/"/>
        <outline title="PyPI recent updates for markdown2" text="PyPI recent updates for markdown2" description="PyPI recent updates for markdown2" type="rss" xmlUrl="https://pypi.org/rss/project/markdown2/releases.xml" htmlUrl="https://pypi.org/project/markdown2/"/>
        <outline title="PyPI recent updates for MarkupPy" text="PyPI recent updates for MarkupPy" description="PyPI recent updates for MarkupPy" type="rss" xmlUrl="https://pypi.org/rss/project/markuppy/releases.xml" htmlUrl="https://pypi.org/project/markuppy/"/>
        <outline title="PyPI recent updates for Markups" text="PyPI recent updates for Markups" description="PyPI recent updates for Markups" type="rss" xmlUrl="https://pypi.org/rss/project/Markups/releases.xml" htmlUrl="https://pypi.org/project/markups/"/>
        <outline title="PyPI recent updates for MarkupSafe" text="PyPI recent updates for MarkupSafe" description="PyPI recent updates for MarkupSafe" type="rss" xmlUrl="https://pypi.org/rss/project/MarkupSafe/releases.xml" htmlUrl="https://pypi.org/project/markupsafe/"/>
        <outline title="PyPI recent updates for marshmallow" text="PyPI recent updates for marshmallow" description="PyPI recent updates for marshmallow" type="rss" xmlUrl="https://pypi.org/rss/project/marshmallow/releases.xml" htmlUrl="https://pypi.org/project/marshmallow/"/>
        <outline title="PyPI recent updates for matplotlib" text="PyPI recent updates for matplotlib" description="PyPI recent updates for matplotlib" type="rss" xmlUrl="https://pypi.org/rss/project/matplotlib/releases.xml" htmlUrl="https://pypi.org/project/matplotlib/"/>
        <outline title="PyPI recent updates for matplotlib-inline" text="PyPI recent updates for matplotlib-inline" description="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 title="PyPI recent updates for matterhook" text="PyPI recent updates for matterhook" description="PyPI recent updates for matterhook" type="rss" xmlUrl="https://pypi.org/rss/project/matterhook/releases.xml" htmlUrl="https://pypi.org/project/matterhook/"/>
        <outline title="PyPI recent updates for mccabe" text="PyPI recent updates for mccabe" description="PyPI recent updates for mccabe" type="rss" xmlUrl="https://pypi.org/rss/project/mccabe/releases.xml" htmlUrl="https://pypi.org/project/mccabe/"/>
        <outline title="PyPI recent updates for mdx_gh_links" text="PyPI recent updates for mdx_gh_links" description="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 title="PyPI recent updates for mecab-python" text="PyPI recent updates for mecab-python" description="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 title="PyPI recent updates for MechanicalSoup" text="PyPI recent updates for MechanicalSoup" description="PyPI recent updates for MechanicalSoup" type="rss" xmlUrl="https://pypi.org/rss/project/MechanicalSoup/releases.xml" htmlUrl="https://pypi.org/project/mechanicalsoup/"/>
        <outline title="PyPI recent updates for mechanize" text="PyPI recent updates for mechanize" description="PyPI recent updates for mechanize" type="rss" xmlUrl="https://pypi.org/rss/project/mechanize/releases.xml" htmlUrl="https://pypi.org/project/mechanize/"/>
        <outline title="PyPI recent updates for mediafile" text="PyPI recent updates for mediafile" description="PyPI recent updates for mediafile" type="rss" xmlUrl="https://pypi.org/rss/project/mediafile/releases.xml" htmlUrl="https://pypi.org/project/mediafile/"/>
        <outline title="PyPI recent updates for memory_profiler" text="PyPI recent updates for memory_profiler" description="PyPI recent updates for memory_profiler" type="rss" xmlUrl="https://pypi.org/rss/project/memory_profiler/releases.xml" htmlUrl="https://pypi.org/project/memory-profiler/"/>
        <outline title="PyPI recent updates for mergedeep" text="PyPI recent updates for mergedeep" description="PyPI recent updates for mergedeep" type="rss" xmlUrl="https://pypi.org/rss/project/mergedeep/releases.xml" htmlUrl="https://pypi.org/project/mergedeep/"/>
        <outline title="PyPI recent updates for metakernel" text="PyPI recent updates for metakernel" description="PyPI recent updates for metakernel" type="rss" xmlUrl="https://pypi.org/rss/project/metakernel/releases.xml" htmlUrl="https://pypi.org/project/metakernel/"/>
        <outline title="PyPI recent updates for micawber" text="PyPI recent updates for micawber" description="PyPI recent updates for micawber" type="rss" xmlUrl="https://pypi.org/rss/project/micawber/releases.xml" htmlUrl="https://pypi.org/project/micawber/"/>
        <outline title="PyPI recent updates for microversion_parse" text="PyPI recent updates for microversion_parse" description="PyPI recent updates for microversion_parse" type="rss" xmlUrl="https://pypi.org/rss/project/microversion_parse/releases.xml" htmlUrl="https://pypi.org/project/microversion-parse/"/>
        <outline title="PyPI recent updates for mimerender" text="PyPI recent updates for mimerender" description="PyPI recent updates for mimerender" type="rss" xmlUrl="https://pypi.org/rss/project/mimerender/releases.xml" htmlUrl="https://pypi.org/project/mimerender/"/>
        <outline title="PyPI recent updates for minidb" text="PyPI recent updates for minidb" description="PyPI recent updates for minidb" type="rss" xmlUrl="https://pypi.org/rss/project/minidb/releases.xml" htmlUrl="https://pypi.org/project/minidb/"/>
        <outline title="PyPI recent updates for minikanren" text="PyPI recent updates for minikanren" description="PyPI recent updates for minikanren" type="rss" xmlUrl="https://pypi.org/rss/project/minikanren/releases.xml" htmlUrl="https://pypi.org/project/minikanren/"/>
        <outline title="PyPI recent updates for MiniMock" text="PyPI recent updates for MiniMock" description="PyPI recent updates for MiniMock" type="rss" xmlUrl="https://pypi.org/rss/project/MiniMock/releases.xml" htmlUrl="https://pypi.org/project/minimock/"/>
        <outline title="PyPI recent updates for miniupnpc" text="PyPI recent updates for miniupnpc" description="PyPI recent updates for miniupnpc" type="rss" xmlUrl="https://pypi.org/rss/project/miniupnpc/releases.xml" htmlUrl="https://pypi.org/project/miniupnpc/"/>
        <outline title="PyPI recent updates for misaka" text="PyPI recent updates for misaka" description="PyPI recent updates for misaka" type="rss" xmlUrl="https://pypi.org/rss/project/misaka/releases.xml" htmlUrl="https://pypi.org/project/misaka/"/>
        <outline title="PyPI recent updates for mistune" text="PyPI recent updates for mistune" description="PyPI recent updates for mistune" type="rss" xmlUrl="https://pypi.org/rss/project/mistune/releases.xml" htmlUrl="https://pypi.org/project/mistune/"/>
        <outline title="PyPI recent updates for mkautodoc" text="PyPI recent updates for mkautodoc" description="PyPI recent updates for mkautodoc" type="rss" xmlUrl="https://pypi.org/rss/project/mkautodoc/releases.xml" htmlUrl="https://pypi.org/project/mkautodoc/"/>
        <outline title="PyPI recent updates for mkdocs" text="PyPI recent updates for mkdocs" description="PyPI recent updates for mkdocs" type="rss" xmlUrl="https://pypi.org/rss/project/mkdocs/releases.xml" htmlUrl="https://pypi.org/project/mkdocs/"/>
        <outline title="PyPI recent updates for mkdocs-bootstrap" text="PyPI recent updates for mkdocs-bootstrap" description="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 title="PyPI recent updates for mkdocs-bootswatch" text="PyPI recent updates for mkdocs-bootswatch" description="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 title="PyPI recent updates for mkdocs-git-authors-plugin" text="PyPI recent updates for mkdocs-git-authors-plugin" description="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 title="PyPI recent updates for mkdocs-git-revision-date-localized-plugin" text="PyPI recent updates for mkdocs-git-revision-date-localized-plugin" description="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 title="PyPI recent updates for mkdocs-material" text="PyPI recent updates for mkdocs-material" description="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 title="PyPI recent updates for mkdocs-material-extensions" text="PyPI recent updates for mkdocs-material-extensions" description="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 title="PyPI recent updates for mkdocs-minify-plugin" text="PyPI recent updates for mkdocs-minify-plugin" description="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 title="PyPI recent updates for mkdocs-pymdownx-material-extras" text="PyPI recent updates for mkdocs-pymdownx-material-extras" description="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 title="PyPI recent updates for mkdocs-redirects" text="PyPI recent updates for mkdocs-redirects" description="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 title="PyPI recent updates for mmtf-python" text="PyPI recent updates for mmtf-python" description="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 title="PyPI recent updates for mock" text="PyPI recent updates for mock" description="PyPI recent updates for mock" type="rss" xmlUrl="https://pypi.org/rss/project/mock/releases.xml" htmlUrl="https://pypi.org/project/mock/"/>
        <outline title="PyPI recent updates for mongoengine" text="PyPI recent updates for mongoengine" description="PyPI recent updates for mongoengine" type="rss" xmlUrl="https://pypi.org/rss/project/mongoengine/releases.xml" htmlUrl="https://pypi.org/project/mongoengine/"/>
        <outline title="PyPI recent updates for mongomock" text="PyPI recent updates for mongomock" description="PyPI recent updates for mongomock" type="rss" xmlUrl="https://pypi.org/rss/project/mongomock/releases.xml" htmlUrl="https://pypi.org/project/mongomock/"/>
        <outline title="PyPI recent updates for more-itertools" text="PyPI recent updates for more-itertools" description="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 title="PyPI recent updates for moto" text="PyPI recent updates for moto" description="PyPI recent updates for moto" type="rss" xmlUrl="https://pypi.org/rss/project/moto/releases.xml" htmlUrl="https://pypi.org/project/moto/"/>
        <outline title="PyPI recent updates for mpdlcd" text="PyPI recent updates for mpdlcd" description="PyPI recent updates for mpdlcd" type="rss" xmlUrl="https://pypi.org/rss/project/mpdlcd/releases.xml" htmlUrl="https://pypi.org/project/mpdlcd/"/>
        <outline title="PyPI recent updates for mpi4py" text="PyPI recent updates for mpi4py" description="PyPI recent updates for mpi4py" type="rss" xmlUrl="https://pypi.org/rss/project/mpi4py/releases.xml" htmlUrl="https://pypi.org/project/mpi4py/"/>
        <outline title="PyPI recent updates for mpmath" text="PyPI recent updates for mpmath" description="PyPI recent updates for mpmath" type="rss" xmlUrl="https://pypi.org/rss/project/mpmath/releases.xml" htmlUrl="https://pypi.org/project/mpmath/"/>
        <outline title="PyPI recent updates for msgpack" text="PyPI recent updates for msgpack" description="PyPI recent updates for msgpack" type="rss" xmlUrl="https://pypi.org/rss/project/msgpack/releases.xml" htmlUrl="https://pypi.org/project/msgpack/"/>
        <outline title="PyPI recent updates for mss" text="PyPI recent updates for mss" description="PyPI recent updates for mss" type="rss" xmlUrl="https://pypi.org/rss/project/mss/releases.xml" htmlUrl="https://pypi.org/project/mss/"/>
        <outline title="PyPI recent updates for multidict" text="PyPI recent updates for multidict" description="PyPI recent updates for multidict" type="rss" xmlUrl="https://pypi.org/rss/project/multidict/releases.xml" htmlUrl="https://pypi.org/project/multidict/"/>
        <outline title="PyPI recent updates for multipledispatch" text="PyPI recent updates for multipledispatch" description="PyPI recent updates for multipledispatch" type="rss" xmlUrl="https://pypi.org/rss/project/multipledispatch/releases.xml" htmlUrl="https://pypi.org/project/multipledispatch/"/>
        <outline title="PyPI recent updates for munch" text="PyPI recent updates for munch" description="PyPI recent updates for munch" type="rss" xmlUrl="https://pypi.org/rss/project/munch/releases.xml" htmlUrl="https://pypi.org/project/munch/"/>
        <outline title="PyPI recent updates for munkres" text="PyPI recent updates for munkres" description="PyPI recent updates for munkres" type="rss" xmlUrl="https://pypi.org/rss/project/munkres/releases.xml" htmlUrl="https://pypi.org/project/munkres/"/>
        <outline title="PyPI recent updates for musicbrainzngs" text="PyPI recent updates for musicbrainzngs" description="PyPI recent updates for musicbrainzngs" type="rss" xmlUrl="https://pypi.org/rss/project/musicbrainzngs/releases.xml" htmlUrl="https://pypi.org/project/musicbrainzngs/"/>
        <outline title="PyPI recent updates for mygpoclient" text="PyPI recent updates for mygpoclient" description="PyPI recent updates for mygpoclient" type="rss" xmlUrl="https://pypi.org/rss/project/mygpoclient/releases.xml" htmlUrl="https://pypi.org/project/mygpoclient/"/>
        <outline title="PyPI recent updates for mypy" text="PyPI recent updates for mypy" description="PyPI recent updates for mypy" type="rss" xmlUrl="https://pypi.org/rss/project/mypy/releases.xml" htmlUrl="https://pypi.org/project/mypy/"/>
        <outline title="PyPI recent updates for mypy-extensions" text="PyPI recent updates for mypy-extensions" description="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 title="PyPI recent updates for mysql-connector-python" text="PyPI recent updates for mysql-connector-python" description="PyPI recent updates for mysql-connector-python" type="rss" xmlUrl="https://pypi.org/rss/project/mysql-connector-python/releases.xml" htmlUrl="https://pypi.org/project/mysql-connector-python/"/>
        <outline title="PyPI recent updates for mysqlclient" text="PyPI recent updates for mysqlclient" description="PyPI recent updates for mysqlclient" type="rss" xmlUrl="https://pypi.org/rss/project/mysqlclient/releases.xml" htmlUrl="https://pypi.org/project/mysqlclient/"/>
        <outline title="PyPI recent updates for nagiosplugin" text="PyPI recent updates for nagiosplugin" description="PyPI recent updates for nagiosplugin" type="rss" xmlUrl="https://pypi.org/rss/project/nagiosplugin/releases.xml" htmlUrl="https://pypi.org/project/nagiosplugin/"/>
        <outline title="PyPI recent updates for natsort" text="PyPI recent updates for natsort" description="PyPI recent updates for natsort" type="rss" xmlUrl="https://pypi.org/rss/project/natsort/releases.xml" htmlUrl="https://pypi.org/project/natsort/"/>
        <outline title="PyPI recent updates for nbclassic" text="PyPI recent updates for nbclassic" description="PyPI recent updates for nbclassic" type="rss" xmlUrl="https://pypi.org/rss/project/nbclassic/releases.xml" htmlUrl="https://pypi.org/project/nbclassic/"/>
        <outline title="PyPI recent updates for nbclient" text="PyPI recent updates for nbclient" description="PyPI recent updates for nbclient" type="rss" xmlUrl="https://pypi.org/rss/project/nbclient/releases.xml" htmlUrl="https://pypi.org/project/nbclient/"/>
        <outline title="PyPI recent updates for nbconvert" text="PyPI recent updates for nbconvert" description="PyPI recent updates for nbconvert" type="rss" xmlUrl="https://pypi.org/rss/project/nbconvert/releases.xml" htmlUrl="https://pypi.org/project/nbconvert/"/>
        <outline title="PyPI recent updates for nbdime" text="PyPI recent updates for nbdime" description="PyPI recent updates for nbdime" type="rss" xmlUrl="https://pypi.org/rss/project/nbdime/releases.xml" htmlUrl="https://pypi.org/project/nbdime/"/>
        <outline title="PyPI recent updates for nbformat" text="PyPI recent updates for nbformat" description="PyPI recent updates for nbformat" type="rss" xmlUrl="https://pypi.org/rss/project/nbformat/releases.xml" htmlUrl="https://pypi.org/project/nbformat/"/>
        <outline title="PyPI recent updates for nbsphinx" text="PyPI recent updates for nbsphinx" description="PyPI recent updates for nbsphinx" type="rss" xmlUrl="https://pypi.org/rss/project/nbsphinx/releases.xml" htmlUrl="https://pypi.org/project/nbsphinx/"/>
        <outline title="PyPI recent updates for nbval" text="PyPI recent updates for nbval" description="PyPI recent updates for nbval" type="rss" xmlUrl="https://pypi.org/rss/project/nbval/releases.xml" htmlUrl="https://pypi.org/project/nbval/"/>
        <outline title="PyPI recent updates for nbxmpp" text="PyPI recent updates for nbxmpp" description="PyPI recent updates for nbxmpp" type="rss" xmlUrl="https://pypi.org/rss/project/nbxmpp/releases.xml" htmlUrl="https://pypi.org/project/nbxmpp/"/>
        <outline title="PyPI recent updates for ndg-httpsclient" text="PyPI recent updates for ndg-httpsclient" description="PyPI recent updates for ndg-httpsclient" type="rss" xmlUrl="https://pypi.org/rss/project/ndg-httpsclient/releases.xml" htmlUrl="https://pypi.org/project/ndg-httpsclient/"/>
        <outline title="PyPI recent updates for neovim-remote" text="PyPI recent updates for neovim-remote" description="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 title="PyPI recent updates for nest_asyncio" text="PyPI recent updates for nest_asyncio" description="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 title="PyPI recent updates for netaddr" text="PyPI recent updates for netaddr" description="PyPI recent updates for netaddr" type="rss" xmlUrl="https://pypi.org/rss/project/netaddr/releases.xml" htmlUrl="https://pypi.org/project/netaddr/"/>
        <outline title="PyPI recent updates for netCDF4" text="PyPI recent updates for netCDF4" description="PyPI recent updates for netCDF4" type="rss" xmlUrl="https://pypi.org/rss/project/netCDF4/releases.xml" htmlUrl="https://pypi.org/project/netcdf4/"/>
        <outline title="PyPI recent updates for netifaces" text="PyPI recent updates for netifaces" description="PyPI recent updates for netifaces" type="rss" xmlUrl="https://pypi.org/rss/project/netifaces/releases.xml" htmlUrl="https://pypi.org/project/netifaces/"/>
        <outline title="PyPI recent updates for NetLink" text="PyPI recent updates for NetLink" description="PyPI recent updates for NetLink" type="rss" xmlUrl="https://pypi.org/rss/project/NetLink/releases.xml" htmlUrl="https://pypi.org/project/netlink/"/>
        <outline title="PyPI recent updates for networkx" text="PyPI recent updates for networkx" description="PyPI recent updates for networkx" type="rss" xmlUrl="https://pypi.org/rss/project/networkx/releases.xml" htmlUrl="https://pypi.org/project/networkx/"/>
        <outline title="PyPI recent updates for neutron-lib" text="PyPI recent updates for neutron-lib" description="PyPI recent updates for neutron-lib" type="rss" xmlUrl="https://pypi.org/rss/project/neutron-lib/releases.xml" htmlUrl="https://pypi.org/project/neutron-lib/"/>
        <outline title="PyPI recent updates for nltk" text="PyPI recent updates for nltk" description="PyPI recent updates for nltk" type="rss" xmlUrl="https://pypi.org/rss/project/nltk/releases.xml" htmlUrl="https://pypi.org/project/nltk/"/>
        <outline title="PyPI recent updates for nnpy" text="PyPI recent updates for nnpy" description="PyPI recent updates for nnpy" type="rss" xmlUrl="https://pypi.org/rss/project/nnpy/releases.xml" htmlUrl="https://pypi.org/project/nnpy/"/>
        <outline title="PyPI recent updates for node-semver" text="PyPI recent updates for node-semver" description="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 title="PyPI recent updates for nodeenv" text="PyPI recent updates for nodeenv" description="PyPI recent updates for nodeenv" type="rss" xmlUrl="https://pypi.org/rss/project/nodeenv/releases.xml" htmlUrl="https://pypi.org/project/nodeenv/"/>
        <outline title="PyPI recent updates for nose" text="PyPI recent updates for nose" description="PyPI recent updates for nose" type="rss" xmlUrl="https://pypi.org/rss/project/nose/releases.xml" htmlUrl="https://pypi.org/project/nose/"/>
        <outline title="PyPI recent updates for nose-cover3" text="PyPI recent updates for nose-cover3" description="PyPI recent updates for nose-cover3" type="rss" xmlUrl="https://pypi.org/rss/project/nose-cover3/releases.xml" htmlUrl="https://pypi.org/project/nose-cover3/"/>
        <outline title="PyPI recent updates for nose-exclude" text="PyPI recent updates for nose-exclude" description="PyPI recent updates for nose-exclude" type="rss" xmlUrl="https://pypi.org/rss/project/nose-exclude/releases.xml" htmlUrl="https://pypi.org/project/nose-exclude/"/>
        <outline title="PyPI recent updates for nose-parameterized" text="PyPI recent updates for nose-parameterized" description="PyPI recent updates for nose-parameterized" type="rss" xmlUrl="https://pypi.org/rss/project/nose-parameterized/releases.xml" htmlUrl="https://pypi.org/project/nose-parameterized/"/>
        <outline title="PyPI recent updates for nose-show-skipped" text="PyPI recent updates for nose-show-skipped" description="PyPI recent updates for nose-show-skipped" type="rss" xmlUrl="https://pypi.org/rss/project/nose-show-skipped/releases.xml" htmlUrl="https://pypi.org/project/nose-show-skipped/"/>
        <outline title="PyPI recent updates for nose2" text="PyPI recent updates for nose2" description="PyPI recent updates for nose2" type="rss" xmlUrl="https://pypi.org/rss/project/nose2/releases.xml" htmlUrl="https://pypi.org/project/nose2/"/>
        <outline title="PyPI recent updates for nose_fixes" text="PyPI recent updates for nose_fixes" description="PyPI recent updates for nose_fixes" type="rss" xmlUrl="https://pypi.org/rss/project/nose_fixes/releases.xml" htmlUrl="https://pypi.org/project/nose-fixes/"/>
        <outline title="PyPI recent updates for nose_warnings_filters" text="PyPI recent updates for nose_warnings_filters" description="PyPI recent updates for nose_warnings_filters" type="rss" xmlUrl="https://pypi.org/rss/project/nose_warnings_filters/releases.xml" htmlUrl="https://pypi.org/project/nose-warnings-filters/"/>
        <outline title="PyPI recent updates for notebook" text="PyPI recent updates for notebook" description="PyPI recent updates for notebook" type="rss" xmlUrl="https://pypi.org/rss/project/notebook/releases.xml" htmlUrl="https://pypi.org/project/notebook/"/>
        <outline title="PyPI recent updates for notify2" text="PyPI recent updates for notify2" description="PyPI recent updates for notify2" type="rss" xmlUrl="https://pypi.org/rss/project/notify2/releases.xml" htmlUrl="https://pypi.org/project/notify2/"/>
        <outline title="PyPI recent updates for ntlm-auth" text="PyPI recent updates for ntlm-auth" description="PyPI recent updates for ntlm-auth" type="rss" xmlUrl="https://pypi.org/rss/project/ntlm-auth/releases.xml" htmlUrl="https://pypi.org/project/ntlm-auth/"/>
        <outline title="PyPI recent updates for ntplib" text="PyPI recent updates for ntplib" description="PyPI recent updates for ntplib" type="rss" xmlUrl="https://pypi.org/rss/project/ntplib/releases.xml" htmlUrl="https://pypi.org/project/ntplib/"/>
        <outline title="PyPI recent updates for Nuitka" text="PyPI recent updates for Nuitka" description="PyPI recent updates for Nuitka" type="rss" xmlUrl="https://pypi.org/rss/project/Nuitka/releases.xml" htmlUrl="https://pypi.org/project/nuitka/"/>
        <outline title="PyPI recent updates for numexpr" text="PyPI recent updates for numexpr" description="PyPI recent updates for numexpr" type="rss" xmlUrl="https://pypi.org/rss/project/numexpr/releases.xml" htmlUrl="https://pypi.org/project/numexpr/"/>
        <outline title="PyPI recent updates for numpy" text="PyPI recent updates for numpy" description="PyPI recent updates for numpy" type="rss" xmlUrl="https://pypi.org/rss/project/numpy/releases.xml" htmlUrl="https://pypi.org/project/numpy/"/>
        <outline title="PyPI recent updates for numpydoc" text="PyPI recent updates for numpydoc" description="PyPI recent updates for numpydoc" type="rss" xmlUrl="https://pypi.org/rss/project/numpydoc/releases.xml" htmlUrl="https://pypi.org/project/numpydoc/"/>
        <outline title="PyPI recent updates for oauth2" text="PyPI recent updates for oauth2" description="PyPI recent updates for oauth2" type="rss" xmlUrl="https://pypi.org/rss/project/oauth2/releases.xml" htmlUrl="https://pypi.org/project/oauth2/"/>
        <outline title="PyPI recent updates for oauth2client" text="PyPI recent updates for oauth2client" description="PyPI recent updates for oauth2client" type="rss" xmlUrl="https://pypi.org/rss/project/oauth2client/releases.xml" htmlUrl="https://pypi.org/project/oauth2client/"/>
        <outline title="PyPI recent updates for oauthlib" text="PyPI recent updates for oauthlib" description="PyPI recent updates for oauthlib" type="rss" xmlUrl="https://pypi.org/rss/project/oauthlib/releases.xml" htmlUrl="https://pypi.org/project/oauthlib/"/>
        <outline title="PyPI recent updates for objgraph" text="PyPI recent updates for objgraph" description="PyPI recent updates for objgraph" type="rss" xmlUrl="https://pypi.org/rss/project/objgraph/releases.xml" htmlUrl="https://pypi.org/project/objgraph/"/>
        <outline title="PyPI recent updates for oct2py" text="PyPI recent updates for oct2py" description="PyPI recent updates for oct2py" type="rss" xmlUrl="https://pypi.org/rss/project/oct2py/releases.xml" htmlUrl="https://pypi.org/project/oct2py/"/>
        <outline title="PyPI recent updates for octave_kernel" text="PyPI recent updates for octave_kernel" description="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 title="PyPI recent updates for odfpy" text="PyPI recent updates for odfpy" description="PyPI recent updates for odfpy" type="rss" xmlUrl="https://pypi.org/rss/project/odfpy/releases.xml" htmlUrl="https://pypi.org/project/odfpy/"/>
        <outline title="PyPI recent updates for olefile" text="PyPI recent updates for olefile" description="PyPI recent updates for olefile" type="rss" xmlUrl="https://pypi.org/rss/project/olefile/releases.xml" htmlUrl="https://pypi.org/project/olefile/"/>
        <outline title="PyPI recent updates for onkyo-eiscp" text="PyPI recent updates for onkyo-eiscp" description="PyPI recent updates for onkyo-eiscp" type="rss" xmlUrl="https://pypi.org/rss/project/onkyo-eiscp/releases.xml" htmlUrl="https://pypi.org/project/onkyo-eiscp/"/>
        <outline title="PyPI recent updates for openpyxl" text="PyPI recent updates for openpyxl" description="PyPI recent updates for openpyxl" type="rss" xmlUrl="https://pypi.org/rss/project/openpyxl/releases.xml" htmlUrl="https://pypi.org/project/openpyxl/"/>
        <outline title="PyPI recent updates for openstackdocstheme" text="PyPI recent updates for openstackdocstheme" description="PyPI recent updates for openstackdocstheme" type="rss" xmlUrl="https://pypi.org/rss/project/openstackdocstheme/releases.xml" htmlUrl="https://pypi.org/project/openstackdocstheme/"/>
        <outline title="PyPI recent updates for openstacksdk" text="PyPI recent updates for openstacksdk" description="PyPI recent updates for openstacksdk" type="rss" xmlUrl="https://pypi.org/rss/project/openstacksdk/releases.xml" htmlUrl="https://pypi.org/project/openstacksdk/"/>
        <outline title="PyPI recent updates for opt-einsum" text="PyPI recent updates for opt-einsum" description="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 title="PyPI recent updates for ordered-set" text="PyPI recent updates for ordered-set" description="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 title="PyPI recent updates for os-brick" text="PyPI recent updates for os-brick" description="PyPI recent updates for os-brick" type="rss" xmlUrl="https://pypi.org/rss/project/os-brick/releases.xml" htmlUrl="https://pypi.org/project/os-brick/"/>
        <outline title="PyPI recent updates for os-client-config" text="PyPI recent updates for os-client-config" description="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 title="PyPI recent updates for os-ken" text="PyPI recent updates for os-ken" description="PyPI recent updates for os-ken" type="rss" xmlUrl="https://pypi.org/rss/project/os-ken/releases.xml" htmlUrl="https://pypi.org/project/os-ken/"/>
        <outline title="PyPI recent updates for os-resource-classes" text="PyPI recent updates for os-resource-classes" description="PyPI recent updates for os-resource-classes" type="rss" xmlUrl="https://pypi.org/rss/project/os-resource-classes/releases.xml" htmlUrl="https://pypi.org/project/os-resource-classes/"/>
        <outline title="PyPI recent updates for os-service-types" text="PyPI recent updates for os-service-types" description="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 title="PyPI recent updates for os-traits" text="PyPI recent updates for os-traits" description="PyPI recent updates for os-traits" type="rss" xmlUrl="https://pypi.org/rss/project/os-traits/releases.xml" htmlUrl="https://pypi.org/project/os-traits/"/>
        <outline title="PyPI recent updates for os-vif" text="PyPI recent updates for os-vif" description="PyPI recent updates for os-vif" type="rss" xmlUrl="https://pypi.org/rss/project/os-vif/releases.xml" htmlUrl="https://pypi.org/project/os-vif/"/>
        <outline title="PyPI recent updates for os-win" text="PyPI recent updates for os-win" description="PyPI recent updates for os-win" type="rss" xmlUrl="https://pypi.org/rss/project/os-win/releases.xml" htmlUrl="https://pypi.org/project/os-win/"/>
        <outline title="PyPI recent updates for os-xenapi" text="PyPI recent updates for os-xenapi" description="PyPI recent updates for os-xenapi" type="rss" xmlUrl="https://pypi.org/rss/project/os-xenapi/releases.xml" htmlUrl="https://pypi.org/project/os-xenapi/"/>
        <outline title="PyPI recent updates for osc-lib" text="PyPI recent updates for osc-lib" description="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 title="PyPI recent updates for oset" text="PyPI recent updates for oset" description="PyPI recent updates for oset" type="rss" xmlUrl="https://pypi.org/rss/project/oset/releases.xml" htmlUrl="https://pypi.org/project/oset/"/>
        <outline title="PyPI recent updates for oslo.cache" text="PyPI recent updates for oslo.cache" description="PyPI recent updates for oslo.cache" type="rss" xmlUrl="https://pypi.org/rss/project/oslo.cache/releases.xml" htmlUrl="https://pypi.org/project/oslo-cache/"/>
        <outline title="PyPI recent updates for oslo.concurrency" text="PyPI recent updates for oslo.concurrency" description="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 title="PyPI recent updates for oslo.config" text="PyPI recent updates for oslo.config" description="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 title="PyPI recent updates for oslo.context" text="PyPI recent updates for oslo.context" description="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 title="PyPI recent updates for oslo.db" text="PyPI recent updates for oslo.db" description="PyPI recent updates for oslo.db" type="rss" xmlUrl="https://pypi.org/rss/project/oslo.db/releases.xml" htmlUrl="https://pypi.org/project/oslo-db/"/>
        <outline title="PyPI recent updates for oslo.i18n" text="PyPI recent updates for oslo.i18n" description="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 title="PyPI recent updates for oslo.log" text="PyPI recent updates for oslo.log" description="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 title="PyPI recent updates for oslo.messaging" text="PyPI recent updates for oslo.messaging" description="PyPI recent updates for oslo.messaging" type="rss" xmlUrl="https://pypi.org/rss/project/oslo.messaging/releases.xml" htmlUrl="https://pypi.org/project/oslo-messaging/"/>
        <outline title="PyPI recent updates for oslo.middleware" text="PyPI recent updates for oslo.middleware" description="PyPI recent updates for oslo.middleware" type="rss" xmlUrl="https://pypi.org/rss/project/oslo.middleware/releases.xml" htmlUrl="https://pypi.org/project/oslo-middleware/"/>
        <outline title="PyPI recent updates for oslo.policy" text="PyPI recent updates for oslo.policy" description="PyPI recent updates for oslo.policy" type="rss" xmlUrl="https://pypi.org/rss/project/oslo.policy/releases.xml" htmlUrl="https://pypi.org/project/oslo-policy/"/>
        <outline title="PyPI recent updates for oslo.privsep" text="PyPI recent updates for oslo.privsep" description="PyPI recent updates for oslo.privsep" type="rss" xmlUrl="https://pypi.org/rss/project/oslo.privsep/releases.xml" htmlUrl="https://pypi.org/project/oslo-privsep/"/>
        <outline title="PyPI recent updates for oslo.reports" text="PyPI recent updates for oslo.reports" description="PyPI recent updates for oslo.reports" type="rss" xmlUrl="https://pypi.org/rss/project/oslo.reports/releases.xml" htmlUrl="https://pypi.org/project/oslo-reports/"/>
        <outline title="PyPI recent updates for oslo.rootwrap" text="PyPI recent updates for oslo.rootwrap" description="PyPI recent updates for oslo.rootwrap" type="rss" xmlUrl="https://pypi.org/rss/project/oslo.rootwrap/releases.xml" htmlUrl="https://pypi.org/project/oslo-rootwrap/"/>
        <outline title="PyPI recent updates for oslo.serialization" text="PyPI recent updates for oslo.serialization" description="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 title="PyPI recent updates for oslo.service" text="PyPI recent updates for oslo.service" description="PyPI recent updates for oslo.service" type="rss" xmlUrl="https://pypi.org/rss/project/oslo.service/releases.xml" htmlUrl="https://pypi.org/project/oslo-service/"/>
        <outline title="PyPI recent updates for oslo.upgradecheck" text="PyPI recent updates for oslo.upgradecheck" description="PyPI recent updates for oslo.upgradecheck" type="rss" xmlUrl="https://pypi.org/rss/project/oslo.upgradecheck/releases.xml" htmlUrl="https://pypi.org/project/oslo-upgradecheck/"/>
        <outline title="PyPI recent updates for oslo.utils" text="PyPI recent updates for oslo.utils" description="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 title="PyPI recent updates for oslo.versionedobjects" text="PyPI recent updates for oslo.versionedobjects" description="PyPI recent updates for oslo.versionedobjects" type="rss" xmlUrl="https://pypi.org/rss/project/oslo.versionedobjects/releases.xml" htmlUrl="https://pypi.org/project/oslo-versionedobjects/"/>
        <outline title="PyPI recent updates for oslo.vmware" text="PyPI recent updates for oslo.vmware" description="PyPI recent updates for oslo.vmware" type="rss" xmlUrl="https://pypi.org/rss/project/oslo.vmware/releases.xml" htmlUrl="https://pypi.org/project/oslo-vmware/"/>
        <outline title="PyPI recent updates for oslotest" text="PyPI recent updates for oslotest" description="PyPI recent updates for oslotest" type="rss" xmlUrl="https://pypi.org/rss/project/oslotest/releases.xml" htmlUrl="https://pypi.org/project/oslotest/"/>
        <outline title="PyPI recent updates for osprofiler" text="PyPI recent updates for osprofiler" description="PyPI recent updates for osprofiler" type="rss" xmlUrl="https://pypi.org/rss/project/osprofiler/releases.xml" htmlUrl="https://pypi.org/project/osprofiler/"/>
        <outline title="PyPI recent updates for osrf-pycommon" text="PyPI recent updates for osrf-pycommon" description="PyPI recent updates for osrf-pycommon" type="rss" xmlUrl="https://pypi.org/rss/project/osrf-pycommon/releases.xml" htmlUrl="https://pypi.org/project/osrf-pycommon/"/>
        <outline title="PyPI recent updates for outcome" text="PyPI recent updates for outcome" description="PyPI recent updates for outcome" type="rss" xmlUrl="https://pypi.org/rss/project/outcome/releases.xml" htmlUrl="https://pypi.org/project/outcome/"/>
        <outline title="PyPI recent updates for ovs" text="PyPI recent updates for ovs" description="PyPI recent updates for ovs" type="rss" xmlUrl="https://pypi.org/rss/project/ovs/releases.xml" htmlUrl="https://pypi.org/project/ovs/"/>
        <outline title="PyPI recent updates for ovsdbapp" text="PyPI recent updates for ovsdbapp" description="PyPI recent updates for ovsdbapp" type="rss" xmlUrl="https://pypi.org/rss/project/ovsdbapp/releases.xml" htmlUrl="https://pypi.org/project/ovsdbapp/"/>
        <outline title="PyPI recent updates for OWSLib" text="PyPI recent updates for OWSLib" description="PyPI recent updates for OWSLib" type="rss" xmlUrl="https://pypi.org/rss/project/OWSLib/releases.xml" htmlUrl="https://pypi.org/project/owslib/"/>
        <outline title="PyPI recent updates for packaging" text="PyPI recent updates for packaging" description="PyPI recent updates for packaging" type="rss" xmlUrl="https://pypi.org/rss/project/packaging/releases.xml" htmlUrl="https://pypi.org/project/packaging/"/>
        <outline title="PyPI recent updates for pafy" text="PyPI recent updates for pafy" description="PyPI recent updates for pafy" type="rss" xmlUrl="https://pypi.org/rss/project/pafy/releases.xml" htmlUrl="https://pypi.org/project/pafy/"/>
        <outline title="PyPI recent updates for paho-mqtt" text="PyPI recent updates for paho-mqtt" description="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 title="PyPI recent updates for Pallets-Sphinx-Themes" text="PyPI recent updates for Pallets-Sphinx-Themes" description="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 title="PyPI recent updates for pandas" text="PyPI recent updates for pandas" description="PyPI recent updates for pandas" type="rss" xmlUrl="https://pypi.org/rss/project/pandas/releases.xml" htmlUrl="https://pypi.org/project/pandas/"/>
        <outline title="PyPI recent updates for pandas-datareader" text="PyPI recent updates for pandas-datareader" description="PyPI recent updates for pandas-datareader" type="rss" xmlUrl="https://pypi.org/rss/project/pandas-datareader/releases.xml" htmlUrl="https://pypi.org/project/pandas-datareader/"/>
        <outline title="PyPI recent updates for pandocfilters" text="PyPI recent updates for pandocfilters" description="PyPI recent updates for pandocfilters" type="rss" xmlUrl="https://pypi.org/rss/project/pandocfilters/releases.xml" htmlUrl="https://pypi.org/project/pandocfilters/"/>
        <outline title="PyPI recent updates for parallax" text="PyPI recent updates for parallax" description="PyPI recent updates for parallax" type="rss" xmlUrl="https://pypi.org/rss/project/parallax/releases.xml" htmlUrl="https://pypi.org/project/parallax/"/>
        <outline title="PyPI recent updates for parameterized" text="PyPI recent updates for parameterized" description="PyPI recent updates for parameterized" type="rss" xmlUrl="https://pypi.org/rss/project/parameterized/releases.xml" htmlUrl="https://pypi.org/project/parameterized/"/>
        <outline title="PyPI recent updates for parametrized" text="PyPI recent updates for parametrized" description="PyPI recent updates for parametrized" type="rss" xmlUrl="https://pypi.org/rss/project/parametrized/releases.xml" htmlUrl="https://pypi.org/project/parametrized/"/>
        <outline title="PyPI recent updates for paramiko" text="PyPI recent updates for paramiko" description="PyPI recent updates for paramiko" type="rss" xmlUrl="https://pypi.org/rss/project/paramiko/releases.xml" htmlUrl="https://pypi.org/project/paramiko/"/>
        <outline title="PyPI recent updates for parse" text="PyPI recent updates for parse" description="PyPI recent updates for parse" type="rss" xmlUrl="https://pypi.org/rss/project/parse/releases.xml" htmlUrl="https://pypi.org/project/parse/"/>
        <outline title="PyPI recent updates for parse-type" text="PyPI recent updates for parse-type" description="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 title="PyPI recent updates for parsedatetime" text="PyPI recent updates for parsedatetime" description="PyPI recent updates for parsedatetime" type="rss" xmlUrl="https://pypi.org/rss/project/parsedatetime/releases.xml" htmlUrl="https://pypi.org/project/parsedatetime/"/>
        <outline title="PyPI recent updates for parso" text="PyPI recent updates for parso" description="PyPI recent updates for parso" type="rss" xmlUrl="https://pypi.org/rss/project/parso/releases.xml" htmlUrl="https://pypi.org/project/parso/"/>
        <outline title="PyPI recent updates for partd" text="PyPI recent updates for partd" description="PyPI recent updates for partd" type="rss" xmlUrl="https://pypi.org/rss/project/partd/releases.xml" htmlUrl="https://pypi.org/project/partd/"/>
        <outline title="PyPI recent updates for parver" text="PyPI recent updates for parver" description="PyPI recent updates for parver" type="rss" xmlUrl="https://pypi.org/rss/project/parver/releases.xml" htmlUrl="https://pypi.org/project/parver/"/>
        <outline title="PyPI recent updates for passlib" text="PyPI recent updates for passlib" description="PyPI recent updates for passlib" type="rss" xmlUrl="https://pypi.org/rss/project/passlib/releases.xml" htmlUrl="https://pypi.org/project/passlib/"/>
        <outline title="PyPI recent updates for Paste" text="PyPI recent updates for Paste" description="PyPI recent updates for Paste" type="rss" xmlUrl="https://pypi.org/rss/project/Paste/releases.xml" htmlUrl="https://pypi.org/project/paste/"/>
        <outline title="PyPI recent updates for PasteDeploy" text="PyPI recent updates for PasteDeploy" description="PyPI recent updates for PasteDeploy" type="rss" xmlUrl="https://pypi.org/rss/project/PasteDeploy/releases.xml" htmlUrl="https://pypi.org/project/pastedeploy/"/>
        <outline title="PyPI recent updates for pastel" text="PyPI recent updates for pastel" description="PyPI recent updates for pastel" type="rss" xmlUrl="https://pypi.org/rss/project/pastel/releases.xml" htmlUrl="https://pypi.org/project/pastel/"/>
        <outline title="PyPI recent updates for patatt" text="PyPI recent updates for patatt" description="PyPI recent updates for patatt" type="rss" xmlUrl="https://pypi.org/rss/project/patatt/releases.xml" htmlUrl="https://pypi.org/project/patatt/"/>
        <outline title="PyPI recent updates for patch-ng" text="PyPI recent updates for patch-ng" description="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 title="PyPI recent updates for path" text="PyPI recent updates for path" description="PyPI recent updates for path" type="rss" xmlUrl="https://pypi.org/rss/project/path/releases.xml" htmlUrl="https://pypi.org/project/path/"/>
        <outline title="PyPI recent updates for path-and-address" text="PyPI recent updates for path-and-address" description="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 title="PyPI recent updates for pathlib2" text="PyPI recent updates for pathlib2" description="PyPI recent updates for pathlib2" type="rss" xmlUrl="https://pypi.org/rss/project/pathlib2/releases.xml" htmlUrl="https://pypi.org/project/pathlib2/"/>
        <outline title="PyPI recent updates for pathspec" text="PyPI recent updates for pathspec" description="PyPI recent updates for pathspec" type="rss" xmlUrl="https://pypi.org/rss/project/pathspec/releases.xml" htmlUrl="https://pypi.org/project/pathspec/"/>
        <outline title="PyPI recent updates for pathtools" text="PyPI recent updates for pathtools" description="PyPI recent updates for pathtools" type="rss" xmlUrl="https://pypi.org/rss/project/pathtools/releases.xml" htmlUrl="https://pypi.org/project/pathtools/"/>
        <outline title="PyPI recent updates for patiencediff" text="PyPI recent updates for patiencediff" description="PyPI recent updates for patiencediff" type="rss" xmlUrl="https://pypi.org/rss/project/patiencediff/releases.xml" htmlUrl="https://pypi.org/project/patiencediff/"/>
        <outline title="PyPI recent updates for patsy" text="PyPI recent updates for patsy" description="PyPI recent updates for patsy" type="rss" xmlUrl="https://pypi.org/rss/project/patsy/releases.xml" htmlUrl="https://pypi.org/project/patsy/"/>
        <outline title="PyPI recent updates for pbkdf2" text="PyPI recent updates for pbkdf2" description="PyPI recent updates for pbkdf2" type="rss" xmlUrl="https://pypi.org/rss/project/pbkdf2/releases.xml" htmlUrl="https://pypi.org/project/pbkdf2/"/>
        <outline title="PyPI recent updates for pbr" text="PyPI recent updates for pbr" description="PyPI recent updates for pbr" type="rss" xmlUrl="https://pypi.org/rss/project/pbr/releases.xml" htmlUrl="https://pypi.org/project/pbr/"/>
        <outline title="PyPI recent updates for pdfrw" text="PyPI recent updates for pdfrw" description="PyPI recent updates for pdfrw" type="rss" xmlUrl="https://pypi.org/rss/project/pdfrw/releases.xml" htmlUrl="https://pypi.org/project/pdfrw/"/>
        <outline title="PyPI recent updates for pdoc3" text="PyPI recent updates for pdoc3" description="PyPI recent updates for pdoc3" type="rss" xmlUrl="https://pypi.org/rss/project/pdoc3/releases.xml" htmlUrl="https://pypi.org/project/pdoc3/"/>
        <outline title="PyPI recent updates for Pebble" text="PyPI recent updates for Pebble" description="PyPI recent updates for Pebble" type="rss" xmlUrl="https://pypi.org/rss/project/Pebble/releases.xml" htmlUrl="https://pypi.org/project/pebble/"/>
        <outline title="PyPI recent updates for pecan" text="PyPI recent updates for pecan" description="PyPI recent updates for pecan" type="rss" xmlUrl="https://pypi.org/rss/project/pecan/releases.xml" htmlUrl="https://pypi.org/project/pecan/"/>
        <outline title="PyPI recent updates for peewee" text="PyPI recent updates for peewee" description="PyPI recent updates for peewee" type="rss" xmlUrl="https://pypi.org/rss/project/peewee/releases.xml" htmlUrl="https://pypi.org/project/peewee/"/>
        <outline title="PyPI recent updates for pelican-minify" text="PyPI recent updates for pelican-minify" description="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 title="PyPI recent updates for pendulum" text="PyPI recent updates for pendulum" description="PyPI recent updates for pendulum" type="rss" xmlUrl="https://pypi.org/rss/project/pendulum/releases.xml" htmlUrl="https://pypi.org/project/pendulum/"/>
        <outline title="PyPI recent updates for pep517" text="PyPI recent updates for pep517" description="PyPI recent updates for pep517" type="rss" xmlUrl="https://pypi.org/rss/project/pep517/releases.xml" htmlUrl="https://pypi.org/project/pep517/"/>
        <outline title="PyPI recent updates for pew" text="PyPI recent updates for pew" description="PyPI recent updates for pew" type="rss" xmlUrl="https://pypi.org/rss/project/pew/releases.xml" htmlUrl="https://pypi.org/project/pew/"/>
        <outline title="PyPI recent updates for pexpect" text="PyPI recent updates for pexpect" description="PyPI recent updates for pexpect" type="rss" xmlUrl="https://pypi.org/rss/project/pexpect/releases.xml" htmlUrl="https://pypi.org/project/pexpect/"/>
        <outline title="PyPI recent updates for pgspecial" text="PyPI recent updates for pgspecial" description="PyPI recent updates for pgspecial" type="rss" xmlUrl="https://pypi.org/rss/project/pgspecial/releases.xml" htmlUrl="https://pypi.org/project/pgspecial/"/>
        <outline title="PyPI recent updates for pgzero" text="PyPI recent updates for pgzero" description="PyPI recent updates for pgzero" type="rss" xmlUrl="https://pypi.org/rss/project/pgzero/releases.xml" htmlUrl="https://pypi.org/project/pgzero/"/>
        <outline title="PyPI recent updates for phonenumbers" text="PyPI recent updates for phonenumbers" description="PyPI recent updates for phonenumbers" type="rss" xmlUrl="https://pypi.org/rss/project/phonenumbers/releases.xml" htmlUrl="https://pypi.org/project/phonenumbers/"/>
        <outline title="PyPI recent updates for phply" text="PyPI recent updates for phply" description="PyPI recent updates for phply" type="rss" xmlUrl="https://pypi.org/rss/project/phply/releases.xml" htmlUrl="https://pypi.org/project/phply/"/>
        <outline title="PyPI recent updates for pickleshare" text="PyPI recent updates for pickleshare" description="PyPI recent updates for pickleshare" type="rss" xmlUrl="https://pypi.org/rss/project/pickleshare/releases.xml" htmlUrl="https://pypi.org/project/pickleshare/"/>
        <outline title="PyPI recent updates for pid" text="PyPI recent updates for pid" description="PyPI recent updates for pid" type="rss" xmlUrl="https://pypi.org/rss/project/pid/releases.xml" htmlUrl="https://pypi.org/project/pid/"/>
        <outline title="PyPI recent updates for piexif" text="PyPI recent updates for piexif" description="PyPI recent updates for piexif" type="rss" xmlUrl="https://pypi.org/rss/project/piexif/releases.xml" htmlUrl="https://pypi.org/project/piexif/"/>
        <outline title="PyPI recent updates for pika" text="PyPI recent updates for pika" description="PyPI recent updates for pika" type="rss" xmlUrl="https://pypi.org/rss/project/pika/releases.xml" htmlUrl="https://pypi.org/project/pika/"/>
        <outline title="PyPI recent updates for pikepdf" text="PyPI recent updates for pikepdf" description="PyPI recent updates for pikepdf" type="rss" xmlUrl="https://pypi.org/rss/project/pikepdf/releases.xml" htmlUrl="https://pypi.org/project/pikepdf/"/>
        <outline title="PyPI recent updates for pilkit" text="PyPI recent updates for pilkit" description="PyPI recent updates for pilkit" type="rss" xmlUrl="https://pypi.org/rss/project/pilkit/releases.xml" htmlUrl="https://pypi.org/project/pilkit/"/>
        <outline title="PyPI recent updates for Pillow" text="PyPI recent updates for Pillow" description="PyPI recent updates for Pillow" type="rss" xmlUrl="https://pypi.org/rss/project/Pillow/releases.xml" htmlUrl="https://pypi.org/project/pillow/"/>
        <outline title="PyPI recent updates for pip" text="PyPI recent updates for pip" description="PyPI recent updates for pip" type="rss" xmlUrl="https://pypi.org/rss/project/pip/releases.xml" htmlUrl="https://pypi.org/project/pip/"/>
        <outline title="PyPI recent updates for pipenv" text="PyPI recent updates for pipenv" description="PyPI recent updates for pipenv" type="rss" xmlUrl="https://pypi.org/rss/project/pipenv/releases.xml" htmlUrl="https://pypi.org/project/pipenv/"/>
        <outline title="PyPI recent updates for pipfile" text="PyPI recent updates for pipfile" description="PyPI recent updates for pipfile" type="rss" xmlUrl="https://pypi.org/rss/project/pipfile/releases.xml" htmlUrl="https://pypi.org/project/pipfile/"/>
        <outline title="PyPI recent updates for pkgconfig" text="PyPI recent updates for pkgconfig" description="PyPI recent updates for pkgconfig" type="rss" xmlUrl="https://pypi.org/rss/project/pkgconfig/releases.xml" htmlUrl="https://pypi.org/project/pkgconfig/"/>
        <outline title="PyPI recent updates for pkginfo" text="PyPI recent updates for pkginfo" description="PyPI recent updates for pkginfo" type="rss" xmlUrl="https://pypi.org/rss/project/pkginfo/releases.xml" htmlUrl="https://pypi.org/project/pkginfo/"/>
        <outline title="PyPI recent updates for platformdirs" text="PyPI recent updates for platformdirs" description="PyPI recent updates for platformdirs" type="rss" xmlUrl="https://pypi.org/rss/project/platformdirs/releases.xml" htmlUrl="https://pypi.org/project/platformdirs/"/>
        <outline title="PyPI recent updates for plotly" text="PyPI recent updates for plotly" description="PyPI recent updates for plotly" type="rss" xmlUrl="https://pypi.org/rss/project/plotly/releases.xml" htmlUrl="https://pypi.org/project/plotly/"/>
        <outline title="PyPI recent updates for plotly-geo" text="PyPI recent updates for plotly-geo" description="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 title="PyPI recent updates for pluggy" text="PyPI recent updates for pluggy" description="PyPI recent updates for pluggy" type="rss" xmlUrl="https://pypi.org/rss/project/pluggy/releases.xml" htmlUrl="https://pypi.org/project/pluggy/"/>
        <outline title="PyPI recent updates for pluginbase" text="PyPI recent updates for pluginbase" description="PyPI recent updates for pluginbase" type="rss" xmlUrl="https://pypi.org/rss/project/pluginbase/releases.xml" htmlUrl="https://pypi.org/project/pluginbase/"/>
        <outline title="PyPI recent updates for plumbum" text="PyPI recent updates for plumbum" description="PyPI recent updates for plumbum" type="rss" xmlUrl="https://pypi.org/rss/project/plumbum/releases.xml" htmlUrl="https://pypi.org/project/plumbum/"/>
        <outline title="PyPI recent updates for ply" text="PyPI recent updates for ply" description="PyPI recent updates for ply" type="rss" xmlUrl="https://pypi.org/rss/project/ply/releases.xml" htmlUrl="https://pypi.org/project/ply/"/>
        <outline title="PyPI recent updates for plyr" text="PyPI recent updates for plyr" description="PyPI recent updates for plyr" type="rss" xmlUrl="https://pypi.org/rss/project/plyr/releases.xml" htmlUrl="https://pypi.org/project/plyr/"/>
        <outline title="PyPI recent updates for plyvel" text="PyPI recent updates for plyvel" description="PyPI recent updates for plyvel" type="rss" xmlUrl="https://pypi.org/rss/project/plyvel/releases.xml" htmlUrl="https://pypi.org/project/plyvel/"/>
        <outline title="PyPI recent updates for pmw" text="PyPI recent updates for pmw" description="PyPI recent updates for pmw" type="rss" xmlUrl="https://pypi.org/rss/project/pmw/releases.xml" htmlUrl="https://pypi.org/project/pmw/"/>
        <outline title="PyPI recent updates for pocketlint" text="PyPI recent updates for pocketlint" description="PyPI recent updates for pocketlint" type="rss" xmlUrl="https://pypi.org/rss/project/pocketlint/releases.xml" htmlUrl="https://pypi.org/project/pocketlint/"/>
        <outline title="PyPI recent updates for pockets" text="PyPI recent updates for pockets" description="PyPI recent updates for pockets" type="rss" xmlUrl="https://pypi.org/rss/project/pockets/releases.xml" htmlUrl="https://pypi.org/project/pockets/"/>
        <outline title="PyPI recent updates for podcastparser" text="PyPI recent updates for podcastparser" description="PyPI recent updates for podcastparser" type="rss" xmlUrl="https://pypi.org/rss/project/podcastparser/releases.xml" htmlUrl="https://pypi.org/project/podcastparser/"/>
        <outline title="PyPI recent updates for podman" text="PyPI recent updates for podman" description="PyPI recent updates for podman" type="rss" xmlUrl="https://pypi.org/rss/project/podman/releases.xml" htmlUrl="https://pypi.org/project/podman/"/>
        <outline title="PyPI recent updates for polib" text="PyPI recent updates for polib" description="PyPI recent updates for polib" type="rss" xmlUrl="https://pypi.org/rss/project/polib/releases.xml" htmlUrl="https://pypi.org/project/polib/"/>
        <outline title="PyPI recent updates for pony" text="PyPI recent updates for pony" description="PyPI recent updates for pony" type="rss" xmlUrl="https://pypi.org/rss/project/pony/releases.xml" htmlUrl="https://pypi.org/project/pony/"/>
        <outline title="PyPI recent updates for pooch" text="PyPI recent updates for pooch" description="PyPI recent updates for pooch" type="rss" xmlUrl="https://pypi.org/rss/project/pooch/releases.xml" htmlUrl="https://pypi.org/project/pooch/"/>
        <outline title="PyPI recent updates for portend" text="PyPI recent updates for portend" description="PyPI recent updates for portend" type="rss" xmlUrl="https://pypi.org/rss/project/portend/releases.xml" htmlUrl="https://pypi.org/project/portend/"/>
        <outline title="PyPI recent updates for poyo" text="PyPI recent updates for poyo" description="PyPI recent updates for poyo" type="rss" xmlUrl="https://pypi.org/rss/project/poyo/releases.xml" htmlUrl="https://pypi.org/project/poyo/"/>
        <outline title="PyPI recent updates for precis-i18n" text="PyPI recent updates for precis-i18n" description="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 title="PyPI recent updates for pretend" text="PyPI recent updates for pretend" description="PyPI recent updates for pretend" type="rss" xmlUrl="https://pypi.org/rss/project/pretend/releases.xml" htmlUrl="https://pypi.org/project/pretend/"/>
        <outline title="PyPI recent updates for prettytable" text="PyPI recent updates for prettytable" description="PyPI recent updates for prettytable" type="rss" xmlUrl="https://pypi.org/rss/project/prettytable/releases.xml" htmlUrl="https://pypi.org/project/prettytable/"/>
        <outline title="PyPI recent updates for priority" text="PyPI recent updates for priority" description="PyPI recent updates for priority" type="rss" xmlUrl="https://pypi.org/rss/project/priority/releases.xml" htmlUrl="https://pypi.org/project/priority/"/>
        <outline title="PyPI recent updates for process-tests" text="PyPI recent updates for process-tests" description="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 title="PyPI recent updates for progress" text="PyPI recent updates for progress" description="PyPI recent updates for progress" type="rss" xmlUrl="https://pypi.org/rss/project/progress/releases.xml" htmlUrl="https://pypi.org/project/progress/"/>
        <outline title="PyPI recent updates for progressbar" text="PyPI recent updates for progressbar" description="PyPI recent updates for progressbar" type="rss" xmlUrl="https://pypi.org/rss/project/progressbar/releases.xml" htmlUrl="https://pypi.org/project/progressbar/"/>
        <outline title="PyPI recent updates for progressbar2" text="PyPI recent updates for progressbar2" description="PyPI recent updates for progressbar2" type="rss" xmlUrl="https://pypi.org/rss/project/progressbar2/releases.xml" htmlUrl="https://pypi.org/project/progressbar2/"/>
        <outline title="PyPI recent updates for prometheus-client" text="PyPI recent updates for prometheus-client" description="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 title="PyPI recent updates for prompt_toolkit" text="PyPI recent updates for prompt_toolkit" description="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 title="PyPI recent updates for proto-plus" text="PyPI recent updates for proto-plus" description="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 title="PyPI recent updates for prov" text="PyPI recent updates for prov" description="PyPI recent updates for prov" type="rss" xmlUrl="https://pypi.org/rss/project/prov/releases.xml" htmlUrl="https://pypi.org/project/prov/"/>
        <outline title="PyPI recent updates for psutil" text="PyPI recent updates for psutil" description="PyPI recent updates for psutil" type="rss" xmlUrl="https://pypi.org/rss/project/psutil/releases.xml" htmlUrl="https://pypi.org/project/psutil/"/>
        <outline title="PyPI recent updates for psycopg2" text="PyPI recent updates for psycopg2" description="PyPI recent updates for psycopg2" type="rss" xmlUrl="https://pypi.org/rss/project/psycopg2/releases.xml" htmlUrl="https://pypi.org/project/psycopg2/"/>
        <outline title="PyPI recent updates for ptpython" text="PyPI recent updates for ptpython" description="PyPI recent updates for ptpython" type="rss" xmlUrl="https://pypi.org/rss/project/ptpython/releases.xml" htmlUrl="https://pypi.org/project/ptpython/"/>
        <outline title="PyPI recent updates for ptvsd" text="PyPI recent updates for ptvsd" description="PyPI recent updates for ptvsd" type="rss" xmlUrl="https://pypi.org/rss/project/ptvsd/releases.xml" htmlUrl="https://pypi.org/project/ptvsd/"/>
        <outline title="PyPI recent updates for ptyprocess" text="PyPI recent updates for ptyprocess" description="PyPI recent updates for ptyprocess" type="rss" xmlUrl="https://pypi.org/rss/project/ptyprocess/releases.xml" htmlUrl="https://pypi.org/project/ptyprocess/"/>
        <outline title="PyPI recent updates for publicsuffix" text="PyPI recent updates for publicsuffix" description="PyPI recent updates for publicsuffix" type="rss" xmlUrl="https://pypi.org/rss/project/publicsuffix/releases.xml" htmlUrl="https://pypi.org/project/publicsuffix/"/>
        <outline title="PyPI recent updates for pudb" text="PyPI recent updates for pudb" description="PyPI recent updates for pudb" type="rss" xmlUrl="https://pypi.org/rss/project/pudb/releases.xml" htmlUrl="https://pypi.org/project/pudb/"/>
        <outline title="PyPI recent updates for pulsectl" text="PyPI recent updates for pulsectl" description="PyPI recent updates for pulsectl" type="rss" xmlUrl="https://pypi.org/rss/project/pulsectl/releases.xml" htmlUrl="https://pypi.org/project/pulsectl/"/>
        <outline title="PyPI recent updates for puremagic" text="PyPI recent updates for puremagic" description="PyPI recent updates for puremagic" type="rss" xmlUrl="https://pypi.org/rss/project/puremagic/releases.xml" htmlUrl="https://pypi.org/project/puremagic/"/>
        <outline title="PyPI recent updates for pure-sasl" text="PyPI recent updates for pure-sasl" description="PyPI recent updates for pure-sasl" type="rss" xmlUrl="https://pypi.org/rss/project/pure-sasl/releases.xml" htmlUrl="https://pypi.org/project/pure-sasl/"/>
        <outline title="PyPI recent updates for pushbullet.py" text="PyPI recent updates for pushbullet.py" description="PyPI recent updates for pushbullet.py" type="rss" xmlUrl="https://pypi.org/rss/project/pushbullet.py/releases.xml" htmlUrl="https://pypi.org/project/pushbullet-py/"/>
        <outline title="PyPI recent updates for Pweave" text="PyPI recent updates for Pweave" description="PyPI recent updates for Pweave" type="rss" xmlUrl="https://pypi.org/rss/project/Pweave/releases.xml" htmlUrl="https://pypi.org/project/pweave/"/>
        <outline title="PyPI recent updates for py" text="PyPI recent updates for py" description="PyPI recent updates for py" type="rss" xmlUrl="https://pypi.org/rss/project/py/releases.xml" htmlUrl="https://pypi.org/project/py/"/>
        <outline title="PyPI recent updates for py-cpuinfo" text="PyPI recent updates for py-cpuinfo" description="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 title="PyPI recent updates for py-gfm" text="PyPI recent updates for py-gfm" description="PyPI recent updates for py-gfm" type="rss" xmlUrl="https://pypi.org/rss/project/py-gfm/releases.xml" htmlUrl="https://pypi.org/project/py-gfm/"/>
        <outline title="PyPI recent updates for py-ubjson" text="PyPI recent updates for py-ubjson" description="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 title="PyPI recent updates for pyacoustid" text="PyPI recent updates for pyacoustid" description="PyPI recent updates for pyacoustid" type="rss" xmlUrl="https://pypi.org/rss/project/pyacoustid/releases.xml" htmlUrl="https://pypi.org/project/pyacoustid/"/>
        <outline title="PyPI recent updates for pyaes" text="PyPI recent updates for pyaes" description="PyPI recent updates for pyaes" type="rss" xmlUrl="https://pypi.org/rss/project/pyaes/releases.xml" htmlUrl="https://pypi.org/project/pyaes/"/>
        <outline title="PyPI recent updates for pyalsa" text="PyPI recent updates for pyalsa" description="PyPI recent updates for pyalsa" type="rss" xmlUrl="https://pypi.org/rss/project/pyalsa/releases.xml" htmlUrl="https://pypi.org/project/pyalsa/"/>
        <outline title="PyPI recent updates for pyamg" text="PyPI recent updates for pyamg" description="PyPI recent updates for pyamg" type="rss" xmlUrl="https://pypi.org/rss/project/pyamg/releases.xml" htmlUrl="https://pypi.org/project/pyamg/"/>
        <outline title="PyPI recent updates for pyaml" text="PyPI recent updates for pyaml" description="PyPI recent updates for pyaml" type="rss" xmlUrl="https://pypi.org/rss/project/pyaml/releases.xml" htmlUrl="https://pypi.org/project/pyaml/"/>
        <outline title="PyPI recent updates for pyasn1" text="PyPI recent updates for pyasn1" description="PyPI recent updates for pyasn1" type="rss" xmlUrl="https://pypi.org/rss/project/pyasn1/releases.xml" htmlUrl="https://pypi.org/project/pyasn1/"/>
        <outline title="PyPI recent updates for pyasn1-modules" text="PyPI recent updates for pyasn1-modules" description="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 title="PyPI recent updates for PyAudio" text="PyPI recent updates for PyAudio" description="PyPI recent updates for PyAudio" type="rss" xmlUrl="https://pypi.org/rss/project/PyAudio/releases.xml" htmlUrl="https://pypi.org/project/pyaudio/"/>
        <outline title="PyPI recent updates for pybind11" text="PyPI recent updates for pybind11" description="PyPI recent updates for pybind11" type="rss" xmlUrl="https://pypi.org/rss/project/pybind11/releases.xml" htmlUrl="https://pypi.org/project/pybind11/"/>
        <outline title="PyPI recent updates for PyBluez" text="PyPI recent updates for PyBluez" description="PyPI recent updates for PyBluez" type="rss" xmlUrl="https://pypi.org/rss/project/PyBluez/releases.xml" htmlUrl="https://pypi.org/project/pybluez/"/>
        <outline title="PyPI recent updates for pybtex" text="PyPI recent updates for pybtex" description="PyPI recent updates for pybtex" type="rss" xmlUrl="https://pypi.org/rss/project/pybtex/releases.xml" htmlUrl="https://pypi.org/project/pybtex/"/>
        <outline title="PyPI recent updates for pybtex-docutils" text="PyPI recent updates for pybtex-docutils" description="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 title="PyPI recent updates for pycadf" text="PyPI recent updates for pycadf" description="PyPI recent updates for pycadf" type="rss" xmlUrl="https://pypi.org/rss/project/pycadf/releases.xml" htmlUrl="https://pypi.org/project/pycadf/"/>
        <outline title="PyPI recent updates for pycairo" text="PyPI recent updates for pycairo" description="PyPI recent updates for pycairo" type="rss" xmlUrl="https://pypi.org/rss/project/pycairo/releases.xml" htmlUrl="https://pypi.org/project/pycairo/"/>
        <outline title="PyPI recent updates for pycapnp" text="PyPI recent updates for pycapnp" description="PyPI recent updates for pycapnp" type="rss" xmlUrl="https://pypi.org/rss/project/pycapnp/releases.xml" htmlUrl="https://pypi.org/project/pycapnp/"/>
        <outline title="PyPI recent updates for pycares" text="PyPI recent updates for pycares" description="PyPI recent updates for pycares" type="rss" xmlUrl="https://pypi.org/rss/project/pycares/releases.xml" htmlUrl="https://pypi.org/project/pycares/"/>
        <outline title="PyPI recent updates for pycdio" text="PyPI recent updates for pycdio" description="PyPI recent updates for pycdio" type="rss" xmlUrl="https://pypi.org/rss/project/pycdio/releases.xml" htmlUrl="https://pypi.org/project/pycdio/"/>
        <outline title="PyPI recent updates for pychm" text="PyPI recent updates for pychm" description="PyPI recent updates for pychm" type="rss" xmlUrl="https://pypi.org/rss/project/pychm/releases.xml" htmlUrl="https://pypi.org/project/pychm/"/>
        <outline title="PyPI recent updates for PyChromecast" text="PyPI recent updates for PyChromecast" description="PyPI recent updates for PyChromecast" type="rss" xmlUrl="https://pypi.org/rss/project/PyChromecast/releases.xml" htmlUrl="https://pypi.org/project/pychromecast/"/>
        <outline title="PyPI recent updates for pychroot" text="PyPI recent updates for pychroot" description="PyPI recent updates for pychroot" type="rss" xmlUrl="https://pypi.org/rss/project/pychroot/releases.xml" htmlUrl="https://pypi.org/project/pychroot/"/>
        <outline title="PyPI recent updates for pyClamd" text="PyPI recent updates for pyClamd" description="PyPI recent updates for pyClamd" type="rss" xmlUrl="https://pypi.org/rss/project/pyClamd/releases.xml" htmlUrl="https://pypi.org/project/pyclamd/"/>
        <outline title="PyPI recent updates for pyclipper" text="PyPI recent updates for pyclipper" description="PyPI recent updates for pyclipper" type="rss" xmlUrl="https://pypi.org/rss/project/pyclipper/releases.xml" htmlUrl="https://pypi.org/project/pyclipper/"/>
        <outline title="PyPI recent updates for pycodestyle" text="PyPI recent updates for pycodestyle" description="PyPI recent updates for pycodestyle" type="rss" xmlUrl="https://pypi.org/rss/project/pycodestyle/releases.xml" htmlUrl="https://pypi.org/project/pycodestyle/"/>
        <outline title="PyPI recent updates for pycollada" text="PyPI recent updates for pycollada" description="PyPI recent updates for pycollada" type="rss" xmlUrl="https://pypi.org/rss/project/pycollada/releases.xml" htmlUrl="https://pypi.org/project/pycollada/"/>
        <outline title="PyPI recent updates for PyContracts" text="PyPI recent updates for PyContracts" description="PyPI recent updates for PyContracts" type="rss" xmlUrl="https://pypi.org/rss/project/PyContracts/releases.xml" htmlUrl="https://pypi.org/project/pycontracts/"/>
        <outline title="PyPI recent updates for pycountry" text="PyPI recent updates for pycountry" description="PyPI recent updates for pycountry" type="rss" xmlUrl="https://pypi.org/rss/project/pycountry/releases.xml" htmlUrl="https://pypi.org/project/pycountry/"/>
        <outline title="PyPI recent updates for pycparser" text="PyPI recent updates for pycparser" description="PyPI recent updates for pycparser" type="rss" xmlUrl="https://pypi.org/rss/project/pycparser/releases.xml" htmlUrl="https://pypi.org/project/pycparser/"/>
        <outline title="PyPI recent updates for pycryptodome" text="PyPI recent updates for pycryptodome" description="PyPI recent updates for pycryptodome" type="rss" xmlUrl="https://pypi.org/rss/project/pycryptodome/releases.xml" htmlUrl="https://pypi.org/project/pycryptodome/"/>
        <outline title="PyPI recent updates for pycuda" text="PyPI recent updates for pycuda" description="PyPI recent updates for pycuda" type="rss" xmlUrl="https://pypi.org/rss/project/pycuda/releases.xml" htmlUrl="https://pypi.org/project/pycuda/"/>
        <outline title="PyPI recent updates for pycups" text="PyPI recent updates for pycups" description="PyPI recent updates for pycups" type="rss" xmlUrl="https://pypi.org/rss/project/pycups/releases.xml" htmlUrl="https://pypi.org/project/pycups/"/>
        <outline title="PyPI recent updates for pycurl" text="PyPI recent updates for pycurl" description="PyPI recent updates for pycurl" type="rss" xmlUrl="https://pypi.org/rss/project/pycurl/releases.xml" htmlUrl="https://pypi.org/project/pycurl/"/>
        <outline title="PyPI recent updates for pycurl-requests" text="PyPI recent updates for pycurl-requests" description="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 title="PyPI recent updates for pycxx" text="PyPI recent updates for pycxx" description="PyPI recent updates for pycxx" type="rss" xmlUrl="https://pypi.org/rss/project/pycxx/releases.xml" htmlUrl="https://pypi.org/project/pycxx/"/>
        <outline title="PyPI recent updates for pydantic" text="PyPI recent updates for pydantic" description="PyPI recent updates for pydantic" type="rss" xmlUrl="https://pypi.org/rss/project/pydantic/releases.xml" htmlUrl="https://pypi.org/project/pydantic/"/>
        <outline title="PyPI recent updates for pydata-sphinx-theme" text="PyPI recent updates for pydata-sphinx-theme" description="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 title="PyPI recent updates for pydbus" text="PyPI recent updates for pydbus" description="PyPI recent updates for pydbus" type="rss" xmlUrl="https://pypi.org/rss/project/pydbus/releases.xml" htmlUrl="https://pypi.org/project/pydbus/"/>
        <outline title="PyPI recent updates for pydevd" text="PyPI recent updates for pydevd" description="PyPI recent updates for pydevd" type="rss" xmlUrl="https://pypi.org/rss/project/pydevd/releases.xml" htmlUrl="https://pypi.org/project/pydevd/"/>
        <outline title="PyPI recent updates for pydiff" text="PyPI recent updates for pydiff" description="PyPI recent updates for pydiff" type="rss" xmlUrl="https://pypi.org/rss/project/pydiff/releases.xml" htmlUrl="https://pypi.org/project/pydiff/"/>
        <outline title="PyPI recent updates for PyDispatcher" text="PyPI recent updates for PyDispatcher" description="PyPI recent updates for PyDispatcher" type="rss" xmlUrl="https://pypi.org/rss/project/PyDispatcher/releases.xml" htmlUrl="https://pypi.org/project/pydispatcher/"/>
        <outline title="PyPI recent updates for pydns" text="PyPI recent updates for pydns" description="PyPI recent updates for pydns" type="rss" xmlUrl="https://pypi.org/rss/project/pydns/releases.xml" htmlUrl="https://pypi.org/project/pydns/"/>
        <outline title="PyPI recent updates for pydocstyle" text="PyPI recent updates for pydocstyle" description="PyPI recent updates for pydocstyle" type="rss" xmlUrl="https://pypi.org/rss/project/pydocstyle/releases.xml" htmlUrl="https://pypi.org/project/pydocstyle/"/>
        <outline title="PyPI recent updates for pydot" text="PyPI recent updates for pydot" description="PyPI recent updates for pydot" type="rss" xmlUrl="https://pypi.org/rss/project/pydot/releases.xml" htmlUrl="https://pypi.org/project/pydot/"/>
        <outline title="PyPI recent updates for pydotplus" text="PyPI recent updates for pydotplus" description="PyPI recent updates for pydotplus" type="rss" xmlUrl="https://pypi.org/rss/project/pydotplus/releases.xml" htmlUrl="https://pypi.org/project/pydotplus/"/>
        <outline title="PyPI recent updates for pydyf" text="PyPI recent updates for pydyf" description="PyPI recent updates for pydyf" type="rss" xmlUrl="https://pypi.org/rss/project/pydyf/releases.xml" htmlUrl="https://pypi.org/project/pydyf/"/>
        <outline title="PyPI recent updates for PyECLib" text="PyPI recent updates for PyECLib" description="PyPI recent updates for PyECLib" type="rss" xmlUrl="https://pypi.org/rss/project/PyECLib/releases.xml" htmlUrl="https://pypi.org/project/pyeclib/"/>
        <outline title="PyPI recent updates for pyelftools" text="PyPI recent updates for pyelftools" description="PyPI recent updates for pyelftools" type="rss" xmlUrl="https://pypi.org/rss/project/pyelftools/releases.xml" htmlUrl="https://pypi.org/project/pyelftools/"/>
        <outline title="PyPI recent updates for pyenchant" text="PyPI recent updates for pyenchant" description="PyPI recent updates for pyenchant" type="rss" xmlUrl="https://pypi.org/rss/project/pyenchant/releases.xml" htmlUrl="https://pypi.org/project/pyenchant/"/>
        <outline title="PyPI recent updates for pyfakefs" text="PyPI recent updates for pyfakefs" description="PyPI recent updates for pyfakefs" type="rss" xmlUrl="https://pypi.org/rss/project/pyfakefs/releases.xml" htmlUrl="https://pypi.org/project/pyfakefs/"/>
        <outline title="PyPI recent updates for pyfeyn" text="PyPI recent updates for pyfeyn" description="PyPI recent updates for pyfeyn" type="rss" xmlUrl="https://pypi.org/rss/project/pyfeyn/releases.xml" htmlUrl="https://pypi.org/project/pyfeyn/"/>
        <outline title="PyPI recent updates for pyFFTW" text="PyPI recent updates for pyFFTW" description="PyPI recent updates for pyFFTW" type="rss" xmlUrl="https://pypi.org/rss/project/pyFFTW/releases.xml" htmlUrl="https://pypi.org/project/pyfftw/"/>
        <outline title="PyPI recent updates for pyflakes" text="PyPI recent updates for pyflakes" description="PyPI recent updates for pyflakes" type="rss" xmlUrl="https://pypi.org/rss/project/pyflakes/releases.xml" htmlUrl="https://pypi.org/project/pyflakes/"/>
        <outline title="PyPI recent updates for pyFltk" text="PyPI recent updates for pyFltk" description="PyPI recent updates for pyFltk" type="rss" xmlUrl="https://pypi.org/rss/project/pyFltk/releases.xml" htmlUrl="https://pypi.org/project/pyfltk/"/>
        <outline title="PyPI recent updates for pyformance" text="PyPI recent updates for pyformance" description="PyPI recent updates for pyformance" type="rss" xmlUrl="https://pypi.org/rss/project/pyformance/releases.xml" htmlUrl="https://pypi.org/project/pyformance/"/>
        <outline title="PyPI recent updates for pyftpdlib" text="PyPI recent updates for pyftpdlib" description="PyPI recent updates for pyftpdlib" type="rss" xmlUrl="https://pypi.org/rss/project/pyftpdlib/releases.xml" htmlUrl="https://pypi.org/project/pyftpdlib/"/>
        <outline title="PyPI recent updates for pygal" text="PyPI recent updates for pygal" description="PyPI recent updates for pygal" type="rss" xmlUrl="https://pypi.org/rss/project/pygal/releases.xml" htmlUrl="https://pypi.org/project/pygal/"/>
        <outline title="PyPI recent updates for pygame" text="PyPI recent updates for pygame" description="PyPI recent updates for pygame" type="rss" xmlUrl="https://pypi.org/rss/project/pygame/releases.xml" htmlUrl="https://pypi.org/project/pygame/"/>
        <outline title="PyPI recent updates for pygame_sdl2" text="PyPI recent updates for pygame_sdl2" description="PyPI recent updates for pygame_sdl2" type="rss" xmlUrl="https://pypi.org/rss/project/pygame_sdl2/releases.xml" htmlUrl="https://pypi.org/project/pygame-sdl2/"/>
        <outline title="PyPI recent updates for pyghmi" text="PyPI recent updates for pyghmi" description="PyPI recent updates for pyghmi" type="rss" xmlUrl="https://pypi.org/rss/project/pyghmi/releases.xml" htmlUrl="https://pypi.org/project/pyghmi/"/>
        <outline title="PyPI recent updates for pygit2" text="PyPI recent updates for pygit2" description="PyPI recent updates for pygit2" type="rss" xmlUrl="https://pypi.org/rss/project/pygit2/releases.xml" htmlUrl="https://pypi.org/project/pygit2/"/>
        <outline title="PyPI recent updates for PyGithub" text="PyPI recent updates for PyGithub" description="PyPI recent updates for PyGithub" type="rss" xmlUrl="https://pypi.org/rss/project/PyGithub/releases.xml" htmlUrl="https://pypi.org/project/pygithub/"/>
        <outline title="PyPI recent updates for pyglet" text="PyPI recent updates for pyglet" description="PyPI recent updates for pyglet" type="rss" xmlUrl="https://pypi.org/rss/project/pyglet/releases.xml" htmlUrl="https://pypi.org/project/pyglet/"/>
        <outline title="PyPI recent updates for Pygments" text="PyPI recent updates for Pygments" description="PyPI recent updates for Pygments" type="rss" xmlUrl="https://pypi.org/rss/project/Pygments/releases.xml" htmlUrl="https://pypi.org/project/pygments/"/>
        <outline title="PyPI recent updates for pygments-github-lexers" text="PyPI recent updates for pygments-github-lexers" description="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 title="PyPI recent updates for PyGObject" text="PyPI recent updates for PyGObject" description="PyPI recent updates for PyGObject" type="rss" xmlUrl="https://pypi.org/rss/project/PyGObject/releases.xml" htmlUrl="https://pypi.org/project/pygobject/"/>
        <outline title="PyPI recent updates for pygpgme" text="PyPI recent updates for pygpgme" description="PyPI recent updates for pygpgme" type="rss" xmlUrl="https://pypi.org/rss/project/pygpgme/releases.xml" htmlUrl="https://pypi.org/project/pygpgme/"/>
        <outline title="PyPI recent updates for pygraphviz" text="PyPI recent updates for pygraphviz" description="PyPI recent updates for pygraphviz" type="rss" xmlUrl="https://pypi.org/rss/project/pygraphviz/releases.xml" htmlUrl="https://pypi.org/project/pygraphviz/"/>
        <outline title="PyPI recent updates for PyGreSQL" text="PyPI recent updates for PyGreSQL" description="PyPI recent updates for PyGreSQL" type="rss" xmlUrl="https://pypi.org/rss/project/PyGreSQL/releases.xml" htmlUrl="https://pypi.org/project/pygresql/"/>
        <outline title="PyPI recent updates for pyh2o" text="PyPI recent updates for pyh2o" description="PyPI recent updates for pyh2o" type="rss" xmlUrl="https://pypi.org/rss/project/pyh2o/releases.xml" htmlUrl="https://pypi.org/project/pyh2o/"/>
        <outline title="PyPI recent updates for PyHamcrest" text="PyPI recent updates for PyHamcrest" description="PyPI recent updates for PyHamcrest" type="rss" xmlUrl="https://pypi.org/rss/project/PyHamcrest/releases.xml" htmlUrl="https://pypi.org/project/pyhamcrest/"/>
        <outline title="PyPI recent updates for pyhcl" text="PyPI recent updates for pyhcl" description="PyPI recent updates for pyhcl" type="rss" xmlUrl="https://pypi.org/rss/project/pyhcl/releases.xml" htmlUrl="https://pypi.org/project/pyhcl/"/>
        <outline title="PyPI recent updates for PyICU" text="PyPI recent updates for PyICU" description="PyPI recent updates for PyICU" type="rss" xmlUrl="https://pypi.org/rss/project/PyICU/releases.xml" htmlUrl="https://pypi.org/project/pyicu/"/>
        <outline title="PyPI recent updates for pyinotify" text="PyPI recent updates for pyinotify" description="PyPI recent updates for pyinotify" type="rss" xmlUrl="https://pypi.org/rss/project/pyinotify/releases.xml" htmlUrl="https://pypi.org/project/pyinotify/"/>
        <outline title="PyPI recent updates for PyJWT" text="PyPI recent updates for PyJWT" description="PyPI recent updates for PyJWT" type="rss" xmlUrl="https://pypi.org/rss/project/PyJWT/releases.xml" htmlUrl="https://pypi.org/project/pyjwt/"/>
        <outline title="PyPI recent updates for Pykka" text="PyPI recent updates for Pykka" description="PyPI recent updates for Pykka" type="rss" xmlUrl="https://pypi.org/rss/project/Pykka/releases.xml" htmlUrl="https://pypi.org/project/pykka/"/>
        <outline title="PyPI recent updates for pykwalify" text="PyPI recent updates for pykwalify" description="PyPI recent updates for pykwalify" type="rss" xmlUrl="https://pypi.org/rss/project/pykwalify/releases.xml" htmlUrl="https://pypi.org/project/pykwalify/"/>
        <outline title="PyPI recent updates for pylama" text="PyPI recent updates for pylama" description="PyPI recent updates for pylama" type="rss" xmlUrl="https://pypi.org/rss/project/pylama/releases.xml" htmlUrl="https://pypi.org/project/pylama/"/>
        <outline title="PyPI recent updates for pylast" text="PyPI recent updates for pylast" description="PyPI recent updates for pylast" type="rss" xmlUrl="https://pypi.org/rss/project/pylast/releases.xml" htmlUrl="https://pypi.org/project/pylast/"/>
        <outline title="PyPI recent updates for pylatex" text="PyPI recent updates for pylatex" description="PyPI recent updates for pylatex" type="rss" xmlUrl="https://pypi.org/rss/project/pylatex/releases.xml" htmlUrl="https://pypi.org/project/pylatex/"/>
        <outline title="PyPI recent updates for pylev" text="PyPI recent updates for pylev" description="PyPI recent updates for pylev" type="rss" xmlUrl="https://pypi.org/rss/project/pylev/releases.xml" htmlUrl="https://pypi.org/project/pylev/"/>
        <outline title="PyPI recent updates for pylibacl" text="PyPI recent updates for pylibacl" description="PyPI recent updates for pylibacl" type="rss" xmlUrl="https://pypi.org/rss/project/pylibacl/releases.xml" htmlUrl="https://pypi.org/project/pylibacl/"/>
        <outline title="PyPI recent updates for pylibmc" text="PyPI recent updates for pylibmc" description="PyPI recent updates for pylibmc" type="rss" xmlUrl="https://pypi.org/rss/project/pylibmc/releases.xml" htmlUrl="https://pypi.org/project/pylibmc/"/>
        <outline title="PyPI recent updates for pylint" text="PyPI recent updates for pylint" description="PyPI recent updates for pylint" type="rss" xmlUrl="https://pypi.org/rss/project/pylint/releases.xml" htmlUrl="https://pypi.org/project/pylint/"/>
        <outline title="PyPI recent updates for pylru" text="PyPI recent updates for pylru" description="PyPI recent updates for pylru" type="rss" xmlUrl="https://pypi.org/rss/project/pylru/releases.xml" htmlUrl="https://pypi.org/project/pylru/"/>
        <outline title="PyPI recent updates for pyls-black" text="PyPI recent updates for pyls-black" description="PyPI recent updates for pyls-black" type="rss" xmlUrl="https://pypi.org/rss/project/pyls-black/releases.xml" htmlUrl="https://pypi.org/project/pyls-black/"/>
        <outline title="PyPI recent updates for pyls-spyder" text="PyPI recent updates for pyls-spyder" description="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 title="PyPI recent updates for pymad" text="PyPI recent updates for pymad" description="PyPI recent updates for pymad" type="rss" xmlUrl="https://pypi.org/rss/project/pymad/releases.xml" htmlUrl="https://pypi.org/project/pymad/"/>
        <outline title="PyPI recent updates for pymdown-extensions" text="PyPI recent updates for pymdown-extensions" description="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 title="PyPI recent updates for pymdstat" text="PyPI recent updates for pymdstat" description="PyPI recent updates for pymdstat" type="rss" xmlUrl="https://pypi.org/rss/project/pymdstat/releases.xml" htmlUrl="https://pypi.org/project/pymdstat/"/>
        <outline title="PyPI recent updates for pymediainfo" text="PyPI recent updates for pymediainfo" description="PyPI recent updates for pymediainfo" type="rss" xmlUrl="https://pypi.org/rss/project/pymediainfo/releases.xml" htmlUrl="https://pypi.org/project/pymediainfo/"/>
        <outline title="PyPI recent updates for pymetar" text="PyPI recent updates for pymetar" description="PyPI recent updates for pymetar" type="rss" xmlUrl="https://pypi.org/rss/project/pymetar/releases.xml" htmlUrl="https://pypi.org/project/pymetar/"/>
        <outline title="PyPI recent updates for pymilter" text="PyPI recent updates for pymilter" description="PyPI recent updates for pymilter" type="rss" xmlUrl="https://pypi.org/rss/project/pymilter/releases.xml" htmlUrl="https://pypi.org/project/pymilter/"/>
        <outline title="PyPI recent updates for pymongo" text="PyPI recent updates for pymongo" description="PyPI recent updates for pymongo" type="rss" xmlUrl="https://pypi.org/rss/project/pymongo/releases.xml" htmlUrl="https://pypi.org/project/pymongo/"/>
        <outline title="PyPI recent updates for Pympler" text="PyPI recent updates for Pympler" description="PyPI recent updates for Pympler" type="rss" xmlUrl="https://pypi.org/rss/project/Pympler/releases.xml" htmlUrl="https://pypi.org/project/pympler/"/>
        <outline title="PyPI recent updates for pymssql" text="PyPI recent updates for pymssql" description="PyPI recent updates for pymssql" type="rss" xmlUrl="https://pypi.org/rss/project/pymssql/releases.xml" htmlUrl="https://pypi.org/project/pymssql/"/>
        <outline title="PyPI recent updates for PyMySQL" text="PyPI recent updates for PyMySQL" description="PyPI recent updates for PyMySQL" type="rss" xmlUrl="https://pypi.org/rss/project/PyMySQL/releases.xml" htmlUrl="https://pypi.org/project/pymysql/"/>
        <outline title="PyPI recent updates for PyNaCl" text="PyPI recent updates for PyNaCl" description="PyPI recent updates for PyNaCl" type="rss" xmlUrl="https://pypi.org/rss/project/PyNaCl/releases.xml" htmlUrl="https://pypi.org/project/pynacl/"/>
        <outline title="PyPI recent updates for pynput" text="PyPI recent updates for pynput" description="PyPI recent updates for pynput" type="rss" xmlUrl="https://pypi.org/rss/project/pynput/releases.xml" htmlUrl="https://pypi.org/project/pynput/"/>
        <outline title="PyPI recent updates for pynvim" text="PyPI recent updates for pynvim" description="PyPI recent updates for pynvim" type="rss" xmlUrl="https://pypi.org/rss/project/pynvim/releases.xml" htmlUrl="https://pypi.org/project/pynvim/"/>
        <outline title="PyPI recent updates for pyocr" text="PyPI recent updates for pyocr" description="PyPI recent updates for pyocr" type="rss" xmlUrl="https://pypi.org/rss/project/pyocr/releases.xml" htmlUrl="https://pypi.org/project/pyocr/"/>
        <outline title="PyPI recent updates for pyopencl" text="PyPI recent updates for pyopencl" description="PyPI recent updates for pyopencl" type="rss" xmlUrl="https://pypi.org/rss/project/pyopencl/releases.xml" htmlUrl="https://pypi.org/project/pyopencl/"/>
        <outline title="PyPI recent updates for PyOpenGL" text="PyPI recent updates for PyOpenGL" description="PyPI recent updates for PyOpenGL" type="rss" xmlUrl="https://pypi.org/rss/project/PyOpenGL/releases.xml" htmlUrl="https://pypi.org/project/pyopengl/"/>
        <outline title="PyPI recent updates for PyOpenGL-accelerate" text="PyPI recent updates for PyOpenGL-accelerate" description="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 title="PyPI recent updates for pyOpenSSL" text="PyPI recent updates for pyOpenSSL" description="PyPI recent updates for pyOpenSSL" type="rss" xmlUrl="https://pypi.org/rss/project/pyOpenSSL/releases.xml" htmlUrl="https://pypi.org/project/pyopenssl/"/>
        <outline title="PyPI recent updates for pyotp" text="PyPI recent updates for pyotp" description="PyPI recent updates for pyotp" type="rss" xmlUrl="https://pypi.org/rss/project/pyotp/releases.xml" htmlUrl="https://pypi.org/project/pyotp/"/>
        <outline title="PyPI recent updates for pyparsing" text="PyPI recent updates for pyparsing" description="PyPI recent updates for pyparsing" type="rss" xmlUrl="https://pypi.org/rss/project/pyparsing/releases.xml" htmlUrl="https://pypi.org/project/pyparsing/"/>
        <outline title="PyPI recent updates for pyparted" text="PyPI recent updates for pyparted" description="PyPI recent updates for pyparted" type="rss" xmlUrl="https://pypi.org/rss/project/pyparted/releases.xml" htmlUrl="https://pypi.org/project/pyparted/"/>
        <outline title="PyPI recent updates for pypcap" text="PyPI recent updates for pypcap" description="PyPI recent updates for pypcap" type="rss" xmlUrl="https://pypi.org/rss/project/pypcap/releases.xml" htmlUrl="https://pypi.org/project/pypcap/"/>
        <outline title="PyPI recent updates for PyPDF2" text="PyPI recent updates for PyPDF2" description="PyPI recent updates for PyPDF2" type="rss" xmlUrl="https://pypi.org/rss/project/PyPDF2/releases.xml" htmlUrl="https://pypi.org/project/pypdf2/"/>
        <outline title="PyPI recent updates for pyPEG2" text="PyPI recent updates for pyPEG2" description="PyPI recent updates for pyPEG2" type="rss" xmlUrl="https://pypi.org/rss/project/pyPEG2/releases.xml" htmlUrl="https://pypi.org/project/pypeg2/"/>
        <outline title="PyPI recent updates for pyperclip" text="PyPI recent updates for pyperclip" description="PyPI recent updates for pyperclip" type="rss" xmlUrl="https://pypi.org/rss/project/pyperclip/releases.xml" htmlUrl="https://pypi.org/project/pyperclip/"/>
        <outline title="PyPI recent updates for Pyphen" text="PyPI recent updates for Pyphen" description="PyPI recent updates for Pyphen" type="rss" xmlUrl="https://pypi.org/rss/project/Pyphen/releases.xml" htmlUrl="https://pypi.org/project/pyphen/"/>
        <outline title="PyPI recent updates for pypillowfight" text="PyPI recent updates for pypillowfight" description="PyPI recent updates for pypillowfight" type="rss" xmlUrl="https://pypi.org/rss/project/pypillowfight/releases.xml" htmlUrl="https://pypi.org/project/pypillowfight/"/>
        <outline title="PyPI recent updates for pypiserver" text="PyPI recent updates for pypiserver" description="PyPI recent updates for pypiserver" type="rss" xmlUrl="https://pypi.org/rss/project/pypiserver/releases.xml" htmlUrl="https://pypi.org/project/pypiserver/"/>
        <outline title="PyPI recent updates for pypng" text="PyPI recent updates for pypng" description="PyPI recent updates for pypng" type="rss" xmlUrl="https://pypi.org/rss/project/pypng/releases.xml" htmlUrl="https://pypi.org/project/pypng/"/>
        <outline title="PyPI recent updates for pypowervm" text="PyPI recent updates for pypowervm" description="PyPI recent updates for pypowervm" type="rss" xmlUrl="https://pypi.org/rss/project/pypowervm/releases.xml" htmlUrl="https://pypi.org/project/pypowervm/"/>
        <outline title="PyPI recent updates for pyprof2calltree" text="PyPI recent updates for pyprof2calltree" description="PyPI recent updates for pyprof2calltree" type="rss" xmlUrl="https://pypi.org/rss/project/pyprof2calltree/releases.xml" htmlUrl="https://pypi.org/project/pyprof2calltree/"/>
        <outline title="PyPI recent updates for pyproj" text="PyPI recent updates for pyproj" description="PyPI recent updates for pyproj" type="rss" xmlUrl="https://pypi.org/rss/project/pyproj/releases.xml" htmlUrl="https://pypi.org/project/pyproj/"/>
        <outline title="PyPI recent updates for pyproject2setuppy" text="PyPI recent updates for pyproject2setuppy" description="PyPI recent updates for pyproject2setuppy" type="rss" xmlUrl="https://pypi.org/rss/project/pyproject2setuppy/releases.xml" htmlUrl="https://pypi.org/project/pyproject2setuppy/"/>
        <outline title="PyPI recent updates for pypugjs" text="PyPI recent updates for pypugjs" description="PyPI recent updates for pypugjs" type="rss" xmlUrl="https://pypi.org/rss/project/pypugjs/releases.xml" htmlUrl="https://pypi.org/project/pypugjs/"/>
        <outline title="PyPI recent updates for PyPyDispatcher" text="PyPI recent updates for PyPyDispatcher" description="PyPI recent updates for PyPyDispatcher" type="rss" xmlUrl="https://pypi.org/rss/project/PyPyDispatcher/releases.xml" htmlUrl="https://pypi.org/project/pypydispatcher/"/>
        <outline title="PyPI recent updates for PyQRCode" text="PyPI recent updates for PyQRCode" description="PyPI recent updates for PyQRCode" type="rss" xmlUrl="https://pypi.org/rss/project/PyQRCode/releases.xml" htmlUrl="https://pypi.org/project/pyqrcode/"/>
        <outline title="PyPI recent updates for PyQt-builder" text="PyPI recent updates for PyQt-builder" description="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 title="PyPI recent updates for pyqt-distutils" text="PyPI recent updates for pyqt-distutils" description="PyPI recent updates for pyqt-distutils" type="rss" xmlUrl="https://pypi.org/rss/project/pyqt-distutils/releases.xml" htmlUrl="https://pypi.org/project/pyqt-distutils/"/>
        <outline title="PyPI recent updates for PyQt5" text="PyPI recent updates for PyQt5" description="PyPI recent updates for PyQt5" type="rss" xmlUrl="https://pypi.org/rss/project/PyQt5/releases.xml" htmlUrl="https://pypi.org/project/pyqt5/"/>
        <outline title="PyPI recent updates for PyQt5-sip" text="PyPI recent updates for PyQt5-sip" description="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 title="PyPI recent updates for pyqtgraph" text="PyPI recent updates for pyqtgraph" description="PyPI recent updates for pyqtgraph" type="rss" xmlUrl="https://pypi.org/rss/project/pyqtgraph/releases.xml" htmlUrl="https://pypi.org/project/pyqtgraph/"/>
        <outline title="PyPI recent updates for PyQtWebEngine" text="PyPI recent updates for PyQtWebEngine" description="PyPI recent updates for PyQtWebEngine" type="rss" xmlUrl="https://pypi.org/rss/project/PyQtWebEngine/releases.xml" htmlUrl="https://pypi.org/project/pyqtwebengine/"/>
        <outline title="PyPI recent updates for pyquery" text="PyPI recent updates for pyquery" description="PyPI recent updates for pyquery" type="rss" xmlUrl="https://pypi.org/rss/project/pyquery/releases.xml" htmlUrl="https://pypi.org/project/pyquery/"/>
        <outline title="PyPI recent updates for pyRFC3339" text="PyPI recent updates for pyRFC3339" description="PyPI recent updates for pyRFC3339" type="rss" xmlUrl="https://pypi.org/rss/project/pyRFC3339/releases.xml" htmlUrl="https://pypi.org/project/pyrfc3339/"/>
        <outline title="PyPI recent updates for Pyro4" text="PyPI recent updates for Pyro4" description="PyPI recent updates for Pyro4" type="rss" xmlUrl="https://pypi.org/rss/project/Pyro4/releases.xml" htmlUrl="https://pypi.org/project/pyro4/"/>
        <outline title="PyPI recent updates for pyroute2" text="PyPI recent updates for pyroute2" description="PyPI recent updates for pyroute2" type="rss" xmlUrl="https://pypi.org/rss/project/pyroute2/releases.xml" htmlUrl="https://pypi.org/project/pyroute2/"/>
        <outline title="PyPI recent updates for pyrsistent" text="PyPI recent updates for pyrsistent" description="PyPI recent updates for pyrsistent" type="rss" xmlUrl="https://pypi.org/rss/project/pyrsistent/releases.xml" htmlUrl="https://pypi.org/project/pyrsistent/"/>
        <outline title="PyPI recent updates for PyRSS2Gen" text="PyPI recent updates for PyRSS2Gen" description="PyPI recent updates for PyRSS2Gen" type="rss" xmlUrl="https://pypi.org/rss/project/PyRSS2Gen/releases.xml" htmlUrl="https://pypi.org/project/pyrss2gen/"/>
        <outline title="PyPI recent updates for pysaml2" text="PyPI recent updates for pysaml2" description="PyPI recent updates for pysaml2" type="rss" xmlUrl="https://pypi.org/rss/project/pysaml2/releases.xml" htmlUrl="https://pypi.org/project/pysaml2/"/>
        <outline title="PyPI recent updates for pyscard" text="PyPI recent updates for pyscard" description="PyPI recent updates for pyscard" type="rss" xmlUrl="https://pypi.org/rss/project/pyscard/releases.xml" htmlUrl="https://pypi.org/project/pyscard/"/>
        <outline title="PyPI recent updates for pyscreenshot" text="PyPI recent updates for pyscreenshot" description="PyPI recent updates for pyscreenshot" type="rss" xmlUrl="https://pypi.org/rss/project/pyscreenshot/releases.xml" htmlUrl="https://pypi.org/project/pyscreenshot/"/>
        <outline title="PyPI recent updates for PySDL2" text="PyPI recent updates for PySDL2" description="PyPI recent updates for PySDL2" type="rss" xmlUrl="https://pypi.org/rss/project/PySDL2/releases.xml" htmlUrl="https://pypi.org/project/pysdl2/"/>
        <outline title="PyPI recent updates for PySensors" text="PyPI recent updates for PySensors" description="PyPI recent updates for PySensors" type="rss" xmlUrl="https://pypi.org/rss/project/PySensors/releases.xml" htmlUrl="https://pypi.org/project/pysensors/"/>
        <outline title="PyPI recent updates for pyserial" text="PyPI recent updates for pyserial" description="PyPI recent updates for pyserial" type="rss" xmlUrl="https://pypi.org/rss/project/pyserial/releases.xml" htmlUrl="https://pypi.org/project/pyserial/"/>
        <outline title="PyPI recent updates for PySide2" text="PyPI recent updates for PySide2" description="PyPI recent updates for PySide2" type="rss" xmlUrl="https://pypi.org/rss/project/PySide2/releases.xml" htmlUrl="https://pypi.org/project/pyside2/"/>
        <outline title="PyPI recent updates for pysimdjson" text="PyPI recent updates for pysimdjson" description="PyPI recent updates for pysimdjson" type="rss" xmlUrl="https://pypi.org/rss/project/pysimdjson/releases.xml" htmlUrl="https://pypi.org/project/pysimdjson/"/>
        <outline title="PyPI recent updates for pysmi" text="PyPI recent updates for pysmi" description="PyPI recent updates for pysmi" type="rss" xmlUrl="https://pypi.org/rss/project/pysmi/releases.xml" htmlUrl="https://pypi.org/project/pysmi/"/>
        <outline title="PyPI recent updates for pysnmp" text="PyPI recent updates for pysnmp" description="PyPI recent updates for pysnmp" type="rss" xmlUrl="https://pypi.org/rss/project/pysnmp/releases.xml" htmlUrl="https://pypi.org/project/pysnmp/"/>
        <outline title="PyPI recent updates for pysnmp-mibs" text="PyPI recent updates for pysnmp-mibs" description="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 title="PyPI recent updates for PySocks" text="PyPI recent updates for PySocks" description="PyPI recent updates for PySocks" type="rss" xmlUrl="https://pypi.org/rss/project/PySocks/releases.xml" htmlUrl="https://pypi.org/project/pysocks/"/>
        <outline title="PyPI recent updates for pysol-cards" text="PyPI recent updates for pysol-cards" description="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 title="PyPI recent updates for pyspectrum2" text="PyPI recent updates for pyspectrum2" description="PyPI recent updates for pyspectrum2" type="rss" xmlUrl="https://pypi.org/rss/project/pyspectrum2/releases.xml" htmlUrl="https://pypi.org/project/pyspectrum2/"/>
        <outline title="PyPI recent updates for pyspelling" text="PyPI recent updates for pyspelling" description="PyPI recent updates for pyspelling" type="rss" xmlUrl="https://pypi.org/rss/project/pyspelling/releases.xml" htmlUrl="https://pypi.org/project/pyspelling/"/>
        <outline title="PyPI recent updates for pyspf" text="PyPI recent updates for pyspf" description="PyPI recent updates for pyspf" type="rss" xmlUrl="https://pypi.org/rss/project/pyspf/releases.xml" htmlUrl="https://pypi.org/project/pyspf/"/>
        <outline title="PyPI recent updates for pyspnego" text="PyPI recent updates for pyspnego" description="PyPI recent updates for pyspnego" type="rss" xmlUrl="https://pypi.org/rss/project/pyspnego/releases.xml" htmlUrl="https://pypi.org/project/pyspnego/"/>
        <outline title="PyPI recent updates for pysrt" text="PyPI recent updates for pysrt" description="PyPI recent updates for pysrt" type="rss" xmlUrl="https://pypi.org/rss/project/pysrt/releases.xml" htmlUrl="https://pypi.org/project/pysrt/"/>
        <outline title="PyPI recent updates for pysvg-py3" text="PyPI recent updates for pysvg-py3" description="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 title="PyPI recent updates for pytaglib" text="PyPI recent updates for pytaglib" description="PyPI recent updates for pytaglib" type="rss" xmlUrl="https://pypi.org/rss/project/pytaglib/releases.xml" htmlUrl="https://pypi.org/project/pytaglib/"/>
        <outline title="PyPI recent updates for pyte" text="PyPI recent updates for pyte" description="PyPI recent updates for pyte" type="rss" xmlUrl="https://pypi.org/rss/project/pyte/releases.xml" htmlUrl="https://pypi.org/project/pyte/"/>
        <outline title="PyPI recent updates for pytest" text="PyPI recent updates for pytest" description="PyPI recent updates for pytest" type="rss" xmlUrl="https://pypi.org/rss/project/pytest/releases.xml" htmlUrl="https://pypi.org/project/pytest/"/>
        <outline title="PyPI recent updates for pytest-aiohttp" text="PyPI recent updates for pytest-aiohttp" description="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 title="PyPI recent updates for pytest-asyncio" text="PyPI recent updates for pytest-asyncio" description="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 title="PyPI recent updates for pytest-bdd" text="PyPI recent updates for pytest-bdd" description="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 title="PyPI recent updates for pytest-cache" text="PyPI recent updates for pytest-cache" description="PyPI recent updates for pytest-cache" type="rss" xmlUrl="https://pypi.org/rss/project/pytest-cache/releases.xml" htmlUrl="https://pypi.org/project/pytest-cache/"/>
        <outline title="PyPI recent updates for pytest-catchlog" text="PyPI recent updates for pytest-catchlog" description="PyPI recent updates for pytest-catchlog" type="rss" xmlUrl="https://pypi.org/rss/project/pytest-catchlog/releases.xml" htmlUrl="https://pypi.org/project/pytest-catchlog/"/>
        <outline title="PyPI recent updates for pytest_check" text="PyPI recent updates for pytest_check" description="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 title="PyPI recent updates for pytest-codeblocks" text="PyPI recent updates for pytest-codeblocks" description="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 title="PyPI recent updates for pytest-console-scripts" text="PyPI recent updates for pytest-console-scripts" description="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 title="PyPI recent updates for pytest-cov" text="PyPI recent updates for pytest-cov" description="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 title="PyPI recent updates for pytest-datadir" text="PyPI recent updates for pytest-datadir" description="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 title="PyPI recent updates for pytest-describe" text="PyPI recent updates for pytest-describe" description="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 title="PyPI recent updates for pytest-django" text="PyPI recent updates for pytest-django" description="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 title="PyPI recent updates for pytest-env" text="PyPI recent updates for pytest-env" description="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 title="PyPI recent updates for pytest-expect" text="PyPI recent updates for pytest-expect" description="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 title="PyPI recent updates for pytest-faulthandler" text="PyPI recent updates for pytest-faulthandler" description="PyPI recent updates for pytest-faulthandler" type="rss" xmlUrl="https://pypi.org/rss/project/pytest-faulthandler/releases.xml" htmlUrl="https://pypi.org/project/pytest-faulthandler/"/>
        <outline title="PyPI recent updates for pytest-fixture-config" text="PyPI recent updates for pytest-fixture-config" description="PyPI recent updates for pytest-fixture-config" type="rss" xmlUrl="https://pypi.org/rss/project/pytest-fixture-config/releases.xml" htmlUrl="https://pypi.org/project/pytest-fixture-config/"/>
        <outline title="PyPI recent updates for pytest-flake8" text="PyPI recent updates for pytest-flake8" description="PyPI recent updates for pytest-flake8" type="rss" xmlUrl="https://pypi.org/rss/project/pytest-flake8/releases.xml" htmlUrl="https://pypi.org/project/pytest-flake8/"/>
        <outline title="PyPI recent updates for pytest-flakes" text="PyPI recent updates for pytest-flakes" description="PyPI recent updates for pytest-flakes" type="rss" xmlUrl="https://pypi.org/rss/project/pytest-flakes/releases.xml" htmlUrl="https://pypi.org/project/pytest-flakes/"/>
        <outline title="PyPI recent updates for pytest-forked" text="PyPI recent updates for pytest-forked" description="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 title="PyPI recent updates for pytest-freezegun" text="PyPI recent updates for pytest-freezegun" description="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 title="PyPI recent updates for pytest-helpers-namespace" text="PyPI recent updates for pytest-helpers-namespace" description="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 title="PyPI recent updates for pytest-html" text="PyPI recent updates for pytest-html" description="PyPI recent updates for pytest-html" type="rss" xmlUrl="https://pypi.org/rss/project/pytest-html/releases.xml" htmlUrl="https://pypi.org/project/pytest-html/"/>
        <outline title="PyPI recent updates for pytest-httpbin" text="PyPI recent updates for pytest-httpbin" description="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 title="PyPI recent updates for pytest-httpx" text="PyPI recent updates for pytest-httpx" description="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 title="PyPI recent updates for pytest-lazy-fixture" text="PyPI recent updates for pytest-lazy-fixture" description="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 title="PyPI recent updates for pytest-localftpserver" text="PyPI recent updates for pytest-localftpserver" description="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 title="PyPI recent updates for pytest-localserver" text="PyPI recent updates for pytest-localserver" description="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 title="PyPI recent updates for pytest-markdown" text="PyPI recent updates for pytest-markdown" description="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 title="PyPI recent updates for pytest-metadata" text="PyPI recent updates for pytest-metadata" description="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 title="PyPI recent updates for pytest-mock" text="PyPI recent updates for pytest-mock" description="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 title="PyPI recent updates for pytest-ordering" text="PyPI recent updates for pytest-ordering" description="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 title="PyPI recent updates for pytest-plus" text="PyPI recent updates for pytest-plus" description="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 title="PyPI recent updates for pytest-pylint" text="PyPI recent updates for pytest-pylint" description="PyPI recent updates for pytest-pylint" type="rss" xmlUrl="https://pypi.org/rss/project/pytest-pylint/releases.xml" htmlUrl="https://pypi.org/project/pytest-pylint/"/>
        <outline title="PyPI recent updates for pytest-qt" text="PyPI recent updates for pytest-qt" description="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 title="PyPI recent updates for pytest-regressions" text="PyPI recent updates for pytest-regressions" description="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 title="PyPI recent updates for pytest-rerunfailures" text="PyPI recent updates for pytest-rerunfailures" description="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 title="PyPI recent updates for pytest-salt" text="PyPI recent updates for pytest-salt" description="PyPI recent updates for pytest-salt" type="rss" xmlUrl="https://pypi.org/rss/project/pytest-salt/releases.xml" htmlUrl="https://pypi.org/project/pytest-salt/"/>
        <outline title="PyPI recent updates for pytest-salt-factories" text="PyPI recent updates for pytest-salt-factories" description="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 title="PyPI recent updates for pytest-services" text="PyPI recent updates for pytest-services" description="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 title="PyPI recent updates for pytest-shutil" text="PyPI recent updates for pytest-shutil" description="PyPI recent updates for pytest-shutil" type="rss" xmlUrl="https://pypi.org/rss/project/pytest-shutil/releases.xml" htmlUrl="https://pypi.org/project/pytest-shutil/"/>
        <outline title="PyPI recent updates for pytest-subtesthack" text="PyPI recent updates for pytest-subtesthack" description="PyPI recent updates for pytest-subtesthack" type="rss" xmlUrl="https://pypi.org/rss/project/pytest-subtesthack/releases.xml" htmlUrl="https://pypi.org/project/pytest-subtesthack/"/>
        <outline title="PyPI recent updates for pytest-subtests" text="PyPI recent updates for pytest-subtests" description="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 title="PyPI recent updates for pytest-sugar" text="PyPI recent updates for pytest-sugar" description="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 title="PyPI recent updates for pytest-tempdir" text="PyPI recent updates for pytest-tempdir" description="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 title="PyPI recent updates for pytest-testinfra" text="PyPI recent updates for pytest-testinfra" description="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 title="PyPI recent updates for pytest-timeout" text="PyPI recent updates for pytest-timeout" description="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 title="PyPI recent updates for pytest-toolbox" text="PyPI recent updates for pytest-toolbox" description="PyPI recent updates for pytest-toolbox" type="rss" xmlUrl="https://pypi.org/rss/project/pytest-toolbox/releases.xml" htmlUrl="https://pypi.org/project/pytest-toolbox/"/>
        <outline title="PyPI recent updates for pytest-tornado" text="PyPI recent updates for pytest-tornado" description="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 title="PyPI recent updates for pytest-tornasync" text="PyPI recent updates for pytest-tornasync" description="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 title="PyPI recent updates for pytest-trio" text="PyPI recent updates for pytest-trio" description="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 title="PyPI recent updates for pytest-verbose-parametrize" text="PyPI recent updates for pytest-verbose-parametrize" description="PyPI recent updates for pytest-verbose-parametrize" type="rss" xmlUrl="https://pypi.org/rss/project/pytest-verbose-parametrize/releases.xml" htmlUrl="https://pypi.org/project/pytest-verbose-parametrize/"/>
        <outline title="PyPI recent updates for pytest-virtualenv" text="PyPI recent updates for pytest-virtualenv" description="PyPI recent updates for pytest-virtualenv" type="rss" xmlUrl="https://pypi.org/rss/project/pytest-virtualenv/releases.xml" htmlUrl="https://pypi.org/project/pytest-virtualenv/"/>
        <outline title="PyPI recent updates for pytest-xdist" text="PyPI recent updates for pytest-xdist" description="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 title="PyPI recent updates for pytest-xprocess" text="PyPI recent updates for pytest-xprocess" description="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 title="PyPI recent updates for pytest-xvfb" text="PyPI recent updates for pytest-xvfb" description="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 title="PyPI recent updates for python-augeas" text="PyPI recent updates for python-augeas" description="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 title="PyPI recent updates for python-axolotl" text="PyPI recent updates for python-axolotl" description="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 title="PyPI recent updates for python-axolotl-curve25519" text="PyPI recent updates for python-axolotl-curve25519" description="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 title="PyPI recent updates for python-barbicanclient" text="PyPI recent updates for python-barbicanclient" description="PyPI recent updates for python-barbicanclient" type="rss" xmlUrl="https://pypi.org/rss/project/python-barbicanclient/releases.xml" htmlUrl="https://pypi.org/project/python-barbicanclient/"/>
        <outline title="PyPI recent updates for python-blazarclient" text="PyPI recent updates for python-blazarclient" description="PyPI recent updates for python-blazarclient" type="rss" xmlUrl="https://pypi.org/rss/project/python-blazarclient/releases.xml" htmlUrl="https://pypi.org/project/python-blazarclient/"/>
        <outline title="PyPI recent updates for python-bugzilla" text="PyPI recent updates for python-bugzilla" description="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 title="PyPI recent updates for python-ceilometerclient" text="PyPI recent updates for python-ceilometerclient" description="PyPI recent updates for python-ceilometerclient" type="rss" xmlUrl="https://pypi.org/rss/project/python-ceilometerclient/releases.xml" htmlUrl="https://pypi.org/project/python-ceilometerclient/"/>
        <outline title="PyPI recent updates for python-cinderclient" text="PyPI recent updates for python-cinderclient" description="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 title="PyPI recent updates for python-ctags3" text="PyPI recent updates for python-ctags3" description="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 title="PyPI recent updates for python-daemon" text="PyPI recent updates for python-daemon" description="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 title="PyPI recent updates for python-dateutil" text="PyPI recent updates for python-dateutil" description="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 title="PyPI recent updates for python-dbusmock" text="PyPI recent updates for python-dbusmock" description="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 title="PyPI recent updates for python-debian" text="PyPI recent updates for python-debian" description="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 title="PyPI recent updates for python-designateclient" text="PyPI recent updates for python-designateclient" description="PyPI recent updates for python-designateclient" type="rss" xmlUrl="https://pypi.org/rss/project/python-designateclient/releases.xml" htmlUrl="https://pypi.org/project/python-designateclient/"/>
        <outline title="PyPI recent updates for python-dotenv" text="PyPI recent updates for python-dotenv" description="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 title="PyPI recent updates for python-editor" text="PyPI recent updates for python-editor" description="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 title="PyPI recent updates for python-efl" text="PyPI recent updates for python-efl" description="PyPI recent updates for python-efl" type="rss" xmlUrl="https://pypi.org/rss/project/python-efl/releases.xml" htmlUrl="https://pypi.org/project/python-efl/"/>
        <outline title="PyPI recent updates for python-engineio" text="PyPI recent updates for python-engineio" description="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 title="PyPI recent updates for python-etcd" text="PyPI recent updates for python-etcd" description="PyPI recent updates for python-etcd" type="rss" xmlUrl="https://pypi.org/rss/project/python-etcd/releases.xml" htmlUrl="https://pypi.org/project/python-etcd/"/>
        <outline title="PyPI recent updates for python-fcl" text="PyPI recent updates for python-fcl" description="PyPI recent updates for python-fcl" type="rss" xmlUrl="https://pypi.org/rss/project/python-fcl/releases.xml" htmlUrl="https://pypi.org/project/python-fcl/"/>
        <outline title="PyPI recent updates for python-gammu" text="PyPI recent updates for python-gammu" description="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 title="PyPI recent updates for python-gflags" text="PyPI recent updates for python-gflags" description="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 title="PyPI recent updates for python-glanceclient" text="PyPI recent updates for python-glanceclient" description="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 title="PyPI recent updates for python-gnupg" text="PyPI recent updates for python-gnupg" description="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 title="PyPI recent updates for python-heatclient" text="PyPI recent updates for python-heatclient" description="PyPI recent updates for python-heatclient" type="rss" xmlUrl="https://pypi.org/rss/project/python-heatclient/releases.xml" htmlUrl="https://pypi.org/project/python-heatclient/"/>
        <outline title="PyPI recent updates for python-iptables" text="PyPI recent updates for python-iptables" description="PyPI recent updates for python-iptables" type="rss" xmlUrl="https://pypi.org/rss/project/python-iptables/releases.xml" htmlUrl="https://pypi.org/project/python-iptables/"/>
        <outline title="PyPI recent updates for python-ironicclient" text="PyPI recent updates for python-ironicclient" description="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 title="PyPI recent updates for python-jose" text="PyPI recent updates for python-jose" description="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 title="PyPI recent updates for python-jsonrpc-server" text="PyPI recent updates for python-jsonrpc-server" description="PyPI recent updates for python-jsonrpc-server" type="rss" xmlUrl="https://pypi.org/rss/project/python-jsonrpc-server/releases.xml" htmlUrl="https://pypi.org/project/python-jsonrpc-server/"/>
        <outline title="PyPI recent updates for python-keystoneclient" text="PyPI recent updates for python-keystoneclient" description="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 title="PyPI recent updates for python-language-server" text="PyPI recent updates for python-language-server" description="PyPI recent updates for python-language-server" type="rss" xmlUrl="https://pypi.org/rss/project/python-language-server/releases.xml" htmlUrl="https://pypi.org/project/python-language-server/"/>
        <outline title="PyPI recent updates for python-ldap" text="PyPI recent updates for python-ldap" description="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 title="PyPI recent updates for python-Levenshtein" text="PyPI recent updates for python-Levenshtein" description="PyPI recent updates for python-Levenshtein" type="rss" xmlUrl="https://pypi.org/rss/project/python-Levenshtein/releases.xml" htmlUrl="https://pypi.org/project/python-levenshtein/"/>
        <outline title="PyPI recent updates for python-lsp-black" text="PyPI recent updates for python-lsp-black" description="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 title="PyPI recent updates for python-lsp-jsonrpc" text="PyPI recent updates for python-lsp-jsonrpc" description="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 title="PyPI recent updates for python-lsp-server" text="PyPI recent updates for python-lsp-server" description="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 title="PyPI recent updates for python-ly" text="PyPI recent updates for python-ly" description="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 title="PyPI recent updates for python-lzo" text="PyPI recent updates for python-lzo" description="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 title="PyPI recent updates for python-magic" text="PyPI recent updates for python-magic" description="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 title="PyPI recent updates for python-magnumclient" text="PyPI recent updates for python-magnumclient" description="PyPI recent updates for python-magnumclient" type="rss" xmlUrl="https://pypi.org/rss/project/python-magnumclient/releases.xml" htmlUrl="https://pypi.org/project/python-magnumclient/"/>
        <outline title="PyPI recent updates for python-manilaclient" text="PyPI recent updates for python-manilaclient" description="PyPI recent updates for python-manilaclient" type="rss" xmlUrl="https://pypi.org/rss/project/python-manilaclient/releases.xml" htmlUrl="https://pypi.org/project/python-manilaclient/"/>
        <outline title="PyPI recent updates for python-markdown-math" text="PyPI recent updates for python-markdown-math" description="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 title="PyPI recent updates for python-memcached" text="PyPI recent updates for python-memcached" description="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 title="PyPI recent updates for python-mimeparse" text="PyPI recent updates for python-mimeparse" description="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 title="PyPI recent updates for python-mistralclient" text="PyPI recent updates for python-mistralclient" description="PyPI recent updates for python-mistralclient" type="rss" xmlUrl="https://pypi.org/rss/project/python-mistralclient/releases.xml" htmlUrl="https://pypi.org/project/python-mistralclient/"/>
        <outline title="PyPI recent updates for python-monascaclient" text="PyPI recent updates for python-monascaclient" description="PyPI recent updates for python-monascaclient" type="rss" xmlUrl="https://pypi.org/rss/project/python-monascaclient/releases.xml" htmlUrl="https://pypi.org/project/python-monascaclient/"/>
        <outline title="PyPI recent updates for python-mpd" text="PyPI recent updates for python-mpd" description="PyPI recent updates for python-mpd" type="rss" xmlUrl="https://pypi.org/rss/project/python-mpd/releases.xml" htmlUrl="https://pypi.org/project/python-mpd/"/>
        <outline title="PyPI recent updates for python-mpd2" text="PyPI recent updates for python-mpd2" description="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 title="PyPI recent updates for python-mpv" text="PyPI recent updates for python-mpv" description="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 title="PyPI recent updates for python-neutronclient" text="PyPI recent updates for python-neutronclient" description="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 title="PyPI recent updates for python-novaclient" text="PyPI recent updates for python-novaclient" description="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 title="PyPI recent updates for python-octaviaclient" text="PyPI recent updates for python-octaviaclient" description="PyPI recent updates for python-octaviaclient" type="rss" xmlUrl="https://pypi.org/rss/project/python-octaviaclient/releases.xml" htmlUrl="https://pypi.org/project/python-octaviaclient/"/>
        <outline title="PyPI recent updates for python-openstackclient" text="PyPI recent updates for python-openstackclient" description="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 title="PyPI recent updates for python-poppler-qt5" text="PyPI recent updates for python-poppler-qt5" description="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 title="PyPI recent updates for python-prctl" text="PyPI recent updates for python-prctl" description="PyPI recent updates for python-prctl" type="rss" xmlUrl="https://pypi.org/rss/project/python-prctl/releases.xml" htmlUrl="https://pypi.org/project/python-prctl/"/>
        <outline title="PyPI recent updates for python-redmine" text="PyPI recent updates for python-redmine" description="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 title="PyPI recent updates for python-saharaclient" text="PyPI recent updates for python-saharaclient" description="PyPI recent updates for python-saharaclient" type="rss" xmlUrl="https://pypi.org/rss/project/python-saharaclient/releases.xml" htmlUrl="https://pypi.org/project/python-saharaclient/"/>
        <outline title="PyPI recent updates for python-senlinclient" text="PyPI recent updates for python-senlinclient" description="PyPI recent updates for python-senlinclient" type="rss" xmlUrl="https://pypi.org/rss/project/python-senlinclient/releases.xml" htmlUrl="https://pypi.org/project/python-senlinclient/"/>
        <outline title="PyPI recent updates for python-slugify" text="PyPI recent updates for python-slugify" description="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 title="PyPI recent updates for python-snappy" text="PyPI recent updates for python-snappy" description="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 title="PyPI recent updates for python-socks" text="PyPI recent updates for python-socks" description="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 title="PyPI recent updates for python-stdnum" text="PyPI recent updates for python-stdnum" description="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 title="PyPI recent updates for python-subunit" text="PyPI recent updates for python-subunit" description="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 title="PyPI recent updates for python-swiftclient" text="PyPI recent updates for python-swiftclient" description="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 title="PyPI recent updates for python-systemd" text="PyPI recent updates for python-systemd" description="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 title="PyPI recent updates for python-termstyle" text="PyPI recent updates for python-termstyle" description="PyPI recent updates for python-termstyle" type="rss" xmlUrl="https://pypi.org/rss/project/python-termstyle/releases.xml" htmlUrl="https://pypi.org/project/python-termstyle/"/>
        <outline title="PyPI recent updates for python-troveclient" text="PyPI recent updates for python-troveclient" description="PyPI recent updates for python-troveclient" type="rss" xmlUrl="https://pypi.org/rss/project/python-troveclient/releases.xml" htmlUrl="https://pypi.org/project/python-troveclient/"/>
        <outline title="PyPI recent updates for python-utils" text="PyPI recent updates for python-utils" description="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 title="PyPI recent updates for python-vitrageclient" text="PyPI recent updates for python-vitrageclient" description="PyPI recent updates for python-vitrageclient" type="rss" xmlUrl="https://pypi.org/rss/project/python-vitrageclient/releases.xml" htmlUrl="https://pypi.org/project/python-vitrageclient/"/>
        <outline title="PyPI recent updates for python-vlc" text="PyPI recent updates for python-vlc" description="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 title="PyPI recent updates for python-xlib" text="PyPI recent updates for python-xlib" description="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 title="PyPI recent updates for python-xmp-toolkit" text="PyPI recent updates for python-xmp-toolkit" description="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 title="PyPI recent updates for python-zaqarclient" text="PyPI recent updates for python-zaqarclient" description="PyPI recent updates for python-zaqarclient" type="rss" xmlUrl="https://pypi.org/rss/project/python-zaqarclient/releases.xml" htmlUrl="https://pypi.org/project/python-zaqarclient/"/>
        <outline title="PyPI recent updates for python-zunclient" text="PyPI recent updates for python-zunclient" description="PyPI recent updates for python-zunclient" type="rss" xmlUrl="https://pypi.org/rss/project/python-zunclient/releases.xml" htmlUrl="https://pypi.org/project/python-zunclient/"/>
        <outline title="PyPI recent updates for python2-pythondialog" text="PyPI recent updates for python2-pythondialog" description="PyPI recent updates for python2-pythondialog" type="rss" xmlUrl="https://pypi.org/rss/project/python2-pythondialog/releases.xml" htmlUrl="https://pypi.org/project/python2-pythondialog/"/>
        <outline title="PyPI recent updates for python3-openid" text="PyPI recent updates for python3-openid" description="PyPI recent updates for python3-openid" type="rss" xmlUrl="https://pypi.org/rss/project/python3-openid/releases.xml" htmlUrl="https://pypi.org/project/python3-openid/"/>
        <outline title="PyPI recent updates for python3-saml" text="PyPI recent updates for python3-saml" description="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 title="PyPI recent updates for pythonz-bd" text="PyPI recent updates for pythonz-bd" description="PyPI recent updates for pythonz-bd" type="rss" xmlUrl="https://pypi.org/rss/project/pythonz-bd/releases.xml" htmlUrl="https://pypi.org/project/pythonz-bd/"/>
        <outline title="PyPI recent updates for pythran" text="PyPI recent updates for pythran" description="PyPI recent updates for pythran" type="rss" xmlUrl="https://pypi.org/rss/project/pythran/releases.xml" htmlUrl="https://pypi.org/project/pythran/"/>
        <outline title="PyPI recent updates for pytidylib" text="PyPI recent updates for pytidylib" description="PyPI recent updates for pytidylib" type="rss" xmlUrl="https://pypi.org/rss/project/pytidylib/releases.xml" htmlUrl="https://pypi.org/project/pytidylib/"/>
        <outline title="PyPI recent updates for pytimeparse" text="PyPI recent updates for pytimeparse" description="PyPI recent updates for pytimeparse" type="rss" xmlUrl="https://pypi.org/rss/project/pytimeparse/releases.xml" htmlUrl="https://pypi.org/project/pytimeparse/"/>
        <outline title="PyPI recent updates for pytoml" text="PyPI recent updates for pytoml" description="PyPI recent updates for pytoml" type="rss" xmlUrl="https://pypi.org/rss/project/pytoml/releases.xml" htmlUrl="https://pypi.org/project/pytoml/"/>
        <outline title="PyPI recent updates for pytools" text="PyPI recent updates for pytools" description="PyPI recent updates for pytools" type="rss" xmlUrl="https://pypi.org/rss/project/pytools/releases.xml" htmlUrl="https://pypi.org/project/pytools/"/>
        <outline title="PyPI recent updates for PyTrie" text="PyPI recent updates for PyTrie" description="PyPI recent updates for PyTrie" type="rss" xmlUrl="https://pypi.org/rss/project/PyTrie/releases.xml" htmlUrl="https://pypi.org/project/pytrie/"/>
        <outline title="PyPI recent updates for pytz" text="PyPI recent updates for pytz" description="PyPI recent updates for pytz" type="rss" xmlUrl="https://pypi.org/rss/project/pytz/releases.xml" htmlUrl="https://pypi.org/project/pytz/"/>
        <outline title="PyPI recent updates for pytzdata" text="PyPI recent updates for pytzdata" description="PyPI recent updates for pytzdata" type="rss" xmlUrl="https://pypi.org/rss/project/pytzdata/releases.xml" htmlUrl="https://pypi.org/project/pytzdata/"/>
        <outline title="PyPI recent updates for pytz-deprecation-shim" text="PyPI recent updates for pytz-deprecation-shim" description="PyPI recent updates for pytz-deprecation-shim" type="rss" xmlUrl="https://pypi.org/rss/project/pytz-deprecation-shim/releases.xml" htmlUrl="https://pypi.org/project/pytz-deprecation-shim/"/>
        <outline title="PyPI recent updates for pyu2f" text="PyPI recent updates for pyu2f" description="PyPI recent updates for pyu2f" type="rss" xmlUrl="https://pypi.org/rss/project/pyu2f/releases.xml" htmlUrl="https://pypi.org/project/pyu2f/"/>
        <outline title="PyPI recent updates for pyudev" text="PyPI recent updates for pyudev" description="PyPI recent updates for pyudev" type="rss" xmlUrl="https://pypi.org/rss/project/pyudev/releases.xml" htmlUrl="https://pypi.org/project/pyudev/"/>
        <outline title="PyPI recent updates for pyusb" text="PyPI recent updates for pyusb" description="PyPI recent updates for pyusb" type="rss" xmlUrl="https://pypi.org/rss/project/pyusb/releases.xml" htmlUrl="https://pypi.org/project/pyusb/"/>
        <outline title="PyPI recent updates for PyUtilib" text="PyPI recent updates for PyUtilib" description="PyPI recent updates for PyUtilib" type="rss" xmlUrl="https://pypi.org/rss/project/PyUtilib/releases.xml" htmlUrl="https://pypi.org/project/pyutilib/"/>
        <outline title="PyPI recent updates for PyVirtualDisplay" text="PyPI recent updates for PyVirtualDisplay" description="PyPI recent updates for PyVirtualDisplay" type="rss" xmlUrl="https://pypi.org/rss/project/PyVirtualDisplay/releases.xml" htmlUrl="https://pypi.org/project/pyvirtualdisplay/"/>
        <outline title="PyPI recent updates for PyWavelets" text="PyPI recent updates for PyWavelets" description="PyPI recent updates for PyWavelets" type="rss" xmlUrl="https://pypi.org/rss/project/PyWavelets/releases.xml" htmlUrl="https://pypi.org/project/pywavelets/"/>
        <outline title="PyPI recent updates for pywinrm" text="PyPI recent updates for pywinrm" description="PyPI recent updates for pywinrm" type="rss" xmlUrl="https://pypi.org/rss/project/pywinrm/releases.xml" htmlUrl="https://pypi.org/project/pywinrm/"/>
        <outline title="PyPI recent updates for PyX" text="PyPI recent updates for PyX" description="PyPI recent updates for PyX" type="rss" xmlUrl="https://pypi.org/rss/project/PyX/releases.xml" htmlUrl="https://pypi.org/project/pyx/"/>
        <outline title="PyPI recent updates for pyxattr" text="PyPI recent updates for pyxattr" description="PyPI recent updates for pyxattr" type="rss" xmlUrl="https://pypi.org/rss/project/pyxattr/releases.xml" htmlUrl="https://pypi.org/project/pyxattr/"/>
        <outline title="PyPI recent updates for pyxDamerauLevenshtein" text="PyPI recent updates for pyxDamerauLevenshtein" description="PyPI recent updates for pyxDamerauLevenshtein" type="rss" xmlUrl="https://pypi.org/rss/project/pyxDamerauLevenshtein/releases.xml" htmlUrl="https://pypi.org/project/pyxdameraulevenshtein/"/>
        <outline title="PyPI recent updates for pyxdg" text="PyPI recent updates for pyxdg" description="PyPI recent updates for pyxdg" type="rss" xmlUrl="https://pypi.org/rss/project/pyxdg/releases.xml" htmlUrl="https://pypi.org/project/pyxdg/"/>
        <outline title="PyPI recent updates for PyYAML" text="PyPI recent updates for PyYAML" description="PyPI recent updates for PyYAML" type="rss" xmlUrl="https://pypi.org/rss/project/PyYAML/releases.xml" htmlUrl="https://pypi.org/project/pyyaml/"/>
        <outline title="PyPI recent updates for pyyaml_env_tag" text="PyPI recent updates for pyyaml_env_tag" description="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 title="PyPI recent updates for pyzbar" text="PyPI recent updates for pyzbar" description="PyPI recent updates for pyzbar" type="rss" xmlUrl="https://pypi.org/rss/project/pyzbar/releases.xml" htmlUrl="https://pypi.org/project/pyzbar/"/>
        <outline title="PyPI recent updates for pyzmq" text="PyPI recent updates for pyzmq" description="PyPI recent updates for pyzmq" type="rss" xmlUrl="https://pypi.org/rss/project/pyzmq/releases.xml" htmlUrl="https://pypi.org/project/pyzmq/"/>
        <outline title="PyPI recent updates for Pyzotero" text="PyPI recent updates for Pyzotero" description="PyPI recent updates for Pyzotero" type="rss" xmlUrl="https://pypi.org/rss/project/Pyzotero/releases.xml" htmlUrl="https://pypi.org/project/pyzotero/"/>
        <outline title="PyPI recent updates for QDarkStyle" text="PyPI recent updates for QDarkStyle" description="PyPI recent updates for QDarkStyle" type="rss" xmlUrl="https://pypi.org/rss/project/QDarkStyle/releases.xml" htmlUrl="https://pypi.org/project/qdarkstyle/"/>
        <outline title="PyPI recent updates for qrcode" text="PyPI recent updates for qrcode" description="PyPI recent updates for qrcode" type="rss" xmlUrl="https://pypi.org/rss/project/qrcode/releases.xml" htmlUrl="https://pypi.org/project/qrcode/"/>
        <outline title="PyPI recent updates for QScintilla" text="PyPI recent updates for QScintilla" description="PyPI recent updates for QScintilla" type="rss" xmlUrl="https://pypi.org/rss/project/QScintilla/releases.xml" htmlUrl="https://pypi.org/project/qscintilla/"/>
        <outline title="PyPI recent updates for QtAwesome" text="PyPI recent updates for QtAwesome" description="PyPI recent updates for QtAwesome" type="rss" xmlUrl="https://pypi.org/rss/project/QtAwesome/releases.xml" htmlUrl="https://pypi.org/project/qtawesome/"/>
        <outline title="PyPI recent updates for qtconsole" text="PyPI recent updates for qtconsole" description="PyPI recent updates for qtconsole" type="rss" xmlUrl="https://pypi.org/rss/project/qtconsole/releases.xml" htmlUrl="https://pypi.org/project/qtconsole/"/>
        <outline title="PyPI recent updates for QtPy" text="PyPI recent updates for QtPy" description="PyPI recent updates for QtPy" type="rss" xmlUrl="https://pypi.org/rss/project/QtPy/releases.xml" htmlUrl="https://pypi.org/project/qtpy/"/>
        <outline title="PyPI recent updates for qtsass" text="PyPI recent updates for qtsass" description="PyPI recent updates for qtsass" type="rss" xmlUrl="https://pypi.org/rss/project/qtsass/releases.xml" htmlUrl="https://pypi.org/project/qtsass/"/>
        <outline title="PyPI recent updates for quantities" text="PyPI recent updates for quantities" description="PyPI recent updates for quantities" type="rss" xmlUrl="https://pypi.org/rss/project/quantities/releases.xml" htmlUrl="https://pypi.org/project/quantities/"/>
        <outline title="PyPI recent updates for radon" text="PyPI recent updates for radon" description="PyPI recent updates for radon" type="rss" xmlUrl="https://pypi.org/rss/project/radon/releases.xml" htmlUrl="https://pypi.org/project/radon/"/>
        <outline title="PyPI recent updates for raet" text="PyPI recent updates for raet" description="PyPI recent updates for raet" type="rss" xmlUrl="https://pypi.org/rss/project/raet/releases.xml" htmlUrl="https://pypi.org/project/raet/"/>
        <outline title="PyPI recent updates for random2" text="PyPI recent updates for random2" description="PyPI recent updates for random2" type="rss" xmlUrl="https://pypi.org/rss/project/random2/releases.xml" htmlUrl="https://pypi.org/project/random2/"/>
        <outline title="PyPI recent updates for rarfile" text="PyPI recent updates for rarfile" description="PyPI recent updates for rarfile" type="rss" xmlUrl="https://pypi.org/rss/project/rarfile/releases.xml" htmlUrl="https://pypi.org/project/rarfile/"/>
        <outline title="PyPI recent updates for ratelimit" text="PyPI recent updates for ratelimit" description="PyPI recent updates for ratelimit" type="rss" xmlUrl="https://pypi.org/rss/project/ratelimit/releases.xml" htmlUrl="https://pypi.org/project/ratelimit/"/>
        <outline title="PyPI recent updates for rcssmin" text="PyPI recent updates for rcssmin" description="PyPI recent updates for rcssmin" type="rss" xmlUrl="https://pypi.org/rss/project/rcssmin/releases.xml" htmlUrl="https://pypi.org/project/rcssmin/"/>
        <outline title="PyPI recent updates for rdflib" text="PyPI recent updates for rdflib" description="PyPI recent updates for rdflib" type="rss" xmlUrl="https://pypi.org/rss/project/rdflib/releases.xml" htmlUrl="https://pypi.org/project/rdflib/"/>
        <outline title="PyPI recent updates for re-assert" text="PyPI recent updates for re-assert" description="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 title="PyPI recent updates for readme_renderer" text="PyPI recent updates for readme_renderer" description="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 title="PyPI recent updates for readthedocs-sphinx-ext" text="PyPI recent updates for readthedocs-sphinx-ext" description="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 title="PyPI recent updates for rebulk" text="PyPI recent updates for rebulk" description="PyPI recent updates for rebulk" type="rss" xmlUrl="https://pypi.org/rss/project/rebulk/releases.xml" htmlUrl="https://pypi.org/project/rebulk/"/>
        <outline title="PyPI recent updates for recommonmark" text="PyPI recent updates for recommonmark" description="PyPI recent updates for recommonmark" type="rss" xmlUrl="https://pypi.org/rss/project/recommonmark/releases.xml" htmlUrl="https://pypi.org/project/recommonmark/"/>
        <outline title="PyPI recent updates for redis" text="PyPI recent updates for redis" description="PyPI recent updates for redis" type="rss" xmlUrl="https://pypi.org/rss/project/redis/releases.xml" htmlUrl="https://pypi.org/project/redis/"/>
        <outline title="PyPI recent updates for rednose" text="PyPI recent updates for rednose" description="PyPI recent updates for rednose" type="rss" xmlUrl="https://pypi.org/rss/project/rednose/releases.xml" htmlUrl="https://pypi.org/project/rednose/"/>
        <outline title="PyPI recent updates for reedsolo" text="PyPI recent updates for reedsolo" description="PyPI recent updates for reedsolo" type="rss" xmlUrl="https://pypi.org/rss/project/reedsolo/releases.xml" htmlUrl="https://pypi.org/project/reedsolo/"/>
        <outline title="PyPI recent updates for reflink" text="PyPI recent updates for reflink" description="PyPI recent updates for reflink" type="rss" xmlUrl="https://pypi.org/rss/project/reflink/releases.xml" htmlUrl="https://pypi.org/project/reflink/"/>
        <outline title="PyPI recent updates for regex" text="PyPI recent updates for regex" description="PyPI recent updates for regex" type="rss" xmlUrl="https://pypi.org/rss/project/regex/releases.xml" htmlUrl="https://pypi.org/project/regex/"/>
        <outline title="PyPI recent updates for rencode" text="PyPI recent updates for rencode" description="PyPI recent updates for rencode" type="rss" xmlUrl="https://pypi.org/rss/project/rencode/releases.xml" htmlUrl="https://pypi.org/project/rencode/"/>
        <outline title="PyPI recent updates for reno" text="PyPI recent updates for reno" description="PyPI recent updates for reno" type="rss" xmlUrl="https://pypi.org/rss/project/reno/releases.xml" htmlUrl="https://pypi.org/project/reno/"/>
        <outline title="PyPI recent updates for reportlab" text="PyPI recent updates for reportlab" description="PyPI recent updates for reportlab" type="rss" xmlUrl="https://pypi.org/rss/project/reportlab/releases.xml" htmlUrl="https://pypi.org/project/reportlab/"/>
        <outline title="PyPI recent updates for repoze.lru" text="PyPI recent updates for repoze.lru" description="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 title="PyPI recent updates for repoze.sphinx.autointerface" text="PyPI recent updates for repoze.sphinx.autointerface" description="PyPI recent updates for repoze.sphinx.autointerface" type="rss" xmlUrl="https://pypi.org/rss/project/repoze.sphinx.autointerface/releases.xml" htmlUrl="https://pypi.org/project/repoze-sphinx-autointerface/"/>
        <outline title="PyPI recent updates for requests" text="PyPI recent updates for requests" description="PyPI recent updates for requests" type="rss" xmlUrl="https://pypi.org/rss/project/requests/releases.xml" htmlUrl="https://pypi.org/project/requests/"/>
        <outline title="PyPI recent updates for requests-cache" text="PyPI recent updates for requests-cache" description="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 title="PyPI recent updates for requests-credssp" text="PyPI recent updates for requests-credssp" description="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 title="PyPI recent updates for requests-file" text="PyPI recent updates for requests-file" description="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 title="PyPI recent updates for requests-futures" text="PyPI recent updates for requests-futures" description="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 title="PyPI recent updates for requests-kerberos" text="PyPI recent updates for requests-kerberos" description="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 title="PyPI recent updates for requests-mock" text="PyPI recent updates for requests-mock" description="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 title="PyPI recent updates for requests-oauthlib" text="PyPI recent updates for requests-oauthlib" description="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 title="PyPI recent updates for requests-pkcs12" text="PyPI recent updates for requests-pkcs12" description="PyPI recent updates for requests-pkcs12" type="rss" xmlUrl="https://pypi.org/rss/project/requests-pkcs12/releases.xml" htmlUrl="https://pypi.org/project/requests-pkcs12/"/>
        <outline title="PyPI recent updates for requests-toolbelt" text="PyPI recent updates for requests-toolbelt" description="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 title="PyPI recent updates for requests-unixsocket" text="PyPI recent updates for requests-unixsocket" description="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 title="PyPI recent updates for requests_download" text="PyPI recent updates for requests_download" description="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 title="PyPI recent updates for requests_ntlm" text="PyPI recent updates for requests_ntlm" description="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 title="PyPI recent updates for requestsexceptions" text="PyPI recent updates for requestsexceptions" description="PyPI recent updates for requestsexceptions" type="rss" xmlUrl="https://pypi.org/rss/project/requestsexceptions/releases.xml" htmlUrl="https://pypi.org/project/requestsexceptions/"/>
        <outline title="PyPI recent updates for resolvelib" text="PyPI recent updates for resolvelib" description="PyPI recent updates for resolvelib" type="rss" xmlUrl="https://pypi.org/rss/project/resolvelib/releases.xml" htmlUrl="https://pypi.org/project/resolvelib/"/>
        <outline title="PyPI recent updates for responses" text="PyPI recent updates for responses" description="PyPI recent updates for responses" type="rss" xmlUrl="https://pypi.org/rss/project/responses/releases.xml" htmlUrl="https://pypi.org/project/responses/"/>
        <outline title="PyPI recent updates for restructuredtext_lint" text="PyPI recent updates for restructuredtext_lint" description="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 title="PyPI recent updates for resumable-urlretrieve" text="PyPI recent updates for resumable-urlretrieve" description="PyPI recent updates for resumable-urlretrieve" type="rss" xmlUrl="https://pypi.org/rss/project/resumable-urlretrieve/releases.xml" htmlUrl="https://pypi.org/project/resumable-urlretrieve/"/>
        <outline title="PyPI recent updates for retry-decorator" text="PyPI recent updates for retry-decorator" description="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 title="PyPI recent updates for retrying" text="PyPI recent updates for retrying" description="PyPI recent updates for retrying" type="rss" xmlUrl="https://pypi.org/rss/project/retrying/releases.xml" htmlUrl="https://pypi.org/project/retrying/"/>
        <outline title="PyPI recent updates for rfc3339-validator" text="PyPI recent updates for rfc3339-validator" description="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 title="PyPI recent updates for rfc3986" text="PyPI recent updates for rfc3986" description="PyPI recent updates for rfc3986" type="rss" xmlUrl="https://pypi.org/rss/project/rfc3986/releases.xml" htmlUrl="https://pypi.org/project/rfc3986/"/>
        <outline title="PyPI recent updates for rfc3986-validator" text="PyPI recent updates for rfc3986-validator" description="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 title="PyPI recent updates for rfc3987" text="PyPI recent updates for rfc3987" description="PyPI recent updates for rfc3987" type="rss" xmlUrl="https://pypi.org/rss/project/rfc3987/releases.xml" htmlUrl="https://pypi.org/project/rfc3987/"/>
        <outline title="PyPI recent updates for rich" text="PyPI recent updates for rich" description="PyPI recent updates for rich" type="rss" xmlUrl="https://pypi.org/rss/project/rich/releases.xml" htmlUrl="https://pypi.org/project/rich/"/>
        <outline title="PyPI recent updates for rjsmin" text="PyPI recent updates for rjsmin" description="PyPI recent updates for rjsmin" type="rss" xmlUrl="https://pypi.org/rss/project/rjsmin/releases.xml" htmlUrl="https://pypi.org/project/rjsmin/"/>
        <outline title="PyPI recent updates for robot-detection" text="PyPI recent updates for robot-detection" description="PyPI recent updates for robot-detection" type="rss" xmlUrl="https://pypi.org/rss/project/robot-detection/releases.xml" htmlUrl="https://pypi.org/project/robot-detection/"/>
        <outline title="PyPI recent updates for roman" text="PyPI recent updates for roman" description="PyPI recent updates for roman" type="rss" xmlUrl="https://pypi.org/rss/project/roman/releases.xml" htmlUrl="https://pypi.org/project/roman/"/>
        <outline title="PyPI recent updates for rope" text="PyPI recent updates for rope" description="PyPI recent updates for rope" type="rss" xmlUrl="https://pypi.org/rss/project/rope/releases.xml" htmlUrl="https://pypi.org/project/rope/"/>
        <outline title="PyPI recent updates for ropemode" text="PyPI recent updates for ropemode" description="PyPI recent updates for ropemode" type="rss" xmlUrl="https://pypi.org/rss/project/ropemode/releases.xml" htmlUrl="https://pypi.org/project/ropemode/"/>
        <outline title="PyPI recent updates for Routes" text="PyPI recent updates for Routes" description="PyPI recent updates for Routes" type="rss" xmlUrl="https://pypi.org/rss/project/Routes/releases.xml" htmlUrl="https://pypi.org/project/routes/"/>
        <outline title="PyPI recent updates for rply" text="PyPI recent updates for rply" description="PyPI recent updates for rply" type="rss" xmlUrl="https://pypi.org/rss/project/rply/releases.xml" htmlUrl="https://pypi.org/project/rply/"/>
        <outline title="PyPI recent updates for rpy2" text="PyPI recent updates for rpy2" description="PyPI recent updates for rpy2" type="rss" xmlUrl="https://pypi.org/rss/project/rpy2/releases.xml" htmlUrl="https://pypi.org/project/rpy2/"/>
        <outline title="PyPI recent updates for rpyc" text="PyPI recent updates for rpyc" description="PyPI recent updates for rpyc" type="rss" xmlUrl="https://pypi.org/rss/project/rpyc/releases.xml" htmlUrl="https://pypi.org/project/rpyc/"/>
        <outline title="PyPI recent updates for rq" text="PyPI recent updates for rq" description="PyPI recent updates for rq" type="rss" xmlUrl="https://pypi.org/rss/project/rq/releases.xml" htmlUrl="https://pypi.org/project/rq/"/>
        <outline title="PyPI recent updates for rsa" text="PyPI recent updates for rsa" description="PyPI recent updates for rsa" type="rss" xmlUrl="https://pypi.org/rss/project/rsa/releases.xml" htmlUrl="https://pypi.org/project/rsa/"/>
        <outline title="PyPI recent updates for rst.linker" text="PyPI recent updates for rst.linker" description="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 title="PyPI recent updates for RTIMULib" text="PyPI recent updates for RTIMULib" description="PyPI recent updates for RTIMULib" type="rss" xmlUrl="https://pypi.org/rss/project/RTIMULib/releases.xml" htmlUrl="https://pypi.org/project/rtimulib/"/>
        <outline title="PyPI recent updates for rtslib-fb" text="PyPI recent updates for rtslib-fb" description="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 title="PyPI recent updates for ruamel.std.pathlib" text="PyPI recent updates for ruamel.std.pathlib" description="PyPI recent updates for ruamel.std.pathlib" type="rss" xmlUrl="https://pypi.org/rss/project/ruamel.std.pathlib/releases.xml" htmlUrl="https://pypi.org/project/ruamel-std-pathlib/"/>
        <outline title="PyPI recent updates for ruamel.yaml" text="PyPI recent updates for ruamel.yaml" description="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 title="PyPI recent updates for ruamel.yaml.clib" text="PyPI recent updates for ruamel.yaml.clib" description="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 title="PyPI recent updates for Rx" text="PyPI recent updates for Rx" description="PyPI recent updates for Rx" type="rss" xmlUrl="https://pypi.org/rss/project/Rx/releases.xml" htmlUrl="https://pypi.org/project/rx/"/>
        <outline title="PyPI recent updates for ryu" text="PyPI recent updates for ryu" description="PyPI recent updates for ryu" type="rss" xmlUrl="https://pypi.org/rss/project/ryu/releases.xml" htmlUrl="https://pypi.org/project/ryu/"/>
        <outline title="PyPI recent updates for s3transfer" text="PyPI recent updates for s3transfer" description="PyPI recent updates for s3transfer" type="rss" xmlUrl="https://pypi.org/rss/project/s3transfer/releases.xml" htmlUrl="https://pypi.org/project/s3transfer/"/>
        <outline title="PyPI recent updates for sabyenc" text="PyPI recent updates for sabyenc" description="PyPI recent updates for sabyenc" type="rss" xmlUrl="https://pypi.org/rss/project/sabyenc/releases.xml" htmlUrl="https://pypi.org/project/sabyenc/"/>
        <outline title="PyPI recent updates for SaltTesting" text="PyPI recent updates for SaltTesting" description="PyPI recent updates for SaltTesting" type="rss" xmlUrl="https://pypi.org/rss/project/SaltTesting/releases.xml" htmlUrl="https://pypi.org/project/salttesting/"/>
        <outline title="PyPI recent updates for sarge" text="PyPI recent updates for sarge" description="PyPI recent updates for sarge" type="rss" xmlUrl="https://pypi.org/rss/project/sarge/releases.xml" htmlUrl="https://pypi.org/project/sarge/"/>
        <outline title="PyPI recent updates for sarif-om" text="PyPI recent updates for sarif-om" description="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 title="PyPI recent updates for scandir" text="PyPI recent updates for scandir" description="PyPI recent updates for scandir" type="rss" xmlUrl="https://pypi.org/rss/project/scandir/releases.xml" htmlUrl="https://pypi.org/project/scandir/"/>
        <outline title="PyPI recent updates for scikit-build" text="PyPI recent updates for scikit-build" description="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 title="PyPI recent updates for scipy" text="PyPI recent updates for scipy" description="PyPI recent updates for scipy" type="rss" xmlUrl="https://pypi.org/rss/project/scipy/releases.xml" htmlUrl="https://pypi.org/project/scipy/"/>
        <outline title="PyPI recent updates for scripttest" text="PyPI recent updates for scripttest" description="PyPI recent updates for scripttest" type="rss" xmlUrl="https://pypi.org/rss/project/scripttest/releases.xml" htmlUrl="https://pypi.org/project/scripttest/"/>
        <outline title="PyPI recent updates for scrypt" text="PyPI recent updates for scrypt" description="PyPI recent updates for scrypt" type="rss" xmlUrl="https://pypi.org/rss/project/scrypt/releases.xml" htmlUrl="https://pypi.org/project/scrypt/"/>
        <outline title="PyPI recent updates for SecretStorage" text="PyPI recent updates for SecretStorage" description="PyPI recent updates for SecretStorage" type="rss" xmlUrl="https://pypi.org/rss/project/SecretStorage/releases.xml" htmlUrl="https://pypi.org/project/secretstorage/"/>
        <outline title="PyPI recent updates for selenium" text="PyPI recent updates for selenium" description="PyPI recent updates for selenium" type="rss" xmlUrl="https://pypi.org/rss/project/selenium/releases.xml" htmlUrl="https://pypi.org/project/selenium/"/>
        <outline title="PyPI recent updates for semantic_version" text="PyPI recent updates for semantic_version" description="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 title="PyPI recent updates for semver" text="PyPI recent updates for semver" description="PyPI recent updates for semver" type="rss" xmlUrl="https://pypi.org/rss/project/semver/releases.xml" htmlUrl="https://pypi.org/project/semver/"/>
        <outline title="PyPI recent updates for Send2Trash" text="PyPI recent updates for Send2Trash" description="PyPI recent updates for Send2Trash" type="rss" xmlUrl="https://pypi.org/rss/project/Send2Trash/releases.xml" htmlUrl="https://pypi.org/project/send2trash/"/>
        <outline title="PyPI recent updates for sense-hat" text="PyPI recent updates for sense-hat" description="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 title="PyPI recent updates for sentinels" text="PyPI recent updates for sentinels" description="PyPI recent updates for sentinels" type="rss" xmlUrl="https://pypi.org/rss/project/sentinels/releases.xml" htmlUrl="https://pypi.org/project/sentinels/"/>
        <outline title="PyPI recent updates for sentry-sdk" text="PyPI recent updates for sentry-sdk" description="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 title="PyPI recent updates for serpent" text="PyPI recent updates for serpent" description="PyPI recent updates for serpent" type="rss" xmlUrl="https://pypi.org/rss/project/serpent/releases.xml" htmlUrl="https://pypi.org/project/serpent/"/>
        <outline title="PyPI recent updates for serverfiles" text="PyPI recent updates for serverfiles" description="PyPI recent updates for serverfiles" type="rss" xmlUrl="https://pypi.org/rss/project/serverfiles/releases.xml" htmlUrl="https://pypi.org/project/serverfiles/"/>
        <outline title="PyPI recent updates for service_identity" text="PyPI recent updates for service_identity" description="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 title="PyPI recent updates for setproctitle" text="PyPI recent updates for setproctitle" description="PyPI recent updates for setproctitle" type="rss" xmlUrl="https://pypi.org/rss/project/setproctitle/releases.xml" htmlUrl="https://pypi.org/project/setproctitle/"/>
        <outline title="PyPI recent updates for setuptools" text="PyPI recent updates for setuptools" description="PyPI recent updates for setuptools" type="rss" xmlUrl="https://pypi.org/rss/project/setuptools/releases.xml" htmlUrl="https://pypi.org/project/setuptools/"/>
        <outline title="PyPI recent updates for setuptools-git" text="PyPI recent updates for setuptools-git" description="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 title="PyPI recent updates for setuptools-rust" text="PyPI recent updates for setuptools-rust" description="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 title="PyPI recent updates for setuptools-scm-git-archive" text="PyPI recent updates for setuptools-scm-git-archive" description="PyPI recent updates for setuptools-scm-git-archive" type="rss" xmlUrl="https://pypi.org/rss/project/setuptools-scm-git-archive/releases.xml" htmlUrl="https://pypi.org/project/setuptools-scm-git-archive/"/>
        <outline title="PyPI recent updates for setuptools_scm" text="PyPI recent updates for setuptools_scm" description="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 title="PyPI recent updates for setuptools_trial" text="PyPI recent updates for setuptools_trial" description="PyPI recent updates for setuptools_trial" type="rss" xmlUrl="https://pypi.org/rss/project/setuptools_trial/releases.xml" htmlUrl="https://pypi.org/project/setuptools-trial/"/>
        <outline title="PyPI recent updates for sexpdata" text="PyPI recent updates for sexpdata" description="PyPI recent updates for sexpdata" type="rss" xmlUrl="https://pypi.org/rss/project/sexpdata/releases.xml" htmlUrl="https://pypi.org/project/sexpdata/"/>
        <outline title="PyPI recent updates for sgmllib3k" text="PyPI recent updates for sgmllib3k" description="PyPI recent updates for sgmllib3k" type="rss" xmlUrl="https://pypi.org/rss/project/sgmllib3k/releases.xml" htmlUrl="https://pypi.org/project/sgmllib3k/"/>
        <outline title="PyPI recent updates for sh" text="PyPI recent updates for sh" description="PyPI recent updates for sh" type="rss" xmlUrl="https://pypi.org/rss/project/sh/releases.xml" htmlUrl="https://pypi.org/project/sh/"/>
        <outline title="PyPI recent updates for shiboken2" text="PyPI recent updates for shiboken2" description="PyPI recent updates for shiboken2" type="rss" xmlUrl="https://pypi.org/rss/project/shiboken2/releases.xml" htmlUrl="https://pypi.org/project/shiboken2/"/>
        <outline title="PyPI recent updates for shutilwhich" text="PyPI recent updates for shutilwhich" description="PyPI recent updates for shutilwhich" type="rss" xmlUrl="https://pypi.org/rss/project/shutilwhich/releases.xml" htmlUrl="https://pypi.org/project/shutilwhich/"/>
        <outline title="PyPI recent updates for signature-dispatch" text="PyPI recent updates for signature-dispatch" description="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 title="PyPI recent updates for simpervisor" text="PyPI recent updates for simpervisor" description="PyPI recent updates for simpervisor" type="rss" xmlUrl="https://pypi.org/rss/project/simpervisor/releases.xml" htmlUrl="https://pypi.org/project/simpervisor/"/>
        <outline title="PyPI recent updates for simplebayes" text="PyPI recent updates for simplebayes" description="PyPI recent updates for simplebayes" type="rss" xmlUrl="https://pypi.org/rss/project/simplebayes/releases.xml" htmlUrl="https://pypi.org/project/simplebayes/"/>
        <outline title="PyPI recent updates for simpleeval" text="PyPI recent updates for simpleeval" description="PyPI recent updates for simpleeval" type="rss" xmlUrl="https://pypi.org/rss/project/simpleeval/releases.xml" htmlUrl="https://pypi.org/project/simpleeval/"/>
        <outline title="PyPI recent updates for simplegeneric" text="PyPI recent updates for simplegeneric" description="PyPI recent updates for simplegeneric" type="rss" xmlUrl="https://pypi.org/rss/project/simplegeneric/releases.xml" htmlUrl="https://pypi.org/project/simplegeneric/"/>
        <outline title="PyPI recent updates for simplejson" text="PyPI recent updates for simplejson" description="PyPI recent updates for simplejson" type="rss" xmlUrl="https://pypi.org/rss/project/simplejson/releases.xml" htmlUrl="https://pypi.org/project/simplejson/"/>
        <outline title="PyPI recent updates for simplekml" text="PyPI recent updates for simplekml" description="PyPI recent updates for simplekml" type="rss" xmlUrl="https://pypi.org/rss/project/simplekml/releases.xml" htmlUrl="https://pypi.org/project/simplekml/"/>
        <outline title="PyPI recent updates for SimpleSoapy" text="PyPI recent updates for SimpleSoapy" description="PyPI recent updates for SimpleSoapy" type="rss" xmlUrl="https://pypi.org/rss/project/SimpleSoapy/releases.xml" htmlUrl="https://pypi.org/project/simplesoapy/"/>
        <outline title="PyPI recent updates for SimpleSpectral" text="PyPI recent updates for SimpleSpectral" description="PyPI recent updates for SimpleSpectral" type="rss" xmlUrl="https://pypi.org/rss/project/SimpleSpectral/releases.xml" htmlUrl="https://pypi.org/project/simplespectral/"/>
        <outline title="PyPI recent updates for simpy" text="PyPI recent updates for simpy" description="PyPI recent updates for simpy" type="rss" xmlUrl="https://pypi.org/rss/project/simpy/releases.xml" htmlUrl="https://pypi.org/project/simpy/"/>
        <outline title="PyPI recent updates for SIP" text="PyPI recent updates for SIP" description="PyPI recent updates for SIP" type="rss" xmlUrl="https://pypi.org/rss/project/SIP/releases.xml" htmlUrl="https://pypi.org/project/sip/"/>
        <outline title="PyPI recent updates for six" text="PyPI recent updates for six" description="PyPI recent updates for six" type="rss" xmlUrl="https://pypi.org/rss/project/six/releases.xml" htmlUrl="https://pypi.org/project/six/"/>
        <outline title="PyPI recent updates for slackclient" text="PyPI recent updates for slackclient" description="PyPI recent updates for slackclient" type="rss" xmlUrl="https://pypi.org/rss/project/slackclient/releases.xml" htmlUrl="https://pypi.org/project/slackclient/"/>
        <outline title="PyPI recent updates for slimit" text="PyPI recent updates for slimit" description="PyPI recent updates for slimit" type="rss" xmlUrl="https://pypi.org/rss/project/slimit/releases.xml" htmlUrl="https://pypi.org/project/slimit/"/>
        <outline title="PyPI recent updates for slixmpp" text="PyPI recent updates for slixmpp" description="PyPI recent updates for slixmpp" type="rss" xmlUrl="https://pypi.org/rss/project/slixmpp/releases.xml" htmlUrl="https://pypi.org/project/slixmpp/"/>
        <outline title="PyPI recent updates for smartypants" text="PyPI recent updates for smartypants" description="PyPI recent updates for smartypants" type="rss" xmlUrl="https://pypi.org/rss/project/smartypants/releases.xml" htmlUrl="https://pypi.org/project/smartypants/"/>
        <outline title="PyPI recent updates for smmap" text="PyPI recent updates for smmap" description="PyPI recent updates for smmap" type="rss" xmlUrl="https://pypi.org/rss/project/smmap/releases.xml" htmlUrl="https://pypi.org/project/smmap/"/>
        <outline title="PyPI recent updates for smmap2" text="PyPI recent updates for smmap2" description="PyPI recent updates for smmap2" type="rss" xmlUrl="https://pypi.org/rss/project/smmap2/releases.xml" htmlUrl="https://pypi.org/project/smmap2/"/>
        <outline title="PyPI recent updates for snakeoil" text="PyPI recent updates for snakeoil" description="PyPI recent updates for snakeoil" type="rss" xmlUrl="https://pypi.org/rss/project/snakeoil/releases.xml" htmlUrl="https://pypi.org/project/snakeoil/"/>
        <outline title="PyPI recent updates for snaketrace" text="PyPI recent updates for snaketrace" description="PyPI recent updates for snaketrace" type="rss" xmlUrl="https://pypi.org/rss/project/snaketrace/releases.xml" htmlUrl="https://pypi.org/project/snaketrace/"/>
        <outline title="PyPI recent updates for snapshottest" text="PyPI recent updates for snapshottest" description="PyPI recent updates for snapshottest" type="rss" xmlUrl="https://pypi.org/rss/project/snapshottest/releases.xml" htmlUrl="https://pypi.org/project/snapshottest/"/>
        <outline title="PyPI recent updates for sniffio" text="PyPI recent updates for sniffio" description="PyPI recent updates for sniffio" type="rss" xmlUrl="https://pypi.org/rss/project/sniffio/releases.xml" htmlUrl="https://pypi.org/project/sniffio/"/>
        <outline title="PyPI recent updates for snowballstemmer" text="PyPI recent updates for snowballstemmer" description="PyPI recent updates for snowballstemmer" type="rss" xmlUrl="https://pypi.org/rss/project/snowballstemmer/releases.xml" htmlUrl="https://pypi.org/project/snowballstemmer/"/>
        <outline title="PyPI recent updates for socketIO-client" text="PyPI recent updates for socketIO-client" description="PyPI recent updates for socketIO-client" type="rss" xmlUrl="https://pypi.org/rss/project/socketIO-client/releases.xml" htmlUrl="https://pypi.org/project/socketio-client/"/>
        <outline title="PyPI recent updates for socketIO-client-nexus" text="PyPI recent updates for socketIO-client-nexus" description="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 title="PyPI recent updates for socketpool" text="PyPI recent updates for socketpool" description="PyPI recent updates for socketpool" type="rss" xmlUrl="https://pypi.org/rss/project/socketpool/releases.xml" htmlUrl="https://pypi.org/project/socketpool/"/>
        <outline title="PyPI recent updates for sortedcontainers" text="PyPI recent updates for sortedcontainers" description="PyPI recent updates for sortedcontainers" type="rss" xmlUrl="https://pypi.org/rss/project/sortedcontainers/releases.xml" htmlUrl="https://pypi.org/project/sortedcontainers/"/>
        <outline title="PyPI recent updates for soupsieve" text="PyPI recent updates for soupsieve" description="PyPI recent updates for soupsieve" type="rss" xmlUrl="https://pypi.org/rss/project/soupsieve/releases.xml" htmlUrl="https://pypi.org/project/soupsieve/"/>
        <outline title="PyPI recent updates for SPARQLWrapper" text="PyPI recent updates for SPARQLWrapper" description="PyPI recent updates for SPARQLWrapper" type="rss" xmlUrl="https://pypi.org/rss/project/SPARQLWrapper/releases.xml" htmlUrl="https://pypi.org/project/sparqlwrapper/"/>
        <outline title="PyPI recent updates for speaklater" text="PyPI recent updates for speaklater" description="PyPI recent updates for speaklater" type="rss" xmlUrl="https://pypi.org/rss/project/speaklater/releases.xml" htmlUrl="https://pypi.org/project/speaklater/"/>
        <outline title="PyPI recent updates for speg" text="PyPI recent updates for speg" description="PyPI recent updates for speg" type="rss" xmlUrl="https://pypi.org/rss/project/speg/releases.xml" htmlUrl="https://pypi.org/project/speg/"/>
        <outline title="PyPI recent updates for Sphinx" text="PyPI recent updates for Sphinx" description="PyPI recent updates for Sphinx" type="rss" xmlUrl="https://pypi.org/rss/project/Sphinx/releases.xml" htmlUrl="https://pypi.org/project/sphinx/"/>
        <outline title="PyPI recent updates for sphinx-ansible-theme" text="PyPI recent updates for sphinx-ansible-theme" description="PyPI recent updates for sphinx-ansible-theme" type="rss" xmlUrl="https://pypi.org/rss/project/sphinx_ansible_theme/releases.xml" htmlUrl="https://pypi.org/project/sphinx-ansible-theme/"/>
        <outline title="PyPI recent updates for sphinx-autodoc-typehints" text="PyPI recent updates for sphinx-autodoc-typehints" description="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 title="PyPI recent updates for sphinx-bootstrap-theme" text="PyPI recent updates for sphinx-bootstrap-theme" description="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 title="PyPI recent updates for sphinx-epytext" text="PyPI recent updates for sphinx-epytext" description="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 title="PyPI recent updates for sphinx-gallery" text="PyPI recent updates for sphinx-gallery" description="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 title="PyPI recent updates for sphinx-issues" text="PyPI recent updates for sphinx-issues" description="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 title="PyPI recent updates for sphinx-jinja" text="PyPI recent updates for sphinx-jinja" description="PyPI recent updates for sphinx-jinja" type="rss" xmlUrl="https://pypi.org/rss/project/sphinx-jinja/releases.xml" htmlUrl="https://pypi.org/project/sphinx-jinja/"/>
        <outline title="PyPI recent updates for sphinx-lv2-theme" text="PyPI recent updates for sphinx-lv2-theme" description="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 title="PyPI recent updates for sphinx-multiversion" text="PyPI recent updates for sphinx-multiversion" description="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 title="PyPI recent updates for sphinx-notfound-page" text="PyPI recent updates for sphinx-notfound-page" description="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 title="PyPI recent updates for sphinx-panels" text="PyPI recent updates for sphinx-panels" description="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 title="PyPI recent updates for sphinx-prompt" text="PyPI recent updates for sphinx-prompt" description="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 title="PyPI recent updates for sphinx-rtd-theme" text="PyPI recent updates for sphinx-rtd-theme" description="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 title="PyPI recent updates for sphinx-tabs" text="PyPI recent updates for sphinx-tabs" description="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 title="PyPI recent updates for sphinx-testing" text="PyPI recent updates for sphinx-testing" description="PyPI recent updates for sphinx-testing" type="rss" xmlUrl="https://pypi.org/rss/project/sphinx-testing/releases.xml" htmlUrl="https://pypi.org/project/sphinx-testing/"/>
        <outline title="PyPI recent updates for sphinx_celery" text="PyPI recent updates for sphinx_celery" description="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 title="PyPI recent updates for sphinx_py3doc_enhanced_theme" text="PyPI recent updates for sphinx_py3doc_enhanced_theme" description="PyPI recent updates for sphinx_py3doc_enhanced_theme" type="rss" xmlUrl="https://pypi.org/rss/project/sphinx_py3doc_enhanced_theme/releases.xml" htmlUrl="https://pypi.org/project/sphinx-py3doc-enhanced-theme/"/>
        <outline title="PyPI recent updates for sphinx_selective_exclude" text="PyPI recent updates for sphinx_selective_exclude" description="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 title="PyPI recent updates for sphinxcontrib-apidoc" text="PyPI recent updates for sphinxcontrib-apidoc" description="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 title="PyPI recent updates for sphinxcontrib-applehelp" text="PyPI recent updates for sphinxcontrib-applehelp" description="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 title="PyPI recent updates for sphinxcontrib-asyncio" text="PyPI recent updates for sphinxcontrib-asyncio" description="PyPI recent updates for sphinxcontrib-asyncio" type="rss" xmlUrl="https://pypi.org/rss/project/sphinxcontrib-asyncio/releases.xml" htmlUrl="https://pypi.org/project/sphinxcontrib-asyncio/"/>
        <outline title="PyPI recent updates for sphinxcontrib-bibtex" text="PyPI recent updates for sphinxcontrib-bibtex" description="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 title="PyPI recent updates for sphinxcontrib-blockdiag" text="PyPI recent updates for sphinxcontrib-blockdiag" description="PyPI recent updates for sphinxcontrib-blockdiag" type="rss" xmlUrl="https://pypi.org/rss/project/sphinxcontrib-blockdiag/releases.xml" htmlUrl="https://pypi.org/project/sphinxcontrib-blockdiag/"/>
        <outline title="PyPI recent updates for sphinxcontrib-devhelp" text="PyPI recent updates for sphinxcontrib-devhelp" description="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 title="PyPI recent updates for sphinxcontrib-doxylink" text="PyPI recent updates for sphinxcontrib-doxylink" description="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 title="PyPI recent updates for sphinxcontrib-htmlhelp" text="PyPI recent updates for sphinxcontrib-htmlhelp" description="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 title="PyPI recent updates for sphinxcontrib-httpdomain" text="PyPI recent updates for sphinxcontrib-httpdomain" description="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 title="PyPI recent updates for sphinxcontrib-httpexample" text="PyPI recent updates for sphinxcontrib-httpexample" description="PyPI recent updates for sphinxcontrib-httpexample" type="rss" xmlUrl="https://pypi.org/rss/project/sphinxcontrib-httpexample/releases.xml" htmlUrl="https://pypi.org/project/sphinxcontrib-httpexample/"/>
        <outline title="PyPI recent updates for sphinxcontrib-jsmath" text="PyPI recent updates for sphinxcontrib-jsmath" description="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 title="PyPI recent updates for sphinxcontrib-log-cabinet" text="PyPI recent updates for sphinxcontrib-log-cabinet" description="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 title="PyPI recent updates for sphinxcontrib-newsfeed" text="PyPI recent updates for sphinxcontrib-newsfeed" description="PyPI recent updates for sphinxcontrib-newsfeed" type="rss" xmlUrl="https://pypi.org/rss/project/sphinxcontrib-newsfeed/releases.xml" htmlUrl="https://pypi.org/project/sphinxcontrib-newsfeed/"/>
        <outline title="PyPI recent updates for sphinxcontrib-programoutput" text="PyPI recent updates for sphinxcontrib-programoutput" description="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 title="PyPI recent updates for sphinxcontrib-qthelp" text="PyPI recent updates for sphinxcontrib-qthelp" description="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 title="PyPI recent updates for sphinxcontrib-serializinghtml" text="PyPI recent updates for sphinxcontrib-serializinghtml" description="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 title="PyPI recent updates for sphinxcontrib-spelling" text="PyPI recent updates for sphinxcontrib-spelling" description="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 title="PyPI recent updates for sphinxcontrib-trio" text="PyPI recent updates for sphinxcontrib-trio" description="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 title="PyPI recent updates for sphinxcontrib-websupport" text="PyPI recent updates for sphinxcontrib-websupport" description="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 title="PyPI recent updates for sphinxcontrib_github_alt" text="PyPI recent updates for sphinxcontrib_github_alt" description="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 title="PyPI recent updates for sphinxprettysearchresults" text="PyPI recent updates for sphinxprettysearchresults" description="PyPI recent updates for sphinxprettysearchresults" type="rss" xmlUrl="https://pypi.org/rss/project/sphinxprettysearchresults/releases.xml" htmlUrl="https://pypi.org/project/sphinxprettysearchresults/"/>
        <outline title="PyPI recent updates for sphobjinv" text="PyPI recent updates for sphobjinv" description="PyPI recent updates for sphobjinv" type="rss" xmlUrl="https://pypi.org/rss/project/sphobjinv/releases.xml" htmlUrl="https://pypi.org/project/sphobjinv/"/>
        <outline title="PyPI recent updates for spur" text="PyPI recent updates for spur" description="PyPI recent updates for spur" type="rss" xmlUrl="https://pypi.org/rss/project/spur/releases.xml" htmlUrl="https://pypi.org/project/spur/"/>
        <outline title="PyPI recent updates for spyder" text="PyPI recent updates for spyder" description="PyPI recent updates for spyder" type="rss" xmlUrl="https://pypi.org/rss/project/spyder/releases.xml" htmlUrl="https://pypi.org/project/spyder/"/>
        <outline title="PyPI recent updates for spyder-kernels" text="PyPI recent updates for spyder-kernels" description="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 title="PyPI recent updates for spyder-line-profiler" text="PyPI recent updates for spyder-line-profiler" description="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 title="PyPI recent updates for spyder-memory-profiler" text="PyPI recent updates for spyder-memory-profiler" description="PyPI recent updates for spyder-memory-profiler" type="rss" xmlUrl="https://pypi.org/rss/project/spyder-memory-profiler/releases.xml" htmlUrl="https://pypi.org/project/spyder-memory-profiler/"/>
        <outline title="PyPI recent updates for spyder-notebook" text="PyPI recent updates for spyder-notebook" description="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 title="PyPI recent updates for spyder-terminal" text="PyPI recent updates for spyder-terminal" description="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 title="PyPI recent updates for spyder-unittest" text="PyPI recent updates for spyder-unittest" description="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 title="PyPI recent updates for SQLAlchemy" text="PyPI recent updates for SQLAlchemy" description="PyPI recent updates for SQLAlchemy" type="rss" xmlUrl="https://pypi.org/rss/project/SQLAlchemy/releases.xml" htmlUrl="https://pypi.org/project/sqlalchemy/"/>
        <outline title="PyPI recent updates for sqlalchemy-migrate" text="PyPI recent updates for sqlalchemy-migrate" description="PyPI recent updates for sqlalchemy-migrate" type="rss" xmlUrl="https://pypi.org/rss/project/sqlalchemy-migrate/releases.xml" htmlUrl="https://pypi.org/project/sqlalchemy-migrate/"/>
        <outline title="PyPI recent updates for sqlitedict" text="PyPI recent updates for sqlitedict" description="PyPI recent updates for sqlitedict" type="rss" xmlUrl="https://pypi.org/rss/project/sqlitedict/releases.xml" htmlUrl="https://pypi.org/project/sqlitedict/"/>
        <outline title="PyPI recent updates for sqlparse" text="PyPI recent updates for sqlparse" description="PyPI recent updates for sqlparse" type="rss" xmlUrl="https://pypi.org/rss/project/sqlparse/releases.xml" htmlUrl="https://pypi.org/project/sqlparse/"/>
        <outline title="PyPI recent updates for ssh2-python" text="PyPI recent updates for ssh2-python" description="PyPI recent updates for ssh2-python" type="rss" xmlUrl="https://pypi.org/rss/project/ssh2-python/releases.xml" htmlUrl="https://pypi.org/project/ssh2-python/"/>
        <outline title="PyPI recent updates for sshpubkeys" text="PyPI recent updates for sshpubkeys" description="PyPI recent updates for sshpubkeys" type="rss" xmlUrl="https://pypi.org/rss/project/sshpubkeys/releases.xml" htmlUrl="https://pypi.org/project/sshpubkeys/"/>
        <outline title="PyPI recent updates for sshtunnel" text="PyPI recent updates for sshtunnel" description="PyPI recent updates for sshtunnel" type="rss" xmlUrl="https://pypi.org/rss/project/sshtunnel/releases.xml" htmlUrl="https://pypi.org/project/sshtunnel/"/>
        <outline title="PyPI recent updates for stapler" text="PyPI recent updates for stapler" description="PyPI recent updates for stapler" type="rss" xmlUrl="https://pypi.org/rss/project/stapler/releases.xml" htmlUrl="https://pypi.org/project/stapler/"/>
        <outline title="PyPI recent updates for starlette" text="PyPI recent updates for starlette" description="PyPI recent updates for starlette" type="rss" xmlUrl="https://pypi.org/rss/project/starlette/releases.xml" htmlUrl="https://pypi.org/project/starlette/"/>
        <outline title="PyPI recent updates for statsd" text="PyPI recent updates for statsd" description="PyPI recent updates for statsd" type="rss" xmlUrl="https://pypi.org/rss/project/statsd/releases.xml" htmlUrl="https://pypi.org/project/statsd/"/>
        <outline title="PyPI recent updates for statsmodels" text="PyPI recent updates for statsmodels" description="PyPI recent updates for statsmodels" type="rss" xmlUrl="https://pypi.org/rss/project/statsmodels/releases.xml" htmlUrl="https://pypi.org/project/statsmodels/"/>
        <outline title="PyPI recent updates for stdio-mgr" text="PyPI recent updates for stdio-mgr" description="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 title="PyPI recent updates for stestr" text="PyPI recent updates for stestr" description="PyPI recent updates for stestr" type="rss" xmlUrl="https://pypi.org/rss/project/stestr/releases.xml" htmlUrl="https://pypi.org/project/stestr/"/>
        <outline title="PyPI recent updates for stevedore" text="PyPI recent updates for stevedore" description="PyPI recent updates for stevedore" type="rss" xmlUrl="https://pypi.org/rss/project/stevedore/releases.xml" htmlUrl="https://pypi.org/project/stevedore/"/>
        <outline title="PyPI recent updates for strict-rfc3339" text="PyPI recent updates for strict-rfc3339" description="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 title="PyPI recent updates for stripe" text="PyPI recent updates for stripe" description="PyPI recent updates for stripe" type="rss" xmlUrl="https://pypi.org/rss/project/stripe/releases.xml" htmlUrl="https://pypi.org/project/stripe/"/>
        <outline title="PyPI recent updates for subprocess-tee" text="PyPI recent updates for subprocess-tee" description="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 title="PyPI recent updates for suds-community" text="PyPI recent updates for suds-community" description="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 title="PyPI recent updates for sure" text="PyPI recent updates for sure" description="PyPI recent updates for sure" type="rss" xmlUrl="https://pypi.org/rss/project/sure/releases.xml" htmlUrl="https://pypi.org/project/sure/"/>
        <outline title="PyPI recent updates for svg.path" text="PyPI recent updates for svg.path" description="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 title="PyPI recent updates for svglib" text="PyPI recent updates for svglib" description="PyPI recent updates for svglib" type="rss" xmlUrl="https://pypi.org/rss/project/svglib/releases.xml" htmlUrl="https://pypi.org/project/svglib/"/>
        <outline title="PyPI recent updates for svgwrite" text="PyPI recent updates for svgwrite" description="PyPI recent updates for svgwrite" type="rss" xmlUrl="https://pypi.org/rss/project/svgwrite/releases.xml" htmlUrl="https://pypi.org/project/svgwrite/"/>
        <outline title="PyPI recent updates for swagger-spec-validator" text="PyPI recent updates for swagger-spec-validator" description="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 title="PyPI recent updates for sybil" text="PyPI recent updates for sybil" description="PyPI recent updates for sybil" type="rss" xmlUrl="https://pypi.org/rss/project/sybil/releases.xml" htmlUrl="https://pypi.org/project/sybil/"/>
        <outline title="PyPI recent updates for symengine" text="PyPI recent updates for symengine" description="PyPI recent updates for symengine" type="rss" xmlUrl="https://pypi.org/rss/project/symengine/releases.xml" htmlUrl="https://pypi.org/project/symengine/"/>
        <outline title="PyPI recent updates for sympy" text="PyPI recent updates for sympy" description="PyPI recent updates for sympy" type="rss" xmlUrl="https://pypi.org/rss/project/sympy/releases.xml" htmlUrl="https://pypi.org/project/sympy/"/>
        <outline title="PyPI recent updates for tables" text="PyPI recent updates for tables" description="PyPI recent updates for tables" type="rss" xmlUrl="https://pypi.org/rss/project/tables/releases.xml" htmlUrl="https://pypi.org/project/tables/"/>
        <outline title="PyPI recent updates for tablib" text="PyPI recent updates for tablib" description="PyPI recent updates for tablib" type="rss" xmlUrl="https://pypi.org/rss/project/tablib/releases.xml" htmlUrl="https://pypi.org/project/tablib/"/>
        <outline title="PyPI recent updates for tabulate" text="PyPI recent updates for tabulate" description="PyPI recent updates for tabulate" type="rss" xmlUrl="https://pypi.org/rss/project/tabulate/releases.xml" htmlUrl="https://pypi.org/project/tabulate/"/>
        <outline title="PyPI recent updates for tagpy" text="PyPI recent updates for tagpy" description="PyPI recent updates for tagpy" type="rss" xmlUrl="https://pypi.org/rss/project/tagpy/releases.xml" htmlUrl="https://pypi.org/project/tagpy/"/>
        <outline title="PyPI recent updates for tap.py" text="PyPI recent updates for tap.py" description="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 title="PyPI recent updates for taskflow" text="PyPI recent updates for taskflow" description="PyPI recent updates for taskflow" type="rss" xmlUrl="https://pypi.org/rss/project/taskflow/releases.xml" htmlUrl="https://pypi.org/project/taskflow/"/>
        <outline title="PyPI recent updates for tblib" text="PyPI recent updates for tblib" description="PyPI recent updates for tblib" type="rss" xmlUrl="https://pypi.org/rss/project/tblib/releases.xml" htmlUrl="https://pypi.org/project/tblib/"/>
        <outline title="PyPI recent updates for tekore" text="PyPI recent updates for tekore" description="PyPI recent updates for tekore" type="rss" xmlUrl="https://pypi.org/rss/project/tekore/releases.xml" htmlUrl="https://pypi.org/project/tekore/"/>
        <outline title="PyPI recent updates for tempest" text="PyPI recent updates for tempest" description="PyPI recent updates for tempest" type="rss" xmlUrl="https://pypi.org/rss/project/tempest/releases.xml" htmlUrl="https://pypi.org/project/tempest/"/>
        <outline title="PyPI recent updates for Tempita" text="PyPI recent updates for Tempita" description="PyPI recent updates for Tempita" type="rss" xmlUrl="https://pypi.org/rss/project/Tempita/releases.xml" htmlUrl="https://pypi.org/project/tempita/"/>
        <outline title="PyPI recent updates for tempora" text="PyPI recent updates for tempora" description="PyPI recent updates for tempora" type="rss" xmlUrl="https://pypi.org/rss/project/tempora/releases.xml" htmlUrl="https://pypi.org/project/tempora/"/>
        <outline title="PyPI recent updates for tenacity" text="PyPI recent updates for tenacity" description="PyPI recent updates for tenacity" type="rss" xmlUrl="https://pypi.org/rss/project/tenacity/releases.xml" htmlUrl="https://pypi.org/project/tenacity/"/>
        <outline title="PyPI recent updates for termcolor" text="PyPI recent updates for termcolor" description="PyPI recent updates for termcolor" type="rss" xmlUrl="https://pypi.org/rss/project/termcolor/releases.xml" htmlUrl="https://pypi.org/project/termcolor/"/>
        <outline title="PyPI recent updates for terminado" text="PyPI recent updates for terminado" description="PyPI recent updates for terminado" type="rss" xmlUrl="https://pypi.org/rss/project/terminado/releases.xml" htmlUrl="https://pypi.org/project/terminado/"/>
        <outline title="PyPI recent updates for terminaltables" text="PyPI recent updates for terminaltables" description="PyPI recent updates for terminaltables" type="rss" xmlUrl="https://pypi.org/rss/project/terminaltables/releases.xml" htmlUrl="https://pypi.org/project/terminaltables/"/>
        <outline title="PyPI recent updates for test-server" text="PyPI recent updates for test-server" description="PyPI recent updates for test-server" type="rss" xmlUrl="https://pypi.org/rss/project/test-server/releases.xml" htmlUrl="https://pypi.org/project/test-server/"/>
        <outline title="PyPI recent updates for testfixtures" text="PyPI recent updates for testfixtures" description="PyPI recent updates for testfixtures" type="rss" xmlUrl="https://pypi.org/rss/project/testfixtures/releases.xml" htmlUrl="https://pypi.org/project/testfixtures/"/>
        <outline title="PyPI recent updates for testpath" text="PyPI recent updates for testpath" description="PyPI recent updates for testpath" type="rss" xmlUrl="https://pypi.org/rss/project/testpath/releases.xml" htmlUrl="https://pypi.org/project/testpath/"/>
        <outline title="PyPI recent updates for testresources" text="PyPI recent updates for testresources" description="PyPI recent updates for testresources" type="rss" xmlUrl="https://pypi.org/rss/project/testresources/releases.xml" htmlUrl="https://pypi.org/project/testresources/"/>
        <outline title="PyPI recent updates for testscenarios" text="PyPI recent updates for testscenarios" description="PyPI recent updates for testscenarios" type="rss" xmlUrl="https://pypi.org/rss/project/testscenarios/releases.xml" htmlUrl="https://pypi.org/project/testscenarios/"/>
        <outline title="PyPI recent updates for testtools" text="PyPI recent updates for testtools" description="PyPI recent updates for testtools" type="rss" xmlUrl="https://pypi.org/rss/project/testtools/releases.xml" htmlUrl="https://pypi.org/project/testtools/"/>
        <outline title="PyPI recent updates for text-unidecode" text="PyPI recent updates for text-unidecode" description="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 title="PyPI recent updates for textdistance" text="PyPI recent updates for textdistance" description="PyPI recent updates for textdistance" type="rss" xmlUrl="https://pypi.org/rss/project/textdistance/releases.xml" htmlUrl="https://pypi.org/project/textdistance/"/>
        <outline title="PyPI recent updates for textile" text="PyPI recent updates for textile" description="PyPI recent updates for textile" type="rss" xmlUrl="https://pypi.org/rss/project/textile/releases.xml" htmlUrl="https://pypi.org/project/textile/"/>
        <outline title="PyPI recent updates for texttable" text="PyPI recent updates for texttable" description="PyPI recent updates for texttable" type="rss" xmlUrl="https://pypi.org/rss/project/texttable/releases.xml" htmlUrl="https://pypi.org/project/texttable/"/>
        <outline title="PyPI recent updates for textX" text="PyPI recent updates for textX" description="PyPI recent updates for textX" type="rss" xmlUrl="https://pypi.org/rss/project/textX/releases.xml" htmlUrl="https://pypi.org/project/textx/"/>
        <outline title="PyPI recent updates for Theano" text="PyPI recent updates for Theano" description="PyPI recent updates for Theano" type="rss" xmlUrl="https://pypi.org/rss/project/Theano/releases.xml" htmlUrl="https://pypi.org/project/theano/"/>
        <outline title="PyPI recent updates for Theano-PyMC" text="PyPI recent updates for Theano-PyMC" description="PyPI recent updates for Theano-PyMC" type="rss" xmlUrl="https://pypi.org/rss/project/Theano-PyMC/releases.xml" htmlUrl="https://pypi.org/project/theano-pymc/"/>
        <outline title="PyPI recent updates for threadpoolctl" text="PyPI recent updates for threadpoolctl" description="PyPI recent updates for threadpoolctl" type="rss" xmlUrl="https://pypi.org/rss/project/threadpoolctl/releases.xml" htmlUrl="https://pypi.org/project/threadpoolctl/"/>
        <outline title="PyPI recent updates for three-merge" text="PyPI recent updates for three-merge" description="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 title="PyPI recent updates for thrift" text="PyPI recent updates for thrift" description="PyPI recent updates for thrift" type="rss" xmlUrl="https://pypi.org/rss/project/thrift/releases.xml" htmlUrl="https://pypi.org/project/thrift/"/>
        <outline title="PyPI recent updates for thriftpy2" text="PyPI recent updates for thriftpy2" description="PyPI recent updates for thriftpy2" type="rss" xmlUrl="https://pypi.org/rss/project/thriftpy2/releases.xml" htmlUrl="https://pypi.org/project/thriftpy2/"/>
        <outline title="PyPI recent updates for tifffile" text="PyPI recent updates for tifffile" description="PyPI recent updates for tifffile" type="rss" xmlUrl="https://pypi.org/rss/project/tifffile/releases.xml" htmlUrl="https://pypi.org/project/tifffile/"/>
        <outline title="PyPI recent updates for tikzplotlib" text="PyPI recent updates for tikzplotlib" description="PyPI recent updates for tikzplotlib" type="rss" xmlUrl="https://pypi.org/rss/project/tikzplotlib/releases.xml" htmlUrl="https://pypi.org/project/tikzplotlib/"/>
        <outline title="PyPI recent updates for timeout-decorator" text="PyPI recent updates for timeout-decorator" description="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 title="PyPI recent updates for tinycss" text="PyPI recent updates for tinycss" description="PyPI recent updates for tinycss" type="rss" xmlUrl="https://pypi.org/rss/project/tinycss/releases.xml" htmlUrl="https://pypi.org/project/tinycss/"/>
        <outline title="PyPI recent updates for tinycss2" text="PyPI recent updates for tinycss2" description="PyPI recent updates for tinycss2" type="rss" xmlUrl="https://pypi.org/rss/project/tinycss2/releases.xml" htmlUrl="https://pypi.org/project/tinycss2/"/>
        <outline title="PyPI recent updates for tinyrpc" text="PyPI recent updates for tinyrpc" description="PyPI recent updates for tinyrpc" type="rss" xmlUrl="https://pypi.org/rss/project/tinyrpc/releases.xml" htmlUrl="https://pypi.org/project/tinyrpc/"/>
        <outline title="PyPI recent updates for tld" text="PyPI recent updates for tld" description="PyPI recent updates for tld" type="rss" xmlUrl="https://pypi.org/rss/project/tld/releases.xml" htmlUrl="https://pypi.org/project/tld/"/>
        <outline title="PyPI recent updates for tldextract" text="PyPI recent updates for tldextract" description="PyPI recent updates for tldextract" type="rss" xmlUrl="https://pypi.org/rss/project/tldextract/releases.xml" htmlUrl="https://pypi.org/project/tldextract/"/>
        <outline title="PyPI recent updates for toml" text="PyPI recent updates for toml" description="PyPI recent updates for toml" type="rss" xmlUrl="https://pypi.org/rss/project/toml/releases.xml" htmlUrl="https://pypi.org/project/toml/"/>
        <outline title="PyPI recent updates for tomli" text="PyPI recent updates for tomli" description="PyPI recent updates for tomli" type="rss" xmlUrl="https://pypi.org/rss/project/tomli/releases.xml" htmlUrl="https://pypi.org/project/tomli/"/>
        <outline title="PyPI recent updates for tomli-w" text="PyPI recent updates for tomli-w" description="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 title="PyPI recent updates for tomlkit" text="PyPI recent updates for tomlkit" description="PyPI recent updates for tomlkit" type="rss" xmlUrl="https://pypi.org/rss/project/tomlkit/releases.xml" htmlUrl="https://pypi.org/project/tomlkit/"/>
        <outline title="PyPI recent updates for toolz" text="PyPI recent updates for toolz" description="PyPI recent updates for toolz" type="rss" xmlUrl="https://pypi.org/rss/project/toolz/releases.xml" htmlUrl="https://pypi.org/project/toolz/"/>
        <outline title="PyPI recent updates for tooz" text="PyPI recent updates for tooz" description="PyPI recent updates for tooz" type="rss" xmlUrl="https://pypi.org/rss/project/tooz/releases.xml" htmlUrl="https://pypi.org/project/tooz/"/>
        <outline title="PyPI recent updates for toposort" text="PyPI recent updates for toposort" description="PyPI recent updates for toposort" type="rss" xmlUrl="https://pypi.org/rss/project/toposort/releases.xml" htmlUrl="https://pypi.org/project/toposort/"/>
        <outline title="PyPI recent updates for tornado" text="PyPI recent updates for tornado" description="PyPI recent updates for tornado" type="rss" xmlUrl="https://pypi.org/rss/project/tornado/releases.xml" htmlUrl="https://pypi.org/project/tornado/"/>
        <outline title="PyPI recent updates for towncrier" text="PyPI recent updates for towncrier" description="PyPI recent updates for towncrier" type="rss" xmlUrl="https://pypi.org/rss/project/towncrier/releases.xml" htmlUrl="https://pypi.org/project/towncrier/"/>
        <outline title="PyPI recent updates for tox" text="PyPI recent updates for tox" description="PyPI recent updates for tox" type="rss" xmlUrl="https://pypi.org/rss/project/tox/releases.xml" htmlUrl="https://pypi.org/project/tox/"/>
        <outline title="PyPI recent updates for tqdm" text="PyPI recent updates for tqdm" description="PyPI recent updates for tqdm" type="rss" xmlUrl="https://pypi.org/rss/project/tqdm/releases.xml" htmlUrl="https://pypi.org/project/tqdm/"/>
        <outline title="PyPI recent updates for traceback2" text="PyPI recent updates for traceback2" description="PyPI recent updates for traceback2" type="rss" xmlUrl="https://pypi.org/rss/project/traceback2/releases.xml" htmlUrl="https://pypi.org/project/traceback2/"/>
        <outline title="PyPI recent updates for traitlets" text="PyPI recent updates for traitlets" description="PyPI recent updates for traitlets" type="rss" xmlUrl="https://pypi.org/rss/project/traitlets/releases.xml" htmlUrl="https://pypi.org/project/traitlets/"/>
        <outline title="PyPI recent updates for transitions" text="PyPI recent updates for transitions" description="PyPI recent updates for transitions" type="rss" xmlUrl="https://pypi.org/rss/project/transitions/releases.xml" htmlUrl="https://pypi.org/project/transitions/"/>
        <outline title="PyPI recent updates for translate-toolkit" text="PyPI recent updates for translate-toolkit" description="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 title="PyPI recent updates for tree-sitter" text="PyPI recent updates for tree-sitter" description="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 title="PyPI recent updates for treq" text="PyPI recent updates for treq" description="PyPI recent updates for treq" type="rss" xmlUrl="https://pypi.org/rss/project/treq/releases.xml" htmlUrl="https://pypi.org/project/treq/"/>
        <outline title="PyPI recent updates for trio" text="PyPI recent updates for trio" description="PyPI recent updates for trio" type="rss" xmlUrl="https://pypi.org/rss/project/trio/releases.xml" htmlUrl="https://pypi.org/project/trio/"/>
        <outline title="PyPI recent updates for trio-asyncio" text="PyPI recent updates for trio-asyncio" description="PyPI recent updates for trio-asyncio" type="rss" xmlUrl="https://pypi.org/rss/project/trio-asyncio/releases.xml" htmlUrl="https://pypi.org/project/trio-asyncio/"/>
        <outline title="PyPI recent updates for trustme" text="PyPI recent updates for trustme" description="PyPI recent updates for trustme" type="rss" xmlUrl="https://pypi.org/rss/project/trustme/releases.xml" htmlUrl="https://pypi.org/project/trustme/"/>
        <outline title="PyPI recent updates for Tubes" text="PyPI recent updates for Tubes" description="PyPI recent updates for Tubes" type="rss" xmlUrl="https://pypi.org/rss/project/Tubes/releases.xml" htmlUrl="https://pypi.org/project/tubes/"/>
        <outline title="PyPI recent updates for tvdb-api" text="PyPI recent updates for tvdb-api" description="PyPI recent updates for tvdb-api" type="rss" xmlUrl="https://pypi.org/rss/project/tvdb-api/releases.xml" htmlUrl="https://pypi.org/project/tvdb-api/"/>
        <outline title="PyPI recent updates for twine" text="PyPI recent updates for twine" description="PyPI recent updates for twine" type="rss" xmlUrl="https://pypi.org/rss/project/twine/releases.xml" htmlUrl="https://pypi.org/project/twine/"/>
        <outline title="PyPI recent updates for Twisted" text="PyPI recent updates for Twisted" description="PyPI recent updates for Twisted" type="rss" xmlUrl="https://pypi.org/rss/project/Twisted/releases.xml" htmlUrl="https://pypi.org/project/twisted/"/>
        <outline title="PyPI recent updates for twython" text="PyPI recent updates for twython" description="PyPI recent updates for twython" type="rss" xmlUrl="https://pypi.org/rss/project/twython/releases.xml" htmlUrl="https://pypi.org/project/twython/"/>
        <outline title="PyPI recent updates for txaio" text="PyPI recent updates for txaio" description="PyPI recent updates for txaio" type="rss" xmlUrl="https://pypi.org/rss/project/txaio/releases.xml" htmlUrl="https://pypi.org/project/txaio/"/>
        <outline title="PyPI recent updates for txAMQP" text="PyPI recent updates for txAMQP" description="PyPI recent updates for txAMQP" type="rss" xmlUrl="https://pypi.org/rss/project/txAMQP/releases.xml" htmlUrl="https://pypi.org/project/txamqp/"/>
        <outline title="PyPI recent updates for txgithub" text="PyPI recent updates for txgithub" description="PyPI recent updates for txgithub" type="rss" xmlUrl="https://pypi.org/rss/project/txgithub/releases.xml" htmlUrl="https://pypi.org/project/txgithub/"/>
        <outline title="PyPI recent updates for txrequests" text="PyPI recent updates for txrequests" description="PyPI recent updates for txrequests" type="rss" xmlUrl="https://pypi.org/rss/project/txrequests/releases.xml" htmlUrl="https://pypi.org/project/txrequests/"/>
        <outline title="PyPI recent updates for typed-ast" text="PyPI recent updates for typed-ast" description="PyPI recent updates for typed-ast" type="rss" xmlUrl="https://pypi.org/rss/project/typed-ast/releases.xml" htmlUrl="https://pypi.org/project/typed-ast/"/>
        <outline title="PyPI recent updates for typeguard" text="PyPI recent updates for typeguard" description="PyPI recent updates for typeguard" type="rss" xmlUrl="https://pypi.org/rss/project/typeguard/releases.xml" htmlUrl="https://pypi.org/project/typeguard/"/>
        <outline title="PyPI recent updates for typing-extensions" text="PyPI recent updates for typing-extensions" description="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 title="PyPI recent updates for typogrify" text="PyPI recent updates for typogrify" description="PyPI recent updates for typogrify" type="rss" xmlUrl="https://pypi.org/rss/project/typogrify/releases.xml" htmlUrl="https://pypi.org/project/typogrify/"/>
        <outline title="PyPI recent updates for tzlocal" text="PyPI recent updates for tzlocal" description="PyPI recent updates for tzlocal" type="rss" xmlUrl="https://pypi.org/rss/project/tzlocal/releases.xml" htmlUrl="https://pypi.org/project/tzlocal/"/>
        <outline title="PyPI recent updates for u-msgpack-python" text="PyPI recent updates for u-msgpack-python" description="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 title="PyPI recent updates for ubelt" text="PyPI recent updates for ubelt" description="PyPI recent updates for ubelt" type="rss" xmlUrl="https://pypi.org/rss/project/ubelt/releases.xml" htmlUrl="https://pypi.org/project/ubelt/"/>
        <outline title="PyPI recent updates for ujson" text="PyPI recent updates for ujson" description="PyPI recent updates for ujson" type="rss" xmlUrl="https://pypi.org/rss/project/ujson/releases.xml" htmlUrl="https://pypi.org/project/ujson/"/>
        <outline title="PyPI recent updates for ukkonen" text="PyPI recent updates for ukkonen" description="PyPI recent updates for ukkonen" type="rss" xmlUrl="https://pypi.org/rss/project/ukkonen/releases.xml" htmlUrl="https://pypi.org/project/ukkonen/"/>
        <outline title="PyPI recent updates for uncertainties" text="PyPI recent updates for uncertainties" description="PyPI recent updates for uncertainties" type="rss" xmlUrl="https://pypi.org/rss/project/uncertainties/releases.xml" htmlUrl="https://pypi.org/project/uncertainties/"/>
        <outline title="PyPI recent updates for unasync" text="PyPI recent updates for unasync" description="PyPI recent updates for unasync" type="rss" xmlUrl="https://pypi.org/rss/project/unasync/releases.xml" htmlUrl="https://pypi.org/project/unasync/"/>
        <outline title="PyPI recent updates for unicodecsv" text="PyPI recent updates for unicodecsv" description="PyPI recent updates for unicodecsv" type="rss" xmlUrl="https://pypi.org/rss/project/unicodecsv/releases.xml" htmlUrl="https://pypi.org/project/unicodecsv/"/>
        <outline title="PyPI recent updates for Unidecode" text="PyPI recent updates for Unidecode" description="PyPI recent updates for Unidecode" type="rss" xmlUrl="https://pypi.org/rss/project/Unidecode/releases.xml" htmlUrl="https://pypi.org/project/unidecode/"/>
        <outline title="PyPI recent updates for unidiff" text="PyPI recent updates for unidiff" description="PyPI recent updates for unidiff" type="rss" xmlUrl="https://pypi.org/rss/project/unidiff/releases.xml" htmlUrl="https://pypi.org/project/unidiff/"/>
        <outline title="PyPI recent updates for unittest-mixins" text="PyPI recent updates for unittest-mixins" description="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 title="PyPI recent updates for unittest2" text="PyPI recent updates for unittest2" description="PyPI recent updates for unittest2" type="rss" xmlUrl="https://pypi.org/rss/project/unittest2/releases.xml" htmlUrl="https://pypi.org/project/unittest2/"/>
        <outline title="PyPI recent updates for untangle" text="PyPI recent updates for untangle" description="PyPI recent updates for untangle" type="rss" xmlUrl="https://pypi.org/rss/project/untangle/releases.xml" htmlUrl="https://pypi.org/project/untangle/"/>
        <outline title="PyPI recent updates for uranium" text="PyPI recent updates for uranium" description="PyPI recent updates for uranium" type="rss" xmlUrl="https://pypi.org/rss/project/uranium/releases.xml" htmlUrl="https://pypi.org/project/uranium/"/>
        <outline title="PyPI recent updates for urdf-parser-py" text="PyPI recent updates for urdf-parser-py" description="PyPI recent updates for urdf-parser-py" type="rss" xmlUrl="https://pypi.org/rss/project/urdf-parser-py/releases.xml" htmlUrl="https://pypi.org/project/urdf-parser-py/"/>
        <outline title="PyPI recent updates for uritemplate" text="PyPI recent updates for uritemplate" description="PyPI recent updates for uritemplate" type="rss" xmlUrl="https://pypi.org/rss/project/uritemplate/releases.xml" htmlUrl="https://pypi.org/project/uritemplate/"/>
        <outline title="PyPI recent updates for url-normalize" text="PyPI recent updates for url-normalize" description="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 title="PyPI recent updates for urlgrabber" text="PyPI recent updates for urlgrabber" description="PyPI recent updates for urlgrabber" type="rss" xmlUrl="https://pypi.org/rss/project/urlgrabber/releases.xml" htmlUrl="https://pypi.org/project/urlgrabber/"/>
        <outline title="PyPI recent updates for urllib3" text="PyPI recent updates for urllib3" description="PyPI recent updates for urllib3" type="rss" xmlUrl="https://pypi.org/rss/project/urllib3/releases.xml" htmlUrl="https://pypi.org/project/urllib3/"/>
        <outline title="PyPI recent updates for urwid" text="PyPI recent updates for urwid" description="PyPI recent updates for urwid" type="rss" xmlUrl="https://pypi.org/rss/project/urwid/releases.xml" htmlUrl="https://pypi.org/project/urwid/"/>
        <outline title="PyPI recent updates for urwid-readline" text="PyPI recent updates for urwid-readline" description="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 title="PyPI recent updates for urwidtrees" text="PyPI recent updates for urwidtrees" description="PyPI recent updates for urwidtrees" type="rss" xmlUrl="https://pypi.org/rss/project/urwidtrees/releases.xml" htmlUrl="https://pypi.org/project/urwidtrees/"/>
        <outline title="PyPI recent updates for uTidylib" text="PyPI recent updates for uTidylib" description="PyPI recent updates for uTidylib" type="rss" xmlUrl="https://pypi.org/rss/project/uTidylib/releases.xml" htmlUrl="https://pypi.org/project/utidylib/"/>
        <outline title="PyPI recent updates for uvicorn" text="PyPI recent updates for uvicorn" description="PyPI recent updates for uvicorn" type="rss" xmlUrl="https://pypi.org/rss/project/uvicorn/releases.xml" htmlUrl="https://pypi.org/project/uvicorn/"/>
        <outline title="PyPI recent updates for uvloop" text="PyPI recent updates for uvloop" description="PyPI recent updates for uvloop" type="rss" xmlUrl="https://pypi.org/rss/project/uvloop/releases.xml" htmlUrl="https://pypi.org/project/uvloop/"/>
        <outline title="PyPI recent updates for validators" text="PyPI recent updates for validators" description="PyPI recent updates for validators" type="rss" xmlUrl="https://pypi.org/rss/project/validators/releases.xml" htmlUrl="https://pypi.org/project/validators/"/>
        <outline title="PyPI recent updates for varlink" text="PyPI recent updates for varlink" description="PyPI recent updates for varlink" type="rss" xmlUrl="https://pypi.org/rss/project/varlink/releases.xml" htmlUrl="https://pypi.org/project/varlink/"/>
        <outline title="PyPI recent updates for vcrpy" text="PyPI recent updates for vcrpy" description="PyPI recent updates for vcrpy" type="rss" xmlUrl="https://pypi.org/rss/project/vcrpy/releases.xml" htmlUrl="https://pypi.org/project/vcrpy/"/>
        <outline title="PyPI recent updates for vcstools" text="PyPI recent updates for vcstools" description="PyPI recent updates for vcstools" type="rss" xmlUrl="https://pypi.org/rss/project/vcstools/releases.xml" htmlUrl="https://pypi.org/project/vcstools/"/>
        <outline title="PyPI recent updates for vdf" text="PyPI recent updates for vdf" description="PyPI recent updates for vdf" type="rss" xmlUrl="https://pypi.org/rss/project/vdf/releases.xml" htmlUrl="https://pypi.org/project/vdf/"/>
        <outline title="PyPI recent updates for vdirsyncer" text="PyPI recent updates for vdirsyncer" description="PyPI recent updates for vdirsyncer" type="rss" xmlUrl="https://pypi.org/rss/project/vdirsyncer/releases.xml" htmlUrl="https://pypi.org/project/vdirsyncer/"/>
        <outline title="PyPI recent updates for vecrec" text="PyPI recent updates for vecrec" description="PyPI recent updates for vecrec" type="rss" xmlUrl="https://pypi.org/rss/project/vecrec/releases.xml" htmlUrl="https://pypi.org/project/vecrec/"/>
        <outline title="PyPI recent updates for verboselogs" text="PyPI recent updates for verboselogs" description="PyPI recent updates for verboselogs" type="rss" xmlUrl="https://pypi.org/rss/project/verboselogs/releases.xml" htmlUrl="https://pypi.org/project/verboselogs/"/>
        <outline title="PyPI recent updates for versioneer" text="PyPI recent updates for versioneer" description="PyPI recent updates for versioneer" type="rss" xmlUrl="https://pypi.org/rss/project/versioneer/releases.xml" htmlUrl="https://pypi.org/project/versioneer/"/>
        <outline title="PyPI recent updates for vine" text="PyPI recent updates for vine" description="PyPI recent updates for vine" type="rss" xmlUrl="https://pypi.org/rss/project/vine/releases.xml" htmlUrl="https://pypi.org/project/vine/"/>
        <outline title="PyPI recent updates for virtualenv" text="PyPI recent updates for virtualenv" description="PyPI recent updates for virtualenv" type="rss" xmlUrl="https://pypi.org/rss/project/virtualenv/releases.xml" htmlUrl="https://pypi.org/project/virtualenv/"/>
        <outline title="PyPI recent updates for virtualenv-clone" text="PyPI recent updates for virtualenv-clone" description="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 title="PyPI recent updates for virtualenvwrapper" text="PyPI recent updates for virtualenvwrapper" description="PyPI recent updates for virtualenvwrapper" type="rss" xmlUrl="https://pypi.org/rss/project/virtualenvwrapper/releases.xml" htmlUrl="https://pypi.org/project/virtualenvwrapper/"/>
        <outline title="PyPI recent updates for visitor" text="PyPI recent updates for visitor" description="PyPI recent updates for visitor" type="rss" xmlUrl="https://pypi.org/rss/project/visitor/releases.xml" htmlUrl="https://pypi.org/project/visitor/"/>
        <outline title="PyPI recent updates for vncdotool" text="PyPI recent updates for vncdotool" description="PyPI recent updates for vncdotool" type="rss" xmlUrl="https://pypi.org/rss/project/vncdotool/releases.xml" htmlUrl="https://pypi.org/project/vncdotool/"/>
        <outline title="PyPI recent updates for vobject" text="PyPI recent updates for vobject" description="PyPI recent updates for vobject" type="rss" xmlUrl="https://pypi.org/rss/project/vobject/releases.xml" htmlUrl="https://pypi.org/project/vobject/"/>
        <outline title="PyPI recent updates for voluptuous" text="PyPI recent updates for voluptuous" description="PyPI recent updates for voluptuous" type="rss" xmlUrl="https://pypi.org/rss/project/voluptuous/releases.xml" htmlUrl="https://pypi.org/project/voluptuous/"/>
        <outline title="PyPI recent updates for vpython" text="PyPI recent updates for vpython" description="PyPI recent updates for vpython" type="rss" xmlUrl="https://pypi.org/rss/project/vpython/releases.xml" htmlUrl="https://pypi.org/project/vpython/"/>
        <outline title="PyPI recent updates for waitress" text="PyPI recent updates for waitress" description="PyPI recent updates for waitress" type="rss" xmlUrl="https://pypi.org/rss/project/waitress/releases.xml" htmlUrl="https://pypi.org/project/waitress/"/>
        <outline title="PyPI recent updates for Wand" text="PyPI recent updates for Wand" description="PyPI recent updates for Wand" type="rss" xmlUrl="https://pypi.org/rss/project/Wand/releases.xml" htmlUrl="https://pypi.org/project/wand/"/>
        <outline title="PyPI recent updates for warlock" text="PyPI recent updates for warlock" description="PyPI recent updates for warlock" type="rss" xmlUrl="https://pypi.org/rss/project/warlock/releases.xml" htmlUrl="https://pypi.org/project/warlock/"/>
        <outline title="PyPI recent updates for watchdog" text="PyPI recent updates for watchdog" description="PyPI recent updates for watchdog" type="rss" xmlUrl="https://pypi.org/rss/project/watchdog/releases.xml" htmlUrl="https://pypi.org/project/watchdog/"/>
        <outline title="PyPI recent updates for watchgod" text="PyPI recent updates for watchgod" description="PyPI recent updates for watchgod" type="rss" xmlUrl="https://pypi.org/rss/project/watchgod/releases.xml" htmlUrl="https://pypi.org/project/watchgod/"/>
        <outline title="PyPI recent updates for wcag-contrast-ratio" text="PyPI recent updates for wcag-contrast-ratio" description="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 title="PyPI recent updates for wcmatch" text="PyPI recent updates for wcmatch" description="PyPI recent updates for wcmatch" type="rss" xmlUrl="https://pypi.org/rss/project/wcmatch/releases.xml" htmlUrl="https://pypi.org/project/wcmatch/"/>
        <outline title="PyPI recent updates for wcwidth" text="PyPI recent updates for wcwidth" description="PyPI recent updates for wcwidth" type="rss" xmlUrl="https://pypi.org/rss/project/wcwidth/releases.xml" htmlUrl="https://pypi.org/project/wcwidth/"/>
        <outline title="PyPI recent updates for WeasyPrint" text="PyPI recent updates for WeasyPrint" description="PyPI recent updates for WeasyPrint" type="rss" xmlUrl="https://pypi.org/rss/project/WeasyPrint/releases.xml" htmlUrl="https://pypi.org/project/weasyprint/"/>
        <outline title="PyPI recent updates for webassets" text="PyPI recent updates for webassets" description="PyPI recent updates for webassets" type="rss" xmlUrl="https://pypi.org/rss/project/webassets/releases.xml" htmlUrl="https://pypi.org/project/webassets/"/>
        <outline title="PyPI recent updates for webcolors" text="PyPI recent updates for webcolors" description="PyPI recent updates for webcolors" type="rss" xmlUrl="https://pypi.org/rss/project/webcolors/releases.xml" htmlUrl="https://pypi.org/project/webcolors/"/>
        <outline title="PyPI recent updates for webencodings" text="PyPI recent updates for webencodings" description="PyPI recent updates for webencodings" type="rss" xmlUrl="https://pypi.org/rss/project/webencodings/releases.xml" htmlUrl="https://pypi.org/project/webencodings/"/>
        <outline title="PyPI recent updates for WebOb" text="PyPI recent updates for WebOb" description="PyPI recent updates for WebOb" type="rss" xmlUrl="https://pypi.org/rss/project/WebOb/releases.xml" htmlUrl="https://pypi.org/project/webob/"/>
        <outline title="PyPI recent updates for websocket-client" text="PyPI recent updates for websocket-client" description="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 title="PyPI recent updates for websockets" text="PyPI recent updates for websockets" description="PyPI recent updates for websockets" type="rss" xmlUrl="https://pypi.org/rss/project/websockets/releases.xml" htmlUrl="https://pypi.org/project/websockets/"/>
        <outline title="PyPI recent updates for websockify" text="PyPI recent updates for websockify" description="PyPI recent updates for websockify" type="rss" xmlUrl="https://pypi.org/rss/project/websockify/releases.xml" htmlUrl="https://pypi.org/project/websockify/"/>
        <outline title="PyPI recent updates for WebTest" text="PyPI recent updates for WebTest" description="PyPI recent updates for WebTest" type="rss" xmlUrl="https://pypi.org/rss/project/WebTest/releases.xml" htmlUrl="https://pypi.org/project/webtest/"/>
        <outline title="PyPI recent updates for Werkzeug" text="PyPI recent updates for Werkzeug" description="PyPI recent updates for Werkzeug" type="rss" xmlUrl="https://pypi.org/rss/project/Werkzeug/releases.xml" htmlUrl="https://pypi.org/project/werkzeug/"/>
        <outline title="PyPI recent updates for whatever" text="PyPI recent updates for whatever" description="PyPI recent updates for whatever" type="rss" xmlUrl="https://pypi.org/rss/project/whatever/releases.xml" htmlUrl="https://pypi.org/project/whatever/"/>
        <outline title="PyPI recent updates for wheel" text="PyPI recent updates for wheel" description="PyPI recent updates for wheel" type="rss" xmlUrl="https://pypi.org/rss/project/wheel/releases.xml" htmlUrl="https://pypi.org/project/wheel/"/>
        <outline title="PyPI recent updates for whichcraft" text="PyPI recent updates for whichcraft" description="PyPI recent updates for whichcraft" type="rss" xmlUrl="https://pypi.org/rss/project/whichcraft/releases.xml" htmlUrl="https://pypi.org/project/whichcraft/"/>
        <outline title="PyPI recent updates for whisper" text="PyPI recent updates for whisper" description="PyPI recent updates for whisper" type="rss" xmlUrl="https://pypi.org/rss/project/whisper/releases.xml" htmlUrl="https://pypi.org/project/whisper/"/>
        <outline title="PyPI recent updates for Whoosh" text="PyPI recent updates for Whoosh" description="PyPI recent updates for Whoosh" type="rss" xmlUrl="https://pypi.org/rss/project/Whoosh/releases.xml" htmlUrl="https://pypi.org/project/whoosh/"/>
        <outline title="PyPI recent updates for widgetsnbextension" text="PyPI recent updates for widgetsnbextension" description="PyPI recent updates for widgetsnbextension" type="rss" xmlUrl="https://pypi.org/rss/project/widgetsnbextension/releases.xml" htmlUrl="https://pypi.org/project/widgetsnbextension/"/>
        <outline title="PyPI recent updates for wrapt" text="PyPI recent updates for wrapt" description="PyPI recent updates for wrapt" type="rss" xmlUrl="https://pypi.org/rss/project/wrapt/releases.xml" htmlUrl="https://pypi.org/project/wrapt/"/>
        <outline title="PyPI recent updates for ws4py" text="PyPI recent updates for ws4py" description="PyPI recent updates for ws4py" type="rss" xmlUrl="https://pypi.org/rss/project/ws4py/releases.xml" htmlUrl="https://pypi.org/project/ws4py/"/>
        <outline title="PyPI recent updates for wsaccel" text="PyPI recent updates for wsaccel" description="PyPI recent updates for wsaccel" type="rss" xmlUrl="https://pypi.org/rss/project/wsaccel/releases.xml" htmlUrl="https://pypi.org/project/wsaccel/"/>
        <outline title="PyPI recent updates for WSGIProxy2" text="PyPI recent updates for WSGIProxy2" description="PyPI recent updates for WSGIProxy2" type="rss" xmlUrl="https://pypi.org/rss/project/WSGIProxy2/releases.xml" htmlUrl="https://pypi.org/project/wsgiproxy2/"/>
        <outline title="PyPI recent updates for WSME" text="PyPI recent updates for WSME" description="PyPI recent updates for WSME" type="rss" xmlUrl="https://pypi.org/rss/project/WSME/releases.xml" htmlUrl="https://pypi.org/project/wsme/"/>
        <outline title="PyPI recent updates for wsproto" text="PyPI recent updates for wsproto" description="PyPI recent updates for wsproto" type="rss" xmlUrl="https://pypi.org/rss/project/wsproto/releases.xml" htmlUrl="https://pypi.org/project/wsproto/"/>
        <outline title="PyPI recent updates for wstools" text="PyPI recent updates for wstools" description="PyPI recent updates for wstools" type="rss" xmlUrl="https://pypi.org/rss/project/wstools/releases.xml" htmlUrl="https://pypi.org/project/wstools/"/>
        <outline title="PyPI recent updates for WTForms" text="PyPI recent updates for WTForms" description="PyPI recent updates for WTForms" type="rss" xmlUrl="https://pypi.org/rss/project/WTForms/releases.xml" htmlUrl="https://pypi.org/project/wtforms/"/>
        <outline title="PyPI recent updates for wurlitzer" text="PyPI recent updates for wurlitzer" description="PyPI recent updates for wurlitzer" type="rss" xmlUrl="https://pypi.org/rss/project/wurlitzer/releases.xml" htmlUrl="https://pypi.org/project/wurlitzer/"/>
        <outline title="PyPI recent updates for www-authenticate" text="PyPI recent updates for www-authenticate" description="PyPI recent updates for www-authenticate" type="rss" xmlUrl="https://pypi.org/rss/project/www-authenticate/releases.xml" htmlUrl="https://pypi.org/project/www-authenticate/"/>
        <outline title="PyPI recent updates for wxPython" text="PyPI recent updates for wxPython" description="PyPI recent updates for wxPython" type="rss" xmlUrl="https://pypi.org/rss/project/wxPython/releases.xml" htmlUrl="https://pypi.org/project/wxpython/"/>
        <outline title="PyPI recent updates for xarray" text="PyPI recent updates for xarray" description="PyPI recent updates for xarray" type="rss" xmlUrl="https://pypi.org/rss/project/xarray/releases.xml" htmlUrl="https://pypi.org/project/xarray/"/>
        <outline title="PyPI recent updates for xcffib" text="PyPI recent updates for xcffib" description="PyPI recent updates for xcffib" type="rss" xmlUrl="https://pypi.org/rss/project/xcffib/releases.xml" htmlUrl="https://pypi.org/project/xcffib/"/>
        <outline title="PyPI recent updates for xdg" text="PyPI recent updates for xdg" description="PyPI recent updates for xdg" type="rss" xmlUrl="https://pypi.org/rss/project/xdg/releases.xml" htmlUrl="https://pypi.org/project/xdg/"/>
        <outline title="PyPI recent updates for xdoctest" text="PyPI recent updates for xdoctest" description="PyPI recent updates for xdoctest" type="rss" xmlUrl="https://pypi.org/rss/project/xdoctest/releases.xml" htmlUrl="https://pypi.org/project/xdoctest/"/>
        <outline title="PyPI recent updates for XenAPI" text="PyPI recent updates for XenAPI" description="PyPI recent updates for XenAPI" type="rss" xmlUrl="https://pypi.org/rss/project/XenAPI/releases.xml" htmlUrl="https://pypi.org/project/xenapi/"/>
        <outline title="PyPI recent updates for xlrd" text="PyPI recent updates for xlrd" description="PyPI recent updates for xlrd" type="rss" xmlUrl="https://pypi.org/rss/project/xlrd/releases.xml" htmlUrl="https://pypi.org/project/xlrd/"/>
        <outline title="PyPI recent updates for XlsxWriter" text="PyPI recent updates for XlsxWriter" description="PyPI recent updates for XlsxWriter" type="rss" xmlUrl="https://pypi.org/rss/project/XlsxWriter/releases.xml" htmlUrl="https://pypi.org/project/xlsxwriter/"/>
        <outline title="PyPI recent updates for xlwt" text="PyPI recent updates for xlwt" description="PyPI recent updates for xlwt" type="rss" xmlUrl="https://pypi.org/rss/project/xlwt/releases.xml" htmlUrl="https://pypi.org/project/xlwt/"/>
        <outline title="PyPI recent updates for xmlschema" text="PyPI recent updates for xmlschema" description="PyPI recent updates for xmlschema" type="rss" xmlUrl="https://pypi.org/rss/project/xmlschema/releases.xml" htmlUrl="https://pypi.org/project/xmlschema/"/>
        <outline title="PyPI recent updates for xmlsec" text="PyPI recent updates for xmlsec" description="PyPI recent updates for xmlsec" type="rss" xmlUrl="https://pypi.org/rss/project/xmlsec/releases.xml" htmlUrl="https://pypi.org/project/xmlsec/"/>
        <outline title="PyPI recent updates for xmltodict" text="PyPI recent updates for xmltodict" description="PyPI recent updates for xmltodict" type="rss" xmlUrl="https://pypi.org/rss/project/xmltodict/releases.xml" htmlUrl="https://pypi.org/project/xmltodict/"/>
        <outline title="PyPI recent updates for xvfbwrapper" text="PyPI recent updates for xvfbwrapper" description="PyPI recent updates for xvfbwrapper" type="rss" xmlUrl="https://pypi.org/rss/project/xvfbwrapper/releases.xml" htmlUrl="https://pypi.org/project/xvfbwrapper/"/>
        <outline title="PyPI recent updates for xxhash" text="PyPI recent updates for xxhash" description="PyPI recent updates for xxhash" type="rss" xmlUrl="https://pypi.org/rss/project/xxhash/releases.xml" htmlUrl="https://pypi.org/project/xxhash/"/>
        <outline title="PyPI recent updates for yamlpath" text="PyPI recent updates for yamlpath" description="PyPI recent updates for yamlpath" type="rss" xmlUrl="https://pypi.org/rss/project/yamlpath/releases.xml" htmlUrl="https://pypi.org/project/yamlpath/"/>
        <outline title="PyPI recent updates for yapf" text="PyPI recent updates for yapf" description="PyPI recent updates for yapf" type="rss" xmlUrl="https://pypi.org/rss/project/yapf/releases.xml" htmlUrl="https://pypi.org/project/yapf/"/>
        <outline title="PyPI recent updates for yappi" text="PyPI recent updates for yappi" description="PyPI recent updates for yappi" type="rss" xmlUrl="https://pypi.org/rss/project/yappi/releases.xml" htmlUrl="https://pypi.org/project/yappi/"/>
        <outline title="PyPI recent updates for Yapsy" text="PyPI recent updates for Yapsy" description="PyPI recent updates for Yapsy" type="rss" xmlUrl="https://pypi.org/rss/project/Yapsy/releases.xml" htmlUrl="https://pypi.org/project/yapsy/"/>
        <outline title="PyPI recent updates for yaql" text="PyPI recent updates for yaql" description="PyPI recent updates for yaql" type="rss" xmlUrl="https://pypi.org/rss/project/yaql/releases.xml" htmlUrl="https://pypi.org/project/yaql/"/>
        <outline title="PyPI recent updates for yarl" text="PyPI recent updates for yarl" description="PyPI recent updates for yarl" type="rss" xmlUrl="https://pypi.org/rss/project/yarl/releases.xml" htmlUrl="https://pypi.org/project/yarl/"/>
        <outline title="PyPI recent updates for yaswfp" text="PyPI recent updates for yaswfp" description="PyPI recent updates for yaswfp" type="rss" xmlUrl="https://pypi.org/rss/project/yaswfp/releases.xml" htmlUrl="https://pypi.org/project/yaswfp/"/>
        <outline title="PyPI recent updates for zc.lockfile" text="PyPI recent updates for zc.lockfile" description="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 title="PyPI recent updates for ZConfig" text="PyPI recent updates for ZConfig" description="PyPI recent updates for ZConfig" type="rss" xmlUrl="https://pypi.org/rss/project/ZConfig/releases.xml" htmlUrl="https://pypi.org/project/zconfig/"/>
        <outline title="PyPI recent updates for zeep" text="PyPI recent updates for zeep" description="PyPI recent updates for zeep" type="rss" xmlUrl="https://pypi.org/rss/project/zeep/releases.xml" htmlUrl="https://pypi.org/project/zeep/"/>
        <outline title="PyPI recent updates for zeroconf" text="PyPI recent updates for zeroconf" description="PyPI recent updates for zeroconf" type="rss" xmlUrl="https://pypi.org/rss/project/zeroconf/releases.xml" htmlUrl="https://pypi.org/project/zeroconf/"/>
        <outline title="PyPI recent updates for zipp" text="PyPI recent updates for zipp" description="PyPI recent updates for zipp" type="rss" xmlUrl="https://pypi.org/rss/project/zipp/releases.xml" htmlUrl="https://pypi.org/project/zipp/"/>
        <outline title="PyPI recent updates for zipstream" text="PyPI recent updates for zipstream" description="PyPI recent updates for zipstream" type="rss" xmlUrl="https://pypi.org/rss/project/zipstream/releases.xml" htmlUrl="https://pypi.org/project/zipstream/"/>
        <outline title="PyPI recent updates for zope.component" text="PyPI recent updates for zope.component" description="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 title="PyPI recent updates for zope.configuration" text="PyPI recent updates for zope.configuration" description="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 title="PyPI recent updates for zope.deprecation" text="PyPI recent updates for zope.deprecation" description="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 title="PyPI recent updates for zope.event" text="PyPI recent updates for zope.event" description="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 title="PyPI recent updates for zope.exceptions" text="PyPI recent updates for zope.exceptions" description="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 title="PyPI recent updates for zope.i18nmessageid" text="PyPI recent updates for zope.i18nmessageid" description="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 title="PyPI recent updates for zope.interface" text="PyPI recent updates for zope.interface" description="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 title="PyPI recent updates for zope.schema" text="PyPI recent updates for zope.schema" description="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 title="PyPI recent updates for zope.testing" text="PyPI recent updates for zope.testing" description="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 title="PyPI recent updates for zope.testrunner" text="PyPI recent updates for zope.testrunner" description="PyPI recent updates for zope.testrunner" type="rss" xmlUrl="https://pypi.org/rss/project/zope.testrunner/releases.xml" htmlUrl="https://pypi.org/project/zope-testrunner/"/>
        <outline title="PyPI recent updates for zstandard" text="PyPI recent updates for zstandard" description="PyPI recent updates for zstandard" type="rss" xmlUrl="https://pypi.org/rss/project/zstandard/releases.xml" htmlUrl="https://pypi.org/project/zstandard/"/>
        <outline title="PyPI recent updates for zstd" text="PyPI recent updates for zstd" description="PyPI recent updates for zstd" type="rss" xmlUrl="https://pypi.org/rss/project/zstd/releases.xml" htmlUrl="https://pypi.org/project/zstd/"/>
        <outline title="PyPI recent updates for zVMCloudConnector" text="PyPI recent updates for zVMCloudConnector" description="PyPI recent updates for zVMCloudConnector" type="rss" xmlUrl="https://pypi.org/rss/project/zVMCloudConnector/releases.xml" htmlUrl="https://pypi.org/project/zvmcloudconnector/"/>
        <outline title="PyPI recent updates for zxcvbn" text="PyPI recent updates for zxcvbn" description="PyPI recent updates for zxcvbn" type="rss" xmlUrl="https://pypi.org/rss/project/zxcvbn/releases.xml" htmlUrl="https://pypi.org/project/zxcvbn/"/>
        <outline title="Release notes from cpython" text="Release notes from cpython" description="Release notes from cpython" type="atom" xmlUrl="https://github.com/python/cpython/releases.atom" htmlUrl="https://github.com/python/cpython/releases.atom"/>
        <outline title="Release notes from micropython" text="Release notes from micropython" description="Release notes from micropython" type="atom" xmlUrl="https://github.com/micropython/micropython/releases.atom" htmlUrl="https://github.com/micropython/micropython/releases.atom"/>
      </outline>
  </body>
</opml>