generated from best-of-lists/best-of
-
Notifications
You must be signed in to change notification settings - Fork 283
/
Copy pathprojects.yaml
2000 lines (1997 loc) · 54.5 KB
/
projects.yaml
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
configuration:
markdown_header_file: "config/header.md"
markdown_footer_file: "config/footer.md"
hide_empty_categories: True
categories:
- category: "serialization"
title: "Data Serialization"
- category: "data-containers"
title: "Data Containers & Dataframes"
subtitle: "General-purpose data containers as well as utilities & extensions for pandas."
- category: "data-structures"
title: "Data Structures"
- category: "data-validation"
title: "Data Validation"
- category: "algorithms"
title: "Algorithms & Design Patterns"
- category: "date-time-utils"
title: "Date & Time Utilities"
- category: "file-path-utils"
title: "File & Path Utilities"
- category: "compatibility"
title: "Compatiblity"
- category: "cryptography"
title: "Cryptography"
- category: "infrastructure"
title: "Infrastructure & DevOps"
- category: "process-utils"
title: "Process Utilities"
- category: "async"
title: "Asynchronous Programming"
- category: "configuration"
title: "Configuration"
- category: "cli-helpers"
title: "CLI Development"
- category: "dev-utils"
title: "Development Tools"
- category: "caching"
title: "Data Caching"
- category: "gui-dev"
title: "GUI Development"
- category: "computer-vision"
title: "Computer & Machine Vision"
- category: "machine-learning"
title: "Machine Learning & Data Engineering"
- category: "audio"
title: "Audio Data"
- category: "image"
title: "Image Data"
- category: "text"
title: "Text Data"
- category: "web-dev"
title: "Web Development"
- category: "db-clients"
title: "Database Clients"
subtitle: "Libraries for connecting to, operating, and querying databases."
- category: "data-loading"
title: "Data Loading & Extraction"
subtitle: "Libraries for loading, collecting, and extracting data from a variety of data sources and formats."
- category: "data-pipelines"
title: "Data Pipelines & Streaming"
subtitle: "Libraries for data batch- and stream-processing, workflow automation, job scheduling, and other data pipeline tasks."
- category: "internationalization"
title: "Internationalization"
- category: "file-formats"
title: "File Formats"
- category: "inspect"
title: "Code Inspection"
- category: "os-util"
title: "Operation System Tools"
- category: "utilities"
title: "General Utilities"
- category: "python-implementations"
title: "Python Implementations"
labels:
- label: "pandas"
image: "https://git.io/JLy1S"
description: "Pandas related project"
projects:
- name: best-of-ml-python - Computer Vision
github_id: ml-tooling/best-of-ml-python
description: Collection of computer vision and image processing libraries.
resource: true
category: computer-vision
- name: best-of-web-python - Web UI
github_id: ml-tooling/best-of-web-python
description: Collection of libraries to implement web-based UIs.
resource: true
category: gui-dev
- name: best-of-python-dev
github_id: ml-tooling/best-of-python-dev
resource: true
category: dev-utils
- name: best-of-web-python
github_id: ml-tooling/best-of-web-python
resource: true
category: web-dev
- name: best-of-ml-python
github_id: ml-tooling/best-of-ml-python
resource: true
category: machine-learning
- name: python-patterns
github_id: faif/python-patterns
description: Collection of design patterns/idioms in Python
resource: true
category: algorithms
- name: python-fire
github_id: google/python-fire
category: cli-helpers
pypi_id: fire
conda_id: conda-forge/fire
- name: python-prompt-toolkit
github_id: prompt-toolkit/python-prompt-toolkit
category: cli-helpers
pypi_id: prompt_toolkit
conda_id: conda-forge/prompt-toolkit
- name: asciimatics
github_id: peterbrittain/asciimatics
category: cli-helpers
pypi_id: asciimatics
conda_id: conda-forge/asciimatics
- name: bashplotlib
github_id: glamp/bashplotlib
category: cli-helpers
pypi_id: bashplotlib
- name: rich
github_id: Textualize/rich
category: cli-helpers
pypi_id: rich
conda_id: conda-forge/rich
- name: marshmallow
github_id: marshmallow-code/marshmallow
category: serialization
pypi_id: marshmallow
conda_id: conda-forge/marshmallow
- name: pysimdjson
github_id: TkTech/pysimdjson
category: serialization
pypi_id: pysimdjson
conda_id: conda-forge/pysimdjson
- name: python-rapidjson
github_id: python-rapidjson/python-rapidjson
category: serialization
pypi_id: python-rapidjson
conda_id: conda-forge/python-rapidjson
- name: ultrajson
github_id: ultrajson/ultrajson
category: serialization
pypi_id: ujson
conda_id: conda-forge/ujson
- name: algorithms
github_id: keon/algorithms
category: algorithms
pypi_id: algorithms
conda_id: conda-forge/algorithms
- name: python-sortedcontainers
github_id: grantjenks/python-sortedcontainers
category: data-structures
pypi_id: sortedcontainers
conda_id: conda-forge/sortedcontainers
- name: janus
github_id: aio-libs/janus
category: data-structures
pypi_id: janus
conda_id: conda-forge/janus
- name: anytree
github_id: c0fec0de/anytree
category: data-structures
pypi_id: anytree
conda_id: conda-forge/anytree
- name: sqlitedict
github_id: RaRe-Technologies/sqlitedict
category: data-structures
pypi_id: sqlitedict
conda_id: conda-forge/sqlitedict
- name: cleverdict
github_id: PFython/cleverdict
category: data-structures
pypi_id: cleverdict
- name: python-benedict
github_id: fabiocaccamo/python-benedict
category: data-structures
pypi_id: python-benedict
conda_id: conda-forge/python-benedict
- name: bidict
github_id: jab/bidict
category: data-structures
pypi_id: bidict
conda_id: conda-forge/bidict
- name: PyPattyrn
github_id: tylerlaberge/PyPattyrn
category: algorithms
pypi_id: pypattyrn
- name: transitions
github_id: pytransitions/transitions
category: algorithms
pypi_id: transitions
conda_id: conda-forge/transitions
- name: Eel
github_id: ChrisKnott/Eel
category: gui-dev
pypi_id: eel
- name: Phoenix
github_id: wxWidgets/Phoenix
category: gui-dev
pypi_id: wx
conda_id: conda-forge/wxpython
- name: enaml
github_id: nucleic/enaml
category: gui-dev
pypi_id: enaml
conda_id: conda-forge/enaml
- name: flexx
github_id: flexxui/flexx
category: gui-dev
pypi_id: flexx
conda_id: conda-forge/flexx
- name: Gooey
github_id: chriskiehl/Gooey
category: gui-dev
pypi_id: gooey
conda_id: conda-forge/gooey
- name: PySimpleGUI
github_id: PySimpleGUI/PySimpleGUI
description: PySimpleGUI is a Python package that enables Python programmers of
all levels to create GUIs
category: gui-dev
pypi_id: pysimplegui
conda_id: conda-forge/pysimplegui
license: PySimpleGUI License
- name: toga
github_id: beeware/toga
category: gui-dev
pypi_id: toga
npm_id: '@pybee/toga'
- name: DearPyGui
github_id: hoffstadt/DearPyGui
category: gui-dev
pypi_id: dearpygui
- name: python-email-validator
github_id: JoshData/python-email-validator
category: data-validation
pypi_id: email-validator
conda_id: conda-forge/email-validator
- name: jsonschema
github_id: Julian/jsonschema
category: data-validation
pypi_id: jsonschema
conda_id: conda-forge/jsonschema
- name: schematics
github_id: schematics/schematics
category: data-validation
pypi_id: schematics
conda_id: conda-forge/schematics
- name: voluptuous
github_id: alecthomas/voluptuous
category: data-validation
pypi_id: voluptuous
conda_id: conda-forge/voluptuous
- name: configobj
github_id: DiffSK/configobj
category: configuration
pypi_id: configobj
conda_id: conda-forge/configobj
license: BSD-3-Clause
- name: hydra
github_id: facebookresearch/hydra
category: configuration
pypi_id: hydra
conda_id: conda-forge/hydra-core
- name: Dynaconf
github_id: rochacbruno/dynaconf
category: configuration
pypi_id: dynaconf
conda_id: conda-forge/dynaconf
- name: python-decouple
github_id: henriquebastos/python-decouple
category: configuration
pypi_id: python-decouple
conda_id: conda-forge/python-decouple
- name: paramiko
github_id: paramiko/paramiko
category: infrastructure
pypi_id: paramiko
conda_id: conda-forge/paramiko
show: true
- name: beaker
github_id: bbangert/beaker
category: caching
pypi_id: beaker
conda_id: conda-forge/beaker
- name: pylibmc
github_id: lericson/pylibmc
category: caching
pypi_id: pylibmc
conda_id: conda-forge/pylibmc
- name: path
github_id: jaraco/path
category: file-path-utils
pypi_id: path
conda_id: conda-forge/path
- name: pyfilesystem2
github_id: pyfilesystem/pyfilesystem2
category: file-path-utils
pypi_id: fs
conda_id: conda-forge/fs
- name: Unipath
github_id: mikeorr/Unipath
category: file-path-utils
pypi_id: unipath
- name: watchdog
github_id: gorakhargosh/watchdog
category: file-path-utils
pypi_id: watchdog
conda_id: conda-forge/watchdog
- name: docopt
github_id: docopt/docopt
category: cli-helpers
pypi_id: docopt
conda_id: conda-forge/docopt
- name: click
github_id: pallets/click
category: cli-helpers
pypi_id: click
conda_id: conda-forge/click
- name: clint
github_id: kennethreitz-archive/clint
category: cli-helpers
pypi_id: clint
conda_id: conda-forge/clint
- name: cookiecutter
github_id: cookiecutter/cookiecutter
category: others
pypi_id: cookiecutter
conda_id: conda-forge/cookiecutter
- name: colout
github_id: nojhan/colout
category: cli-helpers
pypi_id: colout
- name: cryptography
github_id: pyca/cryptography
category: cryptography
pypi_id: cryptography
conda_id: conda-forge/cryptography
- name: arrow
github_id: arrow-py/arrow
category: date-time-utils
pypi_id: arrow
conda_id: conda-forge/arrow
- name: macropy
github_id: lihaoyi/macropy
category: others
pypi_id: macropy3
- name: sh
github_id: amoffat/sh
category: process-utils
pypi_id: sh
conda_id: conda-forge/sh
- name: simplejson
github_id: simplejson/simplejson
category: serialization
pypi_id: simplejson
conda_id: conda-forge/simplejson
- name: storm
github_id: emre/storm
category: infrastructure
pypi_id: storm
- name: pulumi
github_id: pulumi/pulumi
category: infrastructure
pypi_id: pulumi
npm_id: '@pulumi/pulumi'
- name: plumbum
github_id: tomerfiliba/plumbum
category: infrastructure
pypi_id: plumbum
conda_id: conda-forge/plumbum
- name: netmiko
github_id: ktbyers/netmiko
category: infrastructure
pypi_id: netmiko
- name: wssh
github_id: aluzzardi/wssh
category: infrastructure
pypi_id: wssh
- name: funcy
github_id: Suor/funcy
category: utilities
pypi_id: funcy
conda_id: conda-forge/funcy
- name: powerline-shell
github_id: b-ryan/powerline-shell
pypi_id: powerline-shell
- name: cerberus
github_id: pyeve/cerberus
category: data-validation
pypi_id: cerberus
conda_id: conda-forge/cerberus
- name: schema
github_id: keleshev/schema
category: data-validation
pypi_id: schema
conda_id: conda-forge/schema
- name: strictyaml
github_id: crdoconnor/strictyaml
category: data-validation
pypi_id: strictyaml
conda_id: conda-forge/strictyaml
- name: valideer
github_id: podio/valideer
category: data-validation
pypi_id: valideer
conda_id: conda-forge/valideer
- name: validr
github_id: guyskk/validr
category: data-validation
pypi_id: validr
- name: pydantic
github_id: samuelcolvin/pydantic
category: data-validation
pypi_id: pydantic
conda_id: conda-forge/pydantic
- name: uvloop
github_id: MagicStack/uvloop
category: async
pypi_id: uvloop
conda_id: conda-forge/uvloop
- name: anyio
github_id: agronholm/anyio
category: async
pypi_id: anyio
conda_id: conda-forge/anyio
- name: unsync
github_id: alex-sherman/unsync
category: async
pypi_id: unsync
conda_id: conda-forge/unsync
- name: aiomisc
github_id: aiokitchen/aiomisc
category: async
pypi_id: aiomisc
- name: greenlet
github_id: python-greenlet/greenlet
category: async
pypi_id: greenlet
conda_id: conda-forge/greenlet
- name: cached-property
github_id: pydanny/cached-property
category: caching
pypi_id: cached-property
conda_id: conda-forge/cached-property
- name: aiocache
github_id: aio-libs/aiocache
category: caching
pypi_id: aiocache
- name: cachier
github_id: shaypal5/cachier
category: caching
pypi_id: cachier
- name: cachetools
github_id: tkem/cachetools
category: caching
pypi_id: cachetools
conda_id: conda-forge/cachetools
- name: questionary
github_id: tmbo/questionary
category: cli-helpers
pypi_id: questionary
conda_id: conda-forge/questionary
- name: docopt-ng
github_id: jazzband/docopt-ng
category: cli-helpers
pypi_id: docopt-ng
- name: colorama
github_id: tartley/colorama
category: cli-helpers
pypi_id: colorama
conda_id: conda-forge/colorama
- name: emoji
github_id: carpedm20/emoji
category: text
pypi_id: emoji
conda_id: conda-forge/emoji
- name: blessings
github_id: erikrose/blessings
category: cli-helpers
pypi_id: blessings
conda_id: conda-forge/blessings
- name: argcomplete
github_id: kislyuk/argcomplete
category: cli-helpers
pypi_id: argcomplete
conda_id: conda-forge/argcomplete
- name: cleo
github_id: sdispater/cleo
category: cli-helpers
pypi_id: cleo
conda_id: conda-forge/cleo
- name: ConfigArgParse
github_id: bw2/ConfigArgParse
category: cli-helpers
pypi_id: configargparse
conda_id: conda-forge/configargparse
- name: wcwidth
github_id: jquast/wcwidth
category: cli-helpers
pypi_id: wcwidth
conda_id: conda-forge/wcwidth
- name: typing
github_id: python/typing
category: compatibility
pypi_id: typing
conda_id: conda-forge/typing
- name: six
github_id: benjaminp/six
category: compatibility
pypi_id: six
conda_id: conda-forge/six
- name: dataclasses
github_id: ericvsmith/dataclasses
category: compatibility
pypi_id: dataclasses
conda_id: conda-forge/dataclasses
- name: futures
github_id: agronholm/pythonfutures
category: compatibility
pypi_id: futures
conda_id: conda-forge/futures
- name: pathlib2
github_id: jazzband/pathlib2
category: compatibility
pypi_id: pathlib2
conda_id: conda-forge/pathlib2
- name: future
github_id: PythonCharmers/python-future
category: compatibility
pypi_id: future
conda_id: conda-forge/future
- name: contextlib2
github_id: jazzband/contextlib2
category: compatibility
pypi_id: contextlib2
conda_id: conda-forge/contextlib2
- name: gin-config
github_id: google/gin-config
category: configuration
pypi_id: gin-config
conda_id: conda-forge/gin-config
- name: python-dotenv
github_id: theskumar/python-dotenv
category: configuration
pypi_id: python-dotenv
conda_id: conda-forge/python-dotenv
- name: traitlets
github_id: ipython/traitlets
category: configuration
pypi_id: traitlets
conda_id: conda-forge/traitlets
- name: pycryptodomex
github_id: Legrandin/pycryptodome
category: cryptography
pypi_id: pycryptodomex
conda_id: conda-forge/pycryptodomex
- name: bcrypt
github_id: pyca/bcrypt
category: cryptography
pypi_id: bcrypt
conda_id: conda-forge/bcrypt
- name: keyring
github_id: jaraco/keyring
category: cryptography
pypi_id: keyring
conda_id: conda-forge/keyring
- name: asn1crypto
github_id: wbond/asn1crypto
category: cryptography
pypi_id: asn1crypto
conda_id: conda-forge/asn1crypto
- name: rsa
github_id: sybrenstuvel/python-rsa
category: cryptography
pypi_id: rsa
conda_id: conda-forge/rsa
- name: addict
github_id: mewwts/addict
category: data-structures
pypi_id: addict
conda_id: conda-forge/addict
- name: python-box
github_id: cdgriffith/Box
category: data-structures
pypi_id: python-box
conda_id: conda-forge/python-box
- name: pyrsistent
github_id: tobgu/pyrsistent
category: data-structures
pypi_id: pyrsistent
conda_id: conda-forge/pyrsistent
- name: immutables
github_id: MagicStack/immutables
category: data-structures
pypi_id: immutables
conda_id: conda-forge/immutables
- name: munch
github_id: Infinidat/munch
category: data-structures
pypi_id: munch
conda_id: conda-forge/munch
- name: multidict
github_id: aio-libs/multidict
category: data-structures
pypi_id: multidict
conda_id: conda-forge/multidict
- name: validators
github_id: kvesteri/validators
category: data-validation
pypi_id: validators
conda_id: conda-forge/validators
- name: pendulum
github_id: sdispater/pendulum
category: date-time-utils
pypi_id: pendulum
conda_id: conda-forge/pendulum
- name: dateparser
github_id: scrapinghub/dateparser
category: date-time-utils
pypi_id: dateparser
conda_id: conda-forge/dateparser
- name: python-dateutil
github_id: dateutil/dateutil
category: date-time-utils
pypi_id: python-dateutil
conda_id: conda-forge/python-dateutil
license: Apache-2.0
- name: parsedatetime
github_id: bear/parsedatetime
category: date-time-utils
pypi_id: parsedatetime
conda_id: conda-forge/parsedatetime
- name: holidays
github_id: dr-prodigy/python-holidays
category: date-time-utils
pypi_id: holidays
conda_id: conda-forge/holidays
- name: pytz
github_id: stub42/pytz
category: date-time-utils
pypi_id: pytz
conda_id: conda-forge/pytz
- name: tzlocal
github_id: regebro/tzlocal
category: date-time-utils
pypi_id: tzlocal
conda_id: conda-forge/tzlocal
- name: isodate
github_id: gweis/isodate
category: date-time-utils
pypi_id: isodate
conda_id: conda-forge/isodate
- name: jmespath
github_id: jmespath/jmespath.py
category: file-formats
pypi_id: jmespath
conda_id: conda-forge/jmespath
- name: XlsxWriter
github_id: jmcnamara/XlsxWriter
category: file-formats
pypi_id: xlsxwriter
conda_id: conda-forge/xlsxwriter
- name: aiofiles
github_id: Tinche/aiofiles
category: file-path-utils
pypi_id: aiofiles
conda_id: conda-forge/aiofiles
- name: appdirs
github_id: ActiveState/appdirs
category: file-path-utils
pypi_id: appdirs
conda_id: conda-forge/appdirs
- name: scandir
github_id: benhoyt/scandir
category: file-path-utils
pypi_id: scandir
conda_id: conda-forge/scandir
- name: filelock
github_id: tox-dev/py-filelock
category: file-path-utils
pypi_id: filelock
conda_id: conda-forge/filelock
- name: zipp
github_id: jaraco/zipp
category: file-path-utils
pypi_id: zipp
conda_id: conda-forge/zipp
- name: ansible
github_id: ansible/ansible
category: infrastructure
pypi_id: ansible
conda_id: conda-forge/ansible
- name: docker-compose
github_id: docker/compose
category: infrastructure
pypi_id: docker-compose
conda_id: conda-forge/docker-compose
- name: docker
github_id: docker/docker-py
category: infrastructure
pypi_id: docker
conda_id: conda-forge/docker-py
- name: kubernetes
github_id: kubernetes-client/python
category: infrastructure
pypi_id: kubernetes
conda_id: conda-forge/kubernetes
- name: botocore
github_id: boto/botocore
category: infrastructure
pypi_id: botocore
conda_id: conda-forge/botocore
- name: awscli
github_id: aws/aws-cli
category: infrastructure
pypi_id: awscli
conda_id: conda-forge/awscli
- name: deepdiff
github_id: seperman/deepdiff
category: inspect
pypi_id: deepdiff
conda_id: conda-forge/deepdiff
- name: entrypoints
github_id: takluyver/entrypoints
category: inspect
pypi_id: entrypoints
conda_id: conda-forge/entrypoints
- name: importlib-resources
github_id: python/importlib_resources
category: inspect
pypi_id: importlib-resources
conda_id: conda-forge/importlib_resources
- name: pycparser
github_id: eliben/pycparser
category: others
pypi_id: pycparser
conda_id: conda-forge/pycparser
- name: wrapt
github_id: GrahamDumpleton/wrapt
category: others
pypi_id: wrapt
conda_id: conda-forge/wrapt
- name: pyparsing
github_id: pyparsing/pyparsing
category: others
pypi_id: pyparsing
conda_id: conda-forge/pyparsing
- name: py4j
github_id: bartdag/py4j
category: others
pypi_id: py4j
conda_id: conda-forge/py4j
- name: pluggy
github_id: pytest-dev/pluggy
category: others
pypi_id: pluggy
conda_id: conda-forge/pluggy
- name: decorator
github_id: micheles/decorator
category: others
pypi_id: decorator
conda_id: conda-forge/decorator
- name: Send2Trash
github_id: arsenetar/send2trash
category: others
pypi_id: send2trash
conda_id: conda-forge/send2trash
- name: Pygments
github_id: pygments/pygments
category: others
pypi_id: pygments
conda_id: conda-forge/pygments
- name: supervisor
github_id: Supervisor/supervisor
category: process-utils
pypi_id: supervisor
conda_id: conda-forge/supervisor
license: Repoze Public License
show: true
- name: ptyprocess
github_id: pexpect/ptyprocess
category: process-utils
pypi_id: ptyprocess
conda_id: conda-forge/ptyprocess
- name: pexpect
github_id: pexpect/pexpect
category: process-utils
pypi_id: pexpect
conda_id: conda-forge/pexpect
- name: flatbuffers
github_id: google/flatbuffers
category: serialization
pypi_id: flatbuffers
conda_id: conda-forge/flatbuffers
npm_id: flatbuffers
- name: msgpack
github_id: msgpack/msgpack-python
category: serialization
pypi_id: msgpack
conda_id: conda-forge/msgpack-python
- name: PyYAML
github_id: yaml/pyyaml
category: file-formats
pypi_id: pyyaml
conda_id: conda-forge/pyyaml
- name: jsonpickle
github_id: jsonpickle/jsonpickle
category: serialization
pypi_id: jsonpickle
conda_id: conda-forge/jsonpickle
- name: cloudpickle
github_id: cloudpipe/cloudpickle
category: serialization
pypi_id: cloudpickle
conda_id: conda-forge/cloudpickle
license: BSD-3-Clause
- name: pyasn1
github_id: etingof/pyasn1
category: serialization
pypi_id: pyasn1
conda_id: conda-forge/pyasn1
- name: protobuf
github_id: protocolbuffers/protobuf
category: serialization
pypi_id: protobuf
conda_id: conda-forge/protobuf
npm_id: google-protobuf
license: BSD-3-Clause
- name: dill
github_id: uqfoundation/dill
category: serialization
pypi_id: dill
conda_id: conda-forge/dill
- name: sshtunnel
github_id: pahaz/sshtunnel
category: infrastructure
pypi_id: sshtunnel
conda_id: conda-forge/sshtunnel
- name: chardet
github_id: chardet/chardet
category: text
pypi_id: chardet
conda_id: conda-forge/chardet
npm_id: '@pypi/chardet'
show: true
- name: humanize
github_id: jmoiron/humanize
category: text
pypi_id: humanize
conda_id: conda-forge/humanize
- name: python-slugify
github_id: un33k/python-slugify
category: text
pypi_id: python-slugify
conda_id: conda-forge/python-slugify
- name: boltons
github_id: mahmoud/boltons
category: utilities
pypi_id: boltons
conda_id: conda-forge/boltons
- name: attrs
github_id: python-attrs/attrs
category: utilities
pypi_id: attrs
conda_id: conda-forge/attrs
- name: toolz
github_id: pytoolz/toolz
category: utilities
pypi_id: toolz
conda_id: conda-forge/toolz
- name: tenacity
github_id: jd/tenacity
category: utilities
pypi_id: tenacity
conda_id: conda-forge/tenacity
- name: more-itertools
github_id: more-itertools/more-itertools
category: utilities
pypi_id: more-itertools
conda_id: conda-forge/more-itertools
- name: retrying
github_id: rholder/retrying
category: utilities
pypi_id: retrying
conda_id: conda-forge/retrying
- name: natsort
github_id: SethMMorton/natsort
category: utilities
pypi_id: natsort
conda_id: conda-forge/natsort
- name: ratelimit
github_id: tomasbasham/ratelimit
category: utilities
pypi_id: ratelimit
conda_id: conda-forge/ratelimit
- name: Typer
github_id: tiangolo/typer
category: cli-helpers
pypi_id: typer
conda_id: conda-forge/typer
- name: keyboard
github_id: boppreh/keyboard
category: os-utils
pypi_id: keyboard
conda_id: conda-forge/keyboard
- name: python-mss
github_id: BoboTiG/python-mss
category: os-utils
pypi_id: mss
conda_id: conda-forge/python-mss
- name: pyscreenshot
github_id: ponty/pyscreenshot
category: os-utils
pypi_id: pyscreenshot
- name: diagrams
github_id: mingrammer/diagrams
category: others
pypi_id: diagrams
conda_id: conda-forge/diagrams
- name: catalogue
github_id: explosion/catalogue
category: others
pypi_id: catalogue
conda_id: conda-forge/catalogue
- name: pluginbase
github_id: mitsuhiko/pluginbase
category: others
pypi_id: pluginbase
conda_id: conda-forge/pluginbase
- name: srsly
github_id: explosion/srsly
category: serialization
pypi_id: srsly
conda_id: conda-forge/srsly
- name: orjson
github_id: ijl/orjson
category: serialization
pypi_id: orjson
conda_id: conda-forge/orjson
- name: price-parser
github_id: scrapinghub/price-parser
category: text
pypi_id: price-parser
- name: awesome-slugify
github_id: voronind/awesome-slugify
category: text
pypi_id: awesome-slugify
conda_id: conda-forge/awesome-slugify
- name: CommonRegex
github_id: madisonmay/CommonRegex
category: utilities
pypi_id: commonregex
- name: pampy
github_id: santinic/pampy
category: utilities
pypi_id: pampy
- name: returns
github_id: dry-python/returns
category: utilities
pypi_id: returns
conda_id: conda-forge/returns
- name: stopit
github_id: glenfant/stopit
category: async
pypi_id: stopit
conda_id: conda-forge/stopit
- name: omegaconf
github_id: omry/omegaconf
category: configuration
pypi_id: omegaconf
conda_id: conda-forge/omegaconf
- name: tink
github_id: google/tink
category: cryptography
pypi_id: tink
npm_id: tink-crypto
- name: ordered-set
github_id: rspeer/ordered-set
category: data-structures
pypi_id: ordered-set
conda_id: conda-forge/ordered-set
- name: param
github_id: holoviz/param
category: data-validation
pypi_id: param
conda_id: conda-forge/param
- name: typical
github_id: seandstewart/typical
category: data-validation
pypi_id: typical
conda_id: conda-forge/typical