-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathp_python.txt
More file actions
1265 lines (1150 loc) · 28.8 KB
/
p_python.txt
File metadata and controls
1265 lines (1150 loc) · 28.8 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
%
Python
2.7.10
Bibliothèque standard Python
Python standard libraries
http://www.python.org/
Python
1 2
0
-
%
Base Libraries
1.7.0-15
shared libraries commonly used by other plugins
shared libraries commonly used by other plugins
http://code.google.com/p/pythonxy/wiki/BasePlugins
base_libraries
1 2
1000
-
%
Base Python
1.12.0-35
A collection of small (in scope and size) but essential pure python packages
A collection of small (in scope and size) but essential pure python packages
http://code.google.com/p/pythonxy/wiki/BasePlugins
base_python
1 2
1000
-
%
modernize
0.4-1
A hack on top of 2to3 for modernizing code for hybrid codebases.
A hack on top of 2to3 for modernizing code for hybrid codebases.
https://github.com/python-modernize/python-modernize
modernize
1 2
1000
base_python
%
setuptools
18.0.1-41
Easily download, build, install, upgrade, and uninstall Python packages
Easily download, build, install, upgrade, and uninstall Python packages
http://pythonhosted.org/setuptools/
setuptools
1 2
1000
-
%
requests
2.7.0-9
a HTTP library, written in Python, for human beings.
a HTTP library, written in Python, for human beings.
http://python-requests.org
requests
1 2
1000
pyasn1, OpenSSL
%
html5lib
0.99999-4
Standards-compliant library for parsing and serializing HTML documents and fragments in Python
Standards-compliant library for parsing and serializing HTML documents and fragments in Python
https://github.com/html5lib/html5lib-python
html5lib
1 2
1000
base_python
%
Pip
7.0.3-14
pip is a tool for installing and managing Python packages, such as those found in the Python Package Index.
pip is a tool for installing and managing Python packages, such as those found in the Python Package Index.
http://www.pip-installer.org
pip
1 2
1000
base_python, setuptools, requests, html5lib
%
PyCrypto
2.6.1-2
The Python Cryptography Toolkit
The Python Cryptography Toolkit
https://www.dlitz.net/software/pycrypto
pycrypto
1 2
1000
-
%
PyQt
4.11.3-5
Cadre de développement d'application multiplateforme : interfaces graphiques, widgets, SQL, OpenGL, XML, Unicode, etc.
Cross-platform Application Framework: GUI, widgets, SQL, OpenGL, XML, Unicode ...
http://www.riverbankcomputing.co.uk/software/pyqt/intro
PyQt4
1 2
106 737 238
-
%
xydoc
1.0.5.1
Toute la documentation libre sur Python et ses bibliothèques (aide et exemples de scripts)
Collection of all freely available help files and examples on Python language and its libraries
http://pythonxy.googlecode.com
xydoc
1 2
12 655 686
-
%
xy
1.3.5-7
xy est un module contenant tous les outils de Python(x,y)
xy is a module that gathers all Python(x,y) tools
http://pythonxy.googlecode.com
xy
1 2
178 548
PyQt4, xydoc, ipython
%
QtHelp
4.8.6-4
Documentation complète de Qt au format Qt Assistant
Complete Qt documentation for Qt Assistant
http://qt-project.org/doc
QtHelp
1 2
68Â 609Â 024
PyQt4
%
Spyder
2.3.5.2-17
Scientific PYthon Development EnviRonment - Environnement de développement Python dédié à la visualisation de données et aux calculs scientifiques interactifs
Scientific PYthon Development EnviRonment: designed for interactive computing and data visualisation with a simple and intuitive user interface
http://spyder-ide.org/
spyder
1 2
3 772 425
base_python, PyQt4, Sphinx, ipython
%
PyQwt
5.2.1-6
Représentations graphiques 2D (module basé sur la bibliothèque C++ Qwt)
2D plotting library (set of Python bindings for the Qwt library featuring fast plotting)
http://pyqwt.sourceforge.net/
PyQwt5
1 2
10 633 241
PyQt4, numpy
%
NumPy
1.9.2-8
Support des tableaux multidimensionnels et des opérations associées (c'est le noyau de SciPy)
Multidimensional arrays support and basic operations (SciPy's core module)
http://numpy.scipy.org/
numpy
1 2
19 605 702
nose
%
SciPy
0.15.1-8
Traitement du signal, optimisation, statistiques, etc.
Advanced math, signal processing, optimization, statistics, ...
http://www.scipy.org/
scipy
1 2
69 897 896
numpy
%
numexpr
2.4.3-10
Accélération de l'évaluation d'opérations sur des tableaux grâce à une machine virtuelle vectorisée
Fast evaluation of array expressions elementwise by using a vector-based virtual machine
https://github.com/pydata/numexpr
numexpr
1 2
725 344
numpy
%
h5py
2.5.0-9
Interface Python pour le format HDF5 (accès direct à toute l'API de HDF5 contrairement à PyTables)
General-purpose Python interface to HDF5 files (unlike PyTables, h5py provides direct access to the full HDF5 C library)
http://www.h5py.org/
h5py
1 2
4 610 703
base_libraries, numpy
%
Pillow
2.8.2-16
Python Imaging Library - Bibliothèque de traitement d'images
Python Imaging Library - Image processing library
http://www.pythonware.com/products/pil/
PIL
1 2
1000
base_libraries
%
Pyreadline
2.0.6-4
IPython utilise ce module pour afficher des textes colorés dans la console Windows
IPython needs this module to display color text in Windows console
http://ipython.org/pyreadline.html
pyreadline
1 2
624 443
-
%
pycparser
2.14-6
A parser for the C language, written in pure Python.
a parser for the C language, written in pure Python.
https://bitbucket.org/eliben/pycparser
pycparser
1 2
1000
-
%
cffi
1.1.2-15
Foreign Function Interface for Python calling C code.
Foreign Function Interface for Python calling C code.
http://cffi.readthedocs.org
cffi
1 2
1000
pycparser
%
pyzmq
14.7.0-14
Python bindings for ØMQ. ØMQ is a lightweight and fast messaging implementation.
Python bindings for ØMQ. ØMQ is a lightweight and fast messaging implementation.
http://www.zeromq.org/bindings:python
pyzmq
1 2
1 032 988
gevent, libnacl
%
Tornado
4.2-11
An open source version of the scalable, non-blocking web server and tools that power FriendFeed.
An open source version of the scalable, non-blocking web server and tools that power FriendFeed.
http://www.tornadoweb.org/
tornado
1 2
1000
base_python, PycURL
%
IPython
2.4.1-10
A comprehensive environment for interactive and exploratory computing. Also provides ipdb.
A comprehensive environment for interactive and exploratory computing. Also provides ipdb.
http://ipython.org
IPython
1 2
1000
pyreadline, tornado, pyzmq, paramiko
%
guidata
1.6.1-3
Génération automatique d’interfaces graphiques dédiées à la modification ou l’affichage de jeux de paramètres
Automatically generated graphical user interfaces for easy data set edition and display
http://code.google.com/p/guidata/
guidata
1 2
844 362
PyQt4, h5py
%
guiqwt
2.3.2-6
Affichage performant de signaux/images et autres outils pour le développement de logiciels de traitement de données
Efficient curve/image plotting and other GUI tools for scientific data processing software development
http://packages.python.org/guiqwt/
guiqwt
1 2
4 800 086
PyQt4, guidata, numpy, scipy, PIL, PyQwt5
%
Matplotlib
1.4.3-7
Représentation graphique 2D (embarquables dans les interfaces graphiques PyQt)
2D plotting library (embeddable in GUIs created with PyQt)
http://matplotlib.sourceforge.net/
matplotlib
1 2
1000
base_python, numpy, PyQt4, pyparsing, nose
%
nose
1.3.7-9
nose est une extension du module unittest, utilisée notamment par l'architecture de tests de NumPy
nose is a discovery-based unittest extension (e.g. NumPy test module is using nose)
http://somethingaboutorange.com/mrl/projects/nose/
nose
1 2
2 249 224
-
%
formlayout
1.0.15-3
Bibliothèque de création de boîtes de dialogues (formulaires) pour modifier divers types de paramètres sans taper une ligne de code d'interfaces graphiques
Module for creating form dialogs/widgets to edit various type of parameters without having to write any GUI code
http://formlayout.googlecode.com
formlayout
1 2
22 651
PyQt4
%
Cython
0.22.1-16
Cython est un langage qui rend l'écriture d'extensions Python en C aussi facile qu'en Python
Cython is a language that makes writing C extensions for the Python language as easy as Python
http://www.cython.org/
Cython
2
4 680 768
-
%
docutils
0.12-4
Système de traitement de documents texte pour générer des documentation en HTML ou LaTeX (inclue le langage reStructuredText)
Text processing system for processing plaintext documentation into useful formats, such as HTML or LaTeX (includes reStructuredText)
http://docutils.sourceforge.net/
docutils
1 2
2 726 437
-
%
jinja2
2.7.3-6
Sandboxed template engine (provides a Django-like non-XML syntax and compiles templates into executable python code)
Sandboxed template engine (provides a Django-like non-XML syntax and compiles templates into executable python code)
http://jinja.pocoo.org/
jinja2
1 2
1 175 265
base_python, babel
%
pygments
2.0.2-3
Module de coloration syntaxique de code d'utilisation générale
Generic syntax highlighter for general use in all kinds of software
http://pygments.org/
pygments
1 2
2 052 087
-
%
Sphinx
1.3.2-10
Outil pour générer des documentations utilisant du reStructuredText comme langage de base
Tool for generating documentation which uses reStructuredText as its markup language
http://sphinx.pocoo.org/index.html
sphinx
1 2
3 701 258
docutils, jinja2, pygments
%
ReportLab
3.2.0-5
Bibliothèque de création de documents PDF
The PDF generation library
http://www.reportlab.org/
reportlab
1 2
5 598 089
-
%
simplejson
3.7.3-19
Encodeur/décodeur JSON (JavaScript Object Notation) simple, rapide et évolutif
Simple, fast, extensible JSON (JavaScript Object Notation) encoder/decoder
http://pypi.python.org/pypi/simplejson/
simplejson
2
371 198
-
%
rst2pdf
0.93-7
Outil pour transformer du texte restructuré (reStructuredText) en document PDF
Tool for transforming reStructuredText to PDF using ReportLab
https://github.com/ralsina/rst2pdf
rst2pdf
2
1 442 100
reportlab, simplejson, docutils, pygments
%
PyOpenGL
3.1.0-4
Bibliothèque interfaçant Python à OpenGL et aux API associées (inclus : PyOpenGL-accelerate)
Cross platform Python binding to OpenGL and related APIs (includes PyOpenGL-accelerate)
http://pyopengl.sourceforge.net/
PyOpenGL
1 2
7 284 868
-
%
VPython
5.74-2
Création de modèles 3D interactifs de systèmes physiques
Creation of 3D interactive models of physical systems
http://vpython.org/
vpython
2
9 155 045
numpy
%
SymPy
0.7.6-6
Bibliothèque de calcul symbolique
Symbolic Mathematics Library
http://sympy.org
sympy
2
16 598 568
-
%
cvxopt
1.1.7-2
Bibliothèque d'algorithmes d'optimisation convexe
Convex optimization library
http://cvxopt.org
cvxopt
2
4 437 024
-
%
PyWavelets
0.2.2
Bibliothèque de transformées en ondelettes
Wavelet transforms module
http://www.pybytes.com/pywavelets/
PyWavelets
2
693 982
-
%
scikits-learn
0.16.1-9
Algorithmes classiques d'apprentissage pour le traitement de données : solutions simples et efficaces aux problèmes d'apprentissage
Classic machine learning algorithms - Provide simple an efficient solutions to learning problems
http://scikit-learn.sourceforge.net
scikits-learn
2
6 883 931
numpy, scipy, matplotlib
%
scikits.image
0.11.3-9
The scikits.image SciKit (toolkit for SciPy) extends scipy.ndimage to provide a versatile set of image processing routines.
The scikits.image SciKit (toolkit for SciPy) extends scipy.ndimage to provide a versatile set of image processing routines.
http://scikits-image.org/
scikits.image
2
4 324 500
numpy, scipy, astropy
%
MDP
3.3.0.1
Modular toolkit for Data Processing - Algorithmes d'apprentissage pour le traitement de données
Modular toolkit for Data Processing - Collection of supervised and unsupervised learning algorithms
http://mdp-toolkit.sourceforge.net/
mdp
2
2 548 016
numpy, scipy
%
NetworkX
1.9.1-3
Création, manipulation et étude de la structure et de la dynamique de réseaux complexes
Creation, manipulation, and study of the structure, dynamics, and functions of complex networks
http://networkx.github.io
networkx
2
3Â 869Â 006
numpy, scipy, matplotlib, pyparsing, pygraphviz
%
PyTables
3.2.0-8
Basée sur la bibliothèque HDF5, permet de gérer des ensembles de données hiérarchisés (adaptée à de grands volumes de données)
Package based on HDF5 library for managing hierarchical datasets (extremely large amounts of data)
http://www.pytables.org
pytables
1 2
7 487 956
numpy, numexpr, h5py
%
vitables
2.2-1
Navigateur de fichiers au format HDF5 et PyTables
Graphical tool for browsing and editing files in both HDF5 and PyTables formats
http://vitables.org/
vitables
1 2
7 692 994
pytables, PyQt4
%
Parallel Python
1.6.4-3
Parallel Python - Exécution de scripts Python sur des systèmes multiprocesseurs (ou multicoeurs) et des clusters
Parallel Python - Parallel execution of Python code on systems with multiple processors or cores, and clusters
http://www.parallelpython.com/
pp
2
109 279
-
%
Pywin32
219.0-3
Bibliothèque utilitaire spécifique à Windows
Python library for Windows
http://sourceforge.net/projects/pywin32/
pywin32
1 2
15 598 323
-
%
SendKeys
0.3
Module Python pour Windows permettant d'envoyer des événements clavier à la fenêtre active
Python module for Windows that can send one or more keystrokes or keystroke combinations to the active window
http://www.rutherfurd.net/python/sendkeys/index.html
SendKeys
2
22 653
-
%
netCDF4
1.1.8-12
Interface Python pour manipuler les fichiers netCDF4 (network Common Data Form)
Python binding to netCDF4 (network Common Data Form), a set of software libraries and machine-independent data formats that support the creation, access, and sharing of array-oriented scientific data
http://unidata.github.io/netcdf4-python/
netCDF4
2
4 401 792
numpy, h5py, pyhdf, PycURL
%
pywinauto
0.4.2-1
Automatisation d'interfaces graphiques Microsoft Windows (permet d'envoyer des événements souris et clavier aux fenêtres, boîtes de dialogue et contrôles)
Set of python modules to automate the Microsoft Windows GUI (allows sending mouse and keyboard actions to windows, dialogs and controls)
http://code.google.com/p/pywinauto
pywinauto
2
1 980 154
SendKeys
%
pyvisa
1.7-6
Pilotage d'instruments en utilisant différents types de bus (GPIB, RS232, USB)
Control all kinds of measurement equipment through various busses (GPIB, RS232, USB)
http://pyvisa.sourceforge.net/
pyvisa
2
386 061
-
%
PySerial
2.7-1
Bibliothèque utilitaire de pilotage du port série
Library encapsulating the access for the serial port
http://sourceforge.net/projects/pyserial/
pyserial
2
72 489
-
%
PyParallel
0.2.0.1
Bibliothèque utilitaire de pilotage du port parallèle
Library encapsulating the access for the parallel port
http://sourceforge.net/projects/pyserial/
pyparallel
2
37 494
-
%
pyhdf
0.8.3-4
Interface Python pour manipuler les fichiers HDF4 (Hierarchical Data Format version 4)
Python interface to HDF4 files (Hierarchical Data Format version 4)
http://pysclint.sourceforge.net/pyhdf/index.html
pyhdf
2
1 549 856
numpy, base_libraries
%
xlrd
0.9.3-4
Extraction de données depuis des feuilles de calcul Microsoft Excel
Extract data from Microsoft Excel spreadsheet files
http://pypi.python.org/pypi/xlrd
xlrd
2
493 507
-
%
xlwt
1.0.0-2
Création de feuilles de calcul compatibles avec Microsoft Excel 97/2000/XP/2003, OpenOffice.org Calc et Gnumeric
Create spreadsheet files compatible with Microsoft Excel 97/2000/XP/2003 files, OpenOffice.org Calc, and Gnumeric
http://pypi.python.org/pypi/xlwt
xlwt
2
547 680
-
%
pylint
1.4.3-18
Module d'analyse de code de Logilab : recherche de bugs et vérification de la qualité du code
Logilab code analysis module: analyzes Python source code looking for bugs and signs of poor quality
http://www.pylint.org
pylint
1 2
1 653 954
base_python
%
wxPython
2.8.12.1-1
Bibliothèque d'interfaces graphiques multiplateforme
Cross-platform GUI library
http://www.wxpython.org/
wxPython
1 2
10 633 241
-
%
winpdb
1.4.8.3
Débogueur Python 20 fois plus rapide que pdb avec prise en charge de plusieurs threads, modification de namespace, ...
Python debugger with support for multiple threads, namespace modification, embedded debugging, encrypted communication and is up to 20 times faster than pdb
http://winpdb.org/
winpdb
2
580 871
wxPython
%
VTK
6.2.0-5
Bibliothèque libre de traitement d'image et de visualisation 2D et 3D
Open-source software system for visualization, 3D graphics, volume rendering and image processing
http://www.vtk.org
vtk
2
84 036 650
base_libraries, PyQt4, lxml
%
ITK
4.7.2-9
Bibliothèque libre de traitement pour l'imagerie médicale (algorithmes de segmentation et de fusion de données)
Open-source software system for medical image processing (leading-edge segmentation and registration algorithms)
http://www.itk.org
itk
2
1000
base_libraries, vtk, h5py, OpenSSL
%
ply
3.6-2
PLY is an implementation of lex and yacc parsing tools for Python.
PLY is an implementation of lex and yacc parsing tools for Python.
http://www.dabeaz.com/ply/
ply
1 2
532 032
-
%
ETS
4.4.4-15
Enthought Tool Suite : MayaVi 2 (outil de visualisation scientifique 2D et 3D), Traits, Chaco, etc.
Enthought Tool Suite: MayaVi 2 (powerful 2D and 3D scientific visualization tool), Traits, Chaco, ...
http://code.enthought.com/projects/tool-suite.php
EnthoughtToolSuite
2
72 330 198
wxPython, vtk, setuptools, PIL, numpy, ply
%
mx
3.2.8-4
Bibliothèques eGenix.com : mxDateTime, mxTextTools, mxProxy, mxBeeBase, mxURL, mxUID, mxStack, mxQueue and mxTools
eGenix.com mx Base Distribution: mxDateTime, mxTextTools, mxProxy, mxBeeBase, mxURL, mxUID, mxStack, mxQueue and mxTools
http://www.egenix.com/products/python/mxBase
mx
2
15 183 771
-
%
gnuplot
1.8.0.3
Module de représentation graphique complet comprenant l'outil gnuplot (v4.4.3) et son interface Python
Complete plotting package: include the popular open-source plotting program gnuplot (v4.4.3) and the Python interface
http://gnuplot-py.sourceforge.net
Gnuplot
1 2
9 601 622
numpy
%
GDAL
1.11.2-8
Geospatial Data Abstraction Library
Geospatial Data Abstraction Library
http://www.gdal.org/
gdal
2
1000
base_libraries, numpy, h5py, pyhdf, PyICU, lxml, netCDF4, OpenSSL
%
pydicom
0.9.9-3
Module écrit purement en Python pour manipuler les fichiers DICOM (imagerie médicale)
Pure python package for working with DICOM files (medical imaging)
http://www.pydicom.org/
pydicom
2
2 112 789
-
%
cx_Freeze
4.3.4-4
Outil de déploiement permettant de convertir des scripts Python en exécutables Windows autonomes (c'est-à-dire ne nécessitant pas d'installation de Python préalable sur la machine cible)
Deployment tool which converts Python scripts into stand-alone Windows executables (i.e. target machine does not require Python or any other library to be installed)
http://cx-freeze.sourceforge.net
cx_Freeze
1 2
1 549 502
-
%
py2exe
0.6.9
Outil similaire à cx_Freeze (risque d'obsolescence : à ce jour, contrairement à py2exe, il n'existe pas de version pour Python 3)
Deployment tool like cx_Freeze (deprecation warning: as of today, unlike cx_Freeze, py2exe has not yet been ported to Python 3)
http://www.py2exe.org/
py2exe
1 2
1 549 502
-
%
OpenCV
2.4.11-7
OpenCV est une biblioth?que de traitement d'images Intel, avec des algorithmes de reconnaissance de formes.
OpenCV is the Intel image processing library with Computer Vision algorithms.
http://opencv.org
OpenCV
2
2 112 789
base_libraries, PyQt4, numpy
%
pyparsing
2.0.3-4
An alternative approach to creating and executing simple grammars, vs. the traditional lex/yacc approach, or the use of regular expressions.
An alternative approach to creating and executing simple grammars, vs. the traditional lex/yacc approach, or the use of regular expressions.
http://pyparsing.wikispaces.com/
pyparsing
1 2
1 032 988
-
%
Veusz
1.23.1-15
Application de représentation graphique de données dédiée à la création de figures prêtes à publier
Scientific plotting application designed to create publication quality output with a friendly interface
http://home.gna.org/veusz/
veusz
1 2
38 845 248
PyQt4, numpy, astropy
%
pandas
0.16.2-15
provides fast, flexible, and expressive data structures designed to make working with relational or labeled data both easy and intuitive.
provides fast, flexible, and expressive data structures designed to make working with relational or labeled data both easy and intuitive.
http://pandas.sourceforge.net/
pandas
1 2
1 032 988
base_python, numpy, scipy, matplotlib, statsmodels, bottleneck, numexpr
%
openpyxl
2.2.4-25
A Python library to read/write Excel 2007 xlsx/xlsm files.
A Python library to read/write Excel 2007 xlsx/xlsm files.
http://bitbucket.org/ericgazoni/openpyxl/wiki/Home
openpyxl
2
1 032 988
-
%
psutil
3.0.1-15
Provides an interface for retrieving information on all running processes and system utilization (CPU, disk, memory, network) in a portable way.
Provides an interface for retrieving information on all running processes and system utilization (CPU, disk, memory, network) in a portable way.
https://github.com/giampaolo/psutil
psutil
1 2
1 032 988
-
%
statsmodels
0.6.1-3
Allows users to explore data, estimate statistical models, and perform statistical tests.
Allows users to explore data, estimate statistical models, and perform statistical tests.
http://statsmodels.sourceforge.net
statsmodels
1 2
1 032 988
numpy, scipy, pandas, patsy
%
SQLAlchemy
1.0.6-23
The Python SQL toolkit and Object Relational Mapper that gives application developers the full power and flexibility of SQL.
The Python SQL toolkit and Object Relational Mapper that gives application developers the full power and flexibility of SQL.
http://www.sqlalchemy.org
sqlalchemy
1 2
1000
base_python
%
virtualenv
13.0.3-14
Creates isolated Python environments.
Creates isolated Python environments.
http://www.virtualenv.org/en/latest/
virtualenv
1 2
1000
-
%
uncertainties
2.4.6.1-12
Transparently handles calculations with numbers with uncertainties (like 3.14+-0.01)
Transparently handles calculations with numbers with uncertainties (like 3.14+-0.01)
http://packages.python.org/uncertainties/
uncertainties
2
1000
numpy
%
PyICU
1.9.2-6
Python extension wrapping the ICU C++ API
Python extension wrapping the ICU C++ API
http://pyicu.osafoundation.org/
PyICU
1 2
1000
-
%
lxml
3.4.4-19
A Pythonic binding for the C libraries libxml2 and libxslt. Includes BeautifulSoup.
A Pythonic binding for the C libraries libxml2 and libxslt. Includes BeautifulSoup.
http://lxml.de
lxml
1 2
912 036
base_libraries, PyICU
%
gevent
1.0.2-9
A coroutine-based Python networking library. Includes greenlet.
A coroutine-based Python networking library. Includes greenlet.
http://www.gevent.org
gevent
1 2
1000
-
%
paramiko
1.15.2-13
Native Python SSHv2 protocol library
Native Python SSHv2 protocol library
https://github.com/paramiko/paramiko
paramiko
1 2
1000
pycrypto
%
Bottleneck
1.0.0-4
Fast NumPy array functions written in Cython
Fast NumPy array functions written in Cython
http://berkeleyanalytics.com/bottleneck
bottleneck
1 2
1000
numpy, scipy
%
mahotas
1.3.0-16
A set of functions for image processing and computer vision in Python
A set of functions for image processing and computer vision in Python
http://luispedro.org/software/mahotas
mahotas
1 2
1000
numpy
%
PycURL
7.19.5.1-9
a Python interface to libcurl
a Python interface to libcurl
http://pycurl.sourceforge.net
PycURL
2
1000
OpenSSL