packages.ini 67 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658
  1. [absl-py]
  2. description = Abseil Python Common Libraries, see github.com/abseil/abseil-py.
  3. [adodbapi]
  4. description = A pure Python package implementing PEP 249 DB-API using Microsoft ADO.
  5. [affine]
  6. description = Matrices describing affine transformation of the plane.
  7. [aiodns]
  8. description = Simple DNS resolver for asyncio
  9. [aiofiles]
  10. description = File support for asyncio.
  11. [aiohttp]
  12. description = Async http client/server framework (asyncio)
  13. [aiosqlite]
  14. description = asyncio bridge to the standard sqlite3 module
  15. [alabaster]
  16. description = A configurable sidebar-enabled Sphinx theme
  17. [algopy]
  18. description = ALGOPY: Taylor Arithmetic Computation and Algorithmic Differentiation
  19. [altair]
  20. description = Altair: A declarative statistical visualization library for Python.
  21. [altair-data-server]
  22. description = A background data server for Altair charts.
  23. [altair-transform]
  24. description = A python engine for evaluating Altair transforms.
  25. [altair-widgets]
  26. description = Altair Widgets: An interactive visualization for statistical data for Python.
  27. [altgraph]
  28. description = Python graph (network) package
  29. [amqp]
  30. description = Low-level AMQP client for Python (fork of amqplib).
  31. [aniso8601]
  32. description = A library for parsing ISO 8601 strings.
  33. [ansiwrap]
  34. description = textwrap, but savvy to ANSI colors and styles
  35. [anyio]
  36. description = High level compatibility layer for multiple asynchronous event loop implementations
  37. [anyjson]
  38. description = Wraps the best available JSON implementation available in a common interface
  39. [apispec]
  40. description = A pluggable API specification generator. Currently supports the OpenAPI Specification (f.k.a. the Swagger specification).
  41. [apistar]
  42. description = API documentation, validation, mocking, and clients.
  43. [appdirs]
  44. description = A small Python module for determining appropriate platform-specific dirs, e.g. a "user data dir".
  45. [apptools]
  46. description = application tools
  47. [argcomplete]
  48. description = Bash tab completion for argparse
  49. [argh]
  50. description = An unobtrusive argparse wrapper with natural syntax
  51. [args]
  52. description = Command Arguments for Humans.
  53. [asgiref]
  54. description = ASGI specs, helper code, and adapters
  55. [asciitree]
  56. description = Draws ASCII trees.
  57. [asn1crypto]
  58. description = Fast ASN.1 parser and serializer with definitions for private keys, public keys, certificates, CRL, OCSP, CMS, PKCS#3, PKCS#7, PKCS#8, PKCS#12, PKCS#5, X.509 and TSP
  59. [asteval]
  60. description = Safe, minimalistic evaluator of python expression using ast module
  61. [astor]
  62. description = Read/rewrite/write Python ASTs
  63. [astroid]
  64. description = An abstract syntax tree for Python with inference support.
  65. [astroml]
  66. description = tools for machine learning and data mining in Astronomy
  67. [astropy]
  68. description = Community-developed python astronomy tools
  69. [astunparse]
  70. description = An AST unparser for Python
  71. [async-generator]
  72. description = Async generators and context managers for Python 3.5+
  73. [async-timeout]
  74. description = Timeout context manager for asyncio programs
  75. [atomicwrites]
  76. description = Atomic file writes.
  77. [attrs]
  78. description = Classes Without Boilerplate
  79. [autopep8]
  80. description = A tool that automatically formats Python code to conform to the PEP 8 style guide
  81. [azureml-dataprep]
  82. description = Azure ML Data Preparation SDK
  83. [babel]
  84. description = Internationalization utilities
  85. [backcall]
  86. description = Specifications for callback functions passed in to an API
  87. [backports-abc]
  88. description = A backport of recent additions to the 'collections.abc' module.
  89. [backports-shutil-get-terminal-size]
  90. description = A backport of the get_terminal_size function from Python 3.3's shutil.
  91. [backports-ssl-match-hostname]
  92. description = The ssl.match_hostname() function from Python 3.4
  93. [backports-weakref]
  94. description = Backport of new features in Python's weakref module
  95. [bandit]
  96. description = Security oriented static analyser for python code.
  97. [baresql]
  98. description = playing SQL directly on Python datas
  99. [base58]
  100. description = Base58 and Base58Check implementation
  101. [bcolz]
  102. description = columnar and compressed data containers.
  103. [bcrypt]
  104. description = Modern password hashing for your software and your servers
  105. [beautifulsoup4]
  106. description = Screen-scraping library
  107. [billiard]
  108. description = Python multiprocessing fork with improvements and bugfixes
  109. [binaryornot]
  110. description = Ultra-lightweight pure Python package to check if a file is binary or text.
  111. [bitarray]
  112. description = efficient arrays of booleans -- C extension
  113. [bkcharts]
  114. description = High level chart types built on top of Bokeh
  115. [black]
  116. description = The uncompromising code formatter.
  117. [blaze]
  118. description = Blaze
  119. [bleach]
  120. description = An easy safelist-based HTML-sanitizing tool.
  121. [blinker]
  122. description = Fast, simple object-to-object and broadcast signaling
  123. [blosc]
  124. description = Blosc data compressor
  125. [bloscpack]
  126. description = Command line interface to and serialization format for Blosc
  127. [bokeh]
  128. description = Interactive plots and applications in the browser from Python
  129. [boto3]
  130. description = The AWS SDK for Python
  131. [botocore]
  132. description = Low-level, data-driven core of boto 3.
  133. [bottle]
  134. description = Fast and simple WSGI-framework for small web-applications.
  135. [bottleneck]
  136. description = Fast NumPy array functions written in C
  137. [bqplot]
  138. description = Interactive plotting for the Jupyter notebook, using d3.js and ipywidgets.
  139. [branca]
  140. description = Generate complex HTML+JS pages with Python
  141. [brewer2mpl]
  142. description = Connect colorbrewer2.org color maps to Python and matplotlib
  143. [brotli]
  144. description = Python bindings for the Brotli compression library
  145. [cachetools]
  146. description = Extensible memoizing collections and decorators
  147. [cartopy]
  148. description = A cartographic python library with Matplotlib support for visualisation
  149. [castra]
  150. description = On-disk partitioned store
  151. [cchardet]
  152. description = cChardet is high speed universal character encoding detector.
  153. [cssselect]
  154. description = cssselect parses CSS3 Selectors and translates them to XPath 1.0
  155. [celery]
  156. description = Distributed Task Queue.
  157. [celerite]
  158. description = Scalable 1D Gaussian Processes
  159. [certifi]
  160. description = Python package for providing Mozilla's CA Bundle.
  161. [ceodbc]
  162. description = Python interface to ODBC
  163. [cffi]
  164. description = Foreign Function Interface for Python calling C code.
  165. [cftime]
  166. description = Time-handling functionality from netcdf4-python
  167. [chainer]
  168. description = A flexible framework of neural networks
  169. [chardet]
  170. description = Universal encoding detector for Python 2 and 3
  171. [click]
  172. description = Composable command line interface toolkit
  173. [click-default-group]
  174. description = Extends click.Group to invoke a command without explicit subcommand name
  175. [click-plugins]
  176. description = An extension module for click to enable registering CLI commands via setuptools entry-points.
  177. [cligj]
  178. description = Click params for commmand line interfaces to GeoJSON
  179. [clint]
  180. description = Python Command Line Interface Tools
  181. [cloudpickle]
  182. description = Extended pickling support for Python objects
  183. [clrmagic]
  184. description = IPython cell magic to use .NET languages
  185. [cmarkgfm]
  186. description = Minimal bindings to GitHub's fork of cmark
  187. [cntk]
  188. description = CNTK is an open-source, commercial-grade deep learning framework.
  189. [colorama]
  190. description = Cross-platform colored terminal text.
  191. [colorcet]
  192. description = Collection of perceptually uniform colormaps
  193. [coloredlogs]
  194. description = Colored terminal output for Python's logging module
  195. [comtypes]
  196. description = Pure Python COM package
  197. [commonmark]
  198. description = Python parser for the CommonMark Markdown spec
  199. [cookiecutter]
  200. description = A command-line utility that creates projects from project templates, e.g. creating a Python package project from a Python package project template.
  201. [configobj]
  202. description = Config file reading, writing and validation.
  203. [configparser]
  204. description = Updated configparser from Python 3.8 for Python 2.6+.
  205. [contextily]
  206. description = Context geo-tiles in Python
  207. [contextlib2]
  208. description = Backports and enhancements for the contextlib module
  209. [contextvars]
  210. description = PEP 567 Backport
  211. [convertdate]
  212. description = Converts between Gregorian dates and other calendar systems.Calendars included: Baha'i, French Republican, Hebrew, Indian Civil, Islamic, ISO, Julian, Mayan and Persian.
  213. [corner]
  214. description = Make some beautiful corner plots of samples.
  215. [coverage]
  216. description = Code coverage measurement for Python
  217. [cryptography]
  218. description = cryptography is a package which provides cryptographic recipes and primitives to Python developers.
  219. [cupy]
  220. description = CuPy: NumPy-like API accelerated with CUDA
  221. [curio]
  222. description = Curio
  223. [cvxcanon]
  224. description = A low-level library to perform the matrix building step in cvxpy, a convex optimization modeling software.
  225. [cvxopt]
  226. description = Convex optimization package
  227. [cvxpy]
  228. description = A domain-specific language for modeling convex optimization problems in Python.
  229. [cx-freeze]
  230. description = create standalone executables from Python scripts
  231. [cycler]
  232. description = Composable style cycles
  233. [cymem]
  234. description = Manage calls to calloc/free through Cython
  235. [cyordereddict]
  236. description = Cython implementation of Python's collections.OrderedDict
  237. [cython]
  238. description = The Cython compiler for writing C extensions for the Python language.
  239. [cytoolz]
  240. description = Cython implementation of Toolz: High performance functional utilities
  241. [dash]
  242. description = A Python framework for building reactive web-apps. Developed by Plotly.
  243. [dash-core-components]
  244. description = Core component suite for Dash
  245. [dash-html-components]
  246. description = Vanilla HTML components for Dash
  247. [dash-renderer]
  248. description = Front-end component renderer for Dash
  249. [dash-table]
  250. description = Dash table
  251. [dask]
  252. description = Parallel PyData with Task Scheduling
  253. [dask-labextension]
  254. description = A Jupyter Notebook server extension manages Dask clusters.
  255. [dask-ml]
  256. description = A library for distributed and parallel machine learning
  257. [dask-searchcv]
  258. description = Tools for doing hyperparameter search with Scikit-Learn and Dask
  259. [databases]
  260. description = Async database support for Python.
  261. [dataclasses]
  262. description = A backport of the dataclasses module for Python 3.6
  263. [datafabric]
  264. description = Distributed In-Memory system for analytics
  265. [datasette]
  266. description = A tool for exploring and publishing data
  267. [datashader]
  268. description = Data visualization toolchain based on aggregating into a grid
  269. [datashape]
  270. description = A data description language.
  271. [db-py]
  272. description = a db package that doesn't suck
  273. [decorator]
  274. description = Decorators for Humans
  275. [defusedxml]
  276. description = XML bomb protection for Python stdlib modules
  277. [deprecated]
  278. description = Python @deprecated decorator to deprecate old python classes, functions or methods.
  279. [descartes]
  280. description = Use geometric objects as matplotlib paths and patches
  281. [diff-match-patch]
  282. description = Repackaging of Google's Diff Match and Patch libraries. Offers robust algorithms to perform the operations required for synchronizing plain text.
  283. [dill]
  284. description = serialize all of python
  285. [discretize]
  286. description = Discretization tools for finite volume and inverse problems
  287. [distribute]
  288. description = distribute legacy wrapper
  289. [distributed]
  290. description = Distributed scheduler for Dask
  291. [dm-sonnet]
  292. description = Sonnet is a library for building neural networks in TensorFlow.
  293. [dnspython]
  294. description = DNS toolkit
  295. [docopt]
  296. description = Pythonic argument parser, that will make you smile
  297. [docrepr]
  298. description = docrepr renders Python docstrings in HTML
  299. [docutils]
  300. description = Docutils -- Python Documentation Utilities
  301. [dopamine]
  302. description = A library to use DopamineLabs machine learning API
  303. [dynd]
  304. description = Python exposure of DyND
  305. [egenix-mx-base]
  306. description = eGenix mx Base Distribution for Python - mxDateTime, mxTextTools, mxProxy, mxTools, mxBeeBase, mxStack, mxQueue, mxURL, mxUID
  307. [ecos]
  308. description = This is the Python package for ECOS: Embedded Cone Solver. See Github page for more information.
  309. [edward]
  310. description = A library for probabilistic modeling, inference, and criticism
  311. [emcee]
  312. description = The Python ensemble sampling toolkit for MCMC
  313. [enum34]
  314. description = Python 3.4 Enum backported to 3.3, 3.2, 3.1, 2.7, 2.6, 2.5, and 2.4
  315. [enum-compat]
  316. description = enum/enum34 compatibility package
  317. [entrypoints]
  318. description = Discover and load entry points from installed packages.
  319. [envisage]
  320. description = Extensible application framework
  321. [ephem]
  322. description = Compute positions of the planets and stars
  323. [eradicate]
  324. description = Removes commented-out code.
  325. [falcon]
  326. description = An unladen web framework for building APIs and app backends.
  327. [fast-histogram]
  328. description = Fast simple 1D and 2D histograms
  329. [fastai]
  330. description = fastai makes deep learning with PyTorch faster, more accurate, and easier
  331. [fastapi]
  332. description = FastAPI framework, high performance, easy to learn, fast to code, ready for production
  333. [fastcache]
  334. description = C implementation of Python 3 functools.lru_cache
  335. [fasteners]
  336. description = A python package that provides useful locks.
  337. [fastparquet]
  338. description = Python support for Parquet file format
  339. [fastprogress]
  340. description = A nested progress with plotting options for fastai
  341. [fastrlock]
  342. description = Fast, re-entrant optimistic lock implemented in Cython
  343. [fastscript]
  344. description = A fast way to turn your python function into a script
  345. [fbprophet]
  346. description = Automatic Forecasting Procedure
  347. [feather-format]
  348. description = Simple wrapper library to the Apache Arrow-based Feather File Format
  349. [fenics]
  350. description = The FEniCS Project Python Metapackage
  351. [filelock]
  352. description = A platform independent file lock.
  353. [fiona]
  354. description = Fiona reads and writes spatial data files
  355. [flake8]
  356. description = the modular source code checker: pep8, pyflakes and co
  357. [flask]
  358. description = A simple framework for building complex web applications.
  359. [flaskerize]
  360. description = Python CLI build/dev tool for templated code generation and project modification. Think Angular schematics for Python.
  361. [flask-accepts]
  362. description = Easy, opinionated Flask input/output handling with Flask-restx and Marshmallow
  363. [flask-compress]
  364. description = Compress responses in your Flask app with gzip.
  365. [flask-cors]
  366. description = A Flask extension adding a decorator for CORS support
  367. [flask-restplus]
  368. description = Fully featured framework for fast, easy and documented API development with Flask
  369. [flask-restx]
  370. description = Fully featured framework for fast, easy and documented API development with Flask
  371. [flask-seasurf]
  372. description = An updated CSRF extension for Flask.
  373. [flexx]
  374. description = Write desktop and web apps in pure Python.
  375. [flit]
  376. description = A simple packaging tool for simple packages.
  377. [folium]
  378. description = Make beautiful maps with Leaflet.js & Python
  379. [fonttools]
  380. description = Tools to manipulate font files
  381. [formlayout]
  382. description = The most easy way to create Qt form dialogs and widgets with Python
  383. [fs]
  384. description = Python's filesystem abstraction layer
  385. [fsspec]
  386. description = File-system specification
  387. [fuel]
  388. description = Data pipeline framework for machine learning
  389. [funcsigs]
  390. description = Python function signatures from PEP362 for Python 2.6, 2.7 and 3.2+
  391. [functools32]
  392. description = Backport of the functools module from Python 3.2.3 for use on 2.7 and PyPy.
  393. [future]
  394. description = Clean single-source support for Python 3 and 2
  395. [futures]
  396. description = Backport of the concurrent.futures package from Python 3
  397. [fuzzywuzzy]
  398. description = Fuzzy string matching in python
  399. [gast]
  400. description = Python AST that abstracts the underlying Python version
  401. [gdal]
  402. description = GDAL: Geospatial Data Abstraction Library
  403. [gensim]
  404. description = Python framework for fast Vector Space Modelling
  405. [geoana]
  406. description = geoana
  407. [geopy]
  408. description = Python Geocoding Toolbox
  409. [geographiclib]
  410. description = The geodesic routines from GeographicLib
  411. [geopandas]
  412. description = Geographic pandas extensions
  413. [geoplot]
  414. description = High-level geospatial plotting for Python.
  415. [geoviews]
  416. description = GeoViews is a Python library that makes it easy to explore and visualize geographical, meteorological, and oceanographic datasets, such as those used in weather, climate, and remote sensing research.
  417. [ggplot]
  418. description = ggplot for python
  419. [ghost-py]
  420. description = Webkit based webclient.
  421. [gin-config]
  422. description = Gin-Config: A lightweight configuration library for Python
  423. [gitdb2]
  424. description = A mirror package for gitdb
  425. [gitpython]
  426. description = Python Git Library
  427. [gmpy2]
  428. description = GMP/MPIR, MPFR, and MPC interface to Python 2.6+ and 3.x
  429. [gnumath]
  430. description = Extensible array functions that operate on xnd containers.
  431. [google-auth]
  432. description = Google Authentication Library
  433. [google-auth-oauthlib]
  434. description = Google Authentication Library
  435. [google-api-python-client]
  436. description = Google API Client Library for Python
  437. [google-pasta]
  438. description = pasta is an AST-based Python refactoring library
  439. [gr]
  440. description = Python visualization framework
  441. [graphql-relay]
  442. description = Relay library for graphql-core-next
  443. [graphql-core]
  444. description = GraphQL implementation for Python, a port of GraphQL.js, the JavaScript reference implementation for GraphQL.
  445. [graphviz]
  446. description = Simple Python interface for Graphviz
  447. [graphene]
  448. description = GraphQL Framework for Python
  449. [graphql-server-core]
  450. description = GraphQL Server tools for powering your server
  451. [greenlet]
  452. description = Lightweight in-process concurrent programming
  453. [gridmap]
  454. description = Easily map Python functions onto a cluster using a DRMAA-compatible grid engine like Sun Grid Engine (SGE).
  455. [grpcio]
  456. description = HTTP/2-based RPC framework
  457. [guidata]
  458. description = Automatic graphical user interfaces generation for easy dataset editing and display
  459. [guiqwt]
  460. description = guiqwt is a set of tools for curve and image plotting (extension to PythonQwt)
  461. [gym]
  462. description = The OpenAI Gym: A toolkit for developing and comparing your reinforcement learning agents.
  463. [hdfs]
  464. description = HdfsCLI: API and command line interface for HDFS.
  465. [heapdict]
  466. description = a heap with decrease-key and increase-key operations
  467. [helpdev]
  468. description = HelpDev - Extracts information about the Python environment easily.
  469. [hiplot]
  470. description = High dimensional Interactive Plotting tool
  471. [holidays]
  472. description = Generate and work with holidays in Python
  473. [holoviews]
  474. description = Stop plotting your data - annotate your data and let it visualize itself.
  475. [hpack]
  476. description = Pure-Python HPACK header compression
  477. [hvplot]
  478. description = A high-level plotting API for the PyData ecosystem built on HoloViews.
  479. [html5lib]
  480. description = HTML parser based on the WHATWG HTML specification
  481. [httplib2]
  482. description = A comprehensive HTTP client library.
  483. [humanfriendly]
  484. description = Human friendly output for text interfaces using Python
  485. [husl]
  486. description = Human-friendly HSL
  487. [hupper]
  488. description = Integrated process monitor for developing and reloading daemons.
  489. [hypercorn]
  490. description = A ASGI Server based on Hyper libraries and inspired by Gunicorn.
  491. [hyperframe]
  492. description = HTTP/2 framing layer for Python
  493. [hypothesis]
  494. description = A library for property-based testing
  495. [h11]
  496. description = A pure-Python, bring-your-own-I/O implementation of HTTP/1.1
  497. [h2]
  498. description = HTTP/2 State-Machine based protocol implementation
  499. [h5py]
  500. description = Read and write HDF5 files from Python
  501. [ibis-framework]
  502. description = Productivity-centric Python Big Data Framework
  503. [ipydatawidgets]
  504. description = A set of widgets to help facilitate reuse of large datasets across widgets
  505. [idlex]
  506. description = IDLE Extensions for Python
  507. [idna]
  508. description = Internationalized Domain Names in Applications (IDNA)
  509. [imageio]
  510. description = Library for reading and writing a wide range of image, video, scientific, and volumetric data formats.
  511. [imageio-ffmpeg]
  512. description = FFMPEG wrapper for Python
  513. [imbalanced-learn]
  514. description = Toolbox for imbalanced dataset in machine learning.
  515. [immutables]
  516. description = Immutable Collections
  517. [imagesize]
  518. description = Getting image size from png/jpeg/jpeg2000/gif file
  519. [importlib-metadata]
  520. description = Read metadata from Python packages
  521. [intake]
  522. description = Data load and catalog system
  523. [intervaltree]
  524. description = Editable interval tree data structure for Python 2 and 3
  525. [ipycanvas]
  526. description = Interactive widgets library exposing the browser's Canvas API
  527. [ipykernel]
  528. description = IPython Kernel for Jupyter
  529. [ipyleaflet]
  530. description = A Jupyter widget for dynamic Leaflet maps
  531. [ipympl]
  532. description = Matplotlib Jupyter Extension
  533. [ipyparallel]
  534. description = Interactive Parallel Computing with IPython
  535. [ipyscales]
  536. description = A widget library for scales
  537. [ipython]
  538. description = IPython: Productive Interactive Computing
  539. [ipython-genutils]
  540. description = Vestigial utilities from IPython
  541. [ipython-sql]
  542. description = RDBMS access via IPython
  543. [ipyvega]
  544. description = IPython/Jupy
  545. [ipyvolume]
  546. description = IPython widget for rendering 3d volumes
  547. [ipyvuetify]
  548. description = Jupyter widgets based on vuetify UI components
  549. [ipywebrtc]
  550. description = WebRTC for Jupyter notebook/lab
  551. [ipywidgets]
  552. description = IPython HTML widgets for Jupyter
  553. [isort]
  554. description = A Python utility / library to sort Python imports.
  555. [itsdangerous]
  556. description = Various helpers to pass data to untrusted environments and back.
  557. [janus]
  558. description = Mixed sync-async queue to interoperate between asyncio tasks and classic threads
  559. [jax]
  560. description = Differentiate, compile, and transform Numpy code.
  561. [jedi]
  562. description = An autocompletion tool for Python that can be used for text editors.
  563. [jinja2]
  564. description = A small but fast and easy to use stand-alone template engine written in pure python.
  565. [jmespath]
  566. description = JSON Matching Expressions
  567. [joblib]
  568. description = Lightweight pipelining: using Python functions as pipeline jobs.
  569. [jnius]
  570. description = Dynamic access to Java classes from Python
  571. [jplephem]
  572. description = Use a JPL ephemeris to predict planet positions.
  573. [jsonschema]
  574. description = An implementation of JSON Schema validation for Python
  575. [json5]
  576. description = A Python implementation of the JSON5 data format.
  577. [julia]
  578. description = Julia/Python bridge with IPython support.
  579. [jupyter]
  580. description = Jupyter metapackage. Install all the Jupyter components in one go.
  581. [jupyter-echarts-pypkg]
  582. description = Echarts pypi packages for jupyter and python
  583. [jupyterlab]
  584. description = The JupyterLab notebook server extension.
  585. [jupyterlab-launcher]
  586. description = Jupyter Launcher
  587. [jupyterlab-sql]
  588. description = JupyterLab plugin for visualizing SQL databases
  589. [jupyter-client]
  590. description = Jupyter protocol implementation and client libraries
  591. [jupyter-console]
  592. description = Jupyter terminal console
  593. [jupyter-core]
  594. description = Jupyter core package. A base package on which Jupyter projects rely.
  595. [jupyter-panel-proxy]
  596. description = Jupyter Server Proxy for Panel applications
  597. [jupyterlab-pygments]
  598. description = Pygments theme
  599. [jupyterlab-server]
  600. description = JupyterLab Server
  601. [jupyter-server]
  602. description = The Jupyter Server
  603. [jupyter-sphinx]
  604. description = Jupyter Sphinx Extensions
  605. [jupytext]
  606. description = Jupyter notebooks as Markdown documents, Julia, Python or R scripts
  607. [kapteyn]
  608. description = Kapteyn Package: Python modules for astronomical applications
  609. [keras]
  610. description = Deep Learning for humans
  611. [keras-applications]
  612. description = Reference implementations of popular deep learning models
  613. [keras-preprocessing]
  614. description = Easy data preprocessing and data augmentation for deep learning models
  615. [keras-vis]
  616. description = Neural Network visualization toolkit for keras
  617. [keras-tuner]
  618. description = Hypertuner for Keras
  619. [keyring]
  620. description = Store and access your passwords safely.
  621. [kivy]
  622. description = A software library for rapid development of hardware-accelerated multitouch applications.
  623. [kivy-garden]
  624. description = Garden tool for kivy flowers.
  625. [kiwisolver]
  626. description = A fast implementation of the Cassowary constraint solver
  627. [knack]
  628. description = A Command-Line Interface framework
  629. [knit]
  630. description = Python wrapper for YARN Applications
  631. [kombu]
  632. description = Messaging library for Python.
  633. [lasagne]
  634. description = A lightweight library to build and train neural networks in Theano
  635. [lazy-object-proxy]
  636. description = A fast and thorough lazy object proxy.
  637. [libpython]
  638. description = The MinGW import library for Python
  639. [lightfm]
  640. description = LightFM recommendation model
  641. [lightning-python]
  642. description = A Python client library for the Lightning data visualization server
  643. [llvmlite]
  644. description = lightweight wrapper around basic LLVM functionality
  645. [llvmpy]
  646. description = Python bindings for LLVM
  647. [lmfit]
  648. description = Least-Squares Minimization with Bounds and Constraints
  649. [lml]
  650. description = Load me later. A lazy plugin management system.
  651. [lock]
  652. description = module for enabling file locks
  653. [locket]
  654. description = File-based locks for Python for Linux and Windows
  655. [locket-py]
  656. description = File-based locks for Python for Linux and Windows
  657. [logilab-astng]
  658. description = rebuild a new abstract syntax tree from Python's ast
  659. [logilab-common]
  660. description = collection of low-level Python packages and modules used by Logilab projects
  661. [logutils]
  662. description = Logging utilities
  663. [loky]
  664. description = A robust implementation of concurrent.futures.ProcessPoolExecutor
  665. [lunardate]
  666. description = A Chinese Calendar Library in Pure Python
  667. [lxml]
  668. description = Powerful and Pythonic XML processing library combining libxml2/libxslt with the ElementTree API.
  669. [lz4]
  670. description = LZ4 Bindings for Python
  671. [macholib]
  672. description = Mach-O header analysis and editing
  673. [mahotas]
  674. description = Mahotas: Computer Vision Library
  675. [mako]
  676. description = A super-fast templating language that borrows the best ideas from the existing templating languages.
  677. [mapclassify]
  678. description = Classification Schemes for Choropleth Maps.
  679. [markdown]
  680. description = Python implementation of Markdown.
  681. [markdown2]
  682. description = A fast and complete Python implementation of Markdown
  683. [markupsafe]
  684. description = Safely add untrusted strings to HTML/XML markup.
  685. [marshmallow]
  686. description = A lightweight library for converting complex datatypes to and from native Python datatypes.
  687. [matplotlib]
  688. description = Python plotting package
  689. [mayavi]
  690. description = 3D scientific data visualization library and application
  691. [mccabe]
  692. description = McCabe checker, plugin for flake8
  693. [mercantile]
  694. description = Web mercator XYZ tile utilities
  695. [mercurial]
  696. description = Fast scalable distributed SCM (revision control, version control) system
  697. [metakernel]
  698. description = Metakernel for Jupyter
  699. [mingwpy]
  700. description = the python friendly windows compiler toolchain
  701. [mistune]
  702. description = The fastest markdown parser in pure Python
  703. [mizani]
  704. description = Scales for Python
  705. [mlxtend]
  706. description = Machine Learning Library Extensions
  707. [mkl-service]
  708. description = Python bindings to some MKL service functions
  709. [mlflow]
  710. description = MLflow: An ML Workflow Tool
  711. [mock]
  712. description = Rolling backport of unittest.mock for all Pythons
  713. [modergnl]
  714. description = Modern OpenGL binding for python
  715. [modin]
  716. description = Modin: Make your pandas code run faster by changing one line of code.
  717. [monotonic]
  718. description = An implementation of time.monotonic() for Python 2 & < 3.3
  719. [more-itertools]
  720. description = More routines for operating on iterables, beyond itertools
  721. [moviepy]
  722. description = Video editing with Python
  723. [mpldatacursor]
  724. description = Interactive data cursors for Matplotlib
  725. [mpld3]
  726. description = D3 Viewer for Matplotlib
  727. [mpl-scatter-density]
  728. description = Matplotlib helpers to make density scatter plots
  729. [mpmath]
  730. description = Python library for arbitrary-precision floating-point arithmetic
  731. [msgpack]
  732. description = MessagePack (de)serializer.
  733. [msgpack-numpy]
  734. description = Numpy data serialization using msgpack
  735. [msgpack-python]
  736. description = MessagePack (de)serializer.
  737. [multidict]
  738. description = multidict implementation
  739. [multipledispatch]
  740. description = Multiple dispatch
  741. [multiprocess]
  742. description = better multiprocessing and multithreading in python
  743. [murmurhash]
  744. description = Cython bindings for MurmurHash
  745. [munch]
  746. description = A dot-accessible dictionary (a la JavaScript objects)
  747. [mxbase]
  748. description = eGenix.com mx Base Distribution: mxDateTime, mxTextTools, mxProxy, mxBeeBase, mxURL, mxUID, mxStack, mxQueue and mxTools
  749. [mypy]
  750. description = Optional static typing for Python
  751. [mypy-extensions]
  752. description = Experimental type system extensions for programs checked with the mypy typechecker.
  753. [mysql-connector-python]
  754. description = MySQL driver written in Python
  755. [nbbrowserpdf]
  756. description = LaTeX-free PDF generation from Jupyter Notebooks
  757. [nbclient]
  758. description = A client library for executing notebooks. Formally nbconvert's ExecutePreprocessor.
  759. [nbconvert]
  760. description = Converting Jupyter Notebooks
  761. [nbconvert-reportlab]
  762. description = Convert notebooks to PDF using Reportlab
  763. [nbdev]
  764. description = Writing a library entirely in notebooks
  765. [nbdime]
  766. description = Diff and merge of Jupyter Notebooks
  767. [nbformat]
  768. description = The Jupyter Notebook format
  769. [nbgrader]
  770. description = A system for assigning and grading notebooks
  771. [nbpresent]
  772. description = Next generation slides from Jupyter Notebooks
  773. [nbsphinx]
  774. description = Jupyter Notebook Tools for Sphinx
  775. [ndtypes]
  776. description = Dynamic types for data description and in-memory computations.
  777. [netcdftime]
  778. description = Time-handling functionality from netcdf4-python
  779. [nest-asyncio]
  780. description = Patch asyncio to allow nested event loops
  781. [netcdf4]
  782. description = Provides an object-oriented python interface to the netCDF version 4 library.
  783. [networkx]
  784. description = Python package for creating and manipulating graphs and networks
  785. [nltk]
  786. description = Natural Language Toolkit
  787. [nose]
  788. description = nose extends unittest to make testing easier
  789. [notebook]
  790. description = A web-based notebook environment for interactive computing
  791. [nteract-on-jupyter]
  792. description = Extension for the jupyter notebook server and nteract
  793. [numba]
  794. description = compiling Python code using LLVM
  795. [numcodecs]
  796. description = A Python package providing buffer compression and transformation codecs for use in data storage and communication applications.
  797. [numdifftools]
  798. description = Solves automatic numerical differentiation problems in one or more variables.
  799. [numexpr]
  800. description = Fast numerical expression evaluator for NumPy
  801. [numpy]
  802. description = NumPy is the fundamental package for array computing with Python.
  803. [numpydoc]
  804. description = Sphinx extension to support docstrings in Numpy format
  805. [nvidia-ml-py3]
  806. description = Python Bindings for the NVIDIA Management Library
  807. [oauthlib]
  808. description = A generic, spec-compliant, thorough implementation of the OAuth request-signing logic
  809. [oauth2client]
  810. description = OAuth 2.0 client library
  811. [observations]
  812. description = Tools for loading standard data sets in machine learning
  813. [octave-kernel]
  814. description = A Jupyter kernel for Octave.
  815. [oct2py]
  816. description = Python to GNU Octave bridge --> run m-files from python.
  817. [odo]
  818. description = Data migration utilities
  819. [olefile]
  820. description = Python package to parse, read and write Microsoft OLE2 files (Structured Storage or Compound Document, Microsoft Office)
  821. [opencv-python]
  822. description = Wrapper package for OpenCV python bindings.
  823. [openimageio]
  824. description = a library for reading and writing images with emphasis on animation and visual effects.
  825. [openpyxl]
  826. description = A Python library to read/write Excel 2010 xlsx/xlsm files
  827. [opt-einsum]
  828. description = Optimizing numpys einsum function
  829. [orange]
  830. description = Orange, a component-based data mining framework.
  831. [osqp]
  832. description = OSQP: The Operator Splitting QP Solver
  833. [outcome]
  834. description = Capture the outcome of Python function calls.
  835. [packaging]
  836. description = Core utilities for Python packages
  837. [palettable]
  838. description = Color palettes for Python
  839. [palladium]
  840. description = Framework for setting up predictive analytics services
  841. [pandas]
  842. description = Powerful data structures for data analysis, time series, and statistics
  843. [pandasql]
  844. description = sqldf for pandas
  845. [pandas-datareader]
  846. description = Data readers extracted from the pandas codebase,should be compatible with recent pandas versions
  847. [pandas-ply]
  848. description = functional data manipulation for pandas
  849. [pandocfilters]
  850. description = Utilities for writing pandoc filters in python
  851. [panel]
  852. description = A high level app and dashboarding solution for Python.
  853. [papermill]
  854. description = Parametrize and run Jupyter and nteract Notebooks
  855. [param]
  856. description = Declarative Python programming using Parameters.
  857. [parambokeh]
  858. description = ParamBokeh provides an easy way to generate a UI for param based classes in the notebook or on bokeh server.
  859. [paramnb]
  860. description = Generate ipywidgets from Parameterized objects in the notebook
  861. [paramiko]
  862. description = SSH2 protocol library
  863. [parse]
  864. description = parse() is the opposite of format()
  865. [parso]
  866. description = A Python Parser
  867. [partd]
  868. description = Appendable key-value storage
  869. [passlib]
  870. description = comprehensive password hashing framework supporting over 30 schemes
  871. [pathspec]
  872. description = Utility library for gitignore style pattern matching of file paths.
  873. [pathtools]
  874. description = File system general utilities
  875. [path-py]
  876. description = A module wrapper for os.path
  877. [patsy]
  878. description = A Python package for describing statistical models and for building design matrices.
  879. [pbr]
  880. description = Python Build Reasonableness
  881. [pdfrw]
  882. description = PDF file reader/writer library
  883. [pdvega]
  884. description = Pandas plotting interface to Vega and Vega-Lite
  885. [peewee]
  886. description = a little orm
  887. [pefile]
  888. description = Python PE parsing module
  889. [pep8]
  890. description = Python style guide checker
  891. [perf]
  892. description = Python module to generate and modify perf
  893. [performance]
  894. description = Python benchmark suite
  895. [pexpect]
  896. description = Pexpect allows easy control of interactive console applications.
  897. [pgmagick]
  898. description = Yet Another Python wrapper for GraphicsMagick
  899. [pg8000]
  900. description = PostgreSQL interface library
  901. [pkginfo]
  902. description = Query metadatdata from sdists / bdists / installed packages.
  903. [picklable-itertools]
  904. description = itertools. But picklable. Even on Python 2.
  905. [pickleshare]
  906. description = Tiny 'shelve'-like database with concurrency support
  907. [pil]
  908. description = Python Imaging Library
  909. [pillow]
  910. description = Python Imaging Library (Fork)
  911. [pint]
  912. description = Physical quantities module
  913. [pip]
  914. description = The PyPA recommended tool for installing Python packages.
  915. [plotly]
  916. description = An open-source, interactive graphing library for Python
  917. [plotnine]
  918. description = A grammar of graphics for python
  919. [plotpy]
  920. description = Plotpy is a library which results from merge of guidata and guiqwt.
  921. [pluggy]
  922. description = plugin and hook calling mechanisms for python
  923. [ply]
  924. description = Python Lex & Yacc
  925. [polygon2]
  926. description = Polygon2 is a Python-2 package that handles polygonal shapes in 2D
  927. [polygon3]
  928. description = Polygon3 is a Python-3 package that handles polygonal shapes in 2D
  929. [pomegranate]
  930. description = Pomegranate is a graphical models library for Python, implemented in Cython for speed.
  931. [portalocker]
  932. description = Wraps the portalocker recipe for easy usage
  933. [portpicker]
  934. description = A library to choose unique available network ports.
  935. [poyo]
  936. description = A lightweight YAML Parser for Python. &#128019;
  937. [ppci]
  938. description = A compiler for ARM, X86, MSP430, xtensa and more implemented in pure Python
  939. [preshed]
  940. description = Cython hash table that trusts the keys are pre-hashed
  941. [prettytable]
  942. description = A simple Python library for easily displaying tabular data in a visually appealing ASCII table format.
  943. [prettytensor]
  944. description = Pretty Tensor makes learning beautiful
  945. [priority]
  946. description = A pure-Python implementation of the HTTP/2 priority tree
  947. [proglog]
  948. description = Log and progress bar manager for console, notebooks, web...
  949. [progressbar]
  950. description = Text progress bar library for Python.
  951. [progressbar2]
  952. description = A Python Progressbar library to provide visual (yet text based) progress to long running operations.
  953. [prometheus-client]
  954. description = Python client for the Prometheus monitoring system.
  955. [promise]
  956. description = Promises/A+ implementation for Python
  957. [properties]
  958. description = properties: an organizational aid and wrapper for validation and tab completion of class properties
  959. [prompt-toolkit]
  960. description = Library for building powerful interactive command lines in Python
  961. [prospector]
  962. description = Prospector: python static analysis tool
  963. [protobuf]
  964. description = Protocol Buffers
  965. [pscript]
  966. description = Python to JavaScript compiler.
  967. [psutil]
  968. description = Cross-platform lib for process and system monitoring in Python.
  969. [psycopg2]
  970. description = psycopg2 - Python-PostgreSQL Database Adapter
  971. [ptpython]
  972. description = Python REPL build on top of prompt_toolkit
  973. [ptvsd]
  974. description = Remote debugging server for Python support in Visual Studio and Visual Studio Code
  975. [ptyprocess]
  976. description = Run a subprocess in a pseudo terminal
  977. [pulp]
  978. description = PuLP is an LP modeler written in python. PuLP can generate MPS or LP files and call GLPK, COIN CLP/CBC, CPLEX, and GUROBI to solve linear problems.
  979. [pweave]
  980. description = Scientific reports with embedded python computations with reST, LaTeX or markdown
  981. [py]
  982. description = library with cross-python path, ini-parsing, io, code, log facilities
  983. [pyaml]
  984. description = PyYAML-based module to produce pretty and readable YAML-serialized data
  985. [pyct]
  986. description = python package common tasks for users (e.g. copy examples, fetch data, ...)
  987. [pyarrow]
  988. description = Python library for Apache Arrow
  989. [pyasn1]
  990. description = ASN.1 types and codecs
  991. [pyasn1-modules]
  992. description = A collection of ASN.1-based protocols modules.
  993. [pyaudio]
  994. description = Bindings for PortAudio v19, the cross-platform audio input/output stream library.
  995. [pybars3]
  996. description = Handlebars.js templating for Python 3 and 2
  997. [pybind11]
  998. description = Seamless operability between C++11 and Python
  999. [pycares]
  1000. description = Python interface for c-ares
  1001. [pycairo]
  1002. description = Python interface for cairo
  1003. [pycodestyle]
  1004. description = Python style guide checker
  1005. [pycosat]
  1006. description = bindings to picosat (a SAT solver)
  1007. [pycparser]
  1008. description = C parser in Python
  1009. [pydantic]
  1010. description = Data validation and settings management using python 3.6 type hinting
  1011. [pydeck]
  1012. description = Widget for deck.gl maps
  1013. [pydicom]
  1014. description = Pure python package for DICOM medical file reading and writing
  1015. [pydispatcher]
  1016. description = Multi-producer-multi-consumer signal dispatching mechanism
  1017. [pydocstyle]
  1018. description = Python docstring style checker
  1019. [pydot-ng]
  1020. description = Python interface to Graphviz's Dot
  1021. [pyecharts]
  1022. description = Python options, make charting easier
  1023. [pyecharts-javascripthon]
  1024. description = Embeded Python functions in pyecharts
  1025. [pyecharts-jupyter-installer]
  1026. description = Install pyecharts extensions into jupyter
  1027. [pyeda]
  1028. description = Python Electronic Design Automation
  1029. [pyepsg]
  1030. description = Easy access to the EPSG database via http epsg.io/
  1031. [pyface]
  1032. description = traits-capable windowing framework
  1033. [pyflakes]
  1034. description = passive checker of Python programs
  1035. [pyflux]
  1036. description = PyFlux: A time-series analysis library for Python
  1037. [pygame]
  1038. description = Python Game Development
  1039. [pygbm]
  1040. description = Experimental, numba-based Gradient Boosting Machines
  1041. [pygit2]
  1042. description = Python bindings for libgit2.
  1043. [pyglet]
  1044. description = Cross-platform windowing and multimedia library
  1045. [pygments]
  1046. description = Pygments is a syntax highlighting package written in Python.
  1047. [pygraphviz]
  1048. description = Python interface to Graphviz
  1049. [pyhdf]
  1050. description = pyhdf: Python interface to the NCSA HDF4 library.
  1051. [pyhive]
  1052. description = Python interface to Hive
  1053. [pyinstaller]
  1054. description = PyInstaller bundles a Python application and all its dependencies into a single package.
  1055. [pylama]
  1056. description = pylama -- Code audit tool for python
  1057. [pylearn2]
  1058. description = A Machine Learning library based on Theano
  1059. [pylint]
  1060. description = python code static checker
  1061. [pylons]
  1062. description = Pylons Web Framework
  1063. [pymatsolver]
  1064. description = pymatsolver: Matrix Solvers for Python
  1065. [pymc]
  1066. description = Markov Chain Monte Carlo sampling toolkit.
  1067. [pymc3]
  1068. description = Probabilistic Programming in Python: Bayesian Modeling and Probabilistic Machine Learning with Theano
  1069. [pymeta3]
  1070. description = Pattern-matching language based on OMeta for Python 3 and 2
  1071. [pymkl]
  1072. description = Python wrapper of Intel MKL routines
  1073. [pymongo]
  1074. description = Python driver for MongoDB <http www.mongodb.org>
  1075. [pympler]
  1076. description = A development tool to measure, monitor and analyze the memory behavior of Python objects.
  1077. [pynacl]
  1078. description = Python binding to the Networking and Cryptography (NaCl) library
  1079. [pyodbc]
  1080. description = DB API Module for ODBC
  1081. [pyomo]
  1082. description = Pyomo: Python Optimization Modeling Objects
  1083. [pyopencl]
  1084. description = Python wrapper for OpenCL
  1085. [pyopengl]
  1086. description = Standard OpenGL bindings for Python
  1087. [pyopenssl]
  1088. description = Python wrapper module around the OpenSSL library
  1089. [pypandoc]
  1090. description = Thin wrapper for pandoc.
  1091. [pypdf2]
  1092. description = PDF toolkit
  1093. [pyparsing]
  1094. description = Python parsing module
  1095. [pyperf]
  1096. description = Python module to run and analyze benchmarks
  1097. [pyproj]
  1098. description = Python interface to PROJ (cartographic projections and coordinate transformations library)
  1099. [pypiwin32]
  1100. description = Python for Windows Extensions
  1101. [pyqt]
  1102. description = Cross-platform Application Framework: GUI, widgets, SQL, OpenGL, XML, Unicode...
  1103. [pyqtchart]
  1104. description = Python bindings for the Qt Charts library
  1105. [pyqtdatavisualization]
  1106. description = Python bindings for the Qt Data Visualization library
  1107. [pyqtdeploy]
  1108. description = PyQt Application Deployment Tool
  1109. [pyqtgraph]
  1110. description = Scientific Graphics and GUI Library for Python
  1111. [pyqtpurchasing]
  1112. description = Python bindings for the Qt Purchasing library
  1113. [pyqt4]
  1114. description = Python bindings for the Qt cross platform GUI toolkit
  1115. [pyqt5]
  1116. description = Python bindings for the Qt cross platform application toolkit
  1117. [pyqt5-sip]
  1118. description = The sip module support for PyQt5
  1119. [pyqtdoc]
  1120. description = PyQtdoc installs Qt documentation for PyQt
  1121. [pyqtdesignerplugins]
  1122. description = PyQtdesignerplugins installs Qt Designer plugins for PyQt4
  1123. [pyqtwebengine]
  1124. description = Python bindings for the Qt WebEngine framework
  1125. [pyqwt]
  1126. description = 2D plotting library (set of Python bindings for the Qwt library featuring fast plotting)
  1127. [pyramid]
  1128. description = The Pyramid Web Framework, a Pylons project
  1129. [pyreadline]
  1130. description = A python implmementation of GNU readline.
  1131. [pyroma]
  1132. description = Test your project's packaging friendliness
  1133. [pyrro-ppl]
  1134. description = A Python library for probabilistic modeling and inference
  1135. [pyrsistent]
  1136. description = Persistent/Functional/Immutable data structures
  1137. [pysal]
  1138. description = A library of spatial analysis functions.
  1139. [pyserial]
  1140. description = Python Serial Port Extension
  1141. [pyshp]
  1142. description = Pure Python read/write support for ESRI Shapefile format
  1143. [pyside]
  1144. description = Python bindings for the Qt cross-platform application and UI framework
  1145. [pyside2]
  1146. description = Python bindings for the Qt cross-platform application and UI framework
  1147. [pyspark]
  1148. description = Apache Spark Python API
  1149. [pystache]
  1150. description = Mustache for Python
  1151. [pystan]
  1152. description = Python interface to Stan, a package for Bayesian inference
  1153. [pytest]
  1154. description = pytest: simple powerful testing with Python
  1155. [pytest-runner]
  1156. description = Invoke py.test as distutils command with dependency resolution
  1157. [python-crfsuite]
  1158. description = Python binding for CRFsuite
  1159. [python-dateutil]
  1160. description = Extensions to the standard Python datetime module
  1161. [python-hdf4]
  1162. description = Python-HDF4: Python interface to the NCSA HDF4 library.
  1163. [python-igraph]
  1164. description = High performance graph data structures and algorithms
  1165. [python-mimeparse]
  1166. description = A module provides basic functions for parsing mime-type names and matching them against a list of media-ranges.
  1167. [python-qwt]
  1168. description = Qt plotting widgets for Python
  1169. [python-jsonrpc-server]
  1170. description = JSON RPC 2.0 server library
  1171. [python-language-server]
  1172. description = Python Language Server for the Language Server Protocol
  1173. [python-levenshtein]
  1174. description = Python extension for computing string edit distances and similarities.
  1175. [python-multipart]
  1176. description = A streaming multipart parser for Python
  1177. [python-snappy]
  1178. description = Python library for the snappy compression library from Google
  1179. [pythonnet]
  1180. description = .Net and Mono integration for Python
  1181. [pythonqwt]
  1182. description = Qt plotting widgets for Python
  1183. [python-twitter]
  1184. description = A Python wrapper around the Twitter API
  1185. [python-zstandard]
  1186. description = Python bindings to the Zstandard (zstd) compression library
  1187. [pythran]
  1188. description = Ahead of Time compiler for numeric kernels
  1189. [pythreejs]
  1190. description = Interactive 3d graphics for the Jupyter notebook, using Three.js from Jupyter interactive widgets.
  1191. [pytools]
  1192. description = A collection of tools for Python
  1193. [pytorch-transformers]
  1194. description = Repository of pre-trained NLP Transformer models: BERT & RoBERTa, GPT & GPT-2, Transformer-XL, XLNet and XLM
  1195. [pytz]
  1196. description = World timezone definitions, modern and historical
  1197. [pytzdata]
  1198. description = The Olson timezone database for Python.
  1199. [pyutilib]
  1200. description = PyUtilib: A collection of Python utilities
  1201. [pyvisa]
  1202. description = Python VISA bindings for GPIB, RS232, TCPIP and USB instruments
  1203. [pyviz]
  1204. description = How to solve visualization problems with Python tools.
  1205. [pyviz-comms]
  1206. description = Bidirectional communication for the PyViz ecosystem.
  1207. [pywavelets]
  1208. description = PyWavelets, wavelet transform module
  1209. [pywin32]
  1210. description = Python for Window Extensions
  1211. [pywin32-ctypes]
  1212. description = A (partial) reimplementation of pywin32 that is pure python (uses ctypes/cffi)
  1213. [pywinpty]
  1214. description = Python bindings for the winpty library
  1215. [pywinusb]
  1216. description = A package that simplifies USB/HID communications on windows
  1217. [pyyaml]
  1218. description = YAML parser and emitter for Python
  1219. [pyzmq]
  1220. description = Python bindings for 0MQ
  1221. [pyzo]
  1222. description = the Python IDE for scientific computing
  1223. [py-spy]
  1224. description = A Sampling Profiler for Python
  1225. [qdarkstyle]
  1226. description = The most complete dark stylesheet for Python and Qt applications
  1227. [qtawesome]
  1228. description = FontAwesome icons in PyQt and PySide applications
  1229. [qtconsole]
  1230. description = Jupyter Qt console
  1231. [qtpy]
  1232. description = Provides an abstraction layer on top of the various Qt bindings (PyQt5, PyQt4 and PySide) and additional custom QWidgets.
  1233. [qscintilla]
  1234. description = Python bindings for the QScintilla programmers editor widget
  1235. [quantecon]
  1236. description = QuantEcon is a package to support all forms of quantitative economic modelling.
  1237. [quart]
  1238. description = A Python ASGI web microframework with the same API as Flask
  1239. [quiver-engine]
  1240. description = Interactive per-layer visualization for convents in keras
  1241. [radon]
  1242. description = Code Metrics in Python
  1243. [rasterio]
  1244. description = Fast and direct raster I/O for use with Numpy and SciPy
  1245. [ray]
  1246. description = A system for parallel and distributed Python that unifies the ML ecosystem.
  1247. [readme-renderer]
  1248. description = readme_renderer is a library for rendering "readme" descriptions for Warehouse
  1249. [recommonmark]
  1250. description = A docutils-compatibility bridge to CommonMark, enabling you to write CommonMark inside of Docutils & Sphinx projects.
  1251. [redis]
  1252. description = Python client for Redis key-value store
  1253. [regex]
  1254. description = Alternative regular expression module, to replace re.
  1255. [reportlab]
  1256. description = The Reportlab Toolkit
  1257. [requests]
  1258. description = Python HTTP for Humans.
  1259. [requests-file]
  1260. description = File transport adapter for Requests
  1261. [requests-ftp]
  1262. description = FTP Transport Adapter for Requests.
  1263. [requests-threads]
  1264. description = A Requests session that returns awaitable Twisted Deferreds instead of response objects.
  1265. [requests-toolbelt]
  1266. description = A utility belt for advanced users of python-requests
  1267. [requests-oauthlib]
  1268. description = OAuthlib authentication support for Requests.
  1269. [responder]
  1270. description = A sorta familiar HTTP framework.
  1271. [retrying]
  1272. description = Retrying
  1273. [rfc3986]
  1274. description = Validating URI References per RFC 3986
  1275. [rise]
  1276. description = Reveal.js - Jupyter/IPython Slideshow Extension
  1277. [rodeo]
  1278. description = an ide for data analysis in python
  1279. [rope]
  1280. description = a python refactoring library...
  1281. [rope-py3k]
  1282. description = a python refactoring library...
  1283. [rpy2]
  1284. description = Python interface to the R language (embedded R)
  1285. [rsa]
  1286. description = Pure-Python RSA implementation
  1287. [rst2pdf]
  1288. description = Convert reStructured Text to PDF via ReportLab.
  1289. [rtree]
  1290. description = R-Tree spatial index for Python GIS
  1291. [ruamel-yaml]
  1292. description = a YAML parser/emitter that supports roundtrip preservation of comments, seq/map flow style, and map key order
  1293. [ruamel-yaml-clib]
  1294. description = C version of reader, parser and emitter for ruamel.yaml derived from libyaml
  1295. [runipy]
  1296. description = Run IPython notebooks from the command line
  1297. [rx]
  1298. description = Reactive Extensions (Rx) for Python
  1299. [s3fs]
  1300. description = Convenient Filesystem interface over S3
  1301. [s3transfer]
  1302. description = An Amazon S3 Transfer Manager
  1303. [sasl]
  1304. description = Cyrus-SASL bindings for Python
  1305. [schemapi]
  1306. description = schemapi: generate Python APIs from JSONSchema specifications
  1307. [scidoc]
  1308. description = Scidoc installs scientific Python libraries documentation
  1309. [scikits-audiolab]
  1310. description = Audio file I/O using NumPy arrays
  1311. [scikits-timeseries]
  1312. description = Time series manipulation
  1313. [scikit-fuzzy]
  1314. description = Fuzzy logic toolkit for SciPy
  1315. [scikit-garden]
  1316. description = A garden of scikit-learn compatible trees
  1317. [scikit-learn]
  1318. description = A set of python modules for machine learning and data mining
  1319. category = scientific
  1320. [scikit-image]
  1321. description = Image processing routines for SciPy
  1322. category = improc
  1323. [scikit-neuralnetwork]
  1324. description = Deep neural networks without the learning cliff! A wrapper library compatible with scikit-learn.
  1325. [scikit-optimize]
  1326. description = Sequential model-based optimization toolbox.
  1327. [scilab2py]
  1328. description = Python to Scilab bridge
  1329. [scilab-kernel]
  1330. description = A Jupyter kernel for Scilab.
  1331. [scipy]
  1332. description = SciPy: Scientific Library for Python
  1333. [scrapy]
  1334. description = A high-level Python Screen Scraping framework
  1335. [scs]
  1336. description = scs: splitting conic solver
  1337. [seaborn]
  1338. description = seaborn: statistical data visualization
  1339. [semantic-version]
  1340. description = A library implementing the 'SemVer' scheme.
  1341. [send2trash]
  1342. description = Send file to trash natively under Mac OS X, Windows and Linux.
  1343. [service-identity]
  1344. description = Service identity verification for pyOpenSSL.
  1345. [setuptools]
  1346. description = Easily download, build, install, upgrade, and uninstall Python packages
  1347. [setuptools-git]
  1348. description = Setuptools revision control system plugin for Git
  1349. [sframe]
  1350. description = SFrame is an scalable, out-of-core dataframe, which allows you to work with datasets that are larger than the amount of RAM on your system.
  1351. [sgp4]
  1352. description = Track earth satellite TLE orbits using up-to-date 2010 version of SGP4
  1353. [shap]
  1354. description = A unified approach to explain the output of any machine learning model.
  1355. [shapely]
  1356. description = Geometric objects, predicates, and operations
  1357. [shiboken2]
  1358. description = Python / C++ bindings helper module
  1359. [simpervisor]
  1360. description = Simple async process supervisor
  1361. [simplegeneric]
  1362. description = Simple generic functions (similar to Python's own len(), pickle.dump(), etc.)
  1363. [simplejson]
  1364. description = Simple, fast, extensible JSON encoder/decoder for Python
  1365. [simpy]
  1366. description = Event discrete, process based simulation for Python.
  1367. [singledispatch]
  1368. description = This library brings functools.singledispatch from Python 3.4 to Python 2.6-3.3.
  1369. [sip]
  1370. description = A Python bindings generator for C/C++ libraries
  1371. [six]
  1372. description = Python 2 and 3 compatibility utilities
  1373. [sklearn-theano]
  1374. description = Scikit-learn compatible tools using theano
  1375. [skll]
  1376. description = SciKit-Learn Laboratory makes it easier to run machine learning experiments with scikit-learn.
  1377. [skorch]
  1378. description = scikit-learn compatible neural network library for pytorch
  1379. [skyfield]
  1380. description = Elegant astronomy for Python
  1381. [smmap]
  1382. description = A pure Python implementation of a sliding window memory map manager
  1383. [smmap2]
  1384. description = A mirror package for smmap
  1385. [snakeviz]
  1386. description = A web-based viewer for Python profiler output
  1387. [sniffio]
  1388. description = Sniff out which async library your code is running under
  1389. [snowballstemmer]
  1390. description = This package provides 26 stemmers for 25 languages generated from Snowball algorithms.
  1391. [snuggs]
  1392. description = Snuggs are s-expressions for Numpy
  1393. [sortedcollections]
  1394. description = Python Sorted Collections
  1395. [sortedcontainers]
  1396. description = Sorted Containers -- Sorted List, Sorted Dict, Sorted Set
  1397. [sounddevice]
  1398. description = Play and Record Sound with Python
  1399. [soupsieve]
  1400. description = A modern CSS selector implementation for Beautiful Soup.
  1401. [spacy]
  1402. description = Industrial-strength Natural Language Processing (NLP) in Python
  1403. [sparse]
  1404. description = Sparse n-dimensional arrays
  1405. [sphinx]
  1406. description = Tool for generating documentation which uses reStructuredText as its markup language
  1407. [sphinxcontrib-applehelp]
  1408. description = sphinxcontrib-applehelp is a sphinx extension which outputs Apple help books
  1409. [sphinxcontrib-devhelp]
  1410. description = sphinxcontrib-devhelp is a sphinx extension which outputs Devhelp document.
  1411. [sphinxcontrib-htmlhelp]
  1412. description = sphinxcontrib-htmlhelp is a sphinx extension which renders HTML help files
  1413. [sphinxcontrib-jsmath]
  1414. description = A sphinx extension which renders display math in HTML via JavaScript
  1415. [sphinxcontrib-qthelp]
  1416. description = sphinxcontrib-qthelp is a sphinx extension which outputs QtHelp document.
  1417. [sphinxcontrib-websupport]
  1418. description = Sphinx API for Web Apps
  1419. [sphinxcontrib-serializinghtml]
  1420. description = sphinxcontrib-serializinghtml is a sphinx extension which outputs "serialized" HTML files (json and pickle).
  1421. [sphinx-rtd-theme]
  1422. description = Read the Docs theme for Sphinx
  1423. [spyder]
  1424. description = The Scientific Python Development Environment
  1425. [spyder-kernels]
  1426. description = Jupyter kernels for Spyder's console
  1427. [spyder-notebook]
  1428. description = Jupyter notebook integration with Spyder
  1429. [spyder-reports]
  1430. description = Spyder-IDE plugin for Markdown reports using Pweave.
  1431. [spyder-terminal]
  1432. description = Spyder Plugin for displaying a virtual terminal (OS independent) inside the main Spyder window
  1433. [spyder-line-profiler]
  1434. description = Plugin for the Spyder IDE that integrates the Python line profiler.
  1435. [spyder-memory-profiler]
  1436. description = Plugin for the Spyder IDE that integrates the Python memory profiler
  1437. [spyder-autopep8]
  1438. description = A plugin to run the autopep8 python linter from within the spyder editor
  1439. [sqlalchemy]
  1440. description = Database Abstraction Library
  1441. [sqlite-bro]
  1442. description = a graphic SQLite Client in 1 Python file
  1443. [sqlite-web]
  1444. description = Web-based SQLite database browser.
  1445. [sqlparse]
  1446. description = Non-validating SQL parser
  1447. [starlette]
  1448. description = The little ASGI library that shines.
  1449. [statsmodels]
  1450. description = Statistical computations and models for Python
  1451. [stormhttp]
  1452. description = Lightning-fast asynchronous web framework for Python 3.5+
  1453. [streamlite]
  1454. description = Frontend library for machine learning engineers
  1455. [streamz]
  1456. description = Streams
  1457. [supersmoother]
  1458. description = Python implementation of Friedman's Supersmoother
  1459. [swifter]
  1460. description = A package which efficiently applies any function to a pandas dataframe or series in the fastest available manner
  1461. [sympy]
  1462. description = Computer algebra system (CAS) in Python
  1463. [tables]
  1464. description = Hierarchical datasets for Python
  1465. [tabulate]
  1466. description = Pretty-print tabular data
  1467. [tblib]
  1468. description = Traceback serialization library.
  1469. [tb-nightly]
  1470. description = TensorBoard lets you watch Tensors Flow
  1471. [tenacity]
  1472. description = Retry code until it succeeds
  1473. [tensorboard]
  1474. description = TensorBoard lets you watch Tensors Flow
  1475. [tensorflow]
  1476. description = TensorFlow is an open source machine learning framework for everyone.
  1477. [tensorflow-cpu]
  1478. description = TensorFlow is an open source machine learning framework for everyone.
  1479. [tensorflow-estimator]
  1480. description = TensorFlow Estimator.
  1481. [tensorflow-plugin-wit]
  1482. description = What-If Tool TensorBoard plugin.
  1483. [tensorflow-probability]
  1484. description = Probabilistic modeling and statistical inference in TensorFlow
  1485. [tensorflow-tensorboard]
  1486. description = TensorBoard lets you watch Tensors Flow
  1487. [termcolor]
  1488. description = ANSII Color formatting for output in terminal.
  1489. [terminado]
  1490. description = Terminals served to xterm.js using Tornado websockets
  1491. [terminaltables]
  1492. description = Generate simple tables in terminals from a nested list of strings.
  1493. [testfixtures]
  1494. description = A collection of helpers and mock objects for unit tests and doc tests.
  1495. [testpath]
  1496. description = Test utilities for code working with files and commands
  1497. [textwrap3]
  1498. description = textwrap from Python 3.6 backport (plus a few tweaks)
  1499. [tf-estimator-nightly]
  1500. description = TensorFlow Estimator.
  1501. [thinc]
  1502. description = Practical Machine Learning for NLP
  1503. [theano]
  1504. description = Optimizing compiler for evaluating mathematical expressions on CPUs and GPUs.
  1505. [thrift]
  1506. description = Python bindings for the Apache Thrift RPC system
  1507. [thriftpy]
  1508. description = Pure python implementation of Apache Thrift.
  1509. [thrift-sasl]
  1510. description = Thrift SASL Python module that implements SASL transports for Thrift (`TSaslClientTransport`).
  1511. [toml]
  1512. description = Python Library for Tom's Obvious, Minimal Language
  1513. [toolz]
  1514. description = List processing tools and functional utilities
  1515. [torch]
  1516. description = Tensors and Dynamic neural networks in Python with strong GPU acceleration
  1517. [torchfile]
  1518. description = Torch7 binary serialized file parser
  1519. [torchvision]
  1520. description = image and video datasets and models for torch deep learning
  1521. [tornado]
  1522. description = Tornado is a Python web framework and asynchronous networking library, originally developed at FriendFeed.
  1523. [tpot]
  1524. description = Tree-based Pipeline Optimization Tool
  1525. [tqdm]
  1526. description = Fast, Extensible Progress Meter
  1527. [traitlets]
  1528. description = Traitlets Python config system
  1529. [traits]
  1530. description = Explicitly typed attributes for Python
  1531. [traitsui]
  1532. description = traitsui: traits-capable user interfaces
  1533. [traittypes]
  1534. description = Scipy trait types
  1535. [tranquilizer]
  1536. description = Put your functions to REST
  1537. [trio]
  1538. description = A friendly Python library for async concurrency and I/O
  1539. [trio-asyncio]
  1540. description = A re-implementation of the asyncio mainloop on top of Trio
  1541. [ttfquery]
  1542. description = FontTools-based package for querying system fonts
  1543. [tweepy]
  1544. description = Twitter library for python
  1545. [twine]
  1546. description = Collection of utilities for publishing packages on PyPI
  1547. [twisted]
  1548. description = An asynchronous networking framework written in Python
  1549. [twitter]
  1550. description = An API and command-line toolset for Twitter (twitter.com)
  1551. [twython]
  1552. description = Actively maintained, pure Python wrapper for the Twitter API. Supports both normal and streaming Twitter APIs
  1553. [typed-ast]
  1554. description = a fork of Python 2 and 3 ast modules with type comment support
  1555. [typing]
  1556. description = Type Hints for Python
  1557. [typing-extensions]
  1558. description = Backported and Experimental Type Hints for Python 3.5+
  1559. [tzlocal]
  1560. description = tzinfo object for the local timezone
  1561. [uarray]
  1562. description = Array interface object for Python with pluggable backends and a multiple-dispatchmechanism for defining down-stream functions
  1563. [uncertainties]
  1564. description = Transparent calculations with uncertainties on the quantities involved (aka error propagation); fast calculation of derivatives
  1565. [uritemplate]
  1566. description = URI templates
  1567. [urllib3]
  1568. description = HTTP library with thread-safe connection pooling, file post, and more.
  1569. [usjon]
  1570. description = Ultra fast JSON encoder and decoder for Python
  1571. [uvicorn]
  1572. description = The lightning-fast ASGI server.
  1573. [uvloop]
  1574. description = Fast implementation of asyncio event loop on top of libuv
  1575. [validators]
  1576. description = Python Data Validation for Humans&#8482;.
  1577. [vectormath]
  1578. description = vectormath: vector math utilities for Python
  1579. [vega]
  1580. description = A Jupyter widget for Vega 5 and Vega-Lite 4
  1581. [vega-datasets]
  1582. description = A Python package for offline access to Vega datasets
  1583. [vega3]
  1584. description = Deprecated: please use vega
  1585. [verboselogs]
  1586. description = Verbose logging level for Python's logging module
  1587. [vispy]
  1588. description = Interactive visualization in Python
  1589. [visdom]
  1590. description = A tool for visualizing live, rich data for Torch and Numpy
  1591. [vitables]
  1592. description = A viewer for PyTables package
  1593. [voila]
  1594. description = Serving read-only live Jupyter notebooks
  1595. [voila-vuetify]
  1596. description = A vuetify template for Voila
  1597. [vpython]
  1598. description = VPython for Jupyter Notebook
  1599. [vtk]
  1600. description = VTK is an open-source toolkit for 3D computer graphics, image processing, and visualization
  1601. [watchdog]
  1602. description = Filesystem events monitoring
  1603. [wcwidth]
  1604. description = Measures number of Terminal column cells of wide-character codes
  1605. [webencodings]
  1606. description = Character encoding aliases for legacy web content
  1607. [websockets]
  1608. description = An implementation of the WebSocket Protocol (RFC 6455 & 7692)
  1609. [werkzeug]
  1610. description = The comprehensive WSGI web application library.
  1611. [wheel]
  1612. description = A built-package format for Python
  1613. [wheelhouse-uploader]
  1614. description = Upload wheels to any cloud storage supported by Libcloud
  1615. [whitenoise]
  1616. description = Radically simplified static file serving for WSGI applications
  1617. [whichcraft]
  1618. description = This package provides cross-platform cross-python shutil.which functionality.
  1619. [whoosh]
  1620. description = Fast, pure-Python full text indexing, search, and spell checking library.
  1621. [widgetsnbextension]
  1622. description = IPython HTML widgets for Jupyter
  1623. [winpython]
  1624. description = WinPython distribution tools, including WPPM
  1625. url = http://winpython.github.io/
  1626. [winrt]
  1627. description = Access Windows Runtime APIs from Python
  1628. [win-unicode-console]
  1629. description = Enable Unicode input and display when running Python from Windows console.
  1630. [wordcloud]
  1631. description = A little word cloud generator
  1632. [wpca]
  1633. description = Weighted Principal Component Analysis
  1634. [wrapt]
  1635. description = Module for decorators, wrappers and monkey patching.
  1636. [wsgiref]
  1637. description = WSGI (PEP 333) Reference Library
  1638. [wsproto]
  1639. description = WebSockets state-machine based protocol implementation
  1640. [w3lib]
  1641. description = Library of web-related functions
  1642. [xarray]
  1643. description = N-D labeled arrays and datasets in Python
  1644. [xlrd]
  1645. description = Library for developers to extract data from Microsoft Excel (tm) spreadsheet files
  1646. [xlsxwriter]
  1647. description = A Python module for creating Excel XLSX files.
  1648. [xlwings]
  1649. description = Make Excel fly: Interact with Excel from Python and vice versa.
  1650. [xlwt]
  1651. description = Library to create spreadsheet files compatible with MS Excel 97/2000/XP/2003 XLS files, on any platform, with Python 2.6, 2.7, 3.3+
  1652. [xnd]
  1653. description = General container that maps a wide range of Python values directly to memory.
  1654. [xonsh]
  1655. description = Python-powered, cross-platform, Unix-gazing shell
  1656. [xray]
  1657. description = N-D labeled arrays and datasets in Python
  1658. [yapf]
  1659. description = A formatter for Python code.
  1660. [yarl]
  1661. description = Yet another URL library
  1662. [zarr]
  1663. description = An implementation of chunked, compressed, N-dimensional arrays for Python.
  1664. [zict]
  1665. description = Mutable mapping tools
  1666. [zipp]
  1667. description = Backport of pathlib-compatible object wrapper for zip files
  1668. [z3-solver]
  1669. description = an efficient SMT solver library
  1670. [umap-learn]
  1671. description = Uniform Manifold Approximation and Projection
  1672. [tensorboard-plugin-wit]
  1673. description = What-If Tool TensorBoard plugin.
  1674. [tbb]
  1675. description = Intel(R) Threading Building Blocks
  1676. [geemap]
  1677. description = A Python package for interactive mapping using Google Earth Engine and ipyleaflet
  1678. [earthengine-api]
  1679. description = Earth Engine Python API
  1680. [ipynb-py-convert]
  1681. description = Convert .py files runnable in VSCode/Python or Atom/Hydrogen to jupyter .ipynb notebooks and vice versa
  1682. [google-cloud-storage]
  1683. description = Google Cloud Storage API client library
  1684. [google-auth-httplib2]
  1685. description = Google Authentication Library: httplib2 transport
  1686. [httplib2shim]
  1687. description = A wrapper over urllib3 that matches httplib2's interface
  1688. [google-cloud-core]
  1689. description = Google Cloud API client core library
  1690. [google-resumable-media]
  1691. description = Utilities for Google Media Downloads and Resumable Uploads
  1692. [google-api-core]
  1693. description = Google API client core library
  1694. [googleapis-common-protos]
  1695. description = Common protobufs used in Google APIs
  1696. [pipenv]
  1697. description = Python Development Workflow for Humans.
  1698. [virtualenv-clone]
  1699. description = script to clone virtualenvs.
  1700. [virtualenv]
  1701. description = Virtual Python Environment builder
  1702. [distlib]
  1703. description = Distribution utilities
  1704. [flask-sqlalchemy]
  1705. description = Adds SQLAlchemy support to your Flask application.
  1706. [pipdeptree]
  1707. description = Command line utility to show dependency tree of packages
  1708. [flask-smorest]
  1709. description = Flask/Marshmallow-based REST API framework
  1710. [webargs]
  1711. description = Declarative parsing and validation of HTTP request objects, with built-in support for popular web frameworks, including Flask, Django, Bottle, Tornado, Pyramid, webapp2, Falcon, and aiohttp.
  1712. [pytest-trio]
  1713. description = Pytest plugin for trio
  1714. [poetry]
  1715. description = Python dependency management and packaging made easy.
  1716. [tomlkit]
  1717. description = Style preserving TOML library
  1718. [cachy]
  1719. description = Cachy provides a simple yet effective caching library.
  1720. [cachecontrol]
  1721. description = httplib2 caching for requests
  1722. [cleo]
  1723. description = Cleo allows you to create beautiful and testable command-line interfaces.
  1724. [shellingham]
  1725. description = Tool to Detect Surrounding Shell
  1726. [clikit]
  1727. description = CliKit is a group of utilities to build beautiful and testable command line interfaces.
  1728. [lockfile]
  1729. description = Platform-independent file locking module
  1730. [pylev]
  1731. description = A pure Python Levenshtein implementation that's not freaking GPL'd.
  1732. [pastel]
  1733. description = Bring colors to your terminal.
  1734. [mergedeep]
  1735. description = A deep merge function for &#128013;.
  1736. [botorch]
  1737. description = Bayesian Optimization in PyTorch
  1738. [gpytorch]
  1739. description = An implementation of Gaussian Processes in Pytorch
  1740. [tifffile]
  1741. description = Read and write TIFF(r) files
  1742. [pooch]
  1743. description = Pooch manages your Python library's sample data files: it automatically downloads and stores them in a local directory, with support for versioning and corruption checks.
  1744. [imagecodecs]
  1745. description = Image transformation, compression, and decompression codecs
  1746. [threadpoolctl]
  1747. description = threadpoolctl
  1748. [nlopt]
  1749. description = Library for nonlinear optimization, wrapping many algorithms for global and local, constrained or unconstrained, optimization
  1750. [flaky]
  1751. description = Plugin for nose or pytest that automatically reruns flaky tests.
  1752. [pytest-qt]
  1753. description = pytest support for PyQt and PySide applications
  1754. [pytest-cov]
  1755. description = Pytest plugin for measuring coverage.
  1756. [pytest-ordering]
  1757. description = pytest plugin to run your tests in a specific order
  1758. [pytest-lazy-fixture]
  1759. description = It helps to use fixtures in pytest.mark.parametrize
  1760. [pytest-faulthandler]
  1761. description = py.test plugin that activates the fault handler module for tests (dummy package)
  1762. [pytest-mock]
  1763. description = Thin-wrapper around the mock package for easier use with pytest
  1764. [cachelib]
  1765. description = A collection of cache libraries in the same API interface.
  1766. [flask-session]
  1767. description = Adds server-side session support to your Flask application
  1768. [python-dotenv]
  1769. description = Add .env support to your django/flask apps in development and deployments
  1770. [httpie]
  1771. description = HTTPie - a CLI, cURL-like tool for humans.
  1772. [flask-mail]
  1773. description = Flask extension for sending email