-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathknown-github-tomls.jsonl
4970 lines (4970 loc) · 419 KB
/
known-github-tomls.jsonl
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
{"owner": "0x0aa0", "path": "lib/wormhole/ethereum/foundry.toml", "repo": "Mirror721"}
{"owner": "0xCryptoHorse", "path": "Cargo.toml", "repo": "ruffle-rust"}
{"owner": "0xCryptoHorse", "path": "desktop/Cargo.toml", "repo": "ruffle-rust"}
{"owner": "0xCryptoHorse", "path": "render/webgl/Cargo.toml", "repo": "ruffle-rust"}
{"owner": "0xCryptoHorse", "path": "video/Cargo.toml", "repo": "ruffle-rust"}
{"owner": "0xCryptoHorse", "path": "video/software/Cargo.toml", "repo": "ruffle-rust"}
{"owner": "0xCryptoHorse", "path": "wstr/Cargo.toml", "repo": "ruffle-rust"}
{"owner": "0xGosu", "path": "pyproject.toml", "ref": "main", "repo": "OpenBBTerminal"}
{"owner": "0xPlaygrounds", "path": "pyproject.toml", "ref": "main", "repo": "subgrounds"}
{"owner": "0xshodan", "path": "pyproject.toml", "ref": "master", "repo": "rippo-shop"}
{"owner": "0xsirsaif", "path": "pyproject.toml", "ref": "main", "repo": "appins"}
{"owner": "12rambau", "path": "pyproject.toml", "repo": "goe4lup"}
{"owner": "12rambau", "path": "sepal_ui/templates/map_app/pyproject.toml", "repo": "sepal_ui"}
{"owner": "12rambau", "path": "sepal_ui/templates/panel_app/pyproject.toml", "repo": "sepal_ui"}
{"owner": "13robin37", "path": "pyproject.toml", "ref": "master", "repo": "mealie"}
{"owner": "1PaCHeK1", "path": "pyproject.toml", "ref": "master", "repo": "Nastya_parser"}
{"owner": "1modm", "path": "pyproject.toml", "repo": "petereport"}
{"owner": "2075", "path": "data/ecosystems/p/pixura.toml", "repo": "crypto-ecosystems"}
{"owner": "20tab", "path": "pyproject.toml", "ref": "main", "repo": "django-continuous-delivery"}
{"owner": "20tab", "path": "{{cookiecutter.project_dirname}}/pyproject.toml", "repo": "django-continuous-delivery"}
{"owner": "20tab", "path": "pyproject.toml", "ref": "main", "repo": "nextjs-continuous-delivery"}
{"owner": "20tab", "path": "pyproject.toml", "ref": "main", "repo": "talos"}
{"owner": "22388o", "path": "data/ecosystems/c/counterfactual.toml", "repo": "crypto-ecosystems"}
{"owner": "3MysticApes", "path": "hatch.toml", "repo": "3mystic_cloud_client"}
{"owner": "3MysticApes", "path": "pyproject.toml", "repo": "3mystic_cloud_client"}
{"owner": "3coins", "path": "pyproject.toml", "repo": "jupyter_releaser"}
{"owner": "3coins", "path": "pyproject.toml", "repo": "jupyter_server"}
{"owner": "4DNucleome", "path": "pyproject.toml", "ref": "master", "repo": "PartSeg"}
{"owner": "4eckah78", "path": "pyproject.toml", "ref": "main", "repo": "typical_python_project"}
{"owner": "4tlc", "path": "helix/config.toml", "repo": "dotfiles"}
{"owner": "5ei74R0", "path": "pyproject.toml", "ref": "main", "repo": "llm_playground"}
{"owner": "7Steeven", "path": "pyproject.toml", "ref": "master", "repo": "synapse"}
{"owner": "999lakhisidhu", "path": "pyproject.toml", "ref": "master", "repo": "synapse"}
{"owner": "ABohynDOE", "path": "pyproject.toml", "ref": "main", "repo": "csw93"}
{"owner": "ABohynDOE", "path": "pyproject.toml", "ref": "master", "repo": "fatld"}
{"owner": "ACucos1", "path": "pyproject.toml", "ref": "main", "repo": "rd-pynecone"}
{"owner": "ADACS-Australia", "path": "pyproject.toml", "ref": "main", "repo": "Rombus"}
{"owner": "ADGEfficiency", "path": "pyproject.toml", "ref": "main", "repo": "climate-news-db"}
{"owner": "AFM-SPM", "path": "pyproject.toml", "repo": "TopoStats"}
{"owner": "AI4S2S", "path": "pyproject.toml", "repo": "s2spy"}
{"owner": "ANL-Braid", "path": "pyproject.toml", "ref": "main", "repo": "triggers"}
{"owner": "ANaka", "path": "pyproject.toml", "ref": "main", "repo": "brr"}
{"owner": "ARM-DOE", "path": "pyproject.toml", "repo": "pyart"}
{"owner": "Aarhus-Psychiatry-Research", "path": "pyproject.toml", "repo": "psycop-model-training"}
{"owner": "Aarhus-Psychiatry-Research", "path": "pyproject.toml", "repo": "t2d-feature-generation"}
{"owner": "Aaron1011", "path": "scanner/Cargo.toml", "repo": "ruffle"}
{"owner": "AaronCWacker", "path": "pyproject.toml", "ref": "main", "repo": "ACA-Flask-Media"}
{"owner": "AaronDewes", "path": "pyproject.toml", "ref": "master", "repo": "synapse"}
{"owner": "Ableton", "path": "pyproject.toml", "ref": "master", "repo": "groovylint"}
{"owner": "Aboussejra", "path": "pyproject.toml", "ref": "master", "repo": "my_cookicutter_template"}
{"owner": "Aboussejra", "path": "pyproject.toml", "ref": "master", "repo": "type_checker"}
{"owner": "AbstractSDK", "path": "data/ecosystems/c/celo-dollar.toml", "repo": "crypto-ecosystems"}
{"owner": "AbstractSDK", "path": "data/ecosystems/f/frax.toml", "repo": "crypto-ecosystems"}
{"owner": "AbstractSDK", "path": "data/ecosystems/f/freight-trust-clearing-network.toml", "repo": "crypto-ecosystems"}
{"owner": "AbstractSDK", "path": "data/ecosystems/n/nethermind.toml", "repo": "crypto-ecosystems"}
{"owner": "AbstractSDK", "path": "data/ecosystems/n/nomic-foundation.toml", "repo": "crypto-ecosystems"}
{"owner": "AbstractSDK", "path": "data/ecosystems/q/quillhash.toml", "repo": "crypto-ecosystems"}
{"owner": "AbstractUmbra", "path": "pyproject.toml", "ref": "main", "repo": "Kotka"}
{"owner": "Academia-de-Dados", "path": "pyproject.toml", "ref": "main", "repo": "crawlers"}
{"owner": "ActivityWatch", "path": "pyproject.toml", "ref": "master", "repo": "aw-core"}
{"owner": "AdaCore", "path": "pyproject.toml", "repo": "RecordFlux-devutils"}
{"owner": "Adnan-030", "path": "pyproject.toml", "ref": "master", "repo": "synapse"}
{"owner": "AdrienPensart", "path": "pyproject.toml", "ref": "master", "repo": "click-skeleton"}
{"owner": "AdrienPensart", "path": "pyproject.toml", "ref": "master", "repo": "musicbot"}
{"owner": "Afiz-R", "path": "pyproject.toml", "ref": "main", "repo": "fastapi-postgres-realworld"}
{"owner": "AgafonovSiberia", "path": "pyproject.toml", "ref": "master", "repo": "CLI_client_DaData.ru"}
{"owner": "AgafonovSiberia", "path": "pyproject.toml", "ref": "master", "repo": "PriceService"}
{"owner": "AgafonovSiberia", "path": "pyproject.toml", "ref": "master", "repo": "auth_service_FastAPI"}
{"owner": "Against61", "path": "pyproject.toml", "ref": "master", "repo": "langflow"}
{"owner": "AjayShanker-geek", "path": "pyproject.toml", "repo": "core"}
{"owner": "Akagi201", "path": "pyproject.toml", "ref": "master", "repo": "poetry-template"}
{"owner": "Akeporn-Siwilai", "path": "pyproject.toml", "ref": "master", "repo": "synapse"}
{"owner": "AlTosterino", "path": "pyproject.toml", "ref": "main", "repo": "ADR-py"}
{"owner": "AlTosterino", "path": "pyproject.toml", "ref": "main", "repo": "Lidi"}
{"owner": "Alberto195", "path": "pyproject.toml", "ref": "main", "repo": "Algo_Inner"}
{"owner": "Aldion0731", "path": "pyproject.toml", "ref": "main", "repo": "neural-net-fastapi-deployment"}
{"owner": "AlexSwtlsk", "path": "pyproject.toml", "ref": "main", "repo": "OpenBBTerminal"}
{"owner": "AlexTheJPEG", "path": "pyproject.toml", "ref": "master", "repo": "ted-z"}
{"owner": "AlexTom22", "path": "pyproject.toml", "ref": "main", "repo": "TestCapitalCom"}
{"owner": "AlexWaygood", "path": "hatch.toml", "repo": "hatch"}
{"owner": "AlexisZam", "path": "pyproject.toml", "ref": "main", "repo": "diploma-thesis"}
{"owner": "Algo-Foundry", "path": "pyproject.toml", "ref": "main", "repo": "demo-abi-app"}
{"owner": "AlisonB319", "path": "pyproject.toml", "ref": "main", "repo": "OpenBBTerminal"}
{"owner": "AllenInstitute", "path": "pyproject.toml", "repo": "np_audio_control"}
{"owner": "AllenInstitute", "path": "pyproject.toml", "repo": "np_workflows"}
{"owner": "Almaz2312", "path": "pyproject.toml", "ref": "master", "repo": "Metrics-Bot"}
{"owner": "Alpaca00", "path": "pyproject.toml", "ref": "master", "repo": "pytest-chic-report"}
{"owner": "Alurith", "path": "pyproject.toml", "ref": "main", "repo": "litestar-mqtt"}
{"owner": "Alurith", "path": "pyproject.toml", "ref": "master", "repo": "litestar-utils"}
{"owner": "Aman-deepsingh1", "path": "pyproject.toml", "ref": "master", "repo": "demo-repo"}
{"owner": "Amourspirit", "path": "pyproject.toml", "repo": "python-ooouno-ex"}
{"owner": "Amourspirit", "path": "pyproject.toml", "ref": "main", "repo": "python_ooo_dev_tools"}
{"owner": "AnatolyBobunov", "path": "pyproject.toml", "ref": "main", "repo": "LeetCodeProblems"}
{"owner": "Andre0512", "path": "pyproject.toml", "ref": "master", "repo": "home-assistant"}
{"owner": "AndreWohnsland", "path": "pyproject.toml", "ref": "master", "repo": "CocktailBerry"}
{"owner": "Andrei-Aksionov", "path": "pyproject.toml", "ref": "main", "repo": "TheLastAlgorithmsCourseYouWillNeed"}
{"owner": "Andrei-Aksionov", "path": "pyproject.toml", "ref": "main", "repo": "nanoGPTplus"}
{"owner": "AndroidDumps", "path": "pyproject.toml", "ref": "master", "repo": "dumpbot"}
{"owner": "AndydeCleyre", "path": "pyproject.toml", "ref": "master", "repo": "nestedtextto"}
{"owner": "Angivare", "path": "pyproject.toml", "ref": "master", "repo": "tortoise-orm"}
{"owner": "AnnaMatuszynska", "path": "pyproject.toml", "ref": "main", "repo": "biotool-photosynthesis"}
{"owner": "AntonFriberg", "path": "pyproject.toml", "ref": "main", "repo": "dagster-project-example"}
{"owner": "AnyGlitch", "path": "pyproject.toml", "ref": "master", "repo": "polk-russia-bot"}
{"owner": "AppDaemon", "path": "pyproject.toml", "ref": "master", "repo": "appdaemon"}
{"owner": "Argmaster", "path": "pyproject.toml", "ref": "main", "repo": "CSSFinder"}
{"owner": "Argmaster", "path": "pyproject.toml", "ref": "main", "repo": "cssfinder_backend_numpy"}
{"owner": "Argmaster", "path": "pyproject.toml", "ref": "main", "repo": "cssfinder_backend_rust"}
{"owner": "Arize-ai", "path": "pyproject.toml", "repo": "phoenix"}
{"owner": "Armoniad1234", "path": "pyproject.toml", "ref": "main", "repo": "MyTortoiseFast"}
{"owner": "Arpitchugh", "path": "pyproject.toml", "repo": "zulip"}
{"owner": "ArthurZucker", "path": "pyproject.toml", "repo": "transformers"}
{"owner": "Arturomtz8", "path": "pyproject.toml", "ref": "main", "repo": "de-zoomcamp-project"}
{"owner": "AsedyZzZ", "path": "pyproject.toml", "ref": "master", "repo": "bot"}
{"owner": "AsiPanda", "path": "pyproject.toml", "ref": "master", "repo": "sqlalchemy-auth-hooks"}
{"owner": "Aspect1103", "path": "pyproject.toml", "ref": "master", "repo": "Hades"}
{"owner": "Aspect1103", "path": "pyproject.toml", "ref": "main", "repo": "Hades"}
{"owner": "Aspect1103", "path": "pyproject.toml", "ref": "master", "repo": "Hades"}
{"owner": "Aspect1103", "path": "pyproject.toml", "ref": "main", "repo": "Hades"}
{"owner": "AstraZeneca", "path": "pyproject.toml", "ref": "main", "repo": "magnus-core"}
{"owner": "Atem18", "path": "pyproject.toml", "ref": "main", "repo": "isocodes"}
{"owner": "AtomicMegaNerd", "path": "pyproject.toml", "ref": "main", "repo": "python-fp-course"}
{"owner": "Atsushi-Ishii", "path": "pyproject.toml", "ref": "master", "repo": "langchain_custom"}
{"owner": "AtsushiSakai", "path": "ruff.toml", "ref": "master", "repo": "PythonRobotics"}
{"owner": "AugustinDura", "path": "pyproject.toml", "ref": "master", "repo": "recuperation_eau_pluie"}
{"owner": "AumitLeon", "path": "pyproject.toml", "ref": "main", "repo": "nba-data"}
{"owner": "Avasam", "path": "pyproject.toml", "ref": "main", "repo": "speedrun.com_global_scoreboard_webapp"}
{"owner": "B-cos", "path": "pyproject.toml", "ref": "main", "repo": "B-cos-v2"}
{"owner": "BAMWelDX", "path": "pyproject.toml", "repo": "weldx"}
{"owner": "BC-SECURITY", "path": "pyproject.toml", "ref": "main", "repo": "Empire"}
{"owner": "BGmi", "path": "pyproject.toml", "ref": "master", "repo": "anime-episode-parser"}
{"owner": "BabuJeff", "path": "pyproject.toml", "ref": "master", "repo": "OpenBBTerminal"}
{"owner": "Bale001", "path": "exporter/Cargo.toml", "repo": "ruffle"}
{"owner": "Bale001", "path": "codegen/Cargo.toml", "repo": "rustasc"}
{"owner": "Barahlush", "path": "pyproject.toml", "ref": "main", "repo": "Auth_sprint_1"}
{"owner": "Barahlush", "path": "pyproject.toml", "ref": "main", "repo": "Auth_sprint_2"}
{"owner": "Barahlush", "path": "pyproject.toml", "repo": "della_parser_bot"}
{"owner": "Barahlush", "path": "pyproject.toml", "ref": "main", "repo": "housekeeper-tg-bot"}
{"owner": "Barahlush", "path": "pyproject.toml", "ref": "main", "repo": "telegram-pipe"}
{"owner": "Barahlush", "path": "pyproject.toml", "ref": "main", "repo": "vastai_client"}
{"owner": "Barry1", "path": "pyproject.toml", "ref": "main", "repo": "PyValueFragments"}
{"owner": "Bart6114", "path": "pyproject.toml", "ref": "main", "repo": "pandoc-run-python"}
{"owner": "Beachnad", "path": "pyproject.toml", "ref": "master", "repo": "data_engineering_project"}
{"owner": "Beauhurst", "path": "pyproject.toml", "ref": "main", "repo": "django-pg-simple-hll"}
{"owner": "BellezaEmporium", "path": "pyproject.toml", "repo": "streamlink"}
{"owner": "Bemycatpeng", "path": "pyproject.toml", "ref": "main", "repo": "langflow"}
{"owner": "BenBenBenB", "path": "pyproject.toml", "ref": "main", "repo": "nbt-structure-utils"}
{"owner": "BenLubar", "path": "core/macros/Cargo.toml", "repo": "ruffle"}
{"owner": "BenLubar", "path": "web/common/Cargo.toml", "repo": "ruffle"}
{"owner": "BendingSpoons", "path": "pyproject.toml", "ref": "master", "repo": "poetry-cached-url-deps-plugin"}
{"owner": "BendingSpoons", "path": "pyproject.toml", "ref": "master", "repo": "poetry-private-repo-plugin"}
{"owner": "BenjaminDebotte", "path": "pyproject.toml", "ref": "master", "repo": "interview-lg-isitfriday"}
{"owner": "BenjikQ", "path": "pyproject.toml", "ref": "master", "repo": "BridgeGame"}
{"owner": "BeringLab", "path": "pyproject.toml", "ref": "main", "repo": "backend-assignment"}
{"owner": "Berkeley-CS61B", "path": "pyproject.toml", "ref": "main", "repo": "BSAG"}
{"owner": "Berkeley-CS61B", "path": "pyproject.toml", "ref": "main", "repo": "bsag-jh61b"}
{"owner": "Betagmr", "path": "pyproject.toml", "ref": "master", "repo": "hacktheclone"}
{"owner": "Big-Dig-Data", "path": "pyproject.toml", "ref": "master", "repo": "celus-nibbler"}
{"owner": "BimaAdi", "path": "pyproject.toml", "ref": "main", "repo": "fastapi-with-python-socketio-example"}
{"owner": "Bing-su", "path": "pyproject.toml", "ref": "main", "repo": "ffxiv_ko_en_data_concat"}
{"owner": "Bing-su", "path": "pyproject.toml", "ref": "main", "repo": "genshin-auto-daily-check-in-docker"}
{"owner": "Bing-su", "path": "pyproject.toml", "ref": "main", "repo": "hf_speecht5"}
{"owner": "Bing-su", "path": "pyproject.toml", "repo": "julgi-game"}
{"owner": "Bing-su", "path": "pyproject.toml", "ref": "main", "repo": "my_language_modeling"}
{"owner": "Bing-su", "path": "pyproject.toml", "repo": "sd-webui-tunnels"}
{"owner": "Bing-su", "path": "pyproject.toml", "repo": "sdsim"}
{"owner": "BiznetGIO", "path": "agent/pyproject.toml", "repo": "RESTKnot"}
{"owner": "BiznetGIO", "path": "api/pyproject.toml", "repo": "RESTKnot"}
{"owner": "BlakeJC94", "path": "ruff/.ruff.toml", "repo": ".dots"}
{"owner": "BlockstreamResearch", "path": "Cargo.toml", "repo": "dicemix"}
{"owner": "Blosc", "path": "pyproject.toml", "ref": "main", "repo": "python-blosc2"}
{"owner": "Blue-Bookl", "path": ".cargo/config.toml", "repo": "ruff"}
{"owner": "Blue-Yonder-OSS", "path": "pyproject.toml", "ref": "main", "repo": "cyclic-boosting"}
{"owner": "Bobronium", "path": "pyproject.toml", "repo": "duper"}
{"owner": "BobuxBot", "path": "pyproject.toml", "ref": "master", "repo": "BobuxAdmin"}
{"owner": "Bonganibendi", "path": "pyproject.toml", "ref": "master", "repo": "OpenBBTerminal"}
{"owner": "Borda", "path": "pyproject.toml", "repo": "kaggle_SandBox"}
{"owner": "Borg93", "path": "pyproject.toml", "ref": "main", "repo": "kbuhist2"}
{"owner": "Borg93", "path": "pyproject.toml", "ref": "main", "repo": "riks_ds_utils"}
{"owner": "Bpolitycki", "path": "pyproject.toml", "ref": "main", "repo": "gerpar-scraper"}
{"owner": "Bpolitycki", "path": "pyproject.toml", "ref": "main", "repo": "saxonche-stubs"}
{"owner": "BradenM", "path": "pyproject.toml", "ref": "master", "repo": "micropy-cli"}
{"owner": "BradenM", "path": "pyproject.toml", "ref": "master", "repo": "pydngconverter"}
{"owner": "Brandi1981", "path": "desktop/Cargo.toml", "repo": "ruffle"}
{"owner": "Brandi1981", "path": "render/canvas/Cargo.toml", "repo": "ruffle"}
{"owner": "Brandi1981", "path": "wstr/Cargo.toml", "repo": "ruffle"}
{"owner": "BrianPugh", "path": "pyproject.toml", "repo": "autoregistry"}
{"owner": "BruceEckel", "path": "pyproject.toml", "ref": "main", "repo": "RethinkingObjects"}
{"owner": "Bughalla", "path": "pyproject.toml", "repo": "angr_angr"}
{"owner": "Bughalla", "path": "pyproject.toml", "repo": "aws_aws-sam-cli"}
{"owner": "Bughalla", "path": "pyproject.toml", "repo": "huggingface_accelerate"}
{"owner": "Bughalla", "path": "pyproject.toml", "repo": "lightning-ai_lightning"}
{"owner": "Bughalla", "path": "pyproject.toml", "ref": "master", "repo": "matrix-org_synapse"}
{"owner": "Bughalla", "path": "pyproject.toml", "repo": "netflix_dispatch"}
{"owner": "Bughalla", "path": "pyproject.toml", "ref": "main", "repo": "openbb-finance_openbbterminal"}
{"owner": "Bughalla", "path": "pyproject.toml", "repo": "strawberry-graphql_strawberry"}
{"owner": "Bughalla", "path": "pyproject.toml", "repo": "zenml-io_zenml"}
{"owner": "Bughalla", "path": "pyproject.toml", "repo": "zulip_zulip"}
{"owner": "Bukuj", "path": "pyproject.toml", "ref": "master", "repo": "synapse"}
{"owner": "BurnySc2", "path": "fastapi_server/pyproject.toml", "repo": "monorepo"}
{"owner": "BurnySc2", "path": "pyproject.toml", "ref": "master", "repo": "monorepo"}
{"owner": "BusesCanFly", "path": "pyproject.toml", "repo": "PlasmaPy"}
{"owner": "BychkovRY", "path": "pyproject.toml", "ref": "main", "repo": "OpenBBTerminal"}
{"owner": "C4AI", "path": "pyproject.toml", "ref": "main", "repo": "blab-chatbot-bot-client"}
{"owner": "C4AI", "path": "pyproject.toml", "ref": "main", "repo": "blab-chatbot-deepage"}
{"owner": "C4AI", "path": "pyproject.toml", "ref": "main", "repo": "blab-chatbot-rasa"}
{"owner": "C4AI", "path": "pyproject.toml", "ref": "main", "repo": "blab-chatbot-watson"}
{"owner": "CDucloux", "path": "pyproject.toml", "ref": "master", "repo": "taxidriver"}
{"owner": "CLU91", "path": "pyproject.toml", "ref": "master", "repo": "synapse"}
{"owner": "CM000n", "path": "pyproject.toml", "ref": "main", "repo": "qss"}
{"owner": "CMHopeSunshine", "path": "pyproject.toml", "ref": "master", "repo": "tortoise-orm"}
{"owner": "CNLearn", "path": "pyproject.toml", "ref": "main", "repo": "backend"}
{"owner": "CSIRO-GeoscienceAnalytics", "path": "pyproject.toml", "ref": "main", "repo": "spectral-tools"}
{"owner": "CTSRD-CHERI", "path": "pyproject.toml", "repo": "cheribuild"}
{"owner": "CUB3D", "path": "desktop/Cargo.toml", "repo": "ruffle"}
{"owner": "CUB3D", "path": "render/wgpu/Cargo.toml", "repo": "ruffle"}
{"owner": "CUB3D", "path": "Cargo.toml", "repo": "ruffle-fuzz"}
{"owner": "CXPhoenix", "path": "pyproject.toml", "ref": "main", "repo": "pynecone-todo"}
{"owner": "Cabeda", "path": "pyproject.toml", "ref": "master", "repo": "time-tracker"}
{"owner": "CanaSecret", "path": "pyproject.toml", "ref": "master", "repo": "Chastibrowse"}
{"owner": "CarlosEduardoPereiraMarques", "path": "pyproject.toml", "ref": "main", "repo": "default-strucutre-python-project"}
{"owner": "Carreau", "path": "examples/scipy.toml", "repo": "papyri-fork"}
{"owner": "CatLABS-dev", "path": "pyproject.toml", "repo": "core"}
{"owner": "Ce11an", "path": "pyproject.toml", "ref": "main", "repo": "tfl"}
{"owner": "Centaurioun", "path": "pyproject.toml", "ref": "master", "repo": "Firefox-gecko-dev"}
{"owner": "Centaurioun", "path": "pyproject.toml", "ref": "main", "repo": "pylint"}
{"owner": "Chaoren12345", "path": "pyproject.toml", "ref": "main", "repo": "Horde-Worker"}
{"owner": "ChaosWen03", "path": "pyproject.toml", "ref": "main", "repo": "OpenBBTerminal"}
{"owner": "Checkmk", "path": "pyproject.toml", "repo": "checkmk"}
{"owner": "ChenghaoMou", "path": "pyproject.toml", "ref": "main", "repo": "closedapi"}
{"owner": "ChenghaoMou", "path": "pyproject.toml", "repo": "text-dedup"}
{"owner": "ChenghaoMou", "path": "pyproject.toml", "repo": "touchbar-lyric"}
{"owner": "Chr0nos", "path": "pyproject.toml", "ref": "master", "repo": "motorized"}
{"owner": "ChrTall", "path": "pyproject.toml", "ref": "master", "repo": "synapse"}
{"owner": "ChristianZimpelmann", "path": "pyproject.toml", "repo": "labor_supply_norms"}
{"owner": "Chromosomologist", "path": "pyproject.toml", "repo": "allium"}
{"owner": "Cicada-Software", "path": "pyproject.toml", "ref": "main", "repo": "cicada"}
{"owner": "Cielquan", "path": "pyproject.toml", "repo": "python_test-cielquan"}
{"owner": "CircuitSacul", "path": "pyproject.toml", "ref": "main", "repo": "CodeRunner"}
{"owner": "CircuitSacul", "path": "pyproject.toml", "repo": "Minigames"}
{"owner": "CircuitSacul", "path": "pyproject.toml", "repo": "Starboard-3"}
{"owner": "CircuitSacul", "path": "pyproject.toml", "ref": "main", "repo": "Wires"}
{"owner": "CircuitSacul", "path": "pyproject.toml", "ref": "main", "repo": "mCodingBot"}
{"owner": "CircuitSacul", "path": "pyproject.toml", "ref": "main", "repo": "mockeval"}
{"owner": "CircuitSacul", "path": "pyproject.toml", "ref": "main", "repo": "socketapp"}
{"owner": "City-of-Helsinki", "path": "backend/pyproject.toml", "repo": "hitas"}
{"owner": "ClaasRostock", "path": "pyproject.toml", "ref": "main", "repo": "python_project_template"}
{"owner": "ClementSicard", "path": "pyproject.toml", "ref": "main", "repo": "un-unbis-thesaurus-scraper"}
{"owner": "Cloudzero", "path": "pyproject.toml", "ref": "main", "repo": "cloudzero-uca-tools"}
{"owner": "Cloudzero", "path": "pyproject.toml", "ref": "master", "repo": "cloudzero-uca-tools"}
{"owner": "CodexLink", "path": "pyproject.toml", "ref": "main", "repo": "bizkit-interview-task"}
{"owner": "Cologler", "path": "pyproject.toml", "ref": "master", "repo": "anyioc-python"}
{"owner": "Cologler", "path": "pyproject.toml", "ref": "master", "repo": "tinydb_sqlite-python"}
{"owner": "ComicShrimp", "path": "pyproject.toml", "ref": "main", "repo": "feedverse"}
{"owner": "Cosmoglobe", "path": "pyproject.toml", "ref": "main", "repo": "zodipy"}
{"owner": "CouncilDataProject", "path": "pyproject.toml", "repo": "cdp-backend"}
{"owner": "CouncilDataProject", "path": "pyproject.toml", "repo": "cdp-data"}
{"owner": "CouncilDataProject", "path": "pyproject.toml", "repo": "cdp-gh-utils"}
{"owner": "CouncilDataProject", "path": "pyproject.toml", "repo": "transcript-file-format"}
{"owner": "Craigacp", "path": ".lintrunner.toml", "repo": "onnxruntime"}
{"owner": "CrazyBonze", "path": "pyproject.toml", "ref": "main", "repo": "PydanticDB"}
{"owner": "Crocmagnon", "path": "pyproject.toml", "ref": "master", "repo": "blog"}
{"owner": "Crocmagnon", "path": "pyproject.toml", "ref": "master", "repo": "charasheet"}
{"owner": "Crocmagnon", "path": "pyproject.toml", "ref": "master", "repo": "checkout"}
{"owner": "Crocmagnon", "path": "pyproject.toml", "ref": "master", "repo": "hass_grdf_api"}
{"owner": "CuriousLearner", "path": "ruff.toml", "ref": "master", "repo": "django-phone-verify"}
{"owner": "Cyberx9901", "path": "pyproject.toml", "ref": "master", "repo": "synapse"}
{"owner": "Cyr-ius", "path": "pyproject.toml", "ref": "master", "repo": "home-assistant"}
{"owner": "D-Roberts", "path": "pyproject.toml", "repo": "transformers"}
{"owner": "DBonbon", "path": "pyproject.toml", "ref": "master", "repo": "leacards-paw"}
{"owner": "DBonbon", "path": "Lea-Cards/src/pyproject.toml", "repo": "wagtail-pipit-leacards"}
{"owner": "DBonbon", "path": "pyproject.toml", "ref": "master", "repo": "wagtail-pipit-scratch11"}
{"owner": "DHARPA-Project", "path": "pyproject.toml", "repo": "kiara_plugin.develop"}
{"owner": "DHARPA-Project", "path": "pyproject.toml", "repo": "kiara_plugin.dh_tagung_2023"}
{"owner": "DHARPA-Project", "path": "pyproject.toml", "repo": "kiara_plugin.network_analysis"}
{"owner": "DHolmanCoding", "path": "pyproject.toml", "ref": "master", "repo": "python-template"}
{"owner": "DLR-RM", "path": "pyproject.toml", "ref": "master", "repo": "rl-baselines3-zoo"}
{"owner": "DOCtorActoAntohich", "path": "pyproject.toml", "ref": "master", "repo": "emi"}
{"owner": "DOCtorActoAntohich", "path": "ruff.toml", "repo": "emi"}
{"owner": "DOCtorActoAntohich", "path": "pyproject.toml", "ref": "master", "repo": "enchanted-motorbike"}
{"owner": "DTN-Public", "path": "pyproject.toml", "ref": "main", "repo": "intake-pattern-catalog"}
{"owner": "Daco2020", "path": "pyproject.toml", "ref": "main", "repo": "LoveLingo-backend"}
{"owner": "Damola-Olugboji", "path": "pyproject.toml", "ref": "master", "repo": "OpenBBTerminal"}
{"owner": "DanCardin", "path": "pyproject.toml", "ref": "main", "repo": "sqlalchemy-declarative-extensions"}
{"owner": "DariuszPorowski", "path": "pyproject.toml", "ref": "main", "repo": "mkdocs-file-filter-plugin"}
{"owner": "Darsstar", "path": "pyproject.toml", "ref": "main", "repo": "sitecustomize-entrypoints"}
{"owner": "DashAISoftware", "path": "pyproject.toml", "ref": "master", "repo": "DashAI"}
{"owner": "DataDog", "path": "hatch.toml", "repo": "ddqa"}
{"owner": "DataDog", "path": "pyproject.toml", "repo": "ddqa"}
{"owner": "DataDog", "path": "hatch.toml", "repo": "hatch-datadog-build-metadata"}
{"owner": "DataDog", "path": "pyproject.toml", "repo": "hatch-datadog-build-metadata"}
{"owner": "DataDog", "path": "ddev/pyproject.toml", "repo": "integrations-core"}
{"owner": "DataShades", "path": "pyproject.toml", "repo": "ckanext-toolbelt"}
{"owner": "DavHau", "path": "pyproject.toml", "repo": "zulip"}
{"owner": "DavidZhang73", "path": "pyproject.toml", "repo": "pytorch-lightning-template"}
{"owner": "DavideCanton", "path": "pyproject.toml", "ref": "main", "repo": "advent-of-code-2022"}
{"owner": "DeCa09", "path": "pyproject.toml", "ref": "main", "repo": "python-cicd-template"}
{"owner": "DeadNews", "path": "pyproject.toml", "ref": "main", "repo": "deadnews-template-python"}
{"owner": "DeadNews", "path": "pyproject.toml", "ref": "main", "repo": "dnfunc"}
{"owner": "DeadNews", "path": "pyproject.toml", "ref": "main", "repo": "encode-scripts"}
{"owner": "DeadNews", "path": "pyproject.toml", "ref": "main", "repo": "encode-utils-cli"}
{"owner": "DeadNews", "path": "pyproject.toml", "ref": "main", "repo": "firebirdsql-run"}
{"owner": "DeadNews", "path": "pyproject.toml", "ref": "main", "repo": "images-upload-cli"}
{"owner": "Debroni27", "path": "pyproject.toml", "ref": "master", "repo": "Django_project_template"}
{"owner": "Debroni27", "path": "pyproject.toml", "ref": "master", "repo": "DogCity"}
{"owner": "DecentricCorp", "path": "data/ecosystems/c/counterfactual.toml", "repo": "crypto-ecosystems"}
{"owner": "DecentricCorp", "path": "data/ecosystems/t/thunder-token.toml", "repo": "crypto-ecosystems"}
{"owner": "Dedaub", "path": "pyproject.toml", "ref": "master", "repo": "pySAD"}
{"owner": "DeepRec-AI", "path": "pyproject.toml", "repo": "HybridBackend"}
{"owner": "Delnegend", "path": "pyproject.toml", "ref": "main", "repo": "pp2023"}
{"owner": "DelphineLemire", "path": "pyproject.toml", "ref": "main", "repo": "documentary-watch"}
{"owner": "DemocracyClub", "path": "pyproject.toml", "ref": "master", "repo": "aggregator-api"}
{"owner": "DemocracyClub", "path": "pyproject.toml", "repo": "dc_logging"}
{"owner": "DemocracyClub", "path": "pyproject.toml", "ref": "main", "repo": "dc_response_builder"}
{"owner": "DemocracyClub", "path": "pyproject.toml", "ref": "main", "repo": "ec-postcode-lookup-pages"}
{"owner": "Denis-Poloczek", "path": "pyproject.toml", "ref": "main", "repo": "autobot"}
{"owner": "Derugal87", "path": "pyproject.toml", "ref": "main", "repo": "demo-abi-app-tutorial"}
{"owner": "DevHolako", "path": "pyproject.toml", "ref": "master", "repo": "langflow"}
{"owner": "DevJadhav", "path": "pyproject.toml", "ref": "main", "repo": "zenml"}
{"owner": "Developers81828182", "path": "hatch.toml", "repo": "hatch"}
{"owner": "Developers81828182", "path": "pyproject.toml", "repo": "pip-audit"}
{"owner": "DevotedExuDevelopersTeam", "path": "pyproject.toml", "ref": "master", "repo": "Core"}
{"owner": "DevotedExuDevelopersTeam", "path": "pyproject.toml", "ref": "master", "repo": "EventMaster"}
{"owner": "DevzoneCommunity", "path": "pyproject.toml", "ref": "main", "repo": "faag_cli"}
{"owner": "DevzoneCommunity", "path": "pyproject.toml", "ref": "main", "repo": "face_characters_detection"}
{"owner": "DevzoneCommunity", "path": "pyproject.toml", "ref": "master", "repo": "python_starter_code"}
{"owner": "Dhrylanton", "path": "pyproject.toml", "ref": "master", "repo": "langflow2"}
{"owner": "Diapolo10", "path": "pyproject.toml", "ref": "main", "repo": "Tsukasa-credit-card-gag-scam"}
{"owner": "Diegiwg", "path": "pyproject.toml", "ref": "master", "repo": "magic-regexp"}
{"owner": "Diegiwg", "path": "pyproject.toml", "ref": "main", "repo": "sistema-de-gestao-de-fichas"}
{"owner": "Diegiwg", "path": "pyproject.toml", "ref": "master", "repo": "unopy"}
{"owner": "DimitriPapadopoulos", "path": "pyproject.toml", "ref": "master", "repo": "parsec-cloud"}
{"owner": "Dinmukhamet", "path": "pyproject.toml", "ref": "main", "repo": "little-lemon"}
{"owner": "Dinmukhamet", "path": "pyproject.toml", "ref": "main", "repo": "seeds"}
{"owner": "Dinnerbone", "path": "exporter/Cargo.toml", "repo": "ruffle"}
{"owner": "Dinnerbone", "path": "wstr/Cargo.toml", "repo": "ruffle"}
{"owner": "Dinnerbone", "path": "Cargo.toml", "repo": "swf-rs"}
{"owner": "Dirlandets", "path": "pyproject.toml", "repo": "ruff-in-docker"}
{"owner": "DisnakeDev", "path": "pyproject.toml", "repo": "disnake"}
{"owner": "Div99", "path": "pyproject.toml", "ref": "master", "repo": "langflow"}
{"owner": "DjKuj", "path": "pyproject.toml", "ref": "main", "repo": "databricks-exam-generator"}
{"owner": "Djelibeybi", "path": "pyproject.toml", "ref": "master", "repo": "home-assistant-core"}
{"owner": "DoctorJohn", "path": "pyproject.toml", "ref": "main", "repo": "django-admin-anchors"}
{"owner": "DoctorJohn", "path": "pyproject.toml", "ref": "main", "repo": "django-admin-notice"}
{"owner": "DoctorJohn", "path": "pyproject.toml", "repo": "strawberry"}
{"owner": "DonaldMaxwell", "path": "pyproject.toml", "ref": "master", "repo": "railwaylangflow"}
{"owner": "Donkie", "path": "pyproject.toml", "ref": "master", "repo": "Spoolman"}
{"owner": "Dragonlord1005", "path": "pyproject.toml", "ref": "main", "repo": "spotify-playlist"}
{"owner": "Drowrin", "path": "pyproject.toml", "ref": "main", "repo": "modron"}
{"owner": "Dufran", "path": "pyproject.toml", "ref": "main", "repo": "dash_sandbox"}
{"owner": "Dufran", "path": "pyproject.toml", "ref": "main", "repo": "django-batteries"}
{"owner": "DurgNomis-drol", "path": "pyproject.toml", "ref": "master", "repo": "ha_toyota"}
{"owner": "DurkaFlurk", "path": "pyproject.toml", "ref": "main", "repo": "openandroidinstaller"}
{"owner": "DynamEq6388", "path": "pyproject.toml", "repo": "fastapi"}
{"owner": "EBI-Metagenomics", "path": "pyproject.toml", "ref": "master", "repo": "motus_pipeline"}
{"owner": "EBI-Metagenomics", "path": "pyproject.toml", "ref": "main", "repo": "motus_pipeline"}
{"owner": "EGAMAGZ", "path": "pyproject.toml", "ref": "master", "repo": "ContactBookFlet"}
{"owner": "ESloman", "path": "pyproject.toml", "ref": "main", "repo": "bsebot"}
{"owner": "EV-charges", "path": "pyproject.toml", "ref": "master", "repo": "api"}
{"owner": "EV-charges", "path": "pyproject.toml", "ref": "master", "repo": "parsers"}
{"owner": "EdgyEdgemond", "path": "pyproject.toml", "ref": "master", "repo": "app-confetti"}
{"owner": "EdgyEdgemond", "path": "pyproject.toml", "ref": "master", "repo": "changelog-gen"}
{"owner": "EdgyEdgemond", "path": "pyproject.toml", "ref": "master", "repo": "web-error"}
{"owner": "EgShes", "path": "pyproject.toml", "repo": "one_task_multiple_infras"}
{"owner": "EggBert001", "path": "pyproject.toml", "ref": "master", "repo": "OpenBBTerminal"}
{"owner": "ElijahAhianyo", "path": "pyproject.toml", "ref": "main", "repo": "pynecone"}
{"owner": "ElixirNote", "path": "pyproject.toml", "ref": "main", "repo": "elixirext"}
{"owner": "Elmurod-Zulfiqarov", "path": "pyproject.toml", "ref": "master", "repo": "langflow"}
{"owner": "Emplocity", "path": "pyproject.toml", "ref": "master", "repo": "nameko-chassis"}
{"owner": "Encapsia", "path": "pyproject.toml", "ref": "master", "repo": "encapsia-api"}
{"owner": "Endercheif", "path": "pyproject.toml", "ref": "main", "repo": "mCodingBot-v3"}
{"owner": "EndlessTrax", "path": "pyproject.toml", "ref": "master", "repo": "pgn-to-sqlite"}
{"owner": "EndlessTrax", "path": "pyproject.toml", "ref": "main", "repo": "python-start-project"}
{"owner": "EnochAmeyaw", "path": "pyproject.toml", "repo": "zulip"}
{"owner": "EnokiUN", "path": "pyproject.toml", "ref": "main", "repo": "roguebot"}
{"owner": "Entze", "path": "pyproject.toml", "ref": "main", "repo": "pyggp"}
{"owner": "Epic-Institute", "path": "pyproject.toml", "ref": "main", "repo": "positive-disruption"}
{"owner": "Eric-Mendes", "path": "pyproject.toml", "repo": "airflow"}
{"owner": "ErikBjare", "path": "pyproject.toml", "ref": "master", "repo": "gpt-playground"}
{"owner": "Esgrove", "path": "pyproject.toml", "ref": "main", "repo": "fastapi-template"}
{"owner": "Ethic41", "path": "pyproject.toml", "ref": "master", "repo": "faster"}
{"owner": "Exenifix", "path": "pyproject.toml", "ref": "master", "repo": "AIAS"}
{"owner": "Exenifix", "path": "pyproject.toml", "ref": "master", "repo": "ExenENV"}
{"owner": "Exenifix", "path": "pyproject.toml", "ref": "master", "repo": "disnake-bot-template-postgres"}
{"owner": "Exenifix", "path": "pyproject.toml", "ref": "master", "repo": "postgres-auto-backup"}
{"owner": "Exenifix", "path": "pyproject.toml", "ref": "master", "repo": "worldgen"}
{"owner": "FBruzzesi", "path": "pyproject.toml", "ref": "main", "repo": "compclasses"}
{"owner": "FHU-yezi", "path": "pyproject.toml", "ref": "main", "repo": "CutUp"}
{"owner": "FHU-yezi", "path": "pyproject.toml", "ref": "main", "repo": "JFetcher"}
{"owner": "FHU-yezi", "path": "pyproject.toml", "ref": "main", "repo": "JianshuMicroFeatures"}
{"owner": "FHU-yezi", "path": "pyproject.toml", "ref": "main", "repo": "JianshuResearchTools"}
{"owner": "FHU-yezi", "path": "pyproject.toml", "ref": "main", "repo": "WriteDown2022"}
{"owner": "FHU-yezi", "path": "pyproject.toml", "ref": "main", "repo": "pynecone"}
{"owner": "FHU-yezi", "path": "pyproject.toml", "ref": "main", "repo": "sspeedup"}
{"owner": "FK-Bonn", "path": "pyproject.toml", "ref": "main", "repo": "fsen-records-backend"}
{"owner": "FObersteiner", "path": "pyproject.toml", "ref": "master", "repo": "pyFuppes"}
{"owner": "FQAlmeida", "path": "pyproject.toml", "ref": "master", "repo": "Trabalho-Contraste"}
{"owner": "FRINXio", "path": "pyproject.toml", "ref": "main", "repo": "frinx_python_sdk"}
{"owner": "FabianVegaA", "path": "pyproject.toml", "ref": "main", "repo": "sparrow"}
{"owner": "FallenDeity", "path": "pyproject.toml", "ref": "master", "repo": "PokeLance"}
{"owner": "FallenDeity", "path": "pyproject.toml", "ref": "master", "repo": "Pyweek35"}
{"owner": "Farmick", "path": "pyproject.toml", "ref": "main", "repo": "cinemabot-main"}
{"owner": "FastestMolasses", "path": "pyproject.toml", "ref": "main", "repo": "old-alchemy"}
{"owner": "FeeeeK", "path": "pyproject.toml", "ref": "master", "repo": "pyAnyPay"}
{"owner": "Felix2yu", "path": "pyproject.toml", "ref": "master", "repo": "docker-db-auto-backup"}
{"owner": "FellowFellow", "path": "pyproject.toml", "ref": "master", "repo": "full-text-search-test"}
{"owner": "FernandoKGA", "path": "video/Cargo.toml", "repo": "ruffle"}
{"owner": "FieryDruid", "path": "pyproject.toml", "ref": "main", "repo": "WebSocketTest"}
{"owner": "Finch-API", "path": "pyproject.toml", "ref": "main", "repo": "finch-api-python"}
{"owner": "Findus23", "path": "pyproject.toml", "ref": "master", "repo": "lw1.at"}
{"owner": "FireFading", "path": "configs/.ruff.toml", "repo": "uptraider_test"}
{"owner": "Fizzadar", "path": "pyproject.toml", "ref": "master", "repo": "synapse"}
{"owner": "Fleshgrinder", "path": "pyproject.toml", "ref": "main", "repo": "python-buf-exe"}
{"owner": "Fleshgrinder", "path": "pyproject.toml", "ref": "main", "repo": "python-protoc-exe"}
{"owner": "Flexget", "path": "pyproject.toml", "ref": "master", "repo": "Flexget"}
{"owner": "FollowTheProcess", "path": "ruff/ruff.toml", "repo": "dotfiles"}
{"owner": "FollowTheProcess", "path": "pyproject.toml", "ref": "main", "repo": "madonna"}
{"owner": "FollowTheProcess", "path": "pyproject.toml", "repo": "pytoil"}
{"owner": "ForumViriumHelsinki", "path": "pyproject.toml", "ref": "main", "repo": "python-coding-conventions"}
{"owner": "Fr0stFree", "path": "pyproject.toml", "ref": "main", "repo": "Web-File-Storage"}
{"owner": "Fr0stFree", "path": "pyproject.toml", "ref": "main", "repo": "Zephyr"}
{"owner": "Fr0stFree", "path": "pyproject.toml", "ref": "main", "repo": "async-python-sprint-5"}
{"owner": "FrancescElies", "path": "pyproject.toml", "ref": "main", "repo": "ruff-lsp"}
{"owner": "FrancescElies", "path": "pyproject.toml", "ref": "main", "repo": "ruff-vscode"}
{"owner": "FrankSzendzielarz", "path": "data/ecosystems/n/nomic-foundation.toml", "repo": "crypto-ecosystems"}
{"owner": "Fraunhofer-AISEC", "path": "pyproject.toml", "ref": "master", "repo": "gallia"}
{"owner": "FrostRunner", "path": "pyproject.toml", "ref": "master", "repo": "django-blog-template"}
{"owner": "Futura-Py", "path": "pyproject.toml", "ref": "main", "repo": "weather"}
{"owner": "GHDEVS", "path": "pyproject.toml", "ref": "master", "repo": "synapse"}
{"owner": "GJXS1980", "path": "ruff.toml", "ref": "main", "repo": "PythonRobotics"}
{"owner": "GLEF1X", "path": "pyproject.toml", "ref": "master", "repo": "glQiwiApi"}
{"owner": "GSA", "path": "pyproject.toml", "ref": "main", "repo": "datagov-harvesting-logic"}
{"owner": "GalOrrery", "path": "pyproject.toml", "repo": "stream_ml-core"}
{"owner": "GalOrrery", "path": "pyproject.toml", "repo": "stream_ml-visualization"}
{"owner": "GeekCornerGH", "path": "pyproject.toml", "ref": "master", "repo": "synapse"}
{"owner": "GeminiLight", "path": "pyproject.toml", "repo": "virne"}
{"owner": "Geotab", "path": "pyproject.toml", "ref": "master", "repo": "mygeotab-python"}
{"owner": "Gepetto", "path": "pyproject.toml", "ref": "master", "repo": "dashboard"}
{"owner": "Get-Tony", "path": "pyproject.toml", "ref": "main", "repo": "Ark"}
{"owner": "Get-Tony", "path": "pyproject.toml", "ref": "main", "repo": "ansible_runner_kit"}
{"owner": "GideonRavenor1", "path": "pyproject.toml", "ref": "main", "repo": "otus-spacebattle"}
{"owner": "GitToby", "path": "pyproject.toml", "ref": "master", "repo": "framelink"}
{"owner": "GiuliaGualtieri", "path": "pyproject.toml", "ref": "main", "repo": "Machine_Learning_Mask_Cassifier"}
{"owner": "GiuliaGualtieri", "path": "pyproject.toml", "ref": "master", "repo": "french-exercises"}
{"owner": "Glitched", "path": "pyproject.toml", "ref": "main", "repo": "ReservAI"}
{"owner": "Glitched", "path": "pyproject.toml", "ref": "main", "repo": "python-base"}
{"owner": "GlobalMin", "path": "pyproject.toml", "ref": "main", "repo": "cookiecutter-poetry"}
{"owner": "Gmacem", "path": "pyproject.toml", "ref": "main", "repo": "TelegramBotZoo"}
{"owner": "Gobot1234", "path": "pyproject.toml", "ref": "main", "repo": "steam.py"}
{"owner": "GoddessEyes", "path": "pyproject.toml", "ref": "master", "repo": "CirnoNotBaka"}
{"owner": "GoldenDragon7", "path": "pyproject.toml", "ref": "master", "repo": "telegram-pdf-bot"}
{"owner": "GraiaProject", "path": "pyproject.toml", "repo": "Ariadne"}
{"owner": "GrandMoff100", "path": "pyproject.toml", "ref": "master", "repo": "HomeAssistantAPI"}
{"owner": "Groxan", "path": "data/ecosystems/g/gnosis.toml", "repo": "crypto-ecosystems"}
{"owner": "Groxan", "path": "data/ecosystems/p/pillar.toml", "repo": "crypto-ecosystems"}
{"owner": "Groxan", "path": "data/ecosystems/r/rsk-smart-bitcoin.toml", "repo": "crypto-ecosystems"}
{"owner": "Gumbachi", "path": "pyproject.toml", "ref": "main", "repo": "GumBOTchi"}
{"owner": "Gumbachi", "path": "pyproject.toml", "ref": "master", "repo": "WebsocketRPS"}
{"owner": "GuyNguyen", "path": "pyproject.toml", "ref": "main", "repo": "Modern-Python-Pipeline-Test"}
{"owner": "H-code-svg", "path": "pyproject.toml", "ref": "main", "repo": "pandas"}
{"owner": "HDI-Project", "path": "pyproject.toml", "repo": "Trane"}
{"owner": "HDembinski", "path": "pyproject.toml", "repo": "numba-stats"}
{"owner": "HERMES-SOC", "path": "pyproject.toml", "ref": "main", "repo": "CDFTracker"}
{"owner": "HLasse", "path": "pyproject.toml", "repo": "TextDescriptives"}
{"owner": "HOZHENWAI", "path": "pyproject.toml", "ref": "master", "repo": "OpenBBTerminal"}
{"owner": "HabanaAI", "path": "pyproject.toml", "repo": "pytorch-lightning"}
{"owner": "Hadryan", "path": "pyproject.toml", "ref": "main", "repo": "OpenBBTerminal"}
{"owner": "Haebuk", "path": "pyproject.toml", "ref": "main", "repo": "GHArchive-Data-Pipeline-Project"}
{"owner": "HairDAO", "path": "foundry.toml", "repo": "hair-token"}
{"owner": "HakaiInstitute", "path": "pyproject.toml", "ref": "main", "repo": "LAS-TRX"}
{"owner": "HakierGrzonzo", "path": "pyproject.toml", "ref": "master", "repo": "html2rich"}
{"owner": "HakierGrzonzo", "path": "pyproject.toml", "ref": "master", "repo": "sund"}
{"owner": "HardwayLinka", "path": "pyproject.toml", "ref": "master", "repo": "OpenBBTerminal"}
{"owner": "Harryoung", "path": "pyproject.toml", "repo": "langchain"}
{"owner": "Healthwoosh", "path": "pyproject.toml", "ref": "main", "repo": "llama-index-private"}
{"owner": "Hekstra-Lab", "path": "pyproject.toml", "repo": "raman-analysis"}
{"owner": "HellConnector", "path": "pyproject.toml", "ref": "main", "repo": "tradematebot"}
{"owner": "Heng-xiu", "path": "pyproject.toml", "ref": "master", "repo": "langflow"}
{"owner": "HeronErin", "path": "pyproject.toml", "ref": "main", "repo": "tts_voices"}
{"owner": "Herschel", "path": "render/canvas/Cargo.toml", "repo": "ruffle"}
{"owner": "Herschel", "path": "scanner/Cargo.toml", "repo": "ruffle"}
{"owner": "Herschel", "path": "Cargo.toml", "repo": "ruffle_gc"}
{"owner": "Herschel", "path": "ruffle_gc/Cargo.toml", "repo": "ruffle_gc"}
{"owner": "HeyLaurelTestOrg", "path": "pyproject.toml", "ref": "main", "repo": "pyprojecttest2"}
{"owner": "HeyLaurelTestOrg", "path": "pyproject.toml", "ref": "main", "repo": "unblob"}
{"owner": "Hongbo-Miao", "path": ".ruff.toml", "repo": "hongbomiao.com"}
{"owner": "Hongbo-Miao", "path": "pyproject.toml", "ref": "main", "repo": "hongbomiao.com"}
{"owner": "HoodyBoss", "path": "pyproject.toml", "ref": "master", "repo": "OpenBBTerminal"}
{"owner": "Hoxbro", "path": "pyproject.toml", "ref": "main", "repo": "clean_notebook"}
{"owner": "Huell-Howitzer", "path": "pyproject.toml", "ref": "master", "repo": "langflow"}
{"owner": "HundredVisionsGuy", "path": "pyproject.toml", "ref": "main", "repo": "PyScript-Playground"}
{"owner": "HuynhLeVu5598", "path": "pyproject.toml", "ref": "main", "repo": "tradingAI"}
{"owner": "HyperGH", "path": "pyproject.toml", "repo": "hikari-miru"}
{"owner": "HyperGH", "path": "pyproject.toml", "ref": "main", "repo": "snedbot"}
{"owner": "HyphaApp", "path": "pyproject.toml", "ref": "main", "repo": "hypha"}
{"owner": "I-Language-Development", "path": "pyproject.toml", "ref": "main", "repo": "I-language"}
{"owner": "IHosseini083", "path": "pyproject.toml", "ref": "main", "repo": "AIOHCloud"}
{"owner": "IHosseini083", "path": "pyproject.toml", "ref": "main", "repo": "Shortify"}
{"owner": "IMAP-Science-Operations-Center", "path": "pyproject.toml", "ref": "main", "repo": "sds-data-manager"}
{"owner": "IMAP-Science-Operations-Center", "path": "pyproject.toml", "ref": "master", "repo": "sds-data-manager"}
{"owner": "IMOKURI", "path": "config/nvim/template/toml/base-pyproject.toml", "repo": "dotfiles"}
{"owner": "IPOR-Labs", "path": "foundry.toml", "repo": "ipor-protocol"}
{"owner": "IRLL", "path": "pyproject.toml", "ref": "master", "repo": "Crafting"}
{"owner": "IRLL", "path": "pyproject.toml", "ref": "master", "repo": "HIPPO_Gym"}
{"owner": "IRLL", "path": "pyproject.toml", "ref": "master", "repo": "HierachyCraft"}
{"owner": "IRLL", "path": "pyproject.toml", "ref": "master", "repo": "HierarchyCraft"}
{"owner": "ISLNamur", "path": "pyproject.toml", "ref": "master", "repo": "happyschool"}
{"owner": "IamShobe", "path": "pyproject.toml", "ref": "main", "repo": "altb"}
{"owner": "Iapetus-11", "path": "pyproject.toml", "ref": "main", "repo": "ButterflyMX"}
{"owner": "IlievskiV", "path": "pyproject.toml", "ref": "main", "repo": "PyDataRecBoleTutorial"}
{"owner": "Ilya-Grigoriev", "path": "pyproject.toml", "ref": "main", "repo": "EgeTelegramBot"}
{"owner": "IlyaMichlin", "path": "pyproject.toml", "repo": "pandas"}
{"owner": "ImperialCollegeLondon", "path": "pyproject.toml", "ref": "master", "repo": "gridlington-datahub"}
{"owner": "Intelix8996", "path": "pyproject.toml", "ref": "master", "repo": "test-repo"}
{"owner": "Ishaan-Ohm", "path": "ruff.toml", "ref": "master", "repo": "PythonRobotics"}
{"owner": "Ishaan-Ohm", "path": "ruff.toml", "ref": "master", "repo": "Python_Robotics"}
{"owner": "IvaldiS6", "path": "pyproject.toml", "ref": "master", "repo": "solana-py"}
{"owner": "JMarkin", "path": "pyproject.toml", "ref": "master", "repo": "random-data"}
{"owner": "JYC11", "path": "pyproject.toml", "ref": "main", "repo": "fastapi-bug-tracker"}
{"owner": "JaGeo", "path": "pyproject.toml", "repo": "LobsterPy"}
{"owner": "Jackenmen", "path": "pyproject.toml", "repo": "label-doconly-changes"}
{"owner": "Jackevansevo", "path": "pyproject.toml", "ref": "main", "repo": "feeder"}
{"owner": "JacobCoffee", "path": "scripts/pyproject.toml", "repo": "ruff"}
{"owner": "JacobCoffee", "path": "pyproject.toml", "ref": "main", "repo": "starlite-barebones-template"}
{"owner": "JacobCoffee", "path": "pyproject.toml", "ref": "master", "repo": "starlite-wtf"}
{"owner": "JacobGoldenArt", "path": "pyproject.toml", "ref": "main", "repo": "ArtBase"}
{"owner": "JacobTheJacobs", "path": "pyproject.toml", "ref": "master", "repo": "OpenBBTerminal"}
{"owner": "JafarAbdi", "path": "ruff.toml", "repo": "chatgpt-tui"}
{"owner": "JakubKramp", "path": "pyproject.toml", "ref": "master", "repo": "FastAPI_cookbook"}
{"owner": "JamesHutchison", "path": "pyproject.toml", "ref": "main", "repo": "pytest-hot-reloading"}
{"owner": "JanaTeepunkt", "path": "pyproject.toml", "repo": "replication-child-benefit"}
{"owner": "JasonG7234", "path": "pyproject.toml", "ref": "main", "repo": "Python-Project-Template"}
{"owner": "JasurbekNURBOYEV", "path": "pyproject.toml", "ref": "main", "repo": "pyskybitz"}
{"owner": "Jau2002", "path": "pyproject.toml", "ref": "main", "repo": "paper-api"}
{"owner": "JayGitH", "path": "pyproject.toml", "ref": "master", "repo": "tortoise-orm"}
{"owner": "Jazz877", "path": "pyproject.toml", "ref": "main", "repo": "pyuno"}
{"owner": "JeffersGlass", "path": "pyproject.toml", "repo": "pyscript"}
{"owner": "Jelena647", "path": "data/ecosystems/n/nethermind.toml", "repo": "crypto-ecosystems"}
{"owner": "Jelena647", "path": "data/ecosystems/u/uma-protocol.toml", "repo": "crypto-ecosystems"}
{"owner": "JerBouma", "path": "pyproject.toml", "repo": "FinanceDatabase"}
{"owner": "JerBouma", "path": "pyproject.toml", "ref": "main", "repo": "OpenBBTerminal"}
{"owner": "JesseFarebro", "path": "pyproject.toml", "repo": "tyro"}
{"owner": "JeyRathnam", "path": "pyproject.toml", "ref": "master", "repo": "synapse"}
{"owner": "Jezzamonn", "path": "exporter/Cargo.toml", "repo": "ruffle"}
{"owner": "Jezzamonn", "path": "swf/Cargo.toml", "repo": "ruffle"}
{"owner": "JoOkuma", "path": "pyproject.toml", "repo": "napari"}
{"owner": "Jocelyn-Gas", "path": "pyproject.toml", "ref": "main", "repo": "cassini"}
{"owner": "JoeWroe", "path": "pyproject.toml", "ref": "main", "repo": "KleptomanIOC"}
{"owner": "Joffreybvn", "path": "pyproject.toml", "ref": "master", "repo": "cheesemaking"}
{"owner": "Joffreybvn", "path": "pyproject.toml", "ref": "master", "repo": "french-words"}
{"owner": "JonathanPlasse", "path": "pyproject.toml", "repo": "fastapi"}
{"owner": "JonathanPlasse", "path": "crates/ruff/Cargo.toml", "repo": "ruff"}
{"owner": "JonathanWolfe", "path": "pyproject.toml", "ref": "main", "repo": "aoc2022"}
{"owner": "JoranHonig", "path": "pyproject.toml", "ref": "master", "repo": "langflow"}
{"owner": "JoranSlingerland", "path": "pyproject.toml", "ref": "main", "repo": "StockTracker"}
{"owner": "JorgeRuizDev", "path": "pyproject.toml", "ref": "master", "repo": "rusty-chess-engine-rl"}
{"owner": "JuliaRegistries", "path": "S/Scruff/Package.toml", "repo": "General"}
{"owner": "JulianKemmerer", "path": "pyproject.toml", "repo": "PipelineC"}
{"owner": "JustinGoheen", "path": "pyproject.toml", "ref": "master", "repo": "Lit-LLaMA-Lite"}
{"owner": "JustinGoheen", "path": "pyproject.toml", "ref": "main", "repo": "lightning-ibkr"}
{"owner": "JustinGoheen", "path": "pyproject.toml", "ref": "master", "repo": "lightning-pod-vision"}
{"owner": "JustinGoheen", "path": "pyproject.toml", "ref": "main", "repo": "lightning-prisma"}
{"owner": "JustinGoheen", "path": "pyproject.toml", "ref": "main", "repo": "lightning-pynecone"}
{"owner": "JustinGoheen", "path": "pyproject.toml", "ref": "main", "repo": "lightning-supabase"}
{"owner": "JustinGoheen", "path": "pyproject.toml", "ref": "main", "repo": "python-template"}
{"owner": "JustinGoheen", "path": "pyproject.toml", "ref": "main", "repo": "supastore"}
{"owner": "KGB33", "path": "pyproject.toml", "ref": "main", "repo": "RoboShpee"}
{"owner": "KOSASIH", "path": "pyproject.toml", "ref": "main", "repo": "algokit-cli"}
{"owner": "KabanFriends", "path": "video/Cargo.toml", "repo": "ruffle"}
{"owner": "KacperSzklarczyk", "path": "pyproject.toml", "ref": "master", "repo": "langflow2"}
{"owner": "KadriR-hash", "path": "pyproject.toml", "ref": "master", "repo": "test_dagster"}
{"owner": "Kane610", "path": "pyproject.toml", "ref": "master", "repo": "aiounifi"}
{"owner": "Kane610", "path": "pyproject.toml", "ref": "master", "repo": "axis"}
{"owner": "Kane610", "path": "pyproject.toml", "ref": "master", "repo": "deconz"}
{"owner": "Kane610", "path": "pyproject.toml", "repo": "home-assistant"}
{"owner": "Kastakin", "path": "pyproject.toml", "ref": "master", "repo": "PyES"}
{"owner": "KdHyeon0661", "path": "pyproject.toml", "repo": "fastapi"}
{"owner": "KemuelCraig", "path": "pyproject.toml", "ref": "master", "repo": "langflow"}
{"owner": "KennyLepping", "path": "pyproject.toml", "ref": "master", "repo": "riffusion"}
{"owner": "KevinKloiber", "path": "pyproject.toml", "ref": "main", "repo": "wetterdienst"}
{"owner": "Kill4peacE", "path": "pyproject.toml", "ref": "master", "repo": "langflow"}
{"owner": "Kilo59", "path": "pyproject.toml", "ref": "main", "repo": "aoc"}
{"owner": "Kipjr", "path": "pyproject.toml", "ref": "master", "repo": "home-assistant-core"}
{"owner": "KittyCAD", "path": "pyproject.toml", "ref": "main", "repo": "kittycad.py"}
{"owner": "Klef99", "path": "pyproject.toml", "ref": "master", "repo": "yandexlyceum-pyqt"}
{"owner": "Kopfstein", "path": "pyproject.toml", "ref": "master", "repo": "OpenBBTerminal"}
{"owner": "Korfballer", "path": "pyproject.toml", "ref": "main", "repo": "teaching-deeplearning"}
{"owner": "Korfballer", "path": "ruff.toml", "ref": "main", "repo": "teaching-fastapi"}
{"owner": "Korfballer", "path": "ruff.toml", "ref": "main", "repo": "teaching-flask"}
{"owner": "Korfballer", "path": "ruff.toml", "ref": "main", "repo": "teaching-python"}
{"owner": "Kratosacc1", "path": "pyproject.toml", "ref": "main", "repo": "fastapi-sqlalchemy-asyncpg"}
{"owner": "Kucharz37", "path": "pyproject.toml", "ref": "master", "repo": "home-asistant"}
{"owner": "KyleKing", "path": ".ruff.toml", "repo": "calcipy"}
{"owner": "KyleKing", "path": "pyproject.toml", "ref": "main", "repo": "calcipy"}
{"owner": "KyleKing", "path": ".ctt/default/.ruff.toml", "repo": "calcipy_template"}
{"owner": "KyleKing", "path": "pyproject.toml", "ref": "main", "repo": "corallium"}
{"owner": "KyleKing", "path": ".ruff.toml", "repo": "pytest_cache_assert"}
{"owner": "KyleKing", "path": "pyproject.toml", "ref": "main", "repo": "pytest_cache_assert"}
{"owner": "KyleKing", "path": "ruff.toml", "ref": "main", "repo": "pytest_cache_assert"}
{"owner": "KyleKing", "path": ".ruff.toml", "repo": "recipes"}
{"owner": "KyleKing", "path": "ruff.toml", "ref": "main", "repo": "shoal"}
{"owner": "KyleKing", "path": ".ruff.toml", "repo": "tail-jsonl"}
{"owner": "KyleKing", "path": "pyproject.toml", "ref": "main", "repo": "tail-jsonl"}
{"owner": "KyleKing", "path": "ruff.toml", "ref": "main", "repo": "tail-jsonl"}
{"owner": "L5dxb", "path": "data/ecosystems/r/rsk-smart-bitcoin.toml", "repo": "crypto-ecosystems"}
{"owner": "LCarnovale", "path": "pyproject.toml", "ref": "master", "repo": "opennem"}
{"owner": "LDmitriy7", "path": "pyproject.toml", "ref": "master", "repo": "404_AvatarsBot"}
{"owner": "LDmitriy7", "path": "pyproject.toml", "ref": "master", "repo": "stricter"}
{"owner": "LKremer", "path": "pyproject.toml", "ref": "master", "repo": "scbs"}
{"owner": "LaReserveTech", "path": "pyproject.toml", "ref": "main", "repo": "water-tracker"}
{"owner": "Lash-L", "path": "pyproject.toml", "repo": "core"}
{"owner": "LeKSuS-04", "path": "pyproject.toml", "repo": "ctflib"}
{"owner": "LefterisJP", "path": "pyproject.toml", "repo": "rotkehlchen"}
{"owner": "Leila828", "path": "pyproject.toml", "ref": "master", "repo": "concrete-ml"}
{"owner": "Lendemor", "path": "pyproject.toml", "ref": "main", "repo": "pynecone"}
{"owner": "LeonardoCampos-EE", "path": "pyproject.toml", "ref": "main", "repo": "saddle"}
{"owner": "Lewistrick", "path": "pyproject.toml", "ref": "main", "repo": "callback-api"}
{"owner": "LiadRB", "path": "pyproject.toml", "ref": "master", "repo": "mealie"}
{"owner": "LibraryOfCongress", "path": "pyproject.toml", "ref": "main", "repo": "concordia"}
{"owner": "Lightning-AI", "path": "pyproject.toml", "repo": "ecosystem-ci"}
{"owner": "Lightning-AI", "path": "pyproject.toml", "repo": "lightning"}
{"owner": "Lightning-AI", "path": "pyproject.toml", "repo": "lightning-Bagua"}
{"owner": "Lightning-AI", "path": "pyproject.toml", "repo": "lightning-Graphcore"}
{"owner": "Liminova", "path": "pyproject.toml", "ref": "main", "repo": "python-project"}
{"owner": "LindezaGrey", "path": "pyproject.toml", "ref": "main", "repo": "master-cs"}
{"owner": "Lingepumpe", "path": "pyproject.toml", "ref": "master", "repo": "ccc_solver_template"}
{"owner": "LiteLDev", "path": "pyproject.toml", "ref": "main", "repo": "llpy-helper-lib"}
{"owner": "LoicGrobol", "path": "pyproject.toml", "repo": "zeldarose"}
{"owner": "LordFckHelmchen", "path": "pyproject.toml", "ref": "main", "repo": "wrath-and-glory-space-hulk-generator"}
{"owner": "LoyTakian", "path": "pyproject.toml", "ref": "main", "repo": "Telegram-Bot"}
{"owner": "LucaSforza", "path": "pyproject.toml", "ref": "main", "repo": "MongoPersistence"}
{"owner": "LuigiVanin", "path": "pyproject.toml", "ref": "main", "repo": "py-chat"}
{"owner": "LukeBotFanClub", "path": "pyproject.toml", "ref": "main", "repo": "startgg"}
{"owner": "Lunarmagpie", "path": "pyproject.toml", "ref": "main", "repo": "io"}
{"owner": "LunarsDev", "path": "pyproject.toml", "ref": "main", "repo": "cordcutter"}
{"owner": "MC-kit", "path": "pyproject.toml", "ref": "master", "repo": "xpypact"}
{"owner": "MDverse", "path": "pyproject.toml", "repo": "mdws"}
{"owner": "MHH-Humangenetik", "path": "pyproject.toml", "ref": "main", "repo": "clincnv2vcf"}
{"owner": "MIERUNE", "path": "pyproject.toml", "ref": "main", "repo": "qgis-mojxml-plugin"}
{"owner": "MOJOliciousFTW", "path": "pyproject.toml", "ref": "main", "repo": "test-intro-to-github"}
{"owner": "MPI-IS", "path": "pyproject.toml", "repo": "spatial_transformation"}
{"owner": "MRT-Map", "path": "pyproject.toml", "repo": "renderman"}
{"owner": "MVAodhan", "path": "pyproject.toml", "ref": "master", "repo": "langflow-railway"}
{"owner": "MaHryCT3", "path": "pyproject.toml", "ref": "master", "repo": "tiy_vizor_backend"}
{"owner": "MaHryCT3", "path": "pyproject.toml", "ref": "main", "repo": "utmn_dining_bot"}
{"owner": "MaT1g3R", "path": "pyproject.toml", "ref": "master", "repo": "slice-and-dice-tools"}
{"owner": "MaastrichtU-IDS", "path": "pyproject.toml", "repo": "LUCE"}
{"owner": "MaastrichtU-IDS", "path": "{{cookiecutter.package_name}}/pyproject.toml", "repo": "cookiecutter-openpredict-api"}
{"owner": "MaastrichtU-IDS", "path": "{{cookiecutter.package_name}}/pyproject.toml", "repo": "cookiecutter-python-package"}
{"owner": "MaastrichtU-IDS", "path": "pyproject.toml", "repo": "translator-openpredict"}
{"owner": "Mac3g0d", "path": "pyproject.toml", "ref": "main", "repo": "b_test_task"}
{"owner": "MadokaProject", "path": "pyproject.toml", "repo": "Madoka"}
{"owner": "Mael-J", "path": "pyproject.toml", "ref": "main", "repo": "OpenBBTerminal"}
{"owner": "Magic-Academy", "path": "data/ecosystems/q/quillhash.toml", "repo": "crypto-ecosystems"}
{"owner": "MagicLike", "path": "pyproject.toml", "ref": "main", "repo": "openandroidinstaller"}
{"owner": "MagicRustHelper", "path": "pyproject.toml", "ref": "master", "repo": "backend"}
{"owner": "MagicRustHelper", "path": "pyproject.toml", "ref": "master", "repo": "discord_bot"}
{"owner": "MagicRustHelper", "path": "pyproject.toml", "ref": "master", "repo": "vk_bot"}
{"owner": "Mai-Lapyst", "path": "desktop/Cargo.toml", "repo": "ruffle"}
{"owner": "Mai-Lapyst", "path": "render/wgpu/Cargo.toml", "repo": "ruffle"}
{"owner": "Mantisus", "path": "pyproject.toml", "ref": "main", "repo": "pyszne_crowler"}
{"owner": "Manu87DS", "path": "pyproject.toml", "ref": "main", "repo": "OpenBBTerminal"}
{"owner": "ManuGira", "path": "pyproject.toml", "ref": "master", "repo": "Tk4Cv2"}
{"owner": "Mappboy", "path": "pyproject.toml", "ref": "master", "repo": "apemap"}
{"owner": "MarcelRaschke", "path": "pyproject.toml", "ref": "master", "repo": "chaostoolkit-lib"}
{"owner": "Marco-Sulla", "path": "pyproject.toml", "ref": "master", "repo": "immutabledict"}
{"owner": "MarekPikula", "path": "pyproject.toml", "ref": "main", "repo": "homeassistant-mqtt-filesystem-publisher"}
{"owner": "MarekPikula", "path": "pyproject.toml", "ref": "main", "repo": "python-headscale-api"}
{"owner": "MarijnS95", "path": "pyproject.toml", "ref": "main", "repo": "python-omnikinverter"}
{"owner": "MarkoM-dot", "path": "pyproject.toml", "ref": "main", "repo": "aoc2022"}
{"owner": "Markopteryx", "path": "pyproject.toml", "ref": "main", "repo": "UpVisualisation"}
{"owner": "Markushik", "path": "pyproject.toml", "ref": "master", "repo": "controller"}
{"owner": "Markushik", "path": "pyproject.toml", "ref": "master", "repo": "friendly-meme"}
{"owner": "MasonData", "path": "pyproject.toml", "ref": "main", "repo": "dev"}
{"owner": "Materials-Consortia", "path": "pyproject.toml", "ref": "master", "repo": "optimade-python-tools"}
{"owner": "MatiasChDev", "path": "pyproject.toml", "ref": "main", "repo": "rate-limiter"}
{"owner": "Matter-Tech", "path": "pyproject.toml", "repo": "matter-library-template"}
{"owner": "MauroLuzzatto", "path": "pyproject.toml", "ref": "main", "repo": "lyrics-translator"}
{"owner": "Mautriz", "path": "pyproject.toml", "ref": "main", "repo": "model-maker"}
{"owner": "Mautriz", "path": "pyproject.toml", "ref": "main", "repo": "pystarter"}
{"owner": "Mautriz", "path": "pyproject.toml", "ref": "main", "repo": "trippa"}
{"owner": "MaxG87", "path": "pyproject.toml", "ref": "main", "repo": "ButterBackup"}
{"owner": "MaxLeedham", "path": "pyproject.toml", "ref": "main", "repo": "Chess"}
{"owner": "MaximilianGaedig", "path": "data/ecosystems/e/ethereum-vault.toml", "repo": "crypto-ecosystems"}
{"owner": "MaximilianGaedig", "path": "data/ecosystems/m/menlo-one.toml", "repo": "crypto-ecosystems"}
{"owner": "MaximilianGaedig", "path": "data/ecosystems/n/nethermind.toml", "repo": "crypto-ecosystems"}
{"owner": "MaximilianGaedig", "path": "data/ecosystems/o/okex-chain.toml", "repo": "crypto-ecosystems"}
{"owner": "MaximilianGaedig", "path": "data/ecosystems/u/uma-protocol.toml", "repo": "crypto-ecosystems"}
{"owner": "Maxomm", "path": "pyproject.toml", "ref": "main", "repo": "EDI-Tool"}
{"owner": "Maxyme", "path": "pyproject.toml", "ref": "main", "repo": "asyncio_web_crawler"}
{"owner": "Mcclawdy", "path": "pyproject.toml", "ref": "main", "repo": "django-tables-creator"}
{"owner": "MeltanoLabs", "path": "pyproject.toml", "repo": "tap-stackexchange"}
{"owner": "Memrise", "path": "pyproject.toml", "repo": "mypy-json-report"}
{"owner": "MertNuhuz", "path": "pyproject.toml", "ref": "main", "repo": "OpenBBTerminal"}
{"owner": "MethodsDev", "path": "pyproject.toml", "ref": "main", "repo": "MasSeqViz"}
{"owner": "MethodsDev", "path": "pyproject.toml", "ref": "main", "repo": "isoscelles"}
{"owner": "Mewelopers", "path": "pyproject.toml", "ref": "main", "repo": "barcode-api"}
{"owner": "Mic92", "path": "pyproject.toml", "repo": "bors-gen-config"}
{"owner": "Migorithm", "path": "pyproject.toml", "ref": "main", "repo": "IAM"}
{"owner": "Migorithm", "path": "pyproject.toml", "ref": "main", "repo": "QUOTATION"}
{"owner": "Migorithm", "path": "pyproject.toml", "ref": "main", "repo": "gitops-test-server"}
{"owner": "MikeJollie2707", "path": "pyproject.toml", "repo": "MichaelBot"}
{"owner": "MikeWallis42", "path": "pyproject.toml", "repo": "astronomer-cosmos"}
{"owner": "MindSetLib", "path": "pyproject.toml", "ref": "master", "repo": "Insolver"}
{"owner": "MinghongAlexXu", "path": "pyproject.toml", "repo": "deeprl"}
{"owner": "MiniZinc", "path": "pyproject.toml", "ref": "master", "repo": "minizinc-python"}
{"owner": "MipaChan", "path": "pyproject.toml", "ref": "main", "repo": "tortoise-orm"}
{"owner": "MipaChan", "path": "pyproject.toml", "ref": "master", "repo": "tortoise-orm"}
{"owner": "Mistobaan", "path": "pyproject.toml", "ref": "main", "repo": "ruff-vscode"}
{"owner": "MkSerdyuk", "path": "pyproject.toml", "ref": "main", "repo": "Face-Anti-Spoofing"}
{"owner": "Moda-Analytica", "path": "pyproject.toml", "ref": "master", "repo": "stats_models"}
{"owner": "Modern-Treasury", "path": "pyproject.toml", "ref": "main", "repo": "modern-treasury-python"}
{"owner": "Modificator", "path": "pyproject.toml", "ref": "master", "repo": "synapse"}
{"owner": "MohammedBenhelli", "path": "ruff.toml", "ref": "main", "repo": "EWFParser"}
{"owner": "Mojino01", "path": "pyproject.toml", "repo": "hugging_face"}
{"owner": "Moka-AI", "path": "pyproject.toml", "ref": "main", "repo": "collie"}
{"owner": "Moonpig", "path": "pyproject.toml", "ref": "master", "repo": "cloud-custodian"}
{"owner": "Morgandri1", "path": "pyproject.toml", "ref": "master", "repo": "solana-py"}
{"owner": "MrCordeiro", "path": "pyproject.toml", "ref": "master", "repo": "code-explainer"}
{"owner": "MrJulEnergy", "path": "pyproject.toml", "ref": "main", "repo": "ase_md_example"}
{"owner": "MrMalte211", "path": "pyproject.toml", "ref": "main", "repo": "wetterdienst_update"}
{"owner": "MrP01", "path": "pyproject.toml", "repo": "HeatFun"}
{"owner": "MrP01", "path": "resources/python/ruff.toml", "repo": "lint-me-now"}
{"owner": "MrPowers", "path": "pyproject.toml", "ref": "main", "repo": "mack"}
{"owner": "MrSuperTop", "path": "pyproject.toml", "ref": "main", "repo": "telegram-analyzer"}
{"owner": "Mu-L", "path": "pyproject.toml", "ref": "main", "repo": "pynecone"}
{"owner": "MunkeyBalls", "path": "pyproject.toml", "repo": "freqtrade"}
{"owner": "My-MC", "path": "pyproject.toml", "ref": "master", "repo": "ffmpegwithpy"}
{"owner": "My-MC", "path": "pyproject.toml", "repo": "ffmpegwithpy-rust"}
{"owner": "NB112211", "path": "pyproject.toml", "ref": "master", "repo": "langflow"}
{"owner": "NCI-GDC", "path": "pyproject.toml", "repo": "maf-lib"}
{"owner": "NChechulin", "path": "pyproject.toml", "ref": "master", "repo": "python-template"}
{"owner": "NINAnor", "path": "pyproject.toml", "repo": "eml2iso19139"}
{"owner": "NINAnor", "path": "pyproject.toml", "repo": "nina-template-python"}
{"owner": "NLeSC", "path": "pyproject.toml", "repo": "rcn_py"}
{"owner": "NPAtlas", "path": "pyproject.toml", "ref": "main", "repo": "npatlas_curator"}
{"owner": "NREL", "path": "pyproject.toml", "repo": "floris"}
{"owner": "NREL", "path": "pyproject.toml", "repo": "hive"}
{"owner": "NREL", "path": "pyproject.toml", "ref": "main", "repo": "mappymatch"}
{"owner": "NTBBloodbath", "path": "pyproject.toml", "ref": "master", "repo": "paul"}
{"owner": "Nachtalb", "path": "pyproject.toml", "ref": "main", "repo": "dotfiles"}
{"owner": "Navezjt", "path": "pyproject.toml", "ref": "main", "repo": "Chrome-GPT"}
{"owner": "NeXTLinux", "path": "pyproject.toml", "ref": "main", "repo": "vunnel"}
{"owner": "NeilGirdhar", "path": "pyproject.toml", "ref": "main", "repo": "efax"}
{"owner": "NeilGirdhar", "path": "pyproject.toml", "ref": "main", "repo": "extended_int"}
{"owner": "NeilGirdhar", "path": "pyproject.toml", "ref": "main", "repo": "graph_imports"}
{"owner": "NeilGirdhar", "path": "pyproject.toml", "ref": "master", "repo": "ipromise"}
{"owner": "NeilGirdhar", "path": "pyproject.toml", "ref": "main", "repo": "jax_freeze_bug"}
{"owner": "NeilGirdhar", "path": "pyproject.toml", "ref": "main", "repo": "tikzify"}
{"owner": "NeilGirdhar", "path": "pyproject.toml", "ref": "main", "repo": "tjax"}
{"owner": "NeoSecundus", "path": "pyproject.toml", "ref": "main", "repo": "PyODB"}
{"owner": "NeoTheBestDeveloper", "path": "pyproject.toml", "ref": "master", "repo": "npeg"}
{"owner": "NeoTheBestDeveloper", "path": "pyproject.toml", "ref": "master", "repo": "nrhttp"}
{"owner": "NetBSD", "path": "py-ruff/patches/patch-crates_ruff__cli_Cargo.toml", "repo": "pkgsrc-wip"}
{"owner": "Netflix", "path": "pyproject.toml", "ref": "master", "repo": "dispatch"}
{"owner": "NewShadesDAO", "path": "pyproject.toml", "ref": "main", "repo": "api"}
{"owner": "Neway-Financial-Services", "path": "pyproject.toml", "ref": "master", "repo": "OpenBBTerminal"}
{"owner": "NicholasLYang", "path": "rust_filter/Cargo.toml", "repo": "snicket_compiler"}
{"owner": "NicholasLYang", "path": "libs/aggregation_example/Cargo.toml", "repo": "tracing_sim"}
{"owner": "NickHarvey-Org", "path": "pyproject.toml", "ref": "main", "repo": "OpenBBTerminal"}
{"owner": "Nicoretti", "path": "pyproject.toml", "ref": "master", "repo": "invokees"}
{"owner": "Nicoretti", "path": "pyproject.toml", "ref": "main", "repo": "nc-dev-log"}
{"owner": "NikSan3452", "path": "pyproject.toml", "ref": "main", "repo": "job-parser"}
{"owner": "NikiforovG", "path": "pyproject.toml", "ref": "master", "repo": "weather_alerting_bot"}
{"owner": "NixBiks", "path": "pyproject.toml", "ref": "main", "repo": "poetry-fastapi-docker-example"}
{"owner": "NotAndOr", "path": "pyproject.toml", "ref": "master", "repo": "langchain"}
{"owner": "Nova-DevTeam", "path": "pyproject.toml", "ref": "master", "repo": "nova-backtest"}
{"owner": "NovaUniverse", "path": "pyproject.toml", "repo": "NovaUniverse.py"}
{"owner": "NuniTelo", "path": "pyproject.toml", "ref": "main", "repo": "fastapi-sqlalchemy-asyncpg"}
{"owner": "NyckelAI", "path": "pyproject.toml", "ref": "master", "repo": "python-sdk"}
{"owner": "ObserverOfTime", "path": "pyproject.toml", "ref": "master", "repo": "yaenv"}
{"owner": "Ocamond", "path": "pyproject.toml", "ref": "main", "repo": "plotly-resampler"}
{"owner": "OlegGirko", "path": "pyproject.toml", "ref": "master", "repo": "synapse"}
{"owner": "Olegt0rr", "path": "pyproject.toml", "ref": "main", "repo": "WebServiceTemplate"}
{"owner": "OliverSchamp", "path": "ImageGeneration/diffusers/pyproject.toml", "repo": "Whats-A-NN-Datathon"}
{"owner": "OmniSpective", "path": "pyproject.toml", "ref": "main", "repo": "OmniBridge"}
{"owner": "OpenBB-finance", "path": "pyproject.toml", "ref": "main", "repo": "OpenBBTerminal"}
{"owner": "OpenBB-finance", "path": "pyproject.toml", "ref": "master", "repo": "test-gitflow"}
{"owner": "OpenLineage", "path": "client/python/pyproject.toml", "repo": "OpenLineage"}
{"owner": "OpenLineage", "path": "integration/dagster/pyproject.toml", "repo": "OpenLineage"}
{"owner": "OpenMined", "path": "ruff.toml", "repo": "PySyft"}
{"owner": "OpenSourceEconomics", "path": "pyproject.toml", "ref": "main", "repo": "econ-project-templates"}
{"owner": "Opentrons", "path": "app-testing/pyproject.toml", "repo": "opentrons"}
{"owner": "Opentrons", "path": "pyproject.toml", "ref": "main", "repo": "otietalk"}
{"owner": "OrderedSet86", "path": "pyproject.toml", "ref": "main", "repo": "webnei-backend"}
{"owner": "OutlierVentures", "path": "protocols/celo.toml", "repo": "BlockchainDevReport"}
{"owner": "OutlierVentures", "path": "protocols/oasis-labs.toml", "repo": "BlockchainDevReport"}
{"owner": "OutlierVentures", "path": "protocols/opensea.toml", "repo": "BlockchainDevReport"}
{"owner": "OutlierVentures", "path": "protocols/uniswap.toml", "repo": "BlockchainDevReport"}
{"owner": "Ovsyanka83", "path": "pyproject.toml", "ref": "master", "repo": "tortoise-orm"}
{"owner": "P-AS", "path": "exporter/Cargo.toml", "repo": "ruffle"}
{"owner": "P-AS", "path": "render/canvas/Cargo.toml", "repo": "ruffle"}
{"owner": "P1n3appl3", "path": ".config/ruff/ruff.toml", "repo": "config"}
{"owner": "PBorocz", "path": "pyproject.toml", "ref": "master", "repo": "raindrop-io-py"}
{"owner": "PHACDataHub", "path": "server/pyproject.toml", "repo": "cpho-phase2"}
{"owner": "PHT-Medic", "path": "pyproject.toml", "ref": "main", "repo": "federated"}
{"owner": "PHT-Medic", "path": "pyproject.toml", "ref": "master", "repo": "station-backend"}
{"owner": "PHT-Medic", "path": "pyproject.toml", "ref": "master", "repo": "train-container-library"}
{"owner": "PIG208", "path": "pyproject.toml", "repo": "zulip"}
{"owner": "PRQL", "path": "prql-python/pyproject.toml", "repo": "prql"}
{"owner": "PRQL", "path": "pyproject.toml", "ref": "main", "repo": "pyprql"}
{"owner": "PabloLec", "path": "pyproject.toml", "ref": "main", "repo": "RecoverPy"}
{"owner": "PacktPublishing", "path": "pyproject.toml", "ref": "main", "repo": "Building-Data-Science-Applications-with-FastAPI-Second-Edition"}
{"owner": "PaddlePaddle", "path": "pyproject.toml", "repo": "Paddle"}
{"owner": "PaddyAlton", "path": "pyproject.toml", "ref": "main", "repo": "python-boilerplate"}
{"owner": "PaideiaDilemma", "path": "pyproject.toml", "repo": "Tortillas"}
{"owner": "Parnassius", "path": "pyproject.toml", "ref": "main", "repo": "cerbottana"}
{"owner": "Parnassius", "path": "pyproject.toml", "ref": "main", "repo": "useless-discord-bot"}
{"owner": "ParthS007", "path": "pyproject.toml", "repo": "weblate"}
{"owner": "Patent2net", "path": "pyproject.toml", "ref": "main", "repo": "SoVisu"}
{"owner": "Pathos315", "path": "pyproject.toml", "ref": "main", "repo": "paperbush"}
{"owner": "Pavel-Hrdina", "path": "pyproject.toml", "ref": "main", "repo": "shift"}
{"owner": "Pavel-Hrdina", "path": "pyproject.toml", "ref": "main", "repo": "shiftspace"}
{"owner": "PedramNavid", "path": "resources/test/fixtures/pyproject.toml", "repo": "ruff"}
{"owner": "PedroKBrant", "path": "pyproject.toml", "ref": "master", "repo": "concrete-ml"}
{"owner": "Pentusha", "path": "pyproject.toml", "ref": "main", "repo": "edgeql-qb"}
{"owner": "PeopleForBikes", "path": "pyproject.toml", "ref": "main", "repo": "brokenspoke-analyzer"}
{"owner": "PeterDing", "path": "pyproject.toml", "repo": "BaiduPCS-Py"}
{"owner": "Pierre-Sassoulas", "path": "pyproject.toml", "ref": "main", "repo": "pylint"}
{"owner": "PieterBlomme", "path": "pyproject.toml", "ref": "master", "repo": "datamodel-code-generator"}
{"owner": "PinkDiamond1", "path": "data/ecosystems/c/celo.toml", "repo": "crypto-ecosystems"}
{"owner": "Piyush220704", "path": "pyproject.toml", "ref": "main", "repo": "mypanda"}
{"owner": "PlanetUI", "path": "pyproject.toml", "ref": "master", "repo": "logbook-django"}
{"owner": "PlasmaPy", "path": "pyproject.toml", "repo": "PlasmaPy"}
{"owner": "Plastic-Scanner", "path": "pyproject.toml", "repo": "PSplot"}
{"owner": "Plozano94", "path": "contrib/ruff.toml", "repo": "great_expectations"}
{"owner": "Plutokekz", "path": "pyproject.toml", "ref": "main", "repo": "LeagueClientLiveDataApi"}
{"owner": "Polinavas95", "path": "pyproject.toml", "ref": "main", "repo": "Auth_sprint_1"}
{"owner": "Ponte-Energy-Partners", "path": "pyproject.toml", "ref": "main", "repo": "peprock"}
{"owner": "Ponte-Energy-Partners", "path": "pyproject.toml", "ref": "main", "repo": "pre-commit-hooks"}
{"owner": "PostHog", "path": "pyproject.toml", "ref": "master", "repo": "posthog"}
{"owner": "PostHog", "path": "pyproject.toml", "ref": "master", "repo": "posthog-foss"}
{"owner": "PrefectHQ", "path": "pyproject.toml", "repo": "marvin"}
{"owner": "Preston-Landers", "path": "ruff.toml", "repo": "concurrent-log-handler"}
{"owner": "Problematy", "path": "pyproject.toml", "ref": "main", "repo": "goodmap"}
{"owner": "ProjectVegas", "path": ".gitleaks.toml", "repo": "orgupdatematrix"}
{"owner": "Proteusiq", "path": "pyproject.toml", "ref": "main", "repo": "igia"}
{"owner": "Psyhackological", "path": "pyproject.toml", "ref": "main", "repo": "tiktok_downloader"}
{"owner": "PuppyPaduk2", "path": "pyproject.toml", "ref": "master", "repo": "gradio-main"}
{"owner": "PurpLabs", "path": "pyproject.toml", "ref": "main", "repo": "PogBot"}
{"owner": "PurpLabs", "path": "pyproject.toml", "ref": "main", "repo": "PurpBot"}
{"owner": "PurpLabs", "path": "pyproject.toml", "ref": "main", "repo": "memestate"}
{"owner": "PushUpek", "path": "pyproject.toml", "ref": "main", "repo": "ruff-lsp"}
{"owner": "PyCQA", "path": "pyproject.toml", "ref": "main", "repo": "astroid"}
{"owner": "PyCQA", "path": "pyproject.toml", "ref": "main", "repo": "pylint"}
{"owner": "PyChamber", "path": "pyproject.toml", "ref": "main", "repo": "PyChamber"}
{"owner": "Python-Only", "path": "pyproject.toml", "ref": "main", "repo": "python-discord-bot"}
{"owner": "PythonBiellaGroup", "path": "pyproject.toml", "ref": "main", "repo": "Actions"}
{"owner": "PythonBiellaGroup", "path": "pyproject.toml", "ref": "main", "repo": "Bear"}
{"owner": "PythonFZ", "path": "pyproject.toml", "ref": "main", "repo": "CGL_Pi"}
{"owner": "PythonFZ", "path": "pyproject.toml", "ref": "main", "repo": "ase_md_example"}
{"owner": "PythonistaGuild", "path": "pyproject.toml", "ref": "main", "repo": "mystbin.py"}
{"owner": "QCoDeS", "path": "pyproject.toml", "repo": "Qcodes"}
{"owner": "Qhris-tian", "path": "pyproject.toml", "ref": "main", "repo": "eolass-backend"}
{"owner": "QuLogic", "path": "pyproject.toml", "repo": "matplotlib"}
{"owner": "Quansight", "path": "conda-store-server/pyproject.toml", "repo": "conda-store"}
{"owner": "Quansight", "path": "conda-store/pyproject.toml", "repo": "conda-store"}
{"owner": "Quinntas", "path": "pyproject.toml", "ref": "main", "repo": "delivery-backend"}
{"owner": "Quinntas", "path": "pyproject.toml", "ref": "main", "repo": "python-ddd-template"}
{"owner": "QuirkySwirl", "path": "pyproject.toml", "ref": "master", "repo": "langflow"}
{"owner": "R0dn3yS", "path": "pyproject.toml", "ref": "main", "repo": "openandroidinstaller"}
{"owner": "RG1ee", "path": "pyproject.toml", "ref": "main", "repo": "bot_budget"}
{"owner": "RG7279805", "path": "pyproject.toml", "ref": "master", "repo": "synapse"}
{"owner": "RLE-Foundation", "path": "pyproject.toml", "ref": "main", "repo": "Hsuanwu"}
{"owner": "RRosio", "path": "pyproject.toml", "repo": "jupyterlab"}
{"owner": "RaPiD-models", "path": "pyproject.toml", "ref": "master", "repo": "rapid_models"}
{"owner": "RaddedMC", "path": "pyproject.toml", "ref": "main", "repo": "RunAway"}
{"owner": "RangamaniLabUCSD", "path": "pyproject.toml", "repo": "smart"}
{"owner": "RangamaniLabUCSD", "path": "pyproject.toml", "repo": "stubs"}
{"owner": "RasaHQ", "path": "pyproject.toml", "ref": "main", "repo": "rasa"}
{"owner": "RasaHQ", "path": "pyproject.toml", "ref": "main", "repo": "rasa-sdk"}
{"owner": "Rashid-77", "path": "pyproject.toml", "ref": "main", "repo": "fastapi-sqlalchemy-asyncpg"}
{"owner": "RatulMaharaj", "path": "pyproject.toml", "ref": "main", "repo": "predictable"}
{"owner": "ReadytoRocc", "path": "pyproject.toml", "repo": "airflow"}
{"owner": "RealOrangeOne", "path": "pyproject.toml", "ref": "master", "repo": "django-plaintext-password"}
{"owner": "RealOrangeOne", "path": "pyproject.toml", "ref": "master", "repo": "django-plausible"}
{"owner": "RealOrangeOne", "path": "pyproject.toml", "ref": "master", "repo": "django-sri"}
{"owner": "RealOrangeOne", "path": "pyproject.toml", "ref": "master", "repo": "docker-db-auto-backup"}
{"owner": "RedisVentures", "path": "pyproject.toml", "repo": "langchain"}
{"owner": "ReflexAI", "path": "pyproject.toml", "ref": "main", "repo": "BentoML-fork"}
{"owner": "ReliefDAO", "path": "pyproject.toml", "ref": "master", "repo": "langflow"}
{"owner": "ResHal1", "path": "pyproject.toml", "ref": "master", "repo": "reshal-api"}
{"owner": "RevCBH", "path": "config/hero_names.toml", "repo": "rusty-sword"}
{"owner": "Rezadeldar", "path": "pyproject.toml", "ref": "main", "repo": "autobot"}
{"owner": "ReznikovRoman", "path": "pyproject.toml", "ref": "master", "repo": "netflix-etl"}
{"owner": "RiccardoLincetto", "path": "pyproject.toml", "ref": "main", "repo": "vidutils"}
{"owner": "Richard-Sieg-TH-Koln", "path": "pyproject.toml", "ref": "main", "repo": "datenerhebung-team-1"}
{"owner": "Richard-Sieg-TH-Koln", "path": "pyproject.toml", "ref": "main", "repo": "statistik-1-team-2"}
{"owner": "Richard-Sieg-TH-Koln", "path": "pyproject.toml", "ref": "main", "repo": "statistik-2-team-3"}
{"owner": "RickWong", "path": "pyproject.toml", "ref": "main", "repo": "python-template"}
{"owner": "RihabMhedbi", "path": "pyproject.toml", "ref": "main", "repo": "hello_rihab"}
{"owner": "Rimasko", "path": "pyproject.toml", "ref": "main", "repo": "tool_bot"}
{"owner": "RipleyTom", "path": "exporter/Cargo.toml", "repo": "ruffle"}
{"owner": "RipleyTom", "path": "swf/Cargo.toml", "repo": "ruffle"}
{"owner": "RiseInRose", "path": "pyproject.toml", "ref": "main", "repo": "langchain-zh"}
{"owner": "RiverSafeUK", "path": ".ezerc.toml", "repo": "eze-cli"}
{"owner": "RiverSafeUK", "path": ".ezerc.toml", "repo": "eze-docker-action"}
{"owner": "Riverside-Healthcare", "path": "pyproject.toml", "ref": "master", "repo": "djLint"}
{"owner": "RobotsGoMental", "path": "pyproject.toml", "repo": "gtl_poc"}
{"owner": "RocioAldanaMendez", "path": "pyproject.toml", "ref": "master", "repo": "OpenBBTerminal"}
{"owner": "RogerDeng", "path": "pyproject.toml", "ref": "main", "repo": "tortoise-tts-fast"}
{"owner": "RomainBrault", "path": "pyproject.toml", "ref": "main", "repo": "python-whiteprint"}
{"owner": "RonnyPfannschmidt", "path": "hatch.toml", "repo": "hatch"}
{"owner": "Rubikoid", "path": "ruff.toml", "repo": "dotfiles"}
{"owner": "Rubinjo", "path": "pyproject.toml", "ref": "master", "repo": "innvestigate"}
{"owner": "Rufflewind", "path": "Cargo.toml", "repo": "bernoulli_numbers"}
{"owner": "Rufflewind", "path": "Cargo.toml", "repo": "futures_become"}
{"owner": "Rufflewind", "path": "Cargo.toml", "repo": "howl"}
{"owner": "Rufflewind", "path": "Cargo.toml", "repo": "revad"}
{"owner": "Rufflewind", "path": "Cargo.toml", "repo": "wigner-symbols-rs"}
{"owner": "SAIL-Labs", "path": "pyproject.toml", "repo": "AMICAL"}
{"owner": "SBalaguer", "path": "data/ecosystems/n/nomic-labs.toml", "repo": "crypto-ecosystems"}
{"owner": "SBalaguer", "path": "data/ecosystems/n/nori.toml", "repo": "crypto-ecosystems"}
{"owner": "SBalaguer", "path": "data/ecosystems/n/nxm.toml", "repo": "crypto-ecosystems"}
{"owner": "SBalaguer", "path": "data/ecosystems/o/opensea.toml", "repo": "crypto-ecosystems"}
{"owner": "SBalaguer", "path": "data/ecosystems/p/pooltogether.toml", "repo": "crypto-ecosystems"}
{"owner": "SEKOIA-IO", "path": "pyproject.toml", "ref": "main", "repo": "sekoia-automation-sdk"}
{"owner": "SMAT-Lab", "path": "pyproject.toml", "ref": "main", "repo": "Scalpel"}
{"owner": "SWAG-MLG-420", "path": "pyproject.toml", "repo": "Gajim_SWAG_MLG_M.O.D"}
{"owner": "SWxTREC", "path": "pyproject.toml", "repo": "pymsis"}
{"owner": "Saegl", "path": "pyproject.toml", "ref": "main", "repo": "vkf"}
{"owner": "SamuelNLP", "path": "pyproject.toml", "ref": "master", "repo": "python-template"}
{"owner": "SamuelYvon", "path": "pyproject.toml", "ref": "master", "repo": "gscp"}
{"owner": "Samueljbk", "path": "pyproject.toml", "ref": "main", "repo": "yeelight_server"}
{"owner": "SandoghdarLab", "path": "pyproject.toml", "repo": "PiSCAT"}
{"owner": "SaturnFromTitan", "path": "pyproject.toml", "ref": "main", "repo": "delete_old_google_cal_events"}
{"owner": "SaulLu", "path": "pyproject.toml", "repo": "datasets"}
{"owner": "Say383", "path": "pyproject.toml", "ref": "master", "repo": "langchain"}
{"owner": "Scille", "path": "pyproject.toml", "ref": "master", "repo": "parsec-cloud"}
{"owner": "ScribeMD", "path": "pyproject.toml", "ref": "main", "repo": "slack-templates"}
{"owner": "Seamooo", "path": "ruffd-macros/Cargo.toml", "repo": "ruffd"}
{"owner": "SebastianLuebke", "path": "pyproject.toml", "ref": "main", "repo": "webhooks-bridge"}
{"owner": "SebastienWae", "path": "pyproject.toml", "ref": "main", "repo": "code-analyzer"}
{"owner": "SebastienWae", "path": "pyproject.toml", "ref": "main", "repo": "gitprobe"}
{"owner": "SectorLabs", "path": "pyproject.toml", "repo": "django-cached-auth-middleware"}
{"owner": "Seeyou2000", "path": "pyproject.toml", "ref": "main", "repo": "SE_UNO_Project"}
{"owner": "Seon82", "path": "pyproject.toml", "ref": "master", "repo": "medleydb_instruments"}
{"owner": "Seon82", "path": "pyproject.toml", "ref": "main", "repo": "noisy_intents"}
{"owner": "Seon82", "path": "pyproject.toml", "ref": "main", "repo": "projet_sdp"}
{"owner": "Seon82", "path": "pyproject.toml", "ref": "main", "repo": "puzzle_solver"}
{"owner": "SerSamgy", "path": "pyproject.toml", "ref": "main", "repo": "flexchange"}
{"owner": "SergeyShk", "path": "pyproject.toml", "ref": "master", "repo": "ruTS"}
{"owner": "SergeyShk", "path": "pyproject.toml", "ref": "main", "repo": "ruTS-API"}
{"owner": "ShabbirHasan1", "path": "pyproject.toml", "ref": "main", "repo": "GamestonkTerminal"}
{"owner": "ShabbirHasan1", "path": "pyproject.toml", "ref": "main", "repo": "plotly-resampler"}
{"owner": "ShabbirHasan1", "path": "pyproject.toml", "ref": "main", "repo": "tsflex"}
{"owner": "ShaunKarran", "path": "Cargo.toml", "repo": "gruff"}
{"owner": "Shawnice", "path": "pyproject.toml", "ref": "main", "repo": "movie-data-pipeline"}
{"owner": "ShigureLab", "path": "pyproject.toml", "ref": "main", "repo": "python-lib-starter"}
{"owner": "Shingii", "path": "pyproject.toml", "ref": "main", "repo": "gpt_index"}
{"owner": "ShipraShalini", "path": "pyproject.toml", "ref": "main", "repo": "Garendar"}
{"owner": "Shishqa", "path": "pyproject.toml", "repo": "tosca-mock"}
{"owner": "Shkaolin", "path": "pyproject.toml", "ref": "main", "repo": "BERTopic-as-service"}
{"owner": "ShubhamSKadam", "path": "pyproject.toml", "ref": "master", "repo": "synapse"}
{"owner": "SigureMo", "path": "scripts/pyproject.toml", "repo": "ruff"}
{"owner": "Sineaggi", "path": "video/software/Cargo.toml", "repo": "ruffle"}
{"owner": "Sineaggi", "path": "wstr/Cargo.toml", "repo": "ruffle"}
{"owner": "SirRGB", "path": "pyproject.toml", "ref": "main", "repo": "openandroidinstaller"}
{"owner": "SkafteNicki", "path": "pyproject.toml", "ref": "main", "repo": "dtu_mlops"}
{"owner": "SkafteNicki", "path": "pyproject.toml", "ref": "master", "repo": "pl_cross"}
{"owner": "SkypLabs", "path": "pyproject.toml", "repo": "python-hdlc-controller"}
{"owner": "SlayerTO", "path": "pyproject.toml", "repo": "nataili"}
{"owner": "SlothioGit", "path": "pyproject.toml", "ref": "master", "repo": "langflow"}
{"owner": "SmartChartSuite", "path": "pyproject.toml", "ref": "main", "repo": "FHIRSearchHelper"}
{"owner": "SmartDash0129", "path": "pyproject.toml", "ref": "master", "repo": "LangChain"}
{"owner": "SmartDash0129", "path": "pyproject.toml", "ref": "master", "repo": "LangFlow"}
{"owner": "Smbrer1", "path": "pyproject.toml", "ref": "main", "repo": "melon-back-end"}
{"owner": "Snowflake-Labs", "path": "pyproject.toml", "repo": "snowcli"}
{"owner": "Sohel723", "path": "pyproject.toml", "ref": "main", "repo": "pandas_repo_01"}
{"owner": "Soj447", "path": "pyproject.toml", "ref": "master", "repo": "synapse"}
{"owner": "Sojusan", "path": "pyproject.toml", "ref": "master", "repo": "my-game-list"}
{"owner": "Somnium-Recordings", "path": "pyproject.toml", "ref": "main", "repo": "TD-Arena"}
{"owner": "SoulMelody", "path": "pyproject.toml", "ref": "main", "repo": "LibreSVIP"}
{"owner": "SpookyO", "path": "pyproject.toml", "ref": "master", "repo": "wyvern"}
{"owner": "SpotOnInc", "path": "pyproject.toml", "ref": "main", "repo": "asbestos"}
{"owner": "Starry-OvO", "path": "pyproject.toml", "repo": "aiotieba"}
{"owner": "Starry-OvO", "path": "pyproject.toml", "repo": "aiotieba-reviewer"}
{"owner": "Stax124", "path": "pyproject.toml", "ref": "master", "repo": "MoltenCore"}
{"owner": "StephanMalan", "path": "pyproject.toml", "ref": "main", "repo": "datetime-reader"}
{"owner": "StephanU", "path": "pyproject.toml", "repo": "home-assistant"}
{"owner": "Steve720zhang", "path": "pyproject.toml", "ref": "master", "repo": "synapse"}
{"owner": "Stinky-c", "path": "pyproject.toml", "ref": "master", "repo": "DatBot"}
{"owner": "Stinky-c", "path": "pyproject.toml", "ref": "master", "repo": "curse-api"}
{"owner": "Stone-afk", "path": "pyproject.toml", "ref": "master", "repo": "tortoise-orm"}
{"owner": "Stonks-Luma-Liberty", "path": "pyproject.toml", "ref": "main", "repo": "chime"}
{"owner": "SuadeLabs", "path": "pyproject.toml", "repo": "fire"}
{"owner": "SudoWeezy", "path": "pyproject.toml", "ref": "main", "repo": "algokit-nft-template"}
{"owner": "SukramJ", "path": "pyproject.toml", "ref": "master", "repo": "core"}
{"owner": "SukramJ", "path": "pyproject.toml", "ref": "master", "repo": "custom_homematic"}
{"owner": "SukramJ", "path": "pyproject.toml", "ref": "main", "repo": "hahomematic"}
{"owner": "Sunyunsun", "path": "pyproject.toml", "ref": "master", "repo": "synapse"}
{"owner": "SupImDos", "path": "pyproject.toml", "ref": "master", "repo": "pydantic-argparse"}
{"owner": "SuperSandro2000", "path": "pyproject.toml", "ref": "master", "repo": "synapse"}
{"owner": "SuyashD95", "path": "pyproject.toml", "ref": "main", "repo": "poke-celery"}
{"owner": "SvenMarcus", "path": "pyproject.toml", "repo": "hpc-rocket"}
{"owner": "Swamp-Ig", "path": "pyproject.toml", "repo": "home-assistant"}
{"owner": "Synss", "path": "pyproject.toml", "repo": "python-mbedtls"}
{"owner": "T4533N", "path": "pyproject.toml", "ref": "master", "repo": "langflow"}
{"owner": "TDHM", "path": "pyproject.toml", "ref": "main", "repo": "Subtitles-Translator"}
{"owner": "TJStienstra", "path": "pyproject.toml", "ref": "master", "repo": "symmeplot"}
{"owner": "TLouf", "path": "pyproject.toml", "ref": "master", "repo": "respace"}