forked from Azure/azure-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtechstack.yml
More file actions
1813 lines (1813 loc) · 76.7 KB
/
techstack.yml
File metadata and controls
1813 lines (1813 loc) · 76.7 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
repo_name: bariscaglar/azure-cli
report_id: 2dbc405e68ffad8196d2f711a0d3b4c3
version: 0.1
repo_type: Public
timestamp: '2023-12-21T22:33:35+00:00'
requested_by: dorfire
provider: github
branch: dev
detected_tools_count: 124
tools:
- name: C#
description: Simple, general-purpose, object-oriented programming language for the
.NET platform
website_url: http://csharp.net
open_source: true
hosted_saas: false
category: Languages & Frameworks
sub_category: Languages
image_url: https://img.stackshare.io/service/1015/1200px-C_Sharp_wordmark.svg.png
detection_source: Repo Metadata
- name: C++
description: Has imperative, object-oriented and generic programming features, while
also providing the facilities for low level memory manipulation
website_url: http://www.cplusplus.com/
open_source: true
hosted_saas: false
category: Languages & Frameworks
sub_category: Languages
image_url: https://img.stackshare.io/service/1049/cplusplus.png
detection_source: Repo Metadata
- name: JavaScript
description: Lightweight, interpreted, object-oriented language with first-class
functions
website_url: https://developer.mozilla.org/en-US/docs/Web/JavaScript
open_source: true
hosted_saas: false
category: Languages & Frameworks
sub_category: Languages
image_url: https://img.stackshare.io/service/1209/javascript.jpeg
detection_source: Repo Metadata
- name: Jinja
description: Full featured template engine for Python
website_url: https://palletsprojects.com/p/jinja/
license: BSD-3-Clause
open_source: true
hosted_saas: false
category: Languages & Frameworks
sub_category: Templating Languages & Extensions
image_url: https://img.stackshare.io/service/2303/New_Project__20_.png
detection_source: scripts/release/homebrew/docker/requirements.txt
last_updated_by: Troy Dai
last_updated_on: 2018-10-04 05:37:14.000000000 Z
- name: Python
description: A clear and powerful object-oriented programming language, comparable
to Perl, Ruby, Scheme, or Java.
website_url: https://www.python.org
open_source: true
hosted_saas: false
category: Languages & Frameworks
sub_category: Languages
image_url: https://img.stackshare.io/service/993/pUBY5pVj.png
detection_source: Repo Metadata
- name: Ruby
description: A dynamic, interpreted, open source programming language with a focus
on simplicity and productivity
website_url: https://www.ruby-lang.org
open_source: true
hosted_saas: false
category: Languages & Frameworks
sub_category: Languages
image_url: https://img.stackshare.io/service/989/ruby.png
detection_source: src/azure-cli/requirements.py2.Darwin.txt
last_updated_by: Martin Strobel
last_updated_on: 2019-06-25 19:08:17.000000000 Z
- name: ".NET Core"
description: An Open Source, General-Purpose Development Platform Maintained by
Microsoft and the .NET Community
website_url: https://docs.microsoft.com/en-us/dotnet/core/
version: '2.1'
license: MIT
open_source: true
hosted_saas: false
category: Languages & Frameworks
sub_category: Frameworks (Full Stack)
image_url: https://img.stackshare.io/service/6403/default_91fc1f0ee315262794273aa1387eaf8fed8436e6.png
detection_source_url: https://github.com/bariscaglar/azure-cli/blob/dev/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/sample_dotnet_function/sample_dotnet_function.csproj
detection_source: src/azure-cli/azure/cli/command_modules/appservice/tests/latest/sample_dotnet_function/sample_dotnet_function.csproj
last_updated_by: Hanzhang Zeng (Roger)
last_updated_on: 2019-04-03 04:19:55.000000000 Z
- name: ASP.NET Core
description: A cross-platform .NET framework for building modern cloud-based web
applications on Windows, Mac, or Linux
website_url: docs.microsoft.com/en-us/aspnet/core/
version: '2.1'
license: MIT
open_source: true
hosted_saas: false
category: Languages & Frameworks
sub_category: Frameworks (Full Stack)
image_url: https://img.stackshare.io/service/11331/asp.net-core.png
detection_source_url: https://github.com/bariscaglar/azure-cli/blob/dev/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/sample_dotnet_function/sample_dotnet_function.csproj
detection_source: src/azure-cli/azure/cli/command_modules/appservice/tests/latest/sample_dotnet_function/sample_dotnet_function.csproj
last_updated_by: Hanzhang Zeng (Roger)
last_updated_on: 2019-04-03 04:19:55.000000000 Z
- name: ExpressJS
description: Sinatra inspired web development framework for node.js -- insanely
fast, flexible, and simple
website_url: http://expressjs.com/
version: 4.14.0
license: MIT
open_source: true
hosted_saas: false
category: Languages & Frameworks
sub_category: Microframeworks (Backend)
image_url: https://img.stackshare.io/service/1163/hashtag.png
detection_source_url: https://github.com/bariscaglar/azure-cli/blob/dev/src/azure-cli/azure/cli/command_modules/appservice/sample-repo-for-deployment-test/package.json
detection_source: src/azure-cli/azure/cli/command_modules/appservice/sample-repo-for-deployment-test/package.json
last_updated_by: Yugang Wang
last_updated_on: 2019-03-14 04:47:25.000000000 Z
- name: Azure Cosmos DB
description: A fully-managed, globally distributed NoSQL database service
website_url: https://azure.microsoft.com/en-us/services/cosmos-db/
open_source: false
hosted_saas: true
category: Data Stores
sub_category: NoSQL Database as a Service
image_url: https://img.stackshare.io/service/1369/nquiptD9.png
detection_source: src/azure-cli/requirements.py2.Darwin.txt
last_updated_by: Zim Kalinowski
last_updated_on: 2019-07-16 07:39:05.000000000 Z
- name: Azure Storage
description: Reliable, economical cloud storage for data big and small
website_url: http://azure.microsoft.com/en-us/services/storage/
open_source: false
hosted_saas: true
category: Data Stores
sub_category: Cloud Storage
image_url: https://img.stackshare.io/service/2099/azureStorage.png
detection_source: src/azure-cli/requirements.py2.Darwin.txt
last_updated_by: Zim Kalinowski
last_updated_on: 2019-07-16 07:39:05.000000000 Z
- name: Azure Pipelines
description: Continuously build, test, and deploy to any platform and cloud
website_url: https://azure.microsoft.com/ko-kr/services/devops/pipelines/
open_source: false
hosted_saas: true
category: Build, Test, Deploy
sub_category: Continuous Integration
image_url: https://img.stackshare.io/service/10164/528389819366_e7a0672f0480b3e98d21_512.png
detection_source: azure-pipelines.yml
last_updated_by: Martin Strobel
last_updated_on: 2019-07-01 19:56:15.000000000 Z
- name: Docker
description: Enterprise Container Platform for High-Velocity Innovation.
website_url: https://www.docker.com/
license: Apache-2.0
open_source: true
hosted_saas: false
category: Build, Test, Deploy
sub_category: Virtual Machine Platforms & Containers
image_url: https://img.stackshare.io/service/586/n4u37v9t_400x400.png
detection_source: Repo Metadata
- name: Fabric
description: Simple, Pythonic remote execution and deployment
website_url: http://fabfile.org
license: BSD-2-Clause
open_source: true
hosted_saas: false
category: Build, Test, Deploy
sub_category: Server Configuration and Automation
image_url: https://img.stackshare.io/service/662/79c2d43ca09b8321909833f37a500799.png
detection_source: src/azure-cli/requirements.py2.Darwin.txt
last_updated_by: Martin Strobel
last_updated_on: 2019-06-25 19:08:17.000000000 Z
- name: Git
description: Fast, scalable, distributed revision control system
website_url: http://git-scm.com/
open_source: true
hosted_saas: false
category: Build, Test, Deploy
sub_category: Version Control System
image_url: https://img.stackshare.io/service/1046/git.png
detection_source: Repo Metadata
- name: PyPI
description: A repository of software for the Python programming language
website_url: https://pypi.org/
open_source: false
hosted_saas: false
category: Build, Test, Deploy
sub_category: Hosted Package Repository
image_url: https://img.stackshare.io/service/12572/-RIWgodF_400x400.jpg
detection_source: src/azure-cli/requirements.py3.Darwin.txt
last_updated_by: Martin Strobel
last_updated_on: 2019-06-25 19:08:17.000000000 Z
- name: RubyGems
description: Easily download, install, and use ruby software packages on your system
website_url: https://rubygems.org/
open_source: false
hosted_saas: false
category: Build, Test, Deploy
sub_category: Package Managers
image_url: https://img.stackshare.io/service/12795/5jL6-BA5_400x400.jpeg
detection_source: src/azure-cli/requirements.py2.Darwin.txt
last_updated_by: Martin Strobel
last_updated_on: 2019-06-25 19:08:17.000000000 Z
- name: Travis CI
description: A hosted continuous integration service for open source and private
projects
website_url: http://travis-ci.com/
open_source: false
hosted_saas: true
category: Build, Test, Deploy
sub_category: Continuous Integration
image_url: https://img.stackshare.io/service/460/Lu6cGu0z_400x400.png
detection_source: ".travis.yml"
last_updated_by: yugangw-msft
last_updated_on: 2016-02-22 21:15:12.000000000 Z
- name: Visual Studio
description: State-of-the-art tools and services that you can use to create great
apps for devices, the cloud, and everything in between.
website_url: http://msdn.microsoft.com/en-us/vstudio/aa718325.aspx
open_source: false
hosted_saas: false
category: Build, Test, Deploy
sub_category: Integrated Development Environment
image_url: https://img.stackshare.io/service/1451/SR2hUhQN.png
detection_source: azure-cli.sln
last_updated_by: Travis Prescott
last_updated_on: 2016-11-04 16:56:37.000000000 Z
- name: npm
description: The package manager for JavaScript.
website_url: https://www.npmjs.com/
open_source: false
hosted_saas: false
category: Build, Test, Deploy
sub_category: Front End Package Manager
image_url: https://img.stackshare.io/service/1120/lejvzrnlpb308aftn31u.png
detection_source: src/azure-cli/azure/cli/command_modules/appservice/sample-repo-for-deployment-test/package.json
last_updated_by: Yugang Wang
last_updated_on: 2019-03-14 04:47:25.000000000 Z
- name: pip
description: A package installer for Python
website_url: https://pypi.org/project/pip/
open_source: false
hosted_saas: false
category: Build, Test, Deploy
sub_category: Front End Package Manager
image_url: https://img.stackshare.io/service/5559/-RIWgodF_400x400.jpg
detection_source: requirements.txt
last_updated_by: Troy Dai
last_updated_on: 2018-08-01 23:10:58.000000000 Z
- name: Microsoft Azure
description: Integrated cloud services and infrastructure to support computing,
database, analytics, mobile, and web scenarios.
website_url: https://azure.microsoft.com/en-us/
open_source: false
hosted_saas: true
category: Application Hosting
sub_category: Cloud Hosting
image_url: https://img.stackshare.io/service/213/default_88defae415fcb9cd0ac5d36c1ed27e74133c6287.jpg
detection_source: src/azure-cli/requirements.py2.Darwin.txt
last_updated_by: Zim Kalinowski
last_updated_on: 2019-07-16 07:39:05.000000000 Z
- name: ANTLR
description: Posts by Terence Parr, The ANTLR guy, about ANTLR, StringTemplate,
parsing, and general computer language cruft.
website_url: http://www.antlr.org/
open_source: false
hosted_saas: false
image_url: https://img.stackshare.io/service/8585/a159037c4838e54e93d9f630a295c396_normal.jpeg
detection_source: Repo Metadata
- name: PowerShell
description: A task automation and configuration management framework
website_url: https://docs.microsoft.com/en-us/powershell/
open_source: false
hosted_saas: false
category: Languages & Frameworks
sub_category: Languages
image_url: https://img.stackshare.io/service/3681/powershell-logo.png
detection_source: Repo Metadata
- name: PyYAML
website_url: http://pyyaml.org/wiki/PyYAML
open_source: false
hosted_saas: false
image_url: https://img.stackshare.io/service/3730/no-img-open-source.png
detection_source: src/azure-cli/requirements.py2.Darwin.txt
last_updated_by: Martin Strobel
last_updated_on: 2019-06-25 19:08:17.000000000 Z
- name: Shell
description: A shell is a text-based terminal, used for manipulating programs and
files. Shell scripts typically manage program execution.
website_url: https://en.wikipedia.org/wiki/Shell_script
open_source: false
hosted_saas: false
category: Languages & Frameworks
sub_category: Languages
image_url: https://img.stackshare.io/service/4631/default_c2062d40130562bdc836c13dbca02d318205a962.png
detection_source: Repo Metadata
- name: ConfigArgParse
description: A drop-in replacement for argparse that allows options to also be set
via config files and/or environment variables
package_url: https://pypi.org/project/ConfigArgParse
version: 0.14.0
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/20153/default_544160f6a53a2457fa2c723a62b4e062027b5aed.png
detection_source_url: https://github.com/bariscaglar/azure-cli/blob/dev/src/azure-cli/requirements.py2.Darwin.txt
detection_source: src/azure-cli/requirements.py2.Darwin.txt
last_updated_by: Martin Strobel
last_updated_on: 2019-06-25 19:08:17.000000000 Z
- name: MarkupSafe
description: Safely add untrusted strings to HTML/XML markup
package_url: https://pypi.org/project/MarkupSafe
version: 1.1.1
license: BSD-3-Clause
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/19945/default_0b0a94e1bdf3e64deeccb23892ca2335bdc30e4f.png
detection_source_url: https://github.com/bariscaglar/azure-cli/blob/dev/src/azure-cli/requirements.py2.Darwin.txt
detection_source: src/azure-cli/requirements.py2.Darwin.txt
last_updated_by: Martin Strobel
last_updated_on: 2019-06-25 19:08:17.000000000 Z
- name: PyJWT
description: JSON Web Token implementation in Python
package_url: https://pypi.org/project/PyJWT
version: 1.7.1
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/19883/default_3863c7bb51d307217c188e059f67ca417c51efe3.png
detection_source_url: https://github.com/bariscaglar/azure-cli/blob/dev/src/azure-cli/requirements.py2.Darwin.txt
detection_source: src/azure-cli/requirements.py2.Darwin.txt
last_updated_by: Martin Strobel
last_updated_on: 2019-06-25 19:08:17.000000000 Z
- name: PyNaCl
description: Python binding to the Networking and Cryptography
package_url: https://pypi.org/project/PyNaCl
version: 1.3.0
license: Apache-2.0
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/20262/default_1842575018db691e6f93d8a9a1aa65cdc2a55c20.png
detection_source_url: https://github.com/bariscaglar/azure-cli/blob/dev/src/azure-cli/requirements.py2.Darwin.txt
detection_source: src/azure-cli/requirements.py2.Darwin.txt
last_updated_by: Martin Strobel
last_updated_on: 2019-06-25 19:08:17.000000000 Z
- name: Pygments
description: Pygments is a syntax highlighting package written in Python
package_url: https://pypi.org/project/Pygments
version: 2.4.2
license: BSD-3-Clause
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/19858/default_4d761b2257a1435539d6dc92346974d9f1d55c70.png
detection_source_url: https://github.com/bariscaglar/azure-cli/blob/dev/src/azure-cli/requirements.py2.Darwin.txt
detection_source: src/azure-cli/requirements.py2.Darwin.txt
last_updated_by: Martin Strobel
last_updated_on: 2019-06-25 19:08:17.000000000 Z
vulnerabilities:
- name: Pygments vulnerable to Regular Expression Denial of Service (ReDoS)
cve_id: CVE-2021-27291
cve_url: https://github.com/advisories/GHSA-pq64-v7f5-gqh8
detected_date: Aug 22
severity: high
first_patched: 2.7.4
- name: Infinite Loop in Pygments
cve_id: CVE-2021-20270
cve_url: https://github.com/advisories/GHSA-9w8r-397f-prfh
detected_date: Aug 22
severity: high
first_patched: 2.7.4
- name: Pygments vulnerable to ReDoS
cve_id: CVE-2022-40896
cve_url: https://github.com/advisories/GHSA-mrwq-x4v8-fh7p
detected_date: Jul 21
severity: moderate
first_patched: 2.15.0
- name: adal
description: The ADAL for Python library makes it easy for python application to
authenticate to Azure Active Directory
package_url: https://pypi.org/project/adal
version: 1.2.1
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/20478/default_800512522a1f8bb3ddeb015413c72f7409eb0719.png
detection_source_url: https://github.com/bariscaglar/azure-cli/blob/dev/src/azure-cli/requirements.py2.Darwin.txt
detection_source: src/azure-cli/requirements.py2.Darwin.txt
last_updated_by: Martin Strobel
last_updated_on: 2019-06-25 19:08:17.000000000 Z
- name: antlr4-python3-runtime
description: ANTLR 4.7.2 runtime for Python 3.6.3
package_url: https://pypi.org/project/antlr4-python3-runtime
version: 4.7.2
license: BSD-3-Clause
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/pypi/image.png
detection_source_url: https://github.com/bariscaglar/azure-cli/blob/dev/src/azure-cli/requirements.py3.Darwin.txt
detection_source: src/azure-cli/requirements.py3.Darwin.txt
last_updated_by: Martin Strobel
last_updated_on: 2019-06-25 19:08:17.000000000 Z
- name: applicationinsights
description: This project extends the Application Insights API surface to support
Python
package_url: https://pypi.org/project/applicationinsights
version: 0.11.1
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/20490/default_1b2bce0421aca996f1a55bc7ad0fca40650a3a2c.png
detection_source_url: https://github.com/bariscaglar/azure-cli/blob/dev/scripts/release/homebrew/docker/requirements.txt
detection_source: scripts/release/homebrew/docker/requirements.txt
last_updated_by: Martin Strobel
last_updated_on: 2019-03-20 21:57:24.000000000 Z
- name: argcomplete
description: Bash tab completion for argparse
package_url: https://pypi.org/project/argcomplete
version: 1.10.0
license: Apache-2.0
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/19928/default_bb29140b72c0fb9789e567bba0ef0ffadeaef5d4.png
detection_source_url: https://github.com/bariscaglar/azure-cli/blob/dev/src/azure-cli/requirements.py2.Darwin.txt
detection_source: src/azure-cli/requirements.py2.Darwin.txt
last_updated_by: Martin Strobel
last_updated_on: 2019-06-25 19:08:17.000000000 Z
- name: asn1crypto
description: Fast ASN.1 parser and serializer with definitions for private keys
package_url: https://pypi.org/project/asn1crypto
version: 0.24.0
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/20032/default_5a21cf44b42c3ef13f57dcd42ae753240ea7e808.png
detection_source_url: https://github.com/bariscaglar/azure-cli/blob/dev/src/azure-cli/requirements.py2.Darwin.txt
detection_source: src/azure-cli/requirements.py2.Darwin.txt
last_updated_by: Martin Strobel
last_updated_on: 2019-06-25 19:08:17.000000000 Z
- name: azure-batch
description: Microsoft Azure Batch Client Library for Python
package_url: https://pypi.org/project/azure-batch
version: 7.0.0
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/pypi/image.png
detection_source_url: https://github.com/bariscaglar/azure-cli/blob/dev/src/azure-cli/requirements.py2.Darwin.txt
detection_source: src/azure-cli/requirements.py2.Darwin.txt
last_updated_by: Zim Kalinowski
last_updated_on: 2019-07-16 07:39:05.000000000 Z
- name: azure-cli-command-modules-nspkg
description: Microsoft Azure CLI Command Modules Namespace Package
package_url: https://pypi.org/project/azure-cli-command-modules-nspkg
version: 2.0.3
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/pypi/image.png
detection_source_url: https://github.com/bariscaglar/azure-cli/blob/dev/src/azure-cli/requirements.py2.Darwin.txt
detection_source: src/azure-cli/requirements.py2.Darwin.txt
last_updated_by: Zim Kalinowski
last_updated_on: 2019-07-16 07:39:05.000000000 Z
- name: azure-cli-core
description: Microsoft Azure Command-Line Tools Core Module
package_url: https://pypi.org/project/azure-cli-core
version: 2.0.69
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/pypi/image.png
detection_source_url: https://github.com/bariscaglar/azure-cli/blob/dev/src/azure-cli/requirements.py2.Darwin.txt
detection_source: src/azure-cli/requirements.py2.Darwin.txt
last_updated_by: Zim Kalinowski
last_updated_on: 2019-07-16 07:39:05.000000000 Z
- name: azure-cli-nspkg
description: Microsoft Azure CLI Namespace Package
package_url: https://pypi.org/project/azure-cli-nspkg
version: 3.0.0
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/pypi/image.png
detection_source_url: https://github.com/bariscaglar/azure-cli/blob/dev/src/azure-cli-command_modules-nspkg/setup.py
detection_source: src/azure-cli-command_modules-nspkg/setup.py
last_updated_by: Johan Stenberg (MSFT)
last_updated_on: 2017-04-25 19:39:44.000000000 Z
- name: azure-cli-telemetry
description: Microsoft Azure CLI Telemetry Package
package_url: https://pypi.org/project/azure-cli-telemetry
version: 1.0.3
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/pypi/image.png
detection_source_url: https://github.com/bariscaglar/azure-cli/blob/dev/src/azure-cli/requirements.py2.Darwin.txt
detection_source: src/azure-cli/requirements.py2.Darwin.txt
last_updated_by: Zim Kalinowski
last_updated_on: 2019-07-16 07:39:05.000000000 Z
- name: azure-common
description: Microsoft Azure Client Library for Python
package_url: https://pypi.org/project/azure-common
version: 1.1.22
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/19952/default_fbe690a687f1af7dc36ac3d526708be3294c4cc9.png
detection_source_url: https://github.com/bariscaglar/azure-cli/blob/dev/src/azure-cli/requirements.py2.Darwin.txt
detection_source: src/azure-cli/requirements.py2.Darwin.txt
last_updated_by: Zim Kalinowski
last_updated_on: 2019-07-16 07:39:05.000000000 Z
- name: azure-cosmos
description: Azure Cosmos Python SDK
package_url: https://pypi.org/project/azure-cosmos
version: 3.1.0
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/pypi/image.png
detection_source_url: https://github.com/bariscaglar/azure-cli/blob/dev/src/azure-cli/requirements.py2.Darwin.txt
detection_source: src/azure-cli/requirements.py2.Darwin.txt
last_updated_by: Zim Kalinowski
last_updated_on: 2019-07-16 07:39:05.000000000 Z
- name: azure-graphrbac
description: Microsoft Azure Graph RBAC Client Library for Python
package_url: https://pypi.org/project/azure-graphrbac
version: 0.60.0
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/pypi/image.png
detection_source_url: https://github.com/bariscaglar/azure-cli/blob/dev/src/azure-cli/requirements.py2.Darwin.txt
detection_source: src/azure-cli/requirements.py2.Darwin.txt
last_updated_by: Zim Kalinowski
last_updated_on: 2019-07-16 07:39:05.000000000 Z
- name: azure-keyvault
description: Microsoft Azure Key Vault Client Libraries for Python
package_url: https://pypi.org/project/azure-keyvault
version: 1.1.0
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/pypi/image.png
detection_source_url: https://github.com/bariscaglar/azure-cli/blob/dev/src/azure-cli/requirements.py2.Darwin.txt
detection_source: src/azure-cli/requirements.py2.Darwin.txt
last_updated_by: Zim Kalinowski
last_updated_on: 2019-07-16 07:39:05.000000000 Z
- name: azure-mgmt-applicationinsights
description: Microsoft Azure Application Insights Management Client Library for
Python
package_url: https://pypi.org/project/azure-mgmt-applicationinsights
version: 0.1.1
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/pypi/image.png
detection_source_url: https://github.com/bariscaglar/azure-cli/blob/dev/src/azure-cli/requirements.py2.Darwin.txt
detection_source: src/azure-cli/requirements.py2.Darwin.txt
last_updated_by: Zim Kalinowski
last_updated_on: 2019-07-16 07:39:05.000000000 Z
- name: azure-mgmt-authorization
description: Microsoft Azure Authorization Management Client Library for Python
package_url: https://pypi.org/project/azure-mgmt-authorization
version: 0.52.0
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/pypi/image.png
detection_source_url: https://github.com/bariscaglar/azure-cli/blob/dev/src/azure-cli/requirements.py2.Darwin.txt
detection_source: src/azure-cli/requirements.py2.Darwin.txt
last_updated_by: Zim Kalinowski
last_updated_on: 2019-07-16 07:39:05.000000000 Z
- name: azure-mgmt-batch
description: Microsoft Azure Batch Management Client Library for Python
package_url: https://pypi.org/project/azure-mgmt-batch
version: 6.0.0
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/pypi/image.png
detection_source_url: https://github.com/bariscaglar/azure-cli/blob/dev/src/azure-cli/requirements.py2.Darwin.txt
detection_source: src/azure-cli/requirements.py2.Darwin.txt
last_updated_by: Zim Kalinowski
last_updated_on: 2019-07-16 07:39:05.000000000 Z
- name: azure-mgmt-cdn
description: Microsoft Azure CDN Management Client Library for Python
package_url: https://pypi.org/project/azure-mgmt-cdn
version: 3.1.0
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/pypi/image.png
detection_source_url: https://github.com/bariscaglar/azure-cli/blob/dev/src/azure-cli/requirements.py2.Darwin.txt
detection_source: src/azure-cli/requirements.py2.Darwin.txt
last_updated_by: Zim Kalinowski
last_updated_on: 2019-07-16 07:39:05.000000000 Z
- name: azure-mgmt-compute
description: Microsoft Azure Compute Management Client Library for Python
package_url: https://pypi.org/project/azure-mgmt-compute
version: 5.0.0
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/20731/default_0424ee9058624a7f8e5b1b6a0f32ea39869902f8.png
detection_source_url: https://github.com/bariscaglar/azure-cli/blob/dev/src/azure-cli/requirements.py2.Darwin.txt
detection_source: src/azure-cli/requirements.py2.Darwin.txt
last_updated_by: Zim Kalinowski
last_updated_on: 2019-07-16 07:39:05.000000000 Z
- name: azure-mgmt-containerinstance
description: Microsoft Azure Container Instance Client Library for Python
package_url: https://pypi.org/project/azure-mgmt-containerinstance
version: 1.5.0
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/pypi/image.png
detection_source_url: https://github.com/bariscaglar/azure-cli/blob/dev/src/azure-cli/requirements.py2.Darwin.txt
detection_source: src/azure-cli/requirements.py2.Darwin.txt
last_updated_by: Zim Kalinowski
last_updated_on: 2019-07-16 07:39:05.000000000 Z
- name: azure-mgmt-containerregistry
description: Microsoft Azure Container Registry Client Library for Python
package_url: https://pypi.org/project/azure-mgmt-containerregistry
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/pypi/image.png
detection_source: src/azure-cli/requirements.py2.Darwin.txt
last_updated_by: Zim Kalinowski
last_updated_on: 2019-07-16 07:39:05.000000000 Z
- name: azure-mgmt-containerservice
description: Microsoft Azure Container Service Management Client Library for Python
package_url: https://pypi.org/project/azure-mgmt-containerservice
version: 5.3.0
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/pypi/image.png
detection_source_url: https://github.com/bariscaglar/azure-cli/blob/dev/src/azure-cli/requirements.py2.Darwin.txt
detection_source: src/azure-cli/requirements.py2.Darwin.txt
last_updated_by: Zim Kalinowski
last_updated_on: 2019-07-16 07:39:05.000000000 Z
- name: azure-mgmt-cosmosdb
description: Microsoft Azure Cosmos DB Management Client Library for Python
package_url: https://pypi.org/project/azure-mgmt-cosmosdb
version: 0.6.1
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/pypi/image.png
detection_source_url: https://github.com/bariscaglar/azure-cli/blob/dev/src/azure-cli/requirements.py2.Darwin.txt
detection_source: src/azure-cli/requirements.py2.Darwin.txt
last_updated_by: Zim Kalinowski
last_updated_on: 2019-07-16 07:39:05.000000000 Z
- name: azure-mgmt-datalake-nspkg
description: Microsoft Azure Data Lake Management Namespace Package [Internal]
package_url: https://pypi.org/project/azure-mgmt-datalake-nspkg
version: 3.0.1
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/pypi/image.png
detection_source_url: https://github.com/bariscaglar/azure-cli/blob/dev/src/azure-cli/requirements.py2.Darwin.txt
detection_source: src/azure-cli/requirements.py2.Darwin.txt
last_updated_by: Zim Kalinowski
last_updated_on: 2019-07-16 07:39:05.000000000 Z
- name: azure-mgmt-dns
description: Microsoft Azure DNS Management Client Library for Python
package_url: https://pypi.org/project/azure-mgmt-dns
version: 2.1.0
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/pypi/image.png
detection_source_url: https://github.com/bariscaglar/azure-cli/blob/dev/src/azure-cli/requirements.py2.Darwin.txt
detection_source: src/azure-cli/requirements.py2.Darwin.txt
last_updated_by: Zim Kalinowski
last_updated_on: 2019-07-16 07:39:05.000000000 Z
- name: azure-mgmt-keyvault
description: Microsoft Azure Key Vault Management Client Library for Python
package_url: https://pypi.org/project/azure-mgmt-keyvault
version: 1.1.0
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/pypi/image.png
detection_source_url: https://github.com/bariscaglar/azure-cli/blob/dev/src/azure-cli/requirements.py2.Darwin.txt
detection_source: src/azure-cli/requirements.py2.Darwin.txt
last_updated_by: Zim Kalinowski
last_updated_on: 2019-07-16 07:39:05.000000000 Z
- name: azure-mgmt-managementgroups
description: Microsoft Azure Management Groups Client Library for Python
package_url: https://pypi.org/project/azure-mgmt-managementgroups
version: 0.2.0
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/pypi/image.png
detection_source_url: https://github.com/bariscaglar/azure-cli/blob/dev/src/azure-cli/requirements.py2.Darwin.txt
detection_source: src/azure-cli/requirements.py2.Darwin.txt
last_updated_by: Zim Kalinowski
last_updated_on: 2019-07-16 07:39:05.000000000 Z
- name: azure-mgmt-marketplaceordering
description: Microsoft Azure Market Place Ordering Client Library for Python
package_url: https://pypi.org/project/azure-mgmt-marketplaceordering
version: 0.2.1
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/pypi/image.png
detection_source_url: https://github.com/bariscaglar/azure-cli/blob/dev/src/azure-cli/requirements.py2.Darwin.txt
detection_source: src/azure-cli/requirements.py2.Darwin.txt
last_updated_by: Zim Kalinowski
last_updated_on: 2019-07-16 07:39:05.000000000 Z
- name: azure-mgmt-monitor
description: Microsoft Azure Monitor Client Library for Python
package_url: https://pypi.org/project/azure-mgmt-monitor
version: 0.5.2
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/pypi/image.png
detection_source_url: https://github.com/bariscaglar/azure-cli/blob/dev/src/azure-cli/requirements.py2.Darwin.txt
detection_source: src/azure-cli/requirements.py2.Darwin.txt
last_updated_by: Zim Kalinowski
last_updated_on: 2019-07-16 07:39:05.000000000 Z
- name: azure-mgmt-network
description: Microsoft Azure Network Management Client Library for Python
package_url: https://pypi.org/project/azure-mgmt-network
version: 3.0.0
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/pypi/image.png
detection_source_url: https://github.com/bariscaglar/azure-cli/blob/dev/src/azure-cli/requirements.py2.Darwin.txt
detection_source: src/azure-cli/requirements.py2.Darwin.txt
last_updated_by: Zim Kalinowski
last_updated_on: 2019-07-16 07:39:05.000000000 Z
- name: azure-mgmt-nspkg
description: Microsoft Azure Resource Management Namespace Package [Internal]
package_url: https://pypi.org/project/azure-mgmt-nspkg
version: 3.0.2
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/20054/default_c6b771728648e397c4dc44c31f72db9a0f6ca233.png
detection_source_url: https://github.com/bariscaglar/azure-cli/blob/dev/src/azure-cli/requirements.py2.Darwin.txt
detection_source: src/azure-cli/requirements.py2.Darwin.txt
last_updated_by: Zim Kalinowski
last_updated_on: 2019-07-16 07:39:05.000000000 Z
- name: azure-mgmt-resource
description: Microsoft Azure Resource Management Client Library for Python
package_url: https://pypi.org/project/azure-mgmt-resource
version: 2.2.0
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/20680/default_a927e8b55b562fff7afe1b69e2c3f20ccbe4d50a.png
detection_source_url: https://github.com/bariscaglar/azure-cli/blob/dev/src/azure-cli/requirements.py2.Darwin.txt
detection_source: src/azure-cli/requirements.py2.Darwin.txt
last_updated_by: Zim Kalinowski
last_updated_on: 2019-07-16 07:39:05.000000000 Z
- name: azure-mgmt-storage
description: Microsoft Azure Storage Management Client Library for Python
package_url: https://pypi.org/project/azure-mgmt-storage
version: 4.0.0
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/20730/default_828ffedeb43a9708ada508b7d2e82f4179641547.png
detection_source_url: https://github.com/bariscaglar/azure-cli/blob/dev/src/azure-cli/requirements.py2.Darwin.txt
detection_source: src/azure-cli/requirements.py2.Darwin.txt
last_updated_by: Zim Kalinowski
last_updated_on: 2019-07-16 07:39:05.000000000 Z
- name: azure-mgmt-trafficmanager
description: Microsoft Azure Traffic Manager Client Library for Python
package_url: https://pypi.org/project/azure-mgmt-trafficmanager
version: 0.51.0
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/pypi/image.png
detection_source_url: https://github.com/bariscaglar/azure-cli/blob/dev/src/azure-cli/requirements.py2.Darwin.txt
detection_source: src/azure-cli/requirements.py2.Darwin.txt
last_updated_by: Zim Kalinowski
last_updated_on: 2019-07-16 07:39:05.000000000 Z
- name: azure-mgmt-web
description: Microsoft Azure Web Apps Management Client Library for Python
package_url: https://pypi.org/project/azure-mgmt-web
version: 0.42.0
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/pypi/image.png
detection_source_url: https://github.com/bariscaglar/azure-cli/blob/dev/src/azure-cli/requirements.py2.Darwin.txt
detection_source: src/azure-cli/requirements.py2.Darwin.txt
last_updated_by: Zim Kalinowski
last_updated_on: 2019-07-16 07:39:05.000000000 Z
- name: azure-nspkg
description: Microsoft Azure Namespace Package [Internal]
package_url: https://pypi.org/project/azure-nspkg
version: 2.0.0
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/20363/default_6ac4ca2f23f4db1544b0918eea7d485c8170fe75.png
detection_source_url: https://github.com/bariscaglar/azure-cli/blob/dev/src/azure-cli-nspkg/setup.py
detection_source: src/azure-cli-nspkg/setup.py
last_updated_by: Johan Stenberg (MSFT)
last_updated_on: 2017-04-25 19:39:44.000000000 Z
- name: azure-storage-blob
description: Microsoft Azure Blob Storage Client Library for Python
package_url: https://pypi.org/project/azure-storage-blob
version: 1.5.0
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/20246/default_79c7a01488eebdf30ca22b7316d9f77bbe7fad8b.png
detection_source_url: https://github.com/bariscaglar/azure-cli/blob/dev/src/azure-cli/requirements.py2.Darwin.txt
detection_source: src/azure-cli/requirements.py2.Darwin.txt
last_updated_by: Zim Kalinowski
last_updated_on: 2019-07-16 07:39:05.000000000 Z
- name: azure-storage-common
description: Microsoft Azure Storage Common Client Library for Python
package_url: https://pypi.org/project/azure-storage-common
version: 1.4.2
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/pypi/image.png
detection_source_url: https://github.com/bariscaglar/azure-cli/blob/dev/src/azure-cli/requirements.py2.Darwin.txt
detection_source: src/azure-cli/requirements.py2.Darwin.txt
last_updated_by: Zim Kalinowski
last_updated_on: 2019-07-16 07:39:05.000000000 Z
- name: azure-storage-nspkg
description: Microsoft Azure Storage Namespace Package [Internal]
package_url: https://pypi.org/project/azure-storage-nspkg
version: 3.1.0
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/pypi/image.png
detection_source_url: https://github.com/bariscaglar/azure-cli/blob/dev/src/azure-cli/requirements.py2.Darwin.txt
detection_source: src/azure-cli/requirements.py2.Darwin.txt
last_updated_by: Zim Kalinowski
last_updated_on: 2019-07-16 07:39:05.000000000 Z
- name: bcrypt
description: Modern password hashing for your software and your servers
package_url: https://pypi.org/project/bcrypt
version: 3.1.7
license: Apache-2.0
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/20031/default_242158225818ea25f0ab9031a46e17f8ff8246cb.png
detection_source_url: https://github.com/bariscaglar/azure-cli/blob/dev/src/azure-cli/requirements.py2.Darwin.txt
detection_source: src/azure-cli/requirements.py2.Darwin.txt
last_updated_by: Martin Strobel
last_updated_on: 2019-06-25 19:08:17.000000000 Z
- name: certifi
description: Python package for providing Mozilla's CA Bundle
package_url: https://pypi.org/project/certifi
version: 2019.6.16
license: MPL-2.0
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/19849/default_75c38a39b9f0062814489e2ec2cbfca0ca15d9ba.png
detection_source_url: https://github.com/bariscaglar/azure-cli/blob/dev/src/azure-cli/requirements.py2.Darwin.txt
detection_source: src/azure-cli/requirements.py2.Darwin.txt
last_updated_by: Martin Strobel
last_updated_on: 2019-06-25 19:08:17.000000000 Z
vulnerabilities:
- name: Removal of e-Tugra root certificate
cve_id: CVE-2023-37920
cve_url: https://github.com/advisories/GHSA-xqr8-7jwr-rhp7
detected_date: Jul 26
severity: high
first_patched: 2023.7.22
- name: Certifi removing TrustCor root certificate
cve_id: CVE-2022-23491
cve_url: https://github.com/advisories/GHSA-43fp-rhv2-5gv8
detected_date: Dec 8
severity: moderate
first_patched: 2022.12.07
- name: cffi
description: Foreign Function Interface for Python calling C code
package_url: https://pypi.org/project/cffi
version: 1.12.3
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/19909/default_67f813d4aac73d024261bcfded6ef2b918e384a0.png
detection_source_url: https://github.com/bariscaglar/azure-cli/blob/dev/src/azure-cli/requirements.py2.Darwin.txt
detection_source: src/azure-cli/requirements.py2.Darwin.txt
last_updated_by: Martin Strobel
last_updated_on: 2019-06-25 19:08:17.000000000 Z
- name: chardet
description: Universal encoding detector for Python 2 and 3
package_url: https://pypi.org/project/chardet
version: 3.0.4
license: LGPL-2.1
open_source: true
hosted_saas: false
category: Libraries
sub_category: PyPI Packages
image_url: https://img.stackshare.io/package/19856/default_4a8a8fdc10130068bf295812b98e9b72fb42fe70.png