-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjoss_repositories_20251012_210203.csv
More file actions
We can make this file beautiful and searchable if this error is corrected: No commas found in this CSV file in line 0.
3210 lines (3210 loc) · 133 KB
/
joss_repositories_20251012_210203.csv
File metadata and controls
3210 lines (3210 loc) · 133 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
software_repository
"https://github.com/bc3LC/rhap"
"https://github.com/omerveille/VSMOD"
"https://github.com/sys-bio/ratesb_python"
"https://github.com/ashleyblawas/respdetect"
"https://github.com/carlacupcake/hashin_shtrikman_mp.git"
"https://github.com/finsberg/fenicsx-beat"
"https://github.com/cassidymwagner/fluidsf"
"https://gitlab.eclipse.org/eclipse/comma/comma"
"https://github.com/adtzlr/felupe/"
"https://github.com/druglogics/pydruglogics"
"https://github.com/pudeIko/piva"
"https://github.com/decargroup/pykoop"
"https://github.com/tum-esm/ivy"
"https://code.europa.eu/kada/mafw"
"https://github.com/openCARP-org/FACILE-RS"
"https://github.com/navasmontilla/CAELUM"
"https://github.com/NREL/VirtualEngineering"
"https://github.com/JuliaGeo/CFTime.jl"
"https://github.com/Chroma-CITI/namosim"
"https://github.com/connor-makowski/type_enforced"
"https://github.com/cjtu/craterpy"
"https://github.com/chocoteam/pychoco"
"https://github.com/Mec-iS/arrowspace-rs"
"https://github.com/Climdyn/auto-AUTO"
"https://github.com/simonbesnard1/gedidb"
"https://github.com/GeoArkadeep/Stresslog"
"https://github.com/harvard-nrg/scanbuddy"
"https://github.com/igorrivin/graphem"
"https://github.com/benmkent/SparseGridsKit.jl"
"https://github.com/Lindt8/PHITS-Tools"
"https://github.com/jianhuig/fairmetrics"
"https://gitlab.com/cmbm-ethz/miop"
"https://github.com/oskarhs/AutoHist.jl"
"https://github.com/ChristopheBerthod/Piecewise.jl"
"https://github.com/jmiramont/mcsm-benchs"
"https://github.com/radwinskis/RadGEEToolbox"
"https://github.com/chaoliu-cl/textAnnotatoR"
"https://github.com/Feng-Ji-Lab/FedIRT"
"https://github.com/JosephIsaacTurner/pypaperretriever/"
"https://github.com/comp-phys-marc/qasm-ts"
"https://github.com/GiMattia/PyPLUTO/"
"https://gitlab.com/cosmology-ethz/ufig"
"https://github.com/nasa/condor"
"https://github.com/ConnorStoneAstro/caskade"
"https://github.com/alb3rtjarvis/numbacs"
"https://github.com/cthoyt/chembl-downloader"
"https://github.com/DPP4ResearchGroup/substrateminer.git"
"https://github.com/BlueSpacePotato/hsi-wizard"
"https://github.com/OHDSI/omock"
"https://github.com/oss-slu/Pi4Micronaut"
"https://gitlab.kuleuven.be/gelenslab/publications/pycline"
"https://github.com/DatViseR/Vivid-Volcano"
"https://github.com/gyselax/gyselalibxx"
"https://codeberg.org/benmagill/deflake.rs"
"https://github.com/jake-w-liu/SpecialFunctions"
"https://github.com/DavidRConnell/matlab-igraph"
"https://github.com/yanrong-stacy-song/creditr"
"https://github.com/PhenoApps/Coordinate"
"https://github.com/simonehagey/orbdot"
"https://github.com/MIT-LAE/TASOPT.jl"
"https://github.com/otvam/pypeec"
"https://gitlab.com/djsmithbham/cnearest"
"https://github.com/jbytecode/OperationsResearchModels.jl"
"https://github.com/umami-hep/salt"
"https://gitlab.com/EliseLei/easychem"
"https://github.com/EMSL-Computing/Pore2Chip"
"https://github.com/VILLASframework/node"
"https://github.com/landoskape/syd"
"https://github.com/Nadi-System/nadi-system"
"https://codeberg.org/JPHackstein/GREOPy"
"https://github.com/WilsonGregory/ginjax"
"https://github.com/RandyRDavila/GraphCalc"
"https://github.com/hyex-research/AquaFetch"
"https://github.com/kylejgillett/sounderpy"
"https://github.com/edbiomedai/scmorph/"
"https://gitlab.com/ComputationalScience/idinn"
"https://github.com/braindatalab/PyBispectra"
"https://github.com/Peter-Hogg/SLAP2_Utils"
"https://github.com/CaNS-World/CaNS-Fizzy"
"https://github.com/xuequan818/MatrixFuns.jl"
"https://github.com/underworldcode/underworld3"
"https://github.com/TARGENE/TMLE.jl"
"https://github.com/USEPA/MCSimMod"
"https://github.com/gumilevskij/Framework"
"https://github.com/JoWestermann/smolyax"
"https://github.com/assume-framework/assume"
"https://github.com/bio-phys/asyncmd"
"https://github.com/donishadsmith/neurocaps"
"https://github.com/childmindresearch/actisleep-tracker"
"https://github.com/bge-barcoding/gene_fetch"
"https://github.com/neuromodulation/py_neuromodulation"
"https://github.com/Habiba-Eldababy/Parallel-CDM"
"https://github.com/HzaCode/ChemInformant"
"https://github.com/CLINDA-AAU/simulacrumWorkflowR.git"
"https://github.com/danStich/anadrofish"
"https://github.com/zsylvester/segmenteverygrain"
"https://github.com/pedbrgs/PyCCEA/"
"https://github.com/zhanghe9704/tpsa_sym"
"https://github.com/dragontaoran/sleev"
"https://github.com/simonprovost/scikit-longitudinal"
"https://github.com/filipezabala/voice/"
"https://github.com/supsi-dacd-isaac/BayesReconPy"
"https://github.com/kokkos/kokkos-fft"
"https://github.com/SWIFTSIM/SOAP"
"https://github.com/martinvonk/SPEI"
"https://github.com/LLNL/SSAPy"
"https://github.com/ethz-randomwalk/polytopewalk"
"https://github.com/paranoya/population-synthesis-toolkit"
"https://github.com/almost6heads/ConleyDynamics.jl"
"https://github.com/xiaziyna/PyStarshade"
"https://github.com/avapolzin/spike"
"https://github.com/barricklab/seabreeze"
"https://github.com/Tomaubier/CoperniFUS"
"https://github.com/Trybnetic/paat"
"https://github.com/rnajena/sugar"
"https://github.com/mne-tools/mne-lsl"
"https://github.com/SHF-NAILResearchGroup/HINA"
"https://github.com/ankilab/EvoVis.git"
"https://github.com/pasteurlabs/tesseract-core"
"https://github.com/IDEMSInternational/ExcelToShiny"
"https://github.com/folsomcp/specpolFlow"
"https://github.com/bzrudski/vectorose"
"https://github.com/hyriver/hysetter"
"https://github.com/poissonconsulting/bisonpicsuite"
"https://github.com/JGCRI/gaia"
"https://github.com/Critical-Infrastructure-Systems-Lab/PowNet"
"https://github.com/GEUS-Glaciology-and-Climate/GrIML"
"https://github.com/RWTH-EBC/districtgenerator"
"https://github.com/uit-cosmo/blobmodel"
"https://github.com/project-lighter/lighter"
"https://github.com/s2mLab/pyScienceMode"
"https://github.com/alexdaniel654/qlayers"
"https://github.com/cersonsky-lab/AniSOAP/"
"https://github.com/turbo-sim/TurboFlow"
"https://github.com/genai-impact/ecologits"
"https://github.com/uaf-arctic-eco-modeling/dvm-dos-tem"
"https://github.com/efpl-columbia/PointClouds.jl"
"https://github.com/SynxFlow/SynxFlow"
"https://github.com/DS4Ag/dpest"
"https://github.com/Patrick-Cole/pygmi"
"https://github.com/Huracan-project/huracanpy"
"https://github.com/slcs-jsc/mptrac"
"https://github.com/GreenScheduler/cats"
"https://github.com/mthorrell/gbnet"
"https://github.com/bc3LC/medusa"
"https://github.com/TeamNCMC/cuisto"
"https://github.com/cadet/CADET-Core"
"https://github.com/varchasgopalaswamy/AutoUncertainties"
"https://github.com/x-tabdeveloping/turftopic"
"https://github.com/ZhiweiWei-NAMI/AirFogSim"
"https://zivgitlab.uni-muenster.de/ag-salinga/fastatomstruct"
"https://github.com/Rbfinch/grepq"
"https://github.com/slacgismo/solar-data-tools/"
"https://github.com/matta-research-group/SwiftPol"
"https://github.com/IRL2/nanover-server-py"
"https://github.com/spm/spm"
"https://github.com/T0ngChen/medRCT"
"https://github.com/valentingar/confluxpro/"
"https://github.com/DFKI-NI/syclops"
"https://www.github.com/openmsr/CAD_to_OpenMC"
"https://github.com/angelmons/landlab"
"https://github.com/bempp/kifmm/"
"https://github.com/m-shahbaz-kharal/LiGuard-JOSS"
"https://github.com/maddataanalyst/hextractor"
"https://github.com/JuliaPOMDP/CompressedBeliefMDPs.jl"
"https://github.com/rajmadan96/StochasticDominance.jl.git"
"https://github.com/mantzaris/WunDeeDB.jl"
"https://gitlab.com/grogra/groimp-plugins/Pointcloud"
"https://github.com/levuvietphong/pyTCR/"
"https://github.com/fgerick/Limace.jl"
"https://github.com/carlodev/SegregatedVMSSolver.jl"
"https://github.com/mantzaris/LMDiskANN.jl"
"https://github.com/csiro-risk-assessment/mozzie"
"https://github.com/microplastics-cluster/fragment-mnp"
"https://github.com/grdspcht/ggret/"
"https://github.com/seahorce-scidac/REMORA"
"https://github.com/OpenQuantumComputing/quantumreservoirpy"
"https://github.com/ORNL/icat"
"https://github.com/jonaspleyer/cellular_raza"
"https://github.com/bids-apps/giga_connectome"
"https://github.com/sashakolpakov/dire-jax"
"https://github.com/statistical-thinking/KI.ENNA"
"https://github.com/SPARC-X/SPARC-X-API"
"https://github.com/DenaJGibbon/gibbonNetR"
"https://github.com/HuttleyLab/DiverseSeq"
"https://github.com/chenzhaiyu/abspy"
"https://github.com/Ecos-platform/ecos"
"https://github.com/OpenHPS/openhps-core"
"https://github.com/AgatheSenellart/MultiVae/"
"https://github.com/aslan-ng/keepdelta"
"https://github.com/michalc/OpenTTDLab"
"https://github.com/emsig/elfe3D"
"https://github.com/gabo-di/AquaCrop.jl"
"https://github.com/ImperialCollegeLondon/SWMManywhere"
"https://github.com/utpal-singh/SAnTex"
"https://github.com/phitterio/phitter-kernel"
"https://github.com/bauer-alex/fuzzyclara"
"https://github.com/NumericalMathematics/PositiveIntegrators.jl"
"https://github.com/poissonconsulting/bbousuite"
"https://github.com/nathandecaux/labelprop"
"https://github.com/mattwarkentin/openmpp"
"https://github.com/easystats/modelbased"
"https://github.com/areenberg/MDPSolver"
"https://github.com/nichollsh/AGNI"
"https://github.com/ColmTalbot/gwpopulation"
"https://github.com/GeoscienceAustralia/eo-tides"
"https://github.com/unmannedlab/ekf_cal/"
"https://github.com/ropensci/gtexr"
"https://github.com/metagentools/gbintk"
"https://github.com/mantzaris/BenchmarkDataNLP.jl"
"https://github.com/nationalparkservice/NPSdataverse.git"
"https://github.com/meantrix/corrp"
"https://github.com/LLNL/popclass"
"https://github.com/morrowcj/remotePARTS"
"https://github.com/aris-mav/NMRInversions.jl"
"https://github.com/scikit-hep/vector"
"https://github.com/ORNL/AdditiveFOAM.git"
"https://github.com/thelfer/MFrontGallery"
"https://github.com/gerlero/foamlib"
"https://github.com/TRIQS/ctseg"
"https://github.com/nomad-coe/greenX"
"https://github.com/SnirMeiri/LCOI_local_crystalline_orientation_identifier"
"https://github.com/wal-yan/target-methylseq-qc"
"https://github.com/SimVascular/svZeroDSolver.git"
"https://github.com/ANP-Granular/ParticleTracking"
"https://github.com/rformassspectrometry/SpectriPy"
"https://github.com/arkavo/CUDA-METRO"
"https://github.com/deephyper/deephyper"
"https://github.com/fmicompbio/ez_zarr"
"https://github.com/schmidtfa/pyrasa"
"https://github.com/kmkuesters/pooledpeaks"
"https://github.com/lllangWV/ParquetDB"
"https://github.com/AUTODIAL/AutoEIS/"
"https://github.com/mggg/votekit"
"https://github.com/RadioAstronomySoftwareGroup/pyuvdata/"
"https://github.com/milanofthe/pathsim"
"https://github.com/OPM/opm-simulators"
"https://github.com/ilikecubesnstuff/commensurability"
"https://github.com/trevorgokey/besmarts"
"https://github.com/casasglobal-org/psymple/"
"https://github.com/james-trayford/strauss"
"https://github.com/EXP-code/EXP"
"https://github.com/dspelaez/extended-wdm/"
"https://github.com/minterpy-project/minterpy"
"https://github.com/alexandercoulter/fastfrechet"
"https://github.com/sintefmath/SurfaceWaterIntegratedModeling.jl.git"
"https://github.com/YaoGroup/DIFFICE_jax"
"https://github.com/jonotuke/BREADR"
"https://github.com/PatrickJTaylor/pengWann"
"https://github.com/ALive-research/Slicer-Liver"
"https://github.com/Aravind-Sundararajan/MocoExtendProblem"
"https://github.com/carnival-data/carnival"
"https://github.com/KskAdch/TopologicalNumbers.jl"
"https://github.com/mncrowe/QGDipoles.jl/"
"https://github.com/philip-long/constrained_manipulability"
"https://gitlab.com/dlr-ve/esy/vencopy/vencopy"
"https://github.com/OSUDSL/pydre"
"https://github.com/Schuch666/eva3dm"
"https://github.com/itsoulos/GlobalOptimus/"
"https://github.com/acil-bwh/bayes_traj/"
"https://github.com/mind-inria/mri-nufft"
"https://gitlab.com/morikawa-lab-osakau/vibir-parallel-compute"
"https://github.com/souradipp76/ReadMeReady"
"https://github.com/GeomScale/volesti"
"https://github.com/open-and-sustainable/prismaid"
"https://github.com/funkyheatmap/funkyheatmap"
"https://github.com/BodeTobias/AutoPDEx"
"https://github.com/thelfer/mfem-mgis"
"https://github.com/souradipp76/MM-PoE"
"https://github.com/idaholab/MontePy"
"https://gitlab.ruhr-uni-bochum.de/ee/cd2es"
"https://github.com/daniloceano/CycloPhaser"
"https://github.com/wustat/rjaf"
"https://github.com/USEPA/peat"
"https://github.com/sbi-dev/sbi"
"https://github.com/kinleyid/tempodisco/"
"https://github.com/CastillonMiguel/phasefieldx"
"https://github.com/munich-quantum-toolkit/core"
"https://github.com/srigas/jaxkan"
"https://github.com/silkemaes/MACE"
"https://github.com/everval/LongMemory.jl"
"https://github.com/tvh0021/aweSOM"
"https://github.com/r-lib/lintr"
"https://github.com/berenslab/fundus_image_toolbox"
"https://github.com/ISISNeutronMuon/quickBayes"
"https://github.com/probml/dynamax"
"https://github.com/AncientNLP/potnia.git"
"https://github.com/solids4foam/solids4foam"
"https://github.com/madupite/madupite"
"https://github.com/usnistgov/imppy3d"
"https://github.com/Rhyd-Lewis/GCol"
"https://github.com/pyiron/executorlib"
"https://github.com/evanhockings/QuantumACES.jl"
"https://github.com/Jashcraf/katsu"
"https://github.com/sxs-collaboration/gwsurrogate"
"https://github.com/BerkeleyLab/caffeine"
"https://github.com/projectmesa/mesa"
"https://github.com/GalacticDynamics/unxt"
"https://github.com/henrikmelin/h3ppy"
"https://github.com/rahil-makadia/grss"
"https://github.com/alan-turing-institute/autoemulate"
"https://github.com/PRIDE-Archive/pridepy"
"https://github.com/lorenaacuna/GASTLI"
"https://github.com/AutoResearch/sweetbean"
"https://github.com/gouverneurp/eVAS/"
"https://github.com/qurit/rt-utils"
"https://github.com/enthusi/feline"
"https://github.com/JuliaHealth/NeuroAnalyzer.jl"
"https://github.com/Juke34/AliNe"
"https://github.com/youngkaneda/DemeterWatch"
"https://github.com/unfoldtoolbox/UnfoldSim.jl"
"https://github.com/samuelmurail/af_analysis"
"https://github.com/TeaspoonTDA/teaspoon"
"https://github.com/lucaskorol21/GO-RXR"
"https://github.com/tscnlab/LightLogR"
"https://github.com/mberto79/XCALibre.jl"
"https://github.com/nvanalfen/halotools"
"https://github.com/qiangyicheng/flory"
"https://github.com/weber1158/eds-classification"
"https://github.com/nppackages/lpcde"
"https://github.com/CITCOM-project/CausalTestingFramework"
"https://github.com/Cambridge-ICCS/FTorch"
"https://github.com/StevenGolovkine/FDApy"
"https://github.com/sintefore/TimeStruct.jl"
"https://github.com/JoshSchramm94/validateHOT"
"https://github.com/IslasGECI/nerd"
"https://github.com/tqsd/photon_weave"
"https://github.com/RWTH-EBC/AixWeather"
"https://github.com/Collab4exaNBody/exaDEM"
"https://github.com/SGpp/DisCoTec/"
"https://github.com/salbalkus/CausalTables.jl"
"https://github.com/rchartra/NcCut"
"https://github.com/MarkusPic/intensity_duration_frequency_analysis"
"https://github.com/ManuelRausch/StatConfR"
"https://github.com/ebi-jdispatcher/taxonomy-resolver"
"https://github.com/gacou54/pyorthanc"
"https://github.com/4DModeller/fdmr"
"https://github.com/DingshanDeng/ysoisochrone"
"https://github.com/UU-ER/AdOpT-NET0"
"https://github.com/QCUncertainty/sigma"
"https://github.com/ankushaggarwal/pymecht"
"https://github.com/deepskies/DeepBench/"
"https://github.com/iosefa/PyForestScan"
"https://github.com/Santiso-Group/despasito"
"https://github.com/instituteofmechanics/paraqus"
"https://github.com/camfort/fortran-src/"
"https://github.com/toruseo/UXsim"
"https://github.com/DLR-AMR/t8code"
"https://github.com/mxwalbert/cohesivm"
"https://gitlab.com/davidwoodburn/r3f"
"https://github.com/darrenjw/jax-smfsb"
"https://github.com/davidogara/hetGPy"
"https://github.com/ImperialCollegeLondon/PyProBE"
"https://www.github.com/ropensci/gigs"
"https://github.com/LebeerLab/tidytacos"
"https://github.com/OPM/pyopmspe11"
"https://github.com/bcgov/ssdtools"
"https://github.com/yuefan98/nleis.py"
"https://github.com/damask-multiphysics/DAMASK"
"https://github.com/wrenfold/wrenfold"
"https://github.com/voting-tools/pref_voting"
"https://github.com/NVlabs/scene_synthesizer"
"https://github.com/LidkeLab/matlab-instrument-control"
"https://github.com/CDCgov/BART-Survival"
"https://github.com/philip-long/robot_collision_checking"
"https://github.com/trixi-framework/TrixiParticles.jl"
"https://github.com/EHTJulia/ScatteringOptics.jl"
"https://github.com/hauselin/ollama-r"
"https://github.com/mongibellili/QuantizedSystemSolver.jl"
"https://github.com/cvs-health/langfair"
"https://github.com/danStich/dia"
"https://github.com/Stat-Cook/deident"
"https://github.com/WSWUP/gridwxcomp"
"https://github.com/FZJ-IEK3-VSA/FINE"
"https://github.com/homerjed/sbiax"
"https://github.com/hajimes/mmh3"
"https://github.com/wetransform-os/ProMCDA"
"https://github.com/C2SM-RCM/emiproc"
"https://github.com/sisl/ExpFamilyPCA.jl"
"https://github.com/bricoletc/delfies"
"https://github.com/unfoldtoolbox/UnfoldMakie.jl"
"https://github.com/harvard-nrg/dwiqc"
"https://github.com/GreycLab/gmic"
"https://github.com/sinanozaydin/pide"
"https://github.com/iterize/tenta"
"https://github.com/gadomski/antimeridian"
"https://github.com/xpsi-group/neost"
"https://github.com/PyLops/pylops-mpi"
"https://github.com/online-ml/deep-river"
"https://github.com/TomWagg/cogsworth"
"https://github.com/sodascience/metasyn"
"https://github.com/SevgiAkten/pycellga"
"https://github.com/COBRAPROsimulator/COBRAPRO"
"https://github.com/ks905383/xagg/"
"https://github.com/hippalectryon-0/pyloggrid"
"https://github.com/Novartis/torchsurv"
"https://github.com/ARC-OPT/wbc"
"https://github.com/mrilikecoding/StreamPoseML"
"https://github.com/kidusasfaw/spatPomp"
"https://github.com/gavinsimpson/gratia"
"https://github.com/rodoulak/Desalination-and-Brine-Treatment-Simulation-.git"
"https://github.com/AlanPearl/diffopt"
"https://github.com/markheckmann/OpenRepGrid"
"https://github.com/joboog/r2ogs6"
"https://github.com/xragua/xraybinaryorbit"
"https://github.com/smillerc/CurvilinearGrids.jl"
"https://github.com/tongzhouxu/mashpit"
"https://github.com/BlauGroup/RNMC"
"https://gitlab.dune-project.org/copasi/dune-copasi"
"https://github.com/JuBiotech/peak-performance/"
"https://github.com/QITI/pySLM2"
"https://github.com/trixi-framework/HOHQMesh"
"https://git.ufz.de/despot/pysewer/"
"https://github.com/quanted/esat"
"https://github.com/PyTomography/slicer_spect_recon.git"
"https://github.com/Magritte-code/pomme"
"https://github.com/NGSolve/ngsPETSc"
"https://github.com/GOMC-WSU/MoSDeF-dihedral-fit/"
"https://github.com/arfc/osier"
"https://github.com/Infineon/StreamGen"
"https://github.com/amisr/amisrsynthdata"
"https://github.com/PLN-team/pyPLNmodels.git"
"https://github.com/AutoResearch/autora-paper"
"https://github.com/kumiori/irrevolutions"
"http://github.com/cdjellen/ndbc-api"
"https://github.com/AthinaLange/CoastalLens"
"https://github.com/ORNL/dasp-stacker"
"https://github.com/dodge-research-group/thztools"
"https://github.com/dfki-ric/ugv_nav4d"
"https://github.com/vnmabus/rdata"
"https://github.com/anugrahjo/PySLSQP"
"https://github.com/dftd3/simple-dftd3"
"https://github.com/swiss-armed-forces/openburst"
"https://github.com/Wytamma/snk"
"https://github.com/VicidominiLab/BrightEyes-MCS"
"https://github.com/RemieJanssen/phylox"
"https://github.com/BleekerLab/PhenoFeatureFinder"
"https://github.com/PIK-LPJmL/lpjmlkit"
"https://github.com/Ciela-Institute/caustics"
"https://github.com/PFPE/shipgrav"
"https://gitlab.com/davidwoodburn/itrm"
"https://github.com/swiss-seismological-service/DUGseis"
"https://github.com/signalling-games-org/evoke"
"https://github.com/alixlam/fmristroke"
"https://github.com/IPESE/REHO"
"https://github.com/polca/pathways"
"https://github.com/LDEO-CREW/Pythonic-DISORT"
"https://github.com/Qile0317/APackOfTheClones"
"https://github.com/PSims/BayesEoR"
"https://github.com/LandSciTech/ccviR"
"https://github.com/Bios4Biol/intronSeeker"
"https://github.com/bobleesj/cifkit"
"https://github.com/lbr-stack/lbr_stack_doc"
"https://github.com/sharmalab/eaglescope"
"https://forgemia.inra.fr/migale/easy16s"
"https://github.com/precice/aste"
"https://github.com/sumn2u/annotate-lab"
"https://github.com/baiyueh/PANINIpy"
"https://github.com/amkrajewski/nimCSO"
"https://github.com/DavidLapous/multipers"
"https://github.com/ptaconet/modisfast"
"https://github.com/isce-framework/dolphin"
"https://github.com/ldliao/jointVIP"
"https://github.com/BirkhoffG/jax-relax/"
"https://github.com/timothyas/xesn"
"https://github.com/WaterFutures/EPyT-Flow"
"https://github.com/hugoledoux/startinpy"
"https://github.com/kellino/DiscreteEntropy.jl"
"https://github.com/alan-turing-institute/setvis"
"https://github.com/brainets/hoi"
"https://github.com/9505-PNNL/wmpy_power"
"https://github.com/meixichen/SpatialGEV"
"https://github.com/ShaunFell/GRBoondi"
"https://github.com/lanl/singularity-eos"
"https://github.com/konkolyseismolab/seismolab"
"https://github.com/JuliaGeodynamics/GeophysicalModelGenerator.jl"
"https://github.com/tvwenger/bayes_spec"
"https://github.com/FaaSr/FaaSr-package"
"https://github.com/OpenMD/OpenMD/"
"https://github.com/jonbmartin/pulpy"
"https://github.com/brocklab/pycashier"
"https://github.com/dominic-chang/Krang.jl"
"https://github.com/uw-comphys/openccm"
"https://github.com/retostauffer/python-colorspace"
"https://github.com/stingraysoftware/stingray"
"https://github.com/WilliamLwj/PyXAB"
"https://github.com/stegmaja/TSE"
"https://github.com/METHODS-Group/DRDMannTurb"
"https://github.com/NOSALRO/robot_dart"
"https://github.com/tinawunderlich/MultichannelGPR"
"https://github.com/OceanParcels/plasticparcels"
"https://github.com/manzt/anywidget"
"https://github.com/trchudley/pdemtools"
"https://github.com/athob/py-ananke"
"https://github.com/marccanby/linguiphyr/"
"https://github.com/gaelforget/MITgcm.jl"
"https://github.com/USEPA/harmonize-wq"
"https://github.com/BattModels/asimtools.git"
"https://github.com/lxvm/AutoBZ.jl"
"https://github.com/Brauckhoff/biopixR"
"https://github.com/adamantine-sim/adamantine"
"https://github.com/mendezVKI/MODULO"
"https://github.com/finsberg/gotranx"
"https://github.com/cau-se/ARCHES-PiCar-X"
"https://gitlab.com/free-astro/siril"
"https://github.com/duxfrederic/lightcurver"
"https://github.com/mprib/caliscope"
"https://github.com/cproctor/qualitative-coding"
"https://github.com/dtkerns/d2"
"https://github.com/GEOS-DEV/GEOS"
"https://github.com/IDEMSInternational/carbonr"
"https://github.com/JuliaAstro/EphemerisSources.jl"
"https://github.com/ckdckd145/statmanager-kr"
"https://github.com/FraunhoferIWES/iwopy"
"https://github.com/jabirali/bodge/"
"https://github.com/MillionConcepts/pdr"
"https://github.com/umami-hep/umami"
"https://gitlab.com/lheea/CN-AeroModels"
"https://github.com/nglm/pycvi"
"https://github.com/willyfh/visualtorch"
"https://gitlab.com/mauricemolli/petitRADTRANS"
"https://github.com/genotoul-bioinfo/Binette"
"https://github.com/MartianColonist/Cthulhu"
"https://github.com/gridap/GridapSolvers.jl"
"https://github.com/neurogeriatricskiel/NGMT"
"https://github.com/OFFIS-DAI/Mango.jl"
"https://github.com/aneeshnaik/lintsampler"
"https://github.com/RoryChenXY/DataRepExp_public"
"https://github.com/furrer-lab/abn"
"https://github.com/ruiying-ocean/cgeniepy"
"https://github.com/nathanaelbosch/ProbNumDiffEq.jl"
"https://github.com/ctkelley/MultiPrecisionArrays.jl"
"https://github.com/ekiefl/pooltool"
"https://github.com/JuliaGeometry/DelaunayTriangulation.jl"
"https://github.com/maps-as-data/MapReader"
"https://gitlab.com/MartinBeseda/sa-oo-vqe-qiskit.git"
"https://github.com/miriamkw/GluPredKit"
"https://gitlab.com/qc-devs/aqcnes"
"https://github.com/choosehappy/HoverFast"
"https://forgemia.inra.fr/pherosensor/pherosensor-toolbox"
"https://github.com/alchemistry/alchemlyb"
"https://github.com/daniloceano/LorenzCycleToolkit"
"https://github.com/mlysy/LocalCop"
"https://github.com/davidpagnon/Sports2D"
"https://github.com/CEA-MetroCarac/pystack3d"
"https://github.com/pierrepeterlongo/back_to_sequences/"
"https://github.com/jeetsukumaran/DendroPy"
"https://github.com/sblunt/orbitize"
"https://github.com/sisl/PyroRL"
"https://github.com/goualard-f/MicroFloatingPoints.jl.git"
"https://github.com/jranalli/solartoolbox"
"https://github.com/LukeDuttweiler/skipTrack"
"https://github.com/dr-joe-wirth/primerForge/"
"https://github.com/agerada/AIgarMIC"
"https://github.com/thorstone25/qups"
"https://github.com/scverse/anndata"
"https://github.com/palaeoware/trevosim/"
"https://github.com/sidiwang/snSMART"
"https://github.com/VU-IVM/VineCopulas"
"https://github.com/tribshms/tRIBS"
"https://github.com/RWTH-EBC/FiLiP"
"https://github.com/artefactory/choice-learn"
"https://github.com/flekschas/jupyter-scatter/"
"https://github.com/Jingxuan97/nemesispy"
"https://github.com/Battery-Intelligence-Lab/dtw-cpp"
"https://github.com/annagraff/densify"
"https://github.com/jacob-long/jtools"
"https://github.com/marberts/piar"
"https://github.com/SciML/DataInterpolations.jl"
"https://github.com/opnavlab/sonic"
"https://gricad-gitlab.univ-grenoble-alpes.fr/deformvis/insarviz"
"https://github.com/GeodynamicWorldBuilder/WorldBuilder/"
"https://github.com/ropensci/osmapiR"
"https://github.com/ben-cassese/squishyplanet"
"https://github.com/radicamc/exoTEDRF"
"https://github.com/mzkhalid039/DWBuilder"
"https://github.com/OpenEnergyPlatform/open-MaStR"
"https://github.com/WhaleConnect/whaleconnect"
"https://github.com/EdgeVPNio/evio"
"https://github.com/opengeos/HyperCoast"
"https://github.com/Aminsinichi/wearable-hrv/"
"https://github.com/Clinical-Genomics-Umea/fraggler"
"https://github.com/karllark/dust_extinction"
"https://github.com/openneuropet/PET2BIDS/"
"https://github.com/mdtanker/polartoolkit"
"https://github.com/akinremisa/rfsed"
"https://github.com/simpeg/aurora"
"https://github.com/project-asgard/asgard"
"https://github.com/GOBLIN-Proj/goblin_lite"
"https://github.com/ropensci/rOPTRAM"
"https://github.com/VegeWaterDynamics/motrainer"
"https://github.com/elsoroka/Satisfiability.jl"
"https://github.com/bjmt/universalmotif"
"https://github.com/BlueBrain/BlueCelluLab"
"https://github.com/aadya940/chainopy"
"https://github.com/bessagroup/f3dasm"
"https://github.com/padster/pyNeuroTrace"
"https://github.com/bbye98/mdcraft"
"https://github.com/ec-jrc/nrt"
"https://github.com/samwaseda/mamonca"
"https://github.com/automl/amltk"
"https://github.com/NERDSITU/superblockify"
"https://github.com/lahovniktadej/gatree"
"https://github.com/arjunsavel/cortecs"
"https://github.com/koide3/small_gicp"
"https://github.com/HinodeXRT/xrtpy"
"https://github.com/Exo-TiC/ExoTiC-LD"
"https://github.com/BrownDwarf/gollum"
"https://github.com/EdwardBerman/shopt"
"https://github.com/COSIMA/regional-mom6/"
"https://github.com/CodeEagle22/SIRITVIS/"
"https://github.com/NERC-CEH/RMAVIS"
"https://github.com/suchanek/proteusPy"
"https://github.com/fladd/ScanSessionTool"
"https://github.com/flatironinstitute/cppdlr/"
"https://github.com/fairdataihub/SODA-for-SPARC"
"https://github.com/Mavrogiannis-Ioannis/dsmmR"
"https://github.com/AkchurinDA/Fortuna.jl"
"https://github.com/ORNL/Equilipy"
"https://github.com/paucablop/chemotools"
"https://github.com/mrazomej/AutoEncoderToolkit.jl"
"https://github.com/AtrCheema/SeqMetrics"
"https://github.com/cmgcds/fastvpinns"
"https://github.com/IonRepo/IonDiff"
"https://github.com/xianggebenben/GraphSL"
"https://github.com/slimgroup/InvertibleNetworks.jl"
"https://github.com/mjcarley/nbi/"
"https://github.com/hippylib/soupy"
"https://github.com/USEPA/SSN2"
"https://github.com/hydroframe/hf_hydrodata"
"https://github.com/CLIMADA-project/climada_python"
"https://github.com/tsipkens/atems"
"https://github.com/TommyJones/tidylda"
"https://github.com/markblokpoel/mathlib"
"https://github.com/mnets/pymnet"
"https://github.com/Sm00thix/IKPLS"
"https://github.com/Cloud-Drift/clouddrift"
"https://github.com/CM2S/piglot"
"https://github.com/Quantum-Optics-LKB/NLSE"
"https://github.com/votca/votca"
"https://github.com/AStcherbinine/omegapy"
"https://github.com/EhsanGharibNezhad/TelescopeML"
"https://gitlab.com/open-darts/open-darts"
"https://github.com/oncoray/mirp"
"https://github.com/jcorbino/mole"
"https://github.com/b-pardi/BraTaDio"
"https://github.com/m-d-grunnill/MetaCast"
"https://github.com/hydroframe/subsettools"
"https://github.com/amberbiology/scribl"
"https://github.com/dms-viz/dms-viz.github.io"
"https://github.com/yotarazona/scikit-eo"
"https://github.com/Moore-Institute-4-Plastic-Pollution-Res/One4All"
"https://github.com/nathanReitinger/CART"
"https://github.com/New-Horizons-SPM/scanbot"
"https://github.com/limengbinggz/ddtlcm"
"https://github.com/ForsbergPyschometrics/D3mirt"
"https://github.com/FAST-LB/pyGCodeDecode"
"https://github.com/darthoctopus/reggae"
"https://github.com/JuliaDynamics/TransitionsInTimeseries.jl"
"https://github.com/thiago-glissoi/FFF-Line-Segmentation"
"https://github.com/uwsbel/low-fidelity-dynamic-models"
"https://github.com/pfeinsper/drone-swarm-search"
"https://github.com/VasuLab/rgfrosh"
"https://github.com/nimble-dev/nimbleHMC"
"https://github.com/SERVIR/servir-aces"
"https://github.com/PennyLaneAI/catalyst"
"https://github.com/nci/scores/"
"https://gitlab.com/dlr-ve/esy/remix/framework"
"https://github.com/juanmc2005/StreamingSpeakerDiarization"
"https://github.com/heli-xu/findSVI"
"https://github.com/nedtaylor/athena"
"https://github.com/nipy/heudiconv/"
"https://github.com/IBM/topography-searcher"
"https://github.com/JIBSIL/DistriFS"
"https://github.com/SatelliteShorelines/CoastSeg"
"https://github.com/extendr/extendr"
"https://github.com/jeertmans/DiffeRT2d"
"https://github.com/xCDAT/xcdat"
"https://github.com/UM-KevinHe/surtvep"
"https://gitlab.com/libreumg/dataquier.git"
"https://github.com/sourmash-bio/sourmash"
"https://github.com/jeancmaia/mcglm"
"https://github.com/seisman/HinetPy"
"https://github.com/ericfell/rfbzero"
"https://github.com/hypre-space/hypredrive"
"https://github.com/canimus/cuallee"
"https://github.com/david-mathews-1994/deltarice"
"https://github.com/PdIPS/CBX"
"https://github.com/NIFTy-PPL/JAXbind"
"https://github.com/CompNet/Renard"
"https://github.com/actris-cloudnet/mwrpy"
"https://github.com/baxmittens/OpenGeoSysUncertaintyQuantification.jl"
"https://github.com/mathopt/DynamicOED.jl"
"https://github.com/soundata/soundata"
"https://github.com/nifty-ppl/nifty"
"https://github.com/MayaWaves/mayawaves"
"https://github.com/m-dadej/MarSwitching.jl"
"https://github.com/sntioudis/papreca"
"https://github.com/RAMP-project/RAMP"
"https://github.com/LeoEgidi/pivmet"
"https://github.com/cblearn/cblearn"
"https://github.com/bigraph-toolkit-suite/bigraphs.grgen-bigraphs"
"https://github.com/spjuhel/BoARIO"
"https://github.com/vidarsko/ComFiT"
"https://github.com/edsonportosilva/OptiCommPy/"
"https://github.com/mei-friend/mei-friend"
"https://github.com/groupmm/libsoni"
"https://github.com/Simulation-Decomposition/simdec-python"
"https://github.com/GRChombo/GRFolres"
"https://github.com/kyleaoman/martini"
"https://github.com/aikubo/LinkingLines"
"https://github.com/SpeedyWeather/SpeedyWeather.jl"
"https://github.com/ropensci/weatherOz"
"https://github.com/IMMM-SFA/naturf.git"
"https://github.com/nasa/ncompare"
"https://github.com/tne-lab/py-behav-box-v2"
"https://github.com/ialbert/genescape-central"
"https://github.com/tldr-group/samba-web"
"https://github.com/hkabbech/TrackSegNet"
"https://github.com/OpenTerrace/openterrace-python"
"https://github.com/sportiellomike/mousebreedeR"
"https://github.com/felixludos/omni-fig"
"https://github.com/powerapi-ng/powerapi"
"https://gitlab.com/mantik-ai/mantik"
"https://github.com/devosoft/Empirical/"
"https://github.com/BlackHolePerturbationToolkit/KerrGeoPy"
"https://github.com/esa/polyhedral-gravity-model"
"https://github.com/MichielsenM/FOAM"
"https://github.com/Jammy2211/PyAutoCTI"
"https://github.com/LLNL/echemfem"
"https://github.com/dfki-ric/movement_primitives/"
"https://github.com/thraraujo/pysymmpol"
"https://github.com/quantum-exeter/SpiDy.jl"
"https://github.com/SpectraCollab/ORMIR_XCT"
"https://github.com/JGCRI/tethys"
"https://github.com/Alexander-Barth/NCDatasets.jl"
"https://github.com/dankelley/whalestrike"
"https://gitlab.com/cmbm-ethz/pourbaix-diagrams"
"https://github.com/labsyspharm/scimap"
"https://github.com/1oly/AeroAcoustics.jl"
"https://github.com/Tpatni719/gsMAMS.git"
"https://github.com/flatironinstitute/neurosift"
"https://github.com/FixOurFood/AgriFoodPy/"
"https://github.com/ossmith/HARE"
"https://github.com/sparks-baird/matbench-genmetrics"
"https://github.com/iniyannatarajan/Anime.jl"
"https://github.com/sterinaldi/FIGARO"
"https://github.com/ThibaultFillion/strengths"
"https://github.com/mcgalcode/pylattica"
"https://github.com/SMTG-Bham/ThermoParser"
"https://github.com/NicOudart/PyBWE"
"https://github.com/WSWUP/agweather-qaqc"
"https://github.com/soilwater/crnpy"
"https://github.com/bandframework/Taweret.git"
"https://github.com/CoLRev-Environment/bib-dedupe"
"https://github.com/UncertainLab/Enlsip.jl.git"
"https://github.com/ropensci/fellingdater"
"https://github.com/obss/jury"
"https://github.com/lsandig/Kirstine.jl"
"https://github.com/LeeoBianchi/HealpixMPI.jl"
"https://github.com/EnergyModelsX/EnergyModelsBase.jl"
"https://github.com/RadioAstronomySoftwareGroup/pyradiosky"
"https://github.com/Bioinformatics-Munich/scas_dashboard"
"https://github.com/JGCRI/stitches"
"https://github.com/AnkitBarik/planetMagFields"
"https://github.com/rasg-affiliates/21cmSense"
"https://github.com/GalagaBits/JWST-FGS-Spelunker"
"https://github.com/nicokurtovic/SIMIO"
"https://github.com/p-slash/qsonic"
"https://github.com/cnellington/Contextualized"
"https://github.com/MFaymon/spINAR"
"https://github.com/CliMA/CalibrateEmulateSample.jl"
"https://github.com/PhysicsOfMobility/ridepy"
"https://github.com/PetrKorab/Arabica"
"https://github.com/cvjena/JeFaPaTo"
"https://github.com/neuroanatomy/thresholdmann"
"https://github.com/FZJ-IEK3-VSA/ETHOS_PeNALPS"
"https://github.com/jepegit/cellpy"
"https://github.com/BRAIN-TO/GIRFReco.jl"
"https://github.com/GrainLearning/grainLearning"
"https://github.com/jorgensd/adios4dolfinx"
"https://github.com/dshawul/NebulaSEM"
"https://gitlab.eudat.eu/coccon-kit/proffastpylot"
"https://github.com/KennethEnevoldsen/augmenty"
"https://github.com/DamynChipman/EllipticForest"
"https://github.com/range-et/PGL"
"https://github.com/IMMM-SFA/statemodify"
"https://github.com/equitable-equations/fqar"
"https://github.com/arup-group/pam"
"https://github.com/JGCRI/gcamfaostat"
"https://github.com/bc3LC/gcamreport"
"https://github.com/David-McKenna/udpPacketManager/"
"https://github.com/tberlok/paicos"
"https://github.com/Cosmoglobe/zodipy"
"https://github.com/robbievanleeuwen/section-properties"
"https://github.com/mikejohnson51/AHGestimation/"
"https://github.com/musoke/UltraDark.jl"
"https://github.com/SMTG-Bham/doped"
"https://github.com/CEA-MetroCarac/fitspy"
"https://github.com/tesselle/aion"
"https://github.com/ABSESpy/ABSESpy"
"https://github.com/CEMeNT-PSAAP/MCDC"
"https://github.com/KenethGarcia/ClassiPyGRB"
"https://github.com/caimeng2/seesus"
"https://github.com/GRChombo/GRDzhadzha.git"
"https://github.com/solislemuslab/minaa"
"https://github.com/Toloka/crowd-kit"
"https://github.com/desResLab/LINFA"
"https://github.com/gdalle/HiddenMarkovModels.jl"
"https://github.com/newcleo-dev-team/lbh15"
"https://github.com/ClapeyronThermo/GCIdentifier.jl"
"https://github.com/Qepanna/goFlux"
"https://github.com/MREYE-LUMC/ZOSPy"
"https://bitbucket.org/robmoss/particle-filter-for-python/"
"https://github.com/oleksulkowski/Syn-CpG-Spacer"
"https://github.com/TRACER-LULab/Hyperelastics.jl"
"https://gitlab.com/mauricemolli/petitRADTRANS"
"https://github.com/nla-group/fABBA"
"https://github.com/hendr1km/dropout"
"https://github.com/Yu-Group/simChef"
"https://github.com/shaelebrown/TDApplied"
"https://github.com/Pometry/Raphtory"
"https://github.com/tkchafin/autostreamtree"
"https://github.com/AndresRTejedor/Mold"
"https://github.com/HofstadterTools/HofstadterTools"
"https://gitlab.com/bonsamurais/bonsai/util/ipcc"
"https://github.com/rkingsbury/pyEQL"
"https://github.com/ropensci/quadkeyr"
"https://github.com/kdm9/Acanthophis"
"https://github.com/calebweinreb/SNUB"
"https://codebase.helmholtz.cloud/mussel/netlogo-northsea-species.git"
"https://github.com/firedrakeproject/checkpoint_schedules"
"https://github.com/Open-Minds-Lab/MRdataset"
"https://github.com/suneeshjacob/ACRoD"
"https://github.com/frank1010111/pywaterflood"
"https://github.com/UTEL-UIUC/gtfs_segments"
"https://github.com/ahudde/greeks"
"https://github.com/uw-comphys/shapelets"
"https://github.com/JuliaAI/Imbalance.jl"
"https://github.com/MedMaxLab/selfEEG"
"https://github.com/seamplex/feenox/"
"https://github.com/FabianPlum/OmniTrax"
"https://github.com/RJArthern/WAVI.jl"
"https://github.com/NSAPH-Software/GPCERF"
"http://github.com/pylops/pyproximal/"
"https://github.com/chadagreene/Tide-Model-Driver"
"https://github.com/FAU-LAP/NOMAD-CAMELS"
"https://github.com/moritzobenauer/ProjectRaccoon"
"https://github.com/pnnl/HyperNetX"
"https://github.com/devnums/pyheartlib"
"https://github.com/konfound-project/konfound"
"https://github.com/markur4/plotastic"
"https://github.com/thieu1995/permetrics"
"https://github.com/benlansdell/ethome"
"https://github.com/vergauwenthomas/MetObs_toolkit"
"https://github.com/AlexanderJuestel/pyheatdemand"
"https://github.com/pyro-kinetics/pyrokinetics"
"https://gitlab.com/materials-modeling/calorine"
"https://github.com/spinjet/pdopt-code"
"https://github.com/worlddynamics/WorldDynamics.jl"
"https://github.com/Oden-EAG/hp3d"
"https://github.com/DIDSR/DICaugment"
"https://github.com/mindearth/mobilkit"
"https://github.com/tum-pbs/PhiML"
"https://gitlab.com/cosapp/cosapp"
"https://github.com/nansencenter/DAPPER"
"https://github.com/zhanghe9704/tpsa"
"https://github.com/acerbilab/pybads"
"https://github.com/BPSB/combine-p-values-discrete"
"https://github.com/lrnv/Copulas.jl"
"https://github.com/dirmeier/surjectors"
"https://github.com/a-renzini/pygwb/"
"https://github.com/cbyrohl/scida"
"https://github.com/JaGeo/LobsterPy"
"https://github.com/beardymcjohnface/Koverage"
"https://github.com/DeepRank/deeprank2"
"https://github.com/dynamicslab/pykoopman"
"https://github.com/R-Computing-Lab/BGmisc/"
"https://github.com/chenyangkang/stemflow"
"https://github.com/Pecnut/stokesian-dynamics"
"https://github.com/JGCRI/helios"
"https://gitlab.com/akantu/akantu"
"https://github.com/fieldtrip/fieldtrip"
"https://github.com/FrederikLizakJohansen/DebyeCalculator"
"https://github.com/bjmorgan/kinisi/"
"https://github.com/CHOP-CGTInformatics/REDCapTidieR"
"https://github.com/cremerlab/hplc-py"
"https://github.com/kuadrat/growR"
"https://github.com/idaholab/moose"
"https://github.com/WMD-group/PyTASER"
"https://github.com/czimm79/MicroTracker.jl"
"https://github.com/lskatz/fasten"
"https://gitlab.com/tue-umphy/software/parmesan"
"https://gitlab.com/tum-ciip/elsa"
"https://github.com/DavAug/chi"
"https://github.com/Mmasoud1/HistoJS"
"https://github.com/demonico85/cleaving"
"https://github.com/CODES-group/opyrability"
"https://github.com/jbferet/prospect"
"https://github.com/pprachas/fenics_arclength"
"https://github.com/alejandrojuria/tightbinder"
"https://github.com/tdep-developers/tdep"
"https://github.com/mpl-extensions/mpl-interactions"
"https://github.com/linuxscout/tashaphyne/"
"https://github.com/misken/hillmaker"
"https://github.com/soft-matter-theory-at-icmab-csic/chitin_builder"
"https://github.com/libAtoms/matscipy"
"https://github.com/RECeSS-EU-Project/stanscofi/"
"https://github.com/viash-io/viash"
"https://github.com/sonoUnoTeam/sonoUno-desktop"
"https://github.com/matthias-mayr/Cartesian-Impedance-Controller"
"https://gitlab.com/jtagusari/hrisk-noisemodelling"
"https://github.com/pyroll-project/pyroll-core"
"https://github.com/MLMI2-CSSI/foundry"
"https://github.com/jakelangham/kestrel/"
"https://github.com/akikuno/cstag"
"https://github.com/materialsproject/pymatgen-analysis-defects"
"https://github.com/BohndiekLab/patato"
"https://github.com/illinois-or-research-analytics/cm_pipeline.git"
"https://github.com/zillow/quantile-forest"
"https://github.com/muellerj2/netroles"
"https://github.com/mendezVKI/SPICY_VKI"
"https://github.com/marchirschvogel/ambit"
"https://github.com/daniellerch/aletheia"
"https://github.com/SMTG-UCL/easyunfold"
"https://github.com/LiBuchauer/cellanneal"
"https://github.com/ropensci/dwctaxon"
"https://github.com/PhysioLabXR/PhysioLabXR"
"https://github.com/DIDSR/WebXR-tools.git"
"https://github.com/kstenio/libssa/"
"https://github.com/gbouras13/dnaapler"
"https://github.com/umr-amap/StormR"
"https://github.com/EnergyEconomyDecoupling/CL-PFU-JOSS-Paper"
"https://github.com/OpenDebates/openskill.py"
"https://github.com/rajarshi008/Scarlet"
"https://github.com/unige-geohealth/inAccessMod"
"https://github.com/chnm/Datascribe-module"
"https://github.com/materialsproject/jobflow"
"https://github.com/HRDAG/verdata"
"https://github.com/QuantEcon/QuantEcon.py"
"https://github.com/tuomaseerola/onsetsync"
"https://github.com/castelao/GSW-rs"
"https://github.com/nicrie/xeofs"
"https://github.com/pvlib/pvlib-python"
"https://github.com/CederGroupHub/sparse-lm"
"https://github.com/OSeMOSYS/otoole"
"https://github.com/MaceKuailv/seaduck"
"https://github.com/adrientaudiere/MiscMetabar"
"https://github.com/parafields/parafields"
"https://github.com/Libensemble/libensemble"
"https://github.com/NSAPH-Software/CRE"
"https://github.com/cmelab/flowerMD"
"https://github.com/jonescompneurolab/hnn-core"
"https://github.com/samirmartins/pydaq"
"https://github.com/lys-devel/lys"
"https://gitlab.com/robizzard/libcdict"
"https://github.com/the-rccg/hw2d"
"https://github.com/pudu-py/pudu"
"https://github.com/anderslogg/geco"
"https://github.com/sebastien-plutniak/archeoviz"
"https://github.com/UNSW-CEEM/NEMSEER"
"https://github.com/akashdhruv/BoxKit"
"https://github.com/OpenWaterAnalytics/EPyT/"
"https://github.com/CyclotronResearchCentre/bidsme"
"https://github.com/jrkerns/pylinac"
"https://github.com/LMBooth/pybci"
"https://github.com/HoBeZwe/SphericalScattering.jl"
"https://github.com/NeotomaDB/neotoma2"
"https://github.com/2decomp-fft/2decomp-fft.git"
"https://github.com/NLESC-JCER/QMCTorch"
"https://github.com/r3w0p/bobocep"
"https://gitlab.com/habermann_lab/phasik"
"https://github.com/introlab/opentera"
"https://github.com/espnet/espnet"
"https://github.com/scikit-tda/DREiMac"
"https://github.com/sandialabs/pvOps"
"https://bitbucket.org/sbarbot/motorcycle/src/master/"
"https://github.com/orbisgis/lczexplore"
"https://github.com/spiketools/spiketools"
"https://github.com/Valires/er-evaluation"
"https://github.com/ToyotaCRDL/mahos"
"https://github.com/dieghernan/tidyterra"
"https://github.com/JustinYKC/FEPOPS"
"https://github.com/changliao1025/pyflowline"
"https://github.com/precice/micro-manager"
"https://github.com/MikeSWang/Triumvirate"
"https://github.com/wjakethompson/measr"
"https://github.com/JacksonBurns/astartes"
"https://github.com/blind-contours/SuperNOVA"
"https://github.com/IlianPihlajamaa/ModeCouplingTheory.jl"
"https://github.com/kjschmidlab/GGoutlieR"
"https://github.com/AMReX-Combustion/PeleLMeX"
"https://github.com/damar-wicaksono/uqtestfuns"
"https://github.com/nmfs-fish-tools/ssmse"
"https://github.com/jet-net/JetNet"
"https://github.com/SCIInstitute/UncertainSCI"
"https://github.com/hyosubkim/bayes-toolbox"
"https://github.com/ORNL/curifactory"
"https://github.com/gmrandazzo/libscientific"