\n",
266 | " "
267 | ]
268 | },
269 | "metadata": {},
270 | "execution_count": 11
271 | }
272 | ]
273 | },
274 | {
275 | "cell_type": "code",
276 | "source": [
277 | "agent = create_pandas_dataframe_agent(OpenAI(temperature=0), df, verbose=True)"
278 | ],
279 | "metadata": {
280 | "id": "_CKCD9mLL1lv"
281 | },
282 | "execution_count": 8,
283 | "outputs": []
284 | },
285 | {
286 | "cell_type": "code",
287 | "source": [
288 | "agent.run(\"what are the best packages for data visualization?\")"
289 | ],
290 | "metadata": {
291 | "colab": {
292 | "base_uri": "https://localhost:8080/",
293 | "height": 642
294 | },
295 | "id": "4IT-G0IiMaU8",
296 | "outputId": "98183627-8d42-4eb0-dca0-c53edfb23099"
297 | },
298 | "execution_count": 10,
299 | "outputs": [
300 | {
301 | "output_type": "stream",
302 | "name": "stdout",
303 | "text": [
304 | "\n",
305 | "\n",
306 | "\u001b[1m> Entering new AgentExecutor chain...\u001b[0m\n",
307 | "\u001b[32;1m\u001b[1;3mThought: I need to find packages that are related to data visualization\n",
308 | "Action: python_repl_ast\n",
309 | "Action Input: df[df['summary'].str.contains('visualization')]\u001b[0m\n",
310 | "Observation: \u001b[36;1m\u001b[1;3mCannot mask with non-boolean array containing NA / NaN values\u001b[0m\n",
311 | "Thought:\u001b[32;1m\u001b[1;3m I need to filter out the NA/NaN values\n",
312 | "Action: python_repl_ast\n",
313 | "Action Input: df[df['summary'].str.contains('visualization', na=False)]\u001b[0m\n",
314 | "Observation: \u001b[36;1m\u001b[1;3m package_name version summary \\\n",
315 | "62 altair 3.2.0 Altair: A declarative statistical visualizatio... \n",
316 | "145 datashader 0.7.0 Data visualization toolchain based on aggregat... \n",
317 | "224 graphviz 0.8.4 Open Source graph visualization software. \n",
318 | "317 missingno 0.4.2 Missing data visualization module for Python. \n",
319 | "425 pyLDAvis 2.1.2 Interactive topic model visualization. Port of... \n",
320 | "519 seaborn 0.9.0 Statistical data visualization \n",
321 | "604 vida 0.3 Python binding for Vida data visualizations \n",
322 | "605 visvis 1.11.2 An object oriented approach to visualization o... \n",
323 | "607 vtk 8.1.2 VTK is an open-source toolkit for 3D computer ... \n",
324 | "\n",
325 | " license metadata_source \n",
326 | "62 BSD 3-clause PyPI \n",
327 | "145 BSD-3-Clause Anaconda \n",
328 | "224 EPL v1.0 Anaconda \n",
329 | "317 NaN PyPI \n",
330 | "425 MIT PyPI \n",
331 | "519 BSD 3-Clause Anaconda \n",
332 | "604 UNKNOWN PyPI \n",
333 | "605 BSD 3-Clause Anaconda \n",
334 | "607 BSD PyPI \u001b[0m\n",
335 | "Thought:\u001b[32;1m\u001b[1;3m I now know the best packages for data visualization\n",
336 | "Final Answer: altair, datashader, graphviz, missingno, pyLDAvis, seaborn, vida, visvis, and vtk.\u001b[0m\n",
337 | "\n",
338 | "\u001b[1m> Finished chain.\u001b[0m\n"
339 | ]
340 | },
341 | {
342 | "output_type": "execute_result",
343 | "data": {
344 | "text/plain": [
345 | "'altair, datashader, graphviz, missingno, pyLDAvis, seaborn, vida, visvis, and vtk.'"
346 | ],
347 | "application/vnd.google.colaboratory.intrinsic+json": {
348 | "type": "string"
349 | }
350 | },
351 | "metadata": {},
352 | "execution_count": 10
353 | }
354 | ]
355 | },
356 | {
357 | "cell_type": "code",
358 | "source": [
359 | "agent.run(\"what are the best packages for web scraping?\")"
360 | ],
361 | "metadata": {
362 | "id": "3Fg6GOEHKK1G",
363 | "outputId": "30e6e0b7-c73a-4121-cfc7-237a4e5a0d98",
364 | "colab": {
365 | "base_uri": "https://localhost:8080/",
366 | "height": 573
367 | }
368 | },
369 | "execution_count": 12,
370 | "outputs": [
371 | {
372 | "output_type": "stream",
373 | "name": "stdout",
374 | "text": [
375 | "\n",
376 | "\n",
377 | "\u001b[1m> Entering new AgentExecutor chain...\u001b[0m\n",
378 | "\u001b[32;1m\u001b[1;3mThought: I need to find packages related to web scraping\n",
379 | "Action: python_repl_ast\n",
380 | "Action Input: df[df['summary'].str.contains('web scraping', case=False)]\u001b[0m\n",
381 | "Observation: \u001b[36;1m\u001b[1;3mCannot mask with non-boolean array containing NA / NaN values\u001b[0m\n",
382 | "Thought:\u001b[32;1m\u001b[1;3m I need to remove NA/NaN values\n",
383 | "Action: python_repl_ast\n",
384 | "Action Input: df[df['summary'].str.contains('web scraping', case=False)].dropna()\u001b[0m\n",
385 | "Observation: \u001b[36;1m\u001b[1;3mCannot mask with non-boolean array containing NA / NaN values\u001b[0m\n",
386 | "Thought:\u001b[32;1m\u001b[1;3m I need to find packages related to web scraping\n",
387 | "Action: python_repl_ast\n",
388 | "Action Input: df[df['summary'].str.contains('web scraping', case=False)].dropna()['package_name']\u001b[0m\n",
389 | "Observation: \u001b[36;1m\u001b[1;3mCannot mask with non-boolean array containing NA / NaN values\u001b[0m\n",
390 | "Thought:\u001b[32;1m\u001b[1;3m I need to find packages related to web scraping\n",
391 | "Action: python_repl_ast\n",
392 | "Action Input: df[df['summary'].str.contains('web scraping', case=False)].dropna()['package_name'].values\u001b[0m\n",
393 | "Observation: \u001b[36;1m\u001b[1;3mCannot mask with non-boolean array containing NA / NaN values\u001b[0m\n",
394 | "Thought:\u001b[32;1m\u001b[1;3m I need to find packages related to web scraping\n",
395 | "Action: python_repl_ast\n",
396 | "Action Input: df[df['summary'].str.contains('web scraping', case=False)].dropna()['package_name'].values.tolist()\u001b[0m\n",
397 | "Observation: \u001b[36;1m\u001b[1;3mCannot mask with non-boolean array containing NA / NaN values\u001b[0m\n",
398 | "Thought:\u001b[32;1m\u001b[1;3m I need to find packages related to web scraping\n",
399 | "Action: python_repl_ast\n",
400 | "Action Input: df[df['summary'].str.contains('web scraping', na=False)].dropna()['package_name'].values.tolist()\u001b[0m\n",
401 | "Observation: \u001b[36;1m\u001b[1;3m[]\u001b[0m\n",
402 | "Thought:\u001b[32;1m\u001b[1;3m There are no packages related to web scraping in this dataframe\n",
403 | "Final Answer: There are no packages related to web scraping in this dataframe.\u001b[0m\n",
404 | "\n",
405 | "\u001b[1m> Finished chain.\u001b[0m\n"
406 | ]
407 | },
408 | {
409 | "output_type": "execute_result",
410 | "data": {
411 | "text/plain": [
412 | "'There are no packages related to web scraping in this dataframe.'"
413 | ],
414 | "application/vnd.google.colaboratory.intrinsic+json": {
415 | "type": "string"
416 | }
417 | },
418 | "metadata": {},
419 | "execution_count": 12
420 | }
421 | ]
422 | },
423 | {
424 | "cell_type": "code",
425 | "source": [],
426 | "metadata": {
427 | "id": "KkQg36fWK0S0"
428 | },
429 | "execution_count": null,
430 | "outputs": []
431 | }
432 | ]
433 | }
--------------------------------------------------------------------------------
/package-manifest.csv:
--------------------------------------------------------------------------------
1 | package_name,version,summary,license,metadata_source
2 | Babel,2.7.0,Internationalization utilities,BSD,PyPI
3 | Baker,1.3,"Easy, powerful access to Python functions from the command line",Apache 2.0,PyPI
4 | Boruta,0.3,Python Implementation of Boruta Feature Selection,BSD 3 clause,PyPI
5 | Bottleneck,1.2.1,Fast NumPy array functions written in C,Simplified BSD,PyPI
6 | CVXcanon,0.1.1,"A low-level library to perform the matrix building step in cvxpy, a convex optimization modeling software.",GPLv3,PyPI
7 | CairoSVG,2.4.1,A Simple SVG Converter based on Cairo,LGPLv3+,PyPI
8 | Cartopy,0.17.0,A cartographic python library with Matplotlib support for visualisation,LGPLv3,PyPI
9 | Click,7.0,Composable command line interface toolkit,BSD,PyPI
10 | ConfigArgParse,0.14.0,A drop-in replacement for argparse that allows options to also be set via config files and/or environment variables.,MIT,PyPI
11 | Cython,0.29.13,The Cython compiler for writing C extensions for the Python language.,Apache,PyPI
12 | Delorean,1.0.0,library for manipulating datetimes with ease and clarity,MIT license,PyPI
13 | Deprecated,1.2.6,"Python @deprecated decorator to deprecate old python classes, functions or methods.",MIT,PyPI
14 | Fiona,1.8.6,Fiona reads and writes spatial data files,BSD,PyPI
15 | Flask,1.1.1,A simple framework for building complex web applications.,BSD-3-Clause,PyPI
16 | Flask-Cors,3.0.8,A Flask extension adding a decorator for CORS support,MIT,PyPI
17 | Geohash,1.0,Module to decode/encode Geohashes to/from latitude and longitude.,GNU Affero GPL.,PyPI
18 | ImageHash,4.0,Image Hashing library,BSD 2-clause (see LICENSE file),PyPI
19 | Janome,0.3.9,Japanese morphological analysis engine.,AL2,PyPI
20 | Jinja2,2.10.1,A small but fast and easy to use stand-alone template engine written in pure python.,BSD,PyPI
21 | Keras,2.2.4,Deep Learning for humans,MIT,PyPI
22 | Keras-Applications,1.0.8,Reference implementations of popular deep learning models,MIT,PyPI
23 | Keras-Preprocessing,1.1.0,Easy data preprocessing and data augmentation for deep learning models,MIT,PyPI
24 | Lasagne,0.2.dev1,A lightweight library to build and train neural networks in Theano,MIT,PyPI
25 | Mako,1.1.0,A super-fast templating language that borrows the best ideas from the existing templating languages.,MIT,PyPI
26 | Markdown,3.1.1,Python implementation of Markdown.,BSD License,PyPI
27 | MarkupSafe,1.1.1,Safely add untrusted strings to HTML/XML markup.,BSD-3-Clause,PyPI
28 | PDPbox,0.2.0+13.g73c6966,python partial dependence plot toolbox,MIT,PyPI
29 | Pillow,5.4.1,Python Imaging Library (Fork),,PyPI
30 | PyArabic,0.6.5,Arabic text tools for Python,GPL,PyPI
31 | PyAstronomy,0.13.0,A collection of astronomy related tools for Python.,,PyPI
32 | PyBrain,0.3.3,PyBrain is the Swiss army knife for neural networking.,BSD,PyPI
33 | PyOpenGL,3.1.0,Standard OpenGL bindings for Python,BSD,PyPI
34 | PyPrind,2.11.2,Python Progress Bar and Percent Indicator Utility,BSD 3-Clause,PyPI
35 | PySocks,1.7.0,A Python SOCKS client module. See https://github.com/Anorov/PySocks for more information.,BSD,PyPI
36 | PyUpSet,0.1.1.post7,Python implementation of the UpSet visualisation suite by Lex et al.,MIT,PyPI
37 | PyWavelets,1.0.3,"PyWavelets, wavelet transform module",MIT,PyPI
38 | PyYAML,5.1.2,YAML parser and emitter for Python,MIT,PyPI
39 | Pygments,2.4.2,Pygments is a syntax highlighting package written in Python.,BSD License,PyPI
40 | Pympler,0.7,"A development tool to measure, monitor and analyze the memory behavior of Python objects.","Apache License, Version 2.0",PyPI
41 | Pyphen,0.9.5,Pure Python module to hyphenate text,,PyPI
42 | QtAwesome,0.5.7,FontAwesome icons in PyQt and PySide applications,MIT,PyPI
43 | QtPy,1.9.0,"Provides an abstraction layer on top of the various Qt bindings (PyQt5, PyQt4 and PySide) and additional custom QWidgets.",MIT,PyPI
44 | Rtree,0.8.3,R-Tree spatial index for Python GIS,LGPL,PyPI
45 | SQLAlchemy,1.3.7,Database Abstraction Library,MIT,PyPI
46 | SecretStorage,3.1.1,Python bindings to FreeDesktop.org Secret Service API,BSD 3-Clause License,PyPI
47 | Send2Trash,1.5.0,"Send file to trash natively under Mac OS X, Windows and Linux.",BSD License,PyPI
48 | Shapely,1.6.4.post2,"Geometric objects, predicates, and operations",BSD,PyPI
49 | SimpleITK,1.2.2,SimpleITK is a simplified interface to the Insight Toolkit (ITK) for image registration and segmentation,Apache,PyPI
50 | SoundFile,0.10.2,"An audio library based on libsndfile, CFFI and NumPy",BSD 3-Clause License,PyPI
51 | Sphinx,2.1.2,Python documentation generator,BSD,PyPI
52 | TPOT,0.10.2,Tree-based Pipeline Optimization Tool,GNU/LGPLv3,PyPI
53 | Theano,1.0.4+12.g93e8180bf,Optimizing compiler for evaluating mathematical expressions on CPUs and GPUs.,BSD,PyPI
54 | Unidecode,1.1.1,ASCII transliterations of Unicode text,GPL,PyPI
55 | Wand,0.5.3,Ctypes-based simple MagickWand API binding for Python,MIT License,PyPI
56 | Werkzeug,0.15.5,The comprehensive WSGI web application library.,BSD-3-Clause,PyPI
57 | Wordbatch,1.4.0,"Python library for distributed AI processing pipelines, using swappable scheduler backends",GNU GPL 2.0,PyPI
58 | XlsxWriter,1.1.8,A Python module for creating Excel XLSX files.,BSD,PyPI
59 | absl-py,0.7.1,"Abseil Python Common Libraries, see https://github.com/abseil/abseil-py.",Apache 2.0,PyPI
60 | alabaster,0.7.12,"Configurable, Python 2+3 compatible Sphinx theme.",BSD 3-Clause,Anaconda
61 | albumentations,0.3.1,Fast image augmentation library and easy to use wrapper around other libraries,MIT,PyPI
62 | alembic,1.0.11,A database migration tool for SQLAlchemy.,MIT,Anaconda
63 | allennlp,0.8.4,"An open-source NLP research library, built on PyTorch.",Apache,PyPI
64 | altair,3.2.0,Altair: A declarative statistical visualization library for Python.,BSD 3-clause,PyPI
65 | anaconda-client,1.7.2,anaconda.org command line client library,BSD 3-clause,Anaconda
66 | anaconda-navigator,1.9.7,Anaconda Navigator,"proprietary - Continuum Analytics, Inc.",Anaconda
67 | anaconda-project,0.8.3,"Tool for encapsulating, running, and reproducing data science projects",BSD 3-Clause,Anaconda
68 | annoy,1.15.2,Approximate Nearest Neighbors in C++/Python optimized for memory usage and loading/saving to disk.,Apache License 2.0,PyPI
69 | appdirs,1.4.3,A small Python module for determining appropriate platform-specific dirs.,MIT,Anaconda
70 | arrow,0.14.5,Better dates & times for Python.,Apache-2.0,Anaconda
71 | asn1crypto,0.24.0,Python ASN.1 library with a focus on performance and a pythonic API,MIT,Anaconda
72 | astor,0.8.0,Read/rewrite/write Python ASTs,BSD-3-Clause,PyPI
73 | astroid,2.2.5,A abstract syntax tree for Python with inference support.,LGPL 2.1,Anaconda
74 | astropy,3.2.1,Community-developed Python Library for Astronomy,BSD,Anaconda
75 | atomicwrites,1.3.0,Atomic file writes,MIT,Anaconda
76 | attrs,19.1.0,attrs is the Python package that will bring back the joy of writing classes by relieving you from the drudgery of implementing object protocols (aka dunder methods).,MIT,Anaconda
77 | audioread,2.1.8,"multi-library, cross-platform audio decoding",MIT,PyPI
78 | backcall,0.1.0,Specifications for callback functions passed in to an API,BSD-3-Clause,Anaconda
79 | backports.functools-lru-cache,1.5,backports.functools_lru_cache,,PyPI
80 | backports.os,0.1.1,Backport of new features in Python's os module,Python Software Foundation,Anaconda
81 | backports.shutil-get-terminal-size,1.0.0,A backport of the get_terminal_size function from Python 3.3's shutil.,MIT,PyPI
82 | backports.tempfile,1.0,Backport of new features in Python's tempfile module,Python Software Foundation License,PyPI
83 | backports.weakref,1.0.post1,Backport of new features in Python's weakref module,Python-2.0,Anaconda
84 | basemap,1.2.0,Plot on map projections using matplotlib,MIT,Anaconda
85 | bayesian-optimization,1.0.2,Bayesian Optimization package,,PyPI
86 | bayespy,0.5.18,Variational Bayesian inference tools for Python,,PyPI
87 | bcolz,1.2.1,A columnar data container that can be compressed,MIT,Anaconda
88 | beautifulsoup4,4.8.0,Python library designed for screen-scraping,MIT,Anaconda
89 | biopython,1.74,Collection of freely available tools for computational molecular biology,Biopython License Agreement,Anaconda
90 | bitarray,1.0.1,efficient arrays of booleans -- C extension,PSF,Anaconda
91 | bkcharts,0.2,High level chart types built on top of Bokeh,BSD 3-Clause,Anaconda
92 | bleach,3.1.0,"Easy, whitelist-based HTML-sanitizing tool",Apache-2.0,Anaconda
93 | blis,0.2.4,"The Blis BLAS-like linear algebra library, as a self-contained C-extension.",BSD,PyPI
94 | blist,1.3.6,Replacement for Python lists with better performance,BSD 3-clause,Anaconda
95 | bokeh,1.3.4,Statistical and novel interactive HTML plots for Python,BSD 3-Clause,Anaconda
96 | boto,2.49.0,Amazon Web Services Library,MIT,Anaconda
97 | boto3,1.9.212,Amazon Web Services SDK for Python,Apache 2.0,Anaconda
98 | botocore,1.12.212,"Low-level, data-driven core of boto 3.",Apache 2.0,Anaconda
99 | bq-helper,0.4.1,,,
100 | branca,0.3.1,Generate complex HTML+JS pages with Python,"Copyright (C) 2013, Martin Journois",PyPI
101 | brewer2mpl,1.4.1,Connect colorbrewer2.org color maps to Python and matplotlib,UNKNOWN,PyPI
102 | cachetools,3.1.1,Extensible memoizing collections and decorators,MIT,PyPI
103 | cairocffi,1.0.2,cffi-based cairo bindings for Python,BSD,PyPI
104 | catboost,0.16.5,Catboost Python Package,"Apache License, Version 2.0",PyPI
105 | category-encoders,2.0.0,A collection sklearn transformers to encode categorical variables as numeric,BSD,PyPI
106 | certifi,2019.6.16,Python package for providing Mozilla's CA Bundle.,ISC,Anaconda
107 | cesium,0.9.9,Machine Learning Time-Series Platform,Modified BSD,PyPI
108 | cffi,1.12.3,Foreign Function Interface for Python calling C code.,MIT,Anaconda
109 | chainer,6.2.0,A flexible framework of neural networks,MIT License,Anaconda
110 | chainercv,0.13.1,,,PyPI
111 | chardet,3.0.4,Universal character encoding detector,LGPL2,Anaconda
112 | cleverhans,3.0.1,,MIT,PyPI
113 | click-plugins,1.1.1,An extension module for click to enable registering CLI commands via setuptools entry-points,BSD-3-Clause,Anaconda
114 | cliff,2.15.0,Command Line Interface Formulation Framework,,PyPI
115 | cligj,0.5.0,Click params for commmand line interfaces to GeoJSON.,BSD 3-Clause,Anaconda
116 | cloudpickle,1.2.1,Extended pickling support for Python objects,BSD 3-Clause,Anaconda
117 | clyent,1.2.2,Command line client library for windows and posix,BSD 3-Clause,Anaconda
118 | cmd2,0.9.16,cmd2 - quickly build feature-rich and user-friendly interactive command line applications in Python,MIT,PyPI
119 | cmudict,0.4.3,A versioned python wrapper package for The CMU Pronouncing Dictionary data files.,GPL-3.0,PyPI
120 | colorama,0.4.1,Cross-platform colored terminal text,BSD-3-Clause,Anaconda
121 | colorcet,2.0.1,Collection of perceptually uniform colormaps,CC-BY-4.0,Anaconda
122 | colorlog,4.0.2,Log formatting with colors!,MIT License,PyPI
123 | colorlover,0.3.0,Color scales for IPython notebook,,PyPI
124 | conda,4.7.11,"OS-agnostic, system-level binary package and environment manager.",BSD 3-Clause,Anaconda
125 | conda-build,3.18.9,tools for building conda packages,BSD 3-Clause,Anaconda
126 | conda-package-handling,1.3.11,,,
127 | conda-verify,3.4.2,tool for validating conda recipes and conda packages,BSD 3-Clause,Anaconda
128 | confuse,1.0.0,painless YAML configuration,MIT,PyPI
129 | conllu,0.11,CoNLL-U Parser parses a CoNLL-U formatted string into a nested python dictionary,,PyPI
130 | contextlib2,0.5.5,Backports and enhancements for the contextlib module,PSF,Anaconda
131 | convertdate,2.1.3,Converts between Gregorian dates and other calendar systems.,MIT,PyPI
132 | conx,3.7.10,On-Ramp to Deep Learning. Built on Keras,,PyPI
133 | coverage,4.5.4,Code coverage measurement for Python,Apache 2.0,Anaconda
134 | cryptography,2.3.1,Provides cryptographic recipes and primitives to Python developers,"Apache 2.0 or BSD 3-Clause, PSF 2",Anaconda
135 | cssselect2,0.2.1,CSS selectors for Python ElementTree,BSD,PyPI
136 | cufflinks,0.16,Productivity Tools for Plotly + Pandas,MIT,PyPI
137 | cvxpy,1.0.24,A domain-specific language for modeling convex optimization problems in Python.,"Apache License, Version 2.0",PyPI
138 | cycler,0.10.0,Composable style cycles.,BSD 3-Clause,Anaconda
139 | cymem,2.0.2,Manage calls to calloc/free through Cython,MIT,PyPI
140 | cysignals,1.10.2,Interrupt and signal handling for Cython,"GNU Lesser General Public License, version 3 or later",PyPI
141 | cytoolz,0.10.0,Cython implementation of Toolz. High performance functional utilities,BSD-3-Clause,Anaconda
142 | dask,2.3.0,Parallel PyData with Task Scheduling,BSD 3-Clause,Anaconda
143 | dask-glm,0.2.0,Generalized Linear Models in Dask,BSD-3-Clause,Anaconda
144 | dask-ml,1.0.0,Distributed and parallel machine learning using dask.,BSD-3-Clause,Anaconda
145 | dask-xgboost,0.1.7,Interactions between Dask and XGBoost,BSD,PyPI
146 | dataclasses,0.6,A backport of the dataclasses module for Python 3.6,Apache,PyPI
147 | datashader,0.7.0,Data visualization toolchain based on aggregating into a grid,BSD-3-Clause,Anaconda
148 | datashape,0.5.2,A data description language.,BSD 2-Clause,Anaconda
149 | deap,1.3.0,Distributed Evolutionary Algorithms in Python,LGPL,PyPI
150 | decorator,4.4.0,Better living through Python with decorators.,BSD 3-Clause,Anaconda
151 | deepdish,0.3.6,Deep Learning experiments from University of Chicago.,BSD,PyPI
152 | defusedxml,0.6.0,XML bomb protection for Python stdlib modules,PSF 2.0,Anaconda
153 | descartes,1.1.0,Use geometric objects as matplotlib paths and patches,BSD,PyPI
154 | dill,0.3.0,Serialize all of python (almost),BSD 3-Clause,Anaconda
155 | dipy,1.0.0,Diffusion MRI utilities in python,BSD license,PyPI
156 | distributed,2.3.0,Distributed computing with Dask,BSD 3-Clause,Anaconda
157 | docopt,0.6.2,"Pythonic argument parser, that will make you smile",MIT,Anaconda
158 | docutils,0.15.2,Docutils -- Python Documentation Utilities,Public Domain Dedictation and BSD 2-Clause and PSF 2.1.1 and GPL 3.0,Anaconda
159 | dora,0.1,Exploratory data analysis toolkit for Python,MIT,PyPI
160 | ecos,2.0.7.post1,Embedded Conic Solver (ECOS),GPL3,Anaconda
161 | editdistance,0.5.3,Fast implementation of the edit distance(Levenshtein distance),,PyPI
162 | edward,1.3.5,"A library for probabilistic modeling, inference, and criticism",Apache License 2.0,PyPI
163 | eli5,0.10.0,Debug machine learning classifiers and explain their predictions,MIT license,PyPI
164 | emoji,0.5.3,Emoji for Python,New BSD,PyPI
165 | en-core-web-lg,2.1.0,,,
166 | en-core-web-sm,2.1.0,,,
167 | entrypoints,0.3,Discover and load entry points from installed packages.,MIT License,Anaconda
168 | ephem,3.7.7.0,Basic astronomical computations for Python,LGPL,Anaconda
169 | essentia,2.1b5.dev707,"Library for audio and music analysis, description and synthesis",AGPLv3,PyPI
170 | et-xmlfile,1.0.1,An implementation of lxml.xmlfile for the standard library,MIT,PyPI
171 | ethnicolr,0.2.1,Predict Race/Ethnicity Based on Name,MIT,PyPI
172 | fancyimpute,0.5.3,Matrix completion and feature imputation algorithms,http://www.apache.org/licenses/LICENSE-2.0.html,PyPI
173 | fastFM,0.2.11,,BSD,PyPI
174 | fastai,1.0.57,"fastai makes deep learning with PyTorch faster, more accurate, and easier",Apache Software License 2.0,PyPI
175 | fastcache,1.1.0,C implementation of Python 3 lru_cache,MIT,Anaconda
176 | fasteners,0.14.1,A python package that provides useful locks.,ASL 2.0,PyPI
177 | fastprogress,0.1.21,A nested progress with plotting options for fastai,Apache License 2.0,PyPI
178 | fasttext,0.9.1,fasttext Python bindings,MIT,PyPI
179 | fbpca,1.0,Fast computations of PCA/SVD/eigendecompositions via randomized methods,BSD License,PyPI
180 | fbprophet,0.5,Automatic Forecasting Procedure,BSD,PyPI
181 | feather-format,0.4.0,Simple wrapper library to the Apache Arrow-based Feather File Format,"Apache License, Version 2.0",PyPI
182 | featuretools,0.10.0,a framework for automated feature engineering,BSD 3-clause,PyPI
183 | filelock,3.0.12,A platform independent file lock.,Public Domain,Anaconda
184 | fitter,1.1.11,A tool to fit data to many distributions and best one(s),GPL,PyPI
185 | flake8,3.6.0,Your Tool For Style Guide Enforcement,MIT,Anaconda
186 | flashtext,2.7,Extract/Replaces keywords in sentences.,,PyPI
187 | folium,0.10.0,Make beautiful maps with Leaflet.js & Python,MIT,PyPI
188 | fsspec,0.4.0,File-system specification,BSD,PyPI
189 | ftfy,4.4.3,Fixes some problems with Unicode text after the fact,MIT,PyPI
190 | funcsigs,1.0.2,"Python function signatures from PEP362 for Python 2.6, 2.7 and 3.2+",ASL,PyPI
191 | funcy,1.13,A fancy and practical functional tools,BSD,PyPI
192 | fury,0.3.0,Free Unified Rendering in Python,BSD (3-clause),PyPI
193 | future,0.17.1,Clean single-source support for Python 3 and 2,MIT,Anaconda
194 | fuzzywuzzy,0.17.0,Fuzzy string matching in python,GPL,PyPI
195 | gast,0.2.2,Python AST that abstracts the underlying Python version,BSD 3-Clause,PyPI
196 | gatspy,0.3,General tools for Astronomical Time Series in Python,BSD 3-clause,PyPI
197 | gdbn,0.1,Pre-trained deep neural networks,MIT (see license.txt),PyPI
198 | gensim,3.8.0,Topic Modelling for Humans,LGPL-3.0,Anaconda
199 | geographiclib,1.49,The geodesic routines from GeographicLib,MIT,PyPI
200 | geojson,2.5.0,Python bindings and utilities for GeoJSON,BSD,PyPI
201 | geopandas,0.5.1,Geographic pandas extensions,BSD,PyPI
202 | geoplot,0.3.0,High-level geospatial plotting for Python.,,PyPI
203 | geopy,1.20.0,Python Geocoding Toolbox,MIT,PyPI
204 | geoviews,1.6.1,GeoViews is a Python library that makes it easy to explore and visualize geographical datasets.,BSD 3-Clause,PyPI
205 | gevent,1.4.0,Coroutine-based network library,MIT,Anaconda
206 | ggplot,0.11.5,ggplot for python,BSD,PyPI
207 | glmnet-py,0.1.0b2,"Python version of glmnet, originally from Stanford University, modified by Han Fang",GPL-2,PyPI
208 | glob2,0.7,"Version of the glob module that supports recursion via **, and can capture patterns.",BSD-2-Clause,Anaconda
209 | gluoncv,0.4.0.post0,MXNet Gluon CV Toolkit,Apache-2.0,PyPI
210 | gluonnlp,0.8.0,MXNet Gluon NLP Toolkit,Apache-2.0,PyPI
211 | gmpy2,2.0.8,"GMP/MPIR, MPFR, and MPC interface to Python 2.6+ and 3.x",LGPL 3,Anaconda
212 | gnumpy,0.2,"Almost identical to numpy, but does its computations on your computer's GPU, using Cudamat.",BSD-derived (see LICENSE.txt),PyPI
213 | google-api-core,1.14.2,Google API client core library,Apache 2.0,PyPI
214 | google-api-python-client,1.7.11,Google API Client Library for Python,Apache 2.0,PyPI
215 | google-auth,1.6.3,Google Authentication Library,Apache 2.0,PyPI
216 | google-auth-httplib2,0.0.3,Google Authentication Library: httplib2 transport,Apache 2.0,PyPI
217 | google-cloud-automl,0.4.0,Cloud AutoML API client library,Apache 2.0,PyPI
218 | google-cloud-bigquery,1.12.1,Google BigQuery API client library,Apache 2.0,PyPI
219 | google-cloud-core,1.0.3,Google Cloud API client core library,Apache 2.0,PyPI
220 | google-cloud-storage,1.18.0,Google Cloud Storage API client library,Apache 2.0,PyPI
221 | google-pasta,0.1.7,pasta is an AST-based Python refactoring library,Apache 2.0,PyPI
222 | google-resumable-media,0.3.2,Utilities for Google Media Downloads and Resumable Uploads,Apache 2.0,PyPI
223 | googleapis-common-protos,1.6.0,Common protobufs used in Google APIs,Apache-2.0,PyPI
224 | gplearn,0.4.1,"Genetic Programming in Python, with a scikit-learn inspired API",new BSD,PyPI
225 | gpxpy,1.3.5,GPX file parser and GPS track manipulation library,"Apache License, Version 2.0",PyPI
226 | graphviz,0.8.4,Open Source graph visualization software.,EPL v1.0,Anaconda
227 | greenlet,0.4.15,Lightweight in-process concurrent programming,MIT,Anaconda
228 | grpcio,1.23.0,HTTP/2-based RPC framework,Apache License 2.0,PyPI
229 | gym,0.14.0,The OpenAI Gym: A toolkit for developing and comparing your reinforcement learning agents.,,PyPI
230 | h2o,3.26.0.2,hadoop-centric machine learning (core java package),None,Anaconda
231 | h5py,2.9.0,Read and write HDF5 files from Python.,BSD-3-Clause,Anaconda
232 | hallucinate,0.0.1,,,
233 | haversine,2.1.2,Calculate the distance between 2 points on Earth.,['MIT'],PyPI
234 | heamy,0.0.7,A set of useful tools for competitive data science.,MIT,PyPI
235 | heapdict,1.0.0,A heap with decrease-key and increase-key operations,BSD 3-Clause,Anaconda
236 | hep-ml,0.6.0,Machine Learning for High Energy Physics,Apache 2.0,PyPI
237 | hmmlearn,0.2.2,,new BSD,PyPI
238 | holidays,0.9.11,Generate and work with holidays in Python,MIT,PyPI
239 | holoviews,1.12.5,Stop plotting your data - annotate your data and let it visualize itself.,BSD 3-Clause,Anaconda
240 | hpsklearn,0.1.0,Hyperparameter Optimization for sklearn,BSD,PyPI
241 | html5lib,1.0.1,HTML parser based on the WHATWG HTML specification,MIT,Anaconda
242 | htmlmin,0.1.12,An HTML Minifier,BSD,PyPI
243 | httplib2,0.13.1,A comprehensive HTTP client library.,MIT,PyPI
244 | humanize,0.5.1,Python humanize utilities.,MIT,Anaconda
245 | hunspell,0.5.5,Module for the Hunspell spellchecker engine,LGPLv3,PyPI
246 | husl,4.0.3,Human-friendly HSL,MIT,PyPI
247 | hyperopt,0.1.2,Distributed Asynchronous Hyperparameter Optimization,BSD,PyPI
248 | hypertools,0.5.1,A python package for visualizing and manipulating high-dimensional data,MIT,PyPI
249 | hypothesis,4.33.1,A library for property based testing,MPL v2,PyPI
250 | ibis-framework,1.2.0,Productivity-centric Python Big Data Framework,Apache 2.0,Anaconda
251 | idna,2.8,Internationalized Domain Names in Applications (IDNA).,BSD Like,Anaconda
252 | ijson,2.4,Iterative JSON parser with a standard Python iterator interface,BSD,PyPI
253 | imageio,2.5.0,a Python library for reading and writing image data,BSD 2-Clause,Anaconda
254 | imagesize,1.1.0,Getting image size from png/jpeg/jpeg2000/gif file,MIT,Anaconda
255 | imbalanced-learn,0.5.0,Toolbox for imbalanced dataset in machine learning.,MIT,PyPI
256 | imgaug,0.2.6,Image augmentation library for deep neural networks,MIT,PyPI
257 | implicit,0.4.0,Collaborative Filtering for Implicit Datasets,MIT,PyPI
258 | importlib-metadata,0.19,Read metadata from Python packages,Apache Software License,PyPI
259 | ipykernel,5.1.2,IPython Kernel for Jupyter,BSD-3-Clause,Anaconda
260 | ipython,7.7.0,IPython: Productive Interactive Computing,BSD-3-Clause,Anaconda
261 | ipython-genutils,0.2.0,Vestigial utilities from IPython,BSD,PyPI
262 | ipywidgets,7.5.1,Jupyter Interactive Widgets,BSD 3-clause,Anaconda
263 | iso3166,1.0,Self-contained ISO 3166-1 country definitions.,MIT,PyPI
264 | isort,4.3.21,A Python utility,library to sort Python imports.,Anaconda
265 | isoweek,1.3.3,Objects representing a week,BSD,PyPI
266 | itsdangerous,1.1.0,Various helpers to pass trusted data to untrusted environments.,BSD 3-Clause,Anaconda
267 | jdcal,1.4.1,Julian dates from proleptic Gregorian and Julian calendars.,BSD 2-Clause,Anaconda
268 | jedi,0.15.1,An autocompletion tool for Python that can be used for text editors.,MIT,Anaconda
269 | jeepney,0.4,Pure Python DBus interface,MIT,Anaconda
270 | jieba,0.39,Chinese Words Segementation Utilities,MIT,PyPI
271 | jmespath,0.9.4,JSON Matching Expressions,MIT,PyPI
272 | joblib,0.13.2,Python function as pipeline jobs.,BSD 3-Clause,Anaconda
273 | json5,0.8.5,A Python implementation of the JSON5 data format,Apache-2.0,Anaconda
274 | jsonnet,0.13.0,Python bindings for Jsonnet - The data templating language,,PyPI
275 | jsonpickle,0.9.6,Python library for serializing any arbitrary object graph into JSON,BSD,PyPI
276 | jsonschema,3.0.2,An implementation of JSON Schema validation for Python,MIT,Anaconda
277 | jupyter,1.0.0,Jupyter metapackage. Install all the Jupyter components in one go.,BSD 3-Clause,Anaconda
278 | jupyter-client,5.3.1,Jupyter protocol implementation and client libraries,BSD,PyPI
279 | jupyter-console,6.0.0,Jupyter terminal console,BSD,PyPI
280 | jupyter-core,4.5.0,Jupyter core package. A base package on which Jupyter projects rely.,BSD,PyPI
281 | jupyter-tensorboard,0.1.10,Start tensorboard in Jupyter! Jupyter notebook integration for tensorboard.,MIT License,PyPI
282 | jupyterlab,1.0.2,JupyterLab,BSD-3-Clause,Anaconda
283 | jupyterlab-server,1.0.0,JupyterLab Server,BSD,PyPI
284 | keras-rcnn,0.0.2,,MIT,PyPI
285 | keras-resnet,0.2.0,,MIT,PyPI
286 | keras-rl,0.4.2,Deep Reinforcement Learning for Keras,MIT,PyPI
287 | keras-tqdm,2.0.1,Keras models with TQDM progress bars in Jupyter notebooks,MIT,PyPI
288 | keyring,18.0.0,Store and access your passwords safely,Python Software Foundation or MIT,Anaconda
289 | kiwisolver,1.1.0,A fast implementation of the Cassowary constraint solver,BSD 3-Clause,Anaconda
290 | kmapper,1.2.0,Python implementation of Mapper algorithm for Topological Data Analysis.,MIT,PyPI
291 | kmeans-smote,0.1.2,Oversampling for imbalanced learning based on k-means and SMOTE,MIT,PyPI
292 | kmodes,0.10.1,Python implementations of the k-modes and k-prototypes clustering algorithms for clustering categorical data.,MIT,PyPI
293 | knnimpute,0.1.0,k-Nearest Neighbor imputation,http://www.apache.org/licenses/LICENSE-2.0.html,PyPI
294 | ktext,0.40,Pre-processing text in parallel for Keras in python.,MIT,PyPI
295 | langdetect,1.0.7,Language detection library ported from Google's language-detection.,"Copyright 2014-2015 Michal ""Mimino"" Danilak, Apache License, Version 2.0",PyPI
296 | langid,1.1.6,langid.py is a standalone Language Identification (LangID) tool.,BSD,PyPI
297 | lazy-object-proxy,1.4.1,A fast and thorough lazy object proxy,BSD-2-Clause,Anaconda
298 | learntools,0.3.1,,,
299 | leven,1.0.4,Levenshtein edit distance library,UNKNOWN,PyPI
300 | libarchive-c,2.8,Python interface to libarchive,CC0,PyPI
301 | librosa,0.7.0,Python module for audio and music processing,ISC,PyPI
302 | lief,0.9.0,LIEF is a library to instrument executable formats,Apache 2.0,PyPI
303 | lightfm,1.15,LightFM recommendation model,MIT,PyPI
304 | lightgbm,2.2.3,LightGBM Python Package,The MIT License (Microsoft),PyPI
305 | lime,0.1.1.36,Local Interpretable Model-Agnostic Explanations for machine learning classifiers,BSD,PyPI
306 | line-profiler,2.1.2,Line-by-line profiler.,BSD,PyPI
307 | llvmlite,0.29.0,A lightweight LLVM python binding for writing JIT compilers,New BSD License,Anaconda
308 | lml,0.0.9,Load me later. A lazy plugin management system.,New BSD,PyPI
309 | locket,0.2.0,File-based locks for Python for Linux and Windows,BSD 2-Clause,Anaconda
310 | lunardate,0.2.0,A Chinese Calendar Library in Pure Python,GPLv3,PyPI
311 | lxml,4.4.1,Pythonic binding for the C libraries libxml2 and libxslt.,"BSD 3-Clause, GPL-2.0, ZPL-2.0, and ElementTree",Anaconda
312 | lz4,2.1.2,LZ4 Bindings for Python,BSD 3-Clause,Anaconda
313 | marisa-trie,0.7.5,Static memory-efficient and fast Trie-like structures for Python.,MIT,PyPI
314 | markovify,0.7.2,"A simple, extensible Markov chain generator. Uses include generating random semi-plausible sentences based on an existing text.",MIT,PyPI
315 | matplotlib,3.0.3,Publication quality figures in Python,PSF-based,Anaconda
316 | matplotlib-venn,0.11.5,Functions for plotting area-proportional two- and three-way Venn diagrams in matplotlib.,MIT,PyPI
317 | mccabe,0.6.1,McCabe complexity checker for Python,MIT,Anaconda
318 | memory-profiler,0.55.0,A module for monitoring memory usage of a python program,BSD,PyPI
319 | missingno,0.4.2,Missing data visualization module for Python.,,PyPI
320 | mistune,0.8.4,The fastest markdown parser in pure Python.,BSD 3-Clause,Anaconda
321 | mizani,0.6.0,Scales for Python,BSD (3-clause),PyPI
322 | mkl-fft,1.0.12,MKL-based FFT transforms for NumPy arrays,Proprietary - Intel,PyPI
323 | mkl-random,1.0.2,NumPy-based implementation of random number generation sampling using Intel (R) Math Kernel Library.,Proprietary - Intel,PyPI
324 | mkl-service,2.0.2,Python hooks for Intel(R) Math Kernel Library runtime control settings.,BSD-3-Clause,Anaconda
325 | ml-metrics,0.1.4,Machine Learning Evaluation Metrics,,PyPI
326 | mlcrate,0.2.0,"A collection of handy python tools and functions, mainly for ML and Kaggle.",MIT,PyPI
327 | mlens,0.2.3,Machine Learning Ensemble Library,MIT,PyPI
328 | mlxtend,0.17.0,Machine Learning Library Extensions,BSD 3-Clause,PyPI
329 | mmh3,2.5.1,"Python wrapper for MurmurHash (MurmurHash3), a set of fast and robust hash functions.",License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication,PyPI
330 | mne,0.18.2,MNE python project for MEG and EEG data analysis.,BSD (3-clause),PyPI
331 | mnist,0.2.2,Python utilities to download and parse the MNIST dataset,BSD,PyPI
332 | mock,3.0.5,A library for testing in Python,BSD-2-Clause,Anaconda
333 | monotonic,1.5,An implementation of time.monotonic() for Python 2 & < 3.3,Apache,PyPI
334 | more-itertools,7.2.0,"More routines for operating on iterables, beyond itertools",MIT,Anaconda
335 | mpld3,0.3,D3 Viewer for Matplotlib.,BSD 3-Clause,Anaconda
336 | mplleaflet,0.0.5,Convert Matplotlib plots into Leaflet web maps,BSD 3-clause,PyPI
337 | mpmath,1.1.0,Python library for arbitrary-precision floating-point arithmetic,BSD 3-Clause,Anaconda
338 | msgpack,0.6.1,MessagePack (de)serializer.,Apache 2.0,PyPI
339 | msgpack-numpy,0.4.4.3,Numpy data serialization using msgpack,BSD,PyPI
340 | multipledispatch,0.6.0,Multiple dispatch in Python,BSD 3-Clause,Anaconda
341 | multiprocess,0.70.8,better multiprocessing and multithreading in python,BSD,PyPI
342 | munch,2.3.2,A dot-accessible dictionary (a la JavaScript objects).,MIT,Anaconda
343 | murmurhash,1.0.2,Cython bindings for MurmurHash,MIT,PyPI
344 | mxnet,1.5.0,MXNet is an ultra-scalable deep learning framework. This version uses openblas.,Apache 2.0,PyPI
345 | navigator-updater,0.2.1,Anaconda Navigator Updater,"proprietary - Continuum Analytics, Inc.",Anaconda
346 | nbconvert,5.5.0,Converting Jupyter Notebooks,BSD-3-Clause,Anaconda
347 | nbformat,4.4.0,The reference implementation of the Jupyter Notebook format,BSD 3-clause,Anaconda
348 | nervananeon,2.6.0,Intel's deep learning framework,License :: OSI Approved :: Apache Software License,PyPI
349 | networkx,2.3,Python package for creating and manipulating complex networks,BSD-3-Clause,Anaconda
350 | nibabel,2.5.0,Access a multitude of neuroimaging data formats,MIT License,PyPI
351 | nilearn,0.5.2,Statistical learning for neuroimaging in Python,new BSD,PyPI
352 | nltk,3.2.4,Build Python programs to work with human language data,Apache 2.0,Anaconda
353 | nolearn,0.6.1.dev0,scikit-learn compatible neural network library,MIT,PyPI
354 | nose,1.3.7,Nose extends unittest to make testing easier,LGPL-2.1,Anaconda
355 | notebook,5.5.0,Jupyter Notebook,BSD 3-clause,Anaconda
356 | numba,0.45.1,NumPy aware dynamic Python compiler using LLVM,BSD 2-clause,Anaconda
357 | numdifftools,0.9.39,Solves automatic numerical differentiation problems in one or more variables.,new BSD,PyPI
358 | numexpr,2.6.9,Fast numerical expression evaluator for NumPy.,MIT,Anaconda
359 | numpy,1.17.0,"Array processing for numbers, strings, records, and objects.",BSD 3-Clause,Anaconda
360 | numpydoc,0.9.1,Numpy's Sphinx extensions,BSD 3-Clause,Anaconda
361 | nvidia-ml-py3,7.352.0,Python Bindings for the NVIDIA Management Library,BSD,PyPI
362 | odfpy,1.4.0,Python API and tools to manipulate OpenDocument files,,PyPI
363 | olefile,0.46,"parse, read and write Microsoft OLE2 files",BSD 2-Clause,Anaconda
364 | onnx,1.5.0,Open Neural Network Exchange,,PyPI
365 | opencv-python,4.1.0.25,Wrapper package for OpenCV python bindings.,MIT,PyPI
366 | opencv-python-headless,4.1.0.25,Wrapper package for OpenCV python bindings.,MIT,PyPI
367 | openpyxl,2.6.2,A Python library to read/write Excel 2010 xlsx/xlsm files,MIT,Anaconda
368 | optuna,0.14.0,A hyperparameter optimization framework,,PyPI
369 | orderedmultidict,1.0.1,Ordered Multivalue Dictionary,Unlicense,PyPI
370 | ortools,7.3.7083,Google OR-Tools python libraries and modules,Apache 2.0,PyPI
371 | osmnx,0.10,"Retrieve, model, analyze, and visualize OpenStreetMap street networks and other spatial data",MIT,PyPI
372 | osqp,0.5.0,OSQP: The Operator Splitting QP Solver,Apache 2.0,PyPI
373 | overrides,1.9,A decorator to automatically detect mismatch when overriding a method.,"Apache License, Version 2.0",PyPI
374 | packaging,19.1,Core utilities for Python packages,Apache 2.0 or BSD 2-Clause,Anaconda
375 | palettable,3.2.0,Color palettes for Python,,PyPI
376 | pandas,0.25.0,"High-performance, easy-to-use data structures and data analysis tools.",BSD 3-clause,Anaconda
377 | pandas-datareader,0.7.4,"Up to date remote data access for pandas, works for multiple versions of pandas",BSD-3,Anaconda
378 | pandas-profiling,2.3.0,Generate profile report for pandas DataFrame,MIT,Anaconda
379 | pandas-summary,0.0.7,An extension to pandas describe function.,MIT,PyPI
380 | pandasql,0.7.3,Sqldf for pandas,BSD,Anaconda
381 | pandoc,1.0.2,Universal markup converter (repackaged binaries).,GPL-2.0,Anaconda
382 | pandocfilters,1.4.2,A python module for writing pandoc filters,BSD-3-Clause,Anaconda
383 | param,1.9.1,Param: Make your Python code clearer and more reliable by declaring Parameters,BSD-3-Clause,Anaconda
384 | paramnb,2.0.4,Generate ipywidgets from Parameterized objects in the notebook,BSD 3-Clause License,PyPI
385 | parsimonious,0.8.1,(Soon to be) the fastest pure-Python PEG parser I could muster,MIT,PyPI
386 | parso,0.5.1,A Python Parser,MIT,Anaconda
387 | partd,1.0.0,Data structure for on-disk shuffle operations,BSD 3-Clause,Anaconda
388 | path.py,12.0.1,A module wrapper for os.path,MIT,Anaconda
389 | pathlib2,2.3.4,Fork of pathlib aiming to support the full stdlib Python API,MIT,Anaconda
390 | pathos,0.2.4,parallel graph management and execution in heterogeneous computing,3-clause BSD,PyPI
391 | patsy,0.5.1,Describing statistical models in Python using symbolic formulas,"BSD-2-Clause, PSF2",Anaconda
392 | pbr,5.4.2,Python Build Reasonableness,,PyPI
393 | pdf2image,1.6.0,A wrapper around the pdftoppm and pdftocairo command line tools to convert PDF to a PIL Image list.,MIT,PyPI
394 | pep8,1.7.1,Python style guide checker,MIT,Anaconda
395 | pexpect,4.7.0,Pexpect makes Python a better tool for controlling other applications.,ISC,Anaconda
396 | phik,0.9.8,Phi_K correlation analyzer library,,PyPI
397 | pickleshare,0.7.5,Tiny 'shelve'-like database with concurrency support,MIT,Anaconda
398 | pip,19.2.2,PyPA recommended tool for installing Python packages,MIT,Anaconda
399 | pkginfo,1.5.0.1,Query metadatdata from sdists,bdists,Anaconda
400 | plac,0.9.6,The smartest command line arguments parser in the world,BSD 2-Clause,Anaconda
401 | plotly,4.1.0,"An interactive, browser-based graphing library for Python",MIT,Anaconda
402 | plotly-express,0.4.1,Plotly Express - a high level wrapper for Plotly.py,MIT,PyPI
403 | plotnine,0.4.0,A grammar of graphics for python,GPL-2,PyPI
404 | pluggy,0.12.0,Plugin registration and hook calling for Python,MIT,Anaconda
405 | ply,3.11,Python Lex-Yacc,BSD 3-clause,Anaconda
406 | polyglot,16.7.4,Polyglot is a natural language pipeline that supports massive multilingual applications.,GPLv3,PyPI
407 | posix-ipc,1.0.4,"POSIX IPC primitives (semaphores, shared memory and message queues) for Python",http://creativecommons.org/licenses/BSD/,PyPI
408 | pox,0.2.6,utilities for filesystem exploration and automated builds,3-clause BSD,PyPI
409 | ppca,0.0.4,Probabilistic PCA,,PyPI
410 | ppft,1.6.6.1,distributed and parallel python,BSD-like,PyPI
411 | preprocessing,0.1.13,pre-processing package for text strings,MIT,PyPI
412 | preshed,2.0.1,Cython hash table that trusts the keys are pre-hashed,MIT,PyPI
413 | prettytable,0.7.2,A simple Python library for easily displaying tabular data in a visually appealing ASCII table format.,BSD,PyPI
414 | progressbar2,3.42.0,A Python Progressbar library to provide visual (yet text based) progress to long running operations.,BSD,PyPI
415 | prometheus-client,0.7.1,Python client for the Prometheus monitoring system.,Apache Software License 2.0,PyPI
416 | prompt-toolkit,2.0.9,Library for building powerful interactive command lines in Python,BSD-3-Clause,PyPI
417 | pronouncing,0.2.0,A simple interface for the CMU pronouncing dictionary,BSD,PyPI
418 | protobuf,3.7.1,Protocol Buffers - Google's data interchange format.,BSD 3-Clause,Anaconda
419 | psutil,5.6.3,A cross-platform process and system utilities module for Python,BSD 3-Clause,Anaconda
420 | ptyprocess,0.6.0,Run a subprocess in a pseudo terminal,ISC,Anaconda
421 | pudb,2019.1,"A full-screen, console-based Python debugger",,PyPI
422 | py,1.8.0,"library with cross-python path, ini-parsing, io, code, log facilities",MIT,Anaconda
423 | py-cpuinfo,5.0.0,Get CPU info with pure Python 2 & 3,MIT,PyPI
424 | py-lz4framed,0.13.0,LZ4Frame library for Python (via C bindings),Apache License 2.0,PyPI
425 | py-stringmatching,0.4.1,Python library for string matching.,BSD,PyPI
426 | py-stringsimjoin,0.3.1,Python library for performing string similarity joins.,BSD,PyPI
427 | pyLDAvis,2.1.2,Interactive topic model visualization. Port of the R package.,MIT,PyPI
428 | pyOpenSSL,19.0.0,Python wrapper module around the OpenSSL library,"Apache License, Version 2.0",PyPI
429 | pyPdf,1.13,PDF toolkit,UNKNOWN,PyPI
430 | pyahocorasick,1.4.0,pyahocorasick is a fast and memory efficient library for exact or approximate multi-pattern string search., BSD-3-Clause and Public-Domain,PyPI
431 | pyarrow,0.10.0,Python library for Apache Arrow,"Apache License, Version 2.0",PyPI
432 | pyasn1,0.4.6,ASN.1 types and codecs,BSD 2-Clause,Anaconda
433 | pyasn1-modules,0.2.6,A collection of ASN.1-based protocols modules.,BSD 2-Clause,Anaconda
434 | pybind11,2.3.0,Seamless operability between C++11 and Python,BSD,PyPI
435 | pycairo,1.18.1,Python interface for cairo,,PyPI
436 | pycodestyle,2.4.0,Python style guide checker,MIT,Anaconda
437 | pycosat,0.6.3,Bindings to picosat (a SAT solver),MIT,Anaconda
438 | pycountry,19.8.18,"ISO country, subdivision, language, currency and script definitions and their translations",LGPL 2.1,PyPI
439 | pycparser,2.19,Complete C99 parser in pure Python,BSD 3-clause,Anaconda
440 | pycrypto,2.6.1,Cryptographic modules for Python.,Public Domain,Anaconda
441 | pyct,0.4.6,"python package common tasks for users (e.g. copy examples, fetch data, ...)",BSD 3-Clause License,PyPI
442 | pycurl,7.43.0.2,A Python Interface To The cURL library,"LGPL, MIT",Anaconda
443 | pydash,4.7.5,"The kitchen sink of Python utility libraries for doing ""stuff"" in a functional way. Based on the Lo-Dash Javascript library.",MIT License,PyPI
444 | pydicom,1.3.0,Pure python package for DICOM medical file reading and writing,MIT,PyPI
445 | pydot,1.4.1,Python interface to Graphviz's Dot,MIT,Anaconda
446 | pyeconometrics,1.0.2,,,
447 | pyemd,0.5.1,A Python wrapper for the Earth Mover's Distance.,MIT,Anaconda
448 | pyexcel-io,0.5.20,"A python library to read and write structured data in csv, zipped csvformat and to/from databases",New BSD,PyPI
449 | pyexcel-ods,0.5.6,"A wrapper library to read, manipulate and write data in ods format",New BSD,PyPI
450 | pyfasttext,0.4.6,Yet another Python binding for fastText,GPLv3,PyPI
451 | pyflakes,2.0.0,Pyflakes analyzes programs and detects various errors.,MIT,Anaconda
452 | pyflux,0.4.15,PyFlux: A time-series analysis library for Python,BSD,PyPI
453 | pyglet,1.3.2,Cross-platform windowing and multimedia library,BSD,PyPI
454 | pykalman,0.9.5,"An implementation of the Kalman Filter, Kalman Smoother, and EM algorithm in Python",BSD,PyPI
455 | pykoko,0.1.8,KOKO is an easy-to-use entity extraction tool,Apache Software License 2.0,PyPI
456 | pylint,2.3.1,python code static checker,GPL,Anaconda
457 | pymagnitude,0.1.120,"A fast, efficient universal vector embedding utility package.",MIT,PyPI
458 | pymc3,3.7,Probabilistic Programming in Python.,Apache-2.0,Anaconda
459 | pymongo,3.9.0,Python driver for MongoDB http://www.mongodb.org,Apache 2.0,Anaconda
460 | pyocr,0.7.2,"A Python wrapper for OCR engines (Tesseract, Cuneiform, etc)",GPLv3+,PyPI
461 | pyodbc,4.0.27,DB API Module for ODBC,MIT,Anaconda
462 | pypandoc,1.4,Thin wrapper for pandoc.,MIT,PyPI
463 | pyparsing,2.4.2,Create and execute simple grammars,MIT,Anaconda
464 | pyperclip,1.7.0,A cross-platform clipboard module for Python. (Only handles plain text for now.),BSD,PyPI
465 | pyproj,2.3.0,Python interface to PROJ.4 library,OSI,Anaconda
466 | pyrsistent,0.14.11,Persistent/Functional/Immutable data structures,MIT,Anaconda
467 | pysal,2.1.0,Library of spatial analysis functions,BSD-3-Clause,Anaconda
468 | pyshp,2.1.0,Pure Python read/write support for ESRI Shapefile format,MIT,Anaconda
469 | pystan,2.19.0.0,"Python interface to Stan, a package for Bayesian inference",GPLv3,Anaconda
470 | pytagcloud,0.3.5,Create beautiful tag clouds as images or HTML,BSD,PyPI
471 | pytesseract,0.2.9,Python-tesseract is a python wrapper for Google's Tesseract-OCR,GPLv3,PyPI
472 | pytest,5.0.1,Simple and powerful testing with Python.,MIT,Anaconda
473 | pytest-arraydiff,0.3,pytest plugin to help with comparing array output from tests,BSD,Anaconda
474 | pytest-astropy,0.5.0,Meta-package containing dependencies for testing Astropy,BSD,Anaconda
475 | pytest-cov,2.7.1,Pytest plugin for measuring coverage,MIT,Anaconda
476 | pytest-doctestplus,0.3.0,Pytest plugin with advanced doctest features,BSD,Anaconda
477 | pytest-mock,1.10.4,Thin-wrapper around the mock package for easier use with py.test,MIT,Anaconda
478 | pytest-openfiles,0.3.2,Pytest plugin for detecting inadvertent open file handles,BSD,Anaconda
479 | pytest-pylint,0.14.1,pytest plugin to check source code with pylint,MIT,PyPI
480 | pytest-remotedata,0.3.2,Pytest plugin for controlling remote data access,BSD,Anaconda
481 | pytext-nlp,0.1.2,pytorch modeling framework and model zoo for text models,BSD,PyPI
482 | python-Levenshtein,0.12.0,Python extension for computing string edit distances and similarities.,GPL,PyPI
483 | python-dateutil,2.8.0,Extensions to the standard Python datetime module.,BSD 3 Clause,Anaconda
484 | python-editor,1.0.4,"Programmatically open an editor, capture the result.",Apache 2.0,Anaconda
485 | python-igraph,0.7.1.post7,High performance graph data structures and algorithms,GNU General Public License (GPL),PyPI
486 | python-louvain,0.13,Louvain algorithm for community detection,BSD,PyPI
487 | python-utils,2.3.0,Python Utils is a collection of small Python functions and classes which make common patterns shorter and easier.,BSD-3-Clause,Anaconda
488 | pytorch-ignite,0.2.0,A lightweight library to help with training neural networks in PyTorch.,BSD,PyPI
489 | pytorch-pretrained-bert,0.6.2,PyTorch version of Google AI BERT model with script to load Google pre-trained models,Apache,PyPI
490 | pytz,2019.2,"World timezone definitions, modern and historical.",MIT,Anaconda
491 | pyviz-comms,0.7.2,Bidirectional communication for the PyViz ecosystem.,BSD,PyPI
492 | pyzmq,18.1.0,Python bindings for zeromq,BSD 3-clause,Anaconda
493 | qtconsole,4.5.3,Jupyter Qt console,BSD 3-Clause,Anaconda
494 | raccoon,2.1.5,Python DataFrame with fast insert and appends,MIT,PyPI
495 | randomgen,1.16.6,Random generator supporting multiple PRNGs,NCSA,PyPI
496 | ray,0.7.3,A system for parallel and distributed Python that unifies the ML ecosystem.,Apache 2.0,PyPI
497 | redis,3.3.8,Advanced key-value cache and store,3-clause BSD,Anaconda
498 | regex,2019.8.19,"Alternative regular expression module, to replace re.",Python-2.0,Anaconda
499 | requests,2.22.0,Python HTTP for Humans,Apache 2.0,Anaconda
500 | resampy,0.2.2,Efficient signal resampling,ISC,PyPI
501 | retrying,1.3.3,Retrying,Apache 2.0,PyPI
502 | revrand,0.6.5,A library of scalable Bayesian generalized linear models with fancy features,Apache Software License 2.0,PyPI
503 | rf-perm-feat-import,0.1,Random Forest Permutate Feature Importance,MIT,PyPI
504 | rgf-python,3.6.0,Scikit-learn Wrapper for Regularized Greedy Forest,MIT License,PyPI
505 | rope,0.14.0,A python refactoring library,GPL 2.0,Anaconda
506 | rsa,4.0,Pure-Python RSA implementation,ASL 2,PyPI
507 | ruamel-yaml,0.15.46,"ruamel.yaml is a YAML parser/emitter that supports roundtrip preservation of comments, seq/map flow style, and map key order",MIT license,PyPI
508 | s2sphere,0.2.5,Python implementation of the S2 Geometry Library,MIT,PyPI
509 | s3fs,0.3.3,Convenient Filesystem interface over S3,BSD 3-Clause,Anaconda
510 | s3transfer,0.2.1,An Amazon S3 Transfer Manager,Apache License 2.0,PyPI
511 | sacred,0.7.5,Facilitates automated and reproducible experimental research,,PyPI
512 | scattertext,0.0.2.52,An NLP package to visualize interesting terms in text.,Apache 2.0,PyPI
513 | scikit-image,0.15.0,Image processing routines for SciPy.,BSD 3-Clause,Anaconda
514 | scikit-learn,0.21.3,A set of python modules for machine learning and data mining,BSD 3-Clause,Anaconda
515 | scikit-multilearn,0.2.0,Scikit-multilearn is a BSD-licensed library for multi-label classification that is built on top of the well-known scikit-learn ecosystem.,BSD,PyPI
516 | scikit-optimize,0.5.2,Sequential model-based optimization toolbox.,BSD,PyPI
517 | scikit-plot,0.3.7,An intuitive library to add plotting functionality to scikit-learn objects.,MIT License,PyPI
518 | scikit-surprise,1.0.6,An easy-to-use library for recommender systems.,GPLv3+,PyPI
519 | scipy,1.2.1,Scientific Library for Python,BSD 3-Clause,Anaconda
520 | scs,2.1.1.post2,scs: splitting conic solver,MIT,PyPI
521 | seaborn,0.9.0,Statistical data visualization,BSD 3-Clause,Anaconda
522 | sentencepiece,0.1.83,SentencePiece python wrapper,Apache,PyPI
523 | setuptools,41.0.1,"Download, build, install, upgrade, and uninstall Python packages",MIT,Anaconda
524 | setuptools-git,1.2,Setuptools revision control system plugin for Git,BSD,PyPI
525 | shap,0.29.3,A unified approach to explain the output of any machine learning model.,MIT,PyPI
526 | simplegeneric,0.8.1,"Simple generic functions (similar to Python's own len(), pickle.dump(), etc.)",Zope Public,Anaconda
527 | singledispatch,3.4.0.3,Transforms a function into a single-dispatch generic function,MIT,Anaconda
528 | six,1.12.0,Python 2 and 3 compatibility utilities,MIT,Anaconda
529 | sklearn,0.0,A set of python modules for machine learning and data mining,UNKNOWN,PyPI
530 | sklearn-contrib-lightning,0.5.0,"Large-scale sparse linear classification, regression and ranking in Python",new BSD,PyPI
531 | sklearn-contrib-py-earth,0.1.0+1.gdde5f89,A Python implementation of Jerome Friedman's Multivariate Adaptive Regression Splines.,LICENSE.txt,PyPI
532 | sklearn-pandas,1.8.0,Pandas integration with sklearn,,PyPI
533 | smart-open,1.8.4,"Utils for streaming large files (S3, HDFS, gzip, bz2...)",MIT,PyPI
534 | smhasher,0.150.1,Python extension for smhasher hash functions,UNKNOWN,PyPI
535 | snowballstemmer,1.9.0,Snowball stemming library collection for Python,BSD-2-Clause,Anaconda
536 | sortedcollections,1.1.2,Python Sorted Collections,Apache-2.0,Anaconda
537 | sortedcontainers,2.1.0,"Python Sorted Container Types: SortedList, SortedDict, and SortedSet",Apache 2.0,Anaconda
538 | soupsieve,1.9.2,A modern CSS selector implementation for BeautifulSoup,MIT,Anaconda
539 | spacy,2.1.8,Industrial-strength Natural Language Processing,MIT,Anaconda
540 | spectral,0.19,Spectral Python (SPy) is a Python module for hyperspectral image processing.,GPL,PyPI
541 | speedml,0.9.3,Speedml Machine Learning Speed Start,MIT,PyPI
542 | sphinx-rtd-theme,0.2.4,Read the Docs theme for Sphinx,MIT,PyPI
543 | sphinxcontrib-applehelp,1.0.1,sphinxcontrib-applehelp is a sphinx extension which outputs Apple help books,BSD-2-Clause,Anaconda
544 | sphinxcontrib-devhelp,1.0.1,sphinxcontrib-devhelp is a sphinx extension which outputs Devhelp document,BSD-2-Clause,Anaconda
545 | sphinxcontrib-htmlhelp,1.0.2,sphinxcontrib-htmlhelp is a sphinx extension which ...,BSD-2-Clause,Anaconda
546 | sphinxcontrib-jsmath,1.0.1,A sphinx extension which renders display math in HTML via JavaScript,BSD-2-Clause,Anaconda
547 | sphinxcontrib-qthelp,1.0.2,sphinxcontrib-qthelp is a sphinx extension which outputs QtHelp document,BSD-2-Clause,Anaconda
548 | sphinxcontrib-serializinghtml,1.1.3,"sphinxcontrib-serializinghtml is a sphinx extension which outputs ""serialized"" HTML files (json and pickle).",BSD-2-Clause,Anaconda
549 | sphinxcontrib-websupport,1.1.2,Sphinx API for Web Apps,BSD-2-Clause,Anaconda
550 | spyder,3.3.6,The Scientific Python Development Environment,MIT,Anaconda
551 | spyder-kernels,0.5.1,Jupyter kernels for the Spyder console,MIT,Anaconda
552 | sqlparse,0.3.0,A non-validating SQL parser module for Python.,BSD 3-Clause,Anaconda
553 | squarify,0.4.3,Pure Python implementation of the squarify treemap layout algorithm,Apache v2,PyPI
554 | srsly,0.1.0,Modern high-performance serialization utilities for Python,MIT,PyPI
555 | statsmodels,0.10.1,Statistical computations and models for use with SciPy,BSD 3-Clause,Anaconda
556 | stemming,1.0.1,,,PyPI
557 | stevedore,1.30.1,Manage dynamic plugins for Python applications,,PyPI
558 | stop-words,2018.7.23,Get list of common stop words in various languages in Python,"Copyright (c) 2014, Alireza Savand, Contributors",PyPI
559 | stopit,1.1.2,"Timeout control decorator and context managers, raise any exception in another thread",GPLv3,PyPI
560 | svgwrite,1.3.1,A Python library to create SVG drawings.,MIT License,PyPI
561 | sympy,1.4,Python library for symbolic mathematics,BSD-3-Clause,Anaconda
562 | tables,3.5.1,Hierarchical datasets for Python,BSD 2-Clause,PyPI
563 | tabulate,0.8.3,Pretty-print tabular data,MIT,PyPI
564 | tblib,1.4.0,Traceback serialization library.,BSD 2-Clause,Anaconda
565 | tensorboard,1.14.0,TensorBoard lets you watch Tensors Flow,Apache 2.0,PyPI
566 | tensorboardX,1.8,TensorBoardX lets you watch Tensors Flow without Tensorflow,MIT license,PyPI
567 | tensorflow,1.14.0,TensorFlow is a machine learning library.,Apache 2.0,Anaconda
568 | tensorflow-estimator,1.14.0,TensorFlow Estimator.,Apache 2.0,PyPI
569 | tensorflow-hub,0.5.0,"TensorFlow Hub is a library to foster the publication, discovery, and consumption of reusable parts of machine learning models.",Apache 2.0,PyPI
570 | tensorflow-probability,0.7.0,Probabilistic modeling and statistical inference in TensorFlow,Apache 2.0,PyPI
571 | tensorforce,0.4.3,Reinforcement learning for TensorFlow,Apache 2.0,PyPI
572 | tensorpack,0.9.7.1,A Neural Network Training Interface on TensorFlow,Apache,PyPI
573 | termcolor,1.1.0,ANSII Color formatting for output in terminal.,MIT,Anaconda
574 | terminado,0.8.2,Terminals served by tornado websockets,BSD 2-Clause,Anaconda
575 | terminalplot,0.2.6,Plot points in terminal,GPL,PyPI
576 | testpath,0.3.1,Testpath is a collection of utilities for Python code working with files and commands.,BSD-3-Clause,Anaconda
577 | textacy,0.6.2,"NLP, before and after spaCy",Apache,PyPI
578 | textblob,0.15.3,"Simple, Pythonic text processing. Sentiment analysis, part-of-speech tagging, noun phrase parsing, and more.",MIT,PyPI
579 | tflearn,0.3.2,Deep Learning Library featuring a higher-level API for TensorFlow,MIT,PyPI
580 | thinc,7.0.8,Practical Machine Learning for NLP,MIT,PyPI
581 | tifffile,2019.7.26,Read and write TIFF(r) files,BSD,PyPI
582 | tinycss2,1.0.2,Low-level CSS parser for Python,BSD,PyPI
583 | toolz,0.10.0,A functional standard library for Python,BSD 3-Clause,Anaconda
584 | torch,1.1.0,Tensors and Dynamic neural networks in Python with strong GPU acceleration,BSD-3,PyPI
585 | torchaudio,0.4.0a0+42a705d,An audio package for PyTorch,,PyPI
586 | torchtext,0.4.0,Text utilities and datasets for PyTorch,BSD,PyPI
587 | torchvision,0.3.0,Image and video datasets and models for torch deep learning,BSD 3-Clause,Anaconda
588 | tornado,5.0.2,"A Python web framework and asynchronous networking library, originally developed at FriendFeed.",Apache 2.0,Anaconda
589 | tqdm,4.32.1,"A Fast, Extensible Progress Meter","MPLv2.0, MIT",Anaconda
590 | trackml,0.1.12,"An opinionated, minimal cookiecutter template for Python packages",,PyPI
591 | traitlets,4.3.2,Configuration system for Python applications,BSD 3-clause,Anaconda
592 | trueskill,0.4.5,The video game rating system,BSD,PyPI
593 | tsfresh,0.12.0,tsfresh extracts relevant characteristics from time series,MIT,PyPI
594 | typed-ast,1.3.4,a fork of Python 2 and 3 ast modules with type comment support,Apache 2.0,Anaconda
595 | typing,3.6.6,Type Hints for Python - backport for Python<3.5,PSF,Anaconda
596 | typing-extensions,3.6.6,Backported and Experimental Type Hints for Python 3.5+,PSF,PyPI
597 | tzlocal,2.0.0,tzinfo object for the local timezone,MIT,PyPI
598 | umap-learn,0.3.10,Uniform Manifold Approximation and Projection,BSD,PyPI
599 | unicodecsv,0.14.1,Drop-in replacement for csv module which supports unicode strings,BSD,Anaconda
600 | update-checker,0.16,A python module that will check for package updates.,Simplified BSD License,PyPI
601 | uritemplate,3.0.0,URI templates,"BSD 3-Clause License or Apache License, Version 2.0",PyPI
602 | urllib3,1.24.2,"HTTP library with thread-safe connection pooling, file post, and more.",MIT,Anaconda
603 | urwid,2.0.1,A full-featured console (xterm et al.) user interface library,LGPL,PyPI
604 | vecstack,0.4.0,Python package for stacking (machine learning technique),MIT,PyPI
605 | vega3,0.13.0,Deprecated: please use vega,BSD 3-clause,PyPI
606 | vida,0.3,Python binding for Vida data visualizations,UNKNOWN,PyPI
607 | visvis,1.11.2,An object oriented approach to visualization of 1D to 4D data,BSD 3-Clause,Anaconda
608 | vowpalwabbit,8.5.0,Vowpal Wabbit Python package,BSD 3-Clause License,PyPI
609 | vtk,8.1.2,"VTK is an open-source toolkit for 3D computer graphics, image processing, and visualization",BSD,PyPI
610 | wasabi,0.2.2,A lightweight console printing and formatting toolkit,MIT,PyPI
611 | wavio,0.0.4,A Python module for reading and writing WAV files using numpy arrays.,BSD,PyPI
612 | wcwidth,0.1.7,Measures number of Terminal column cells of wide-character codes.,MIT,Anaconda
613 | webencodings,0.5.1,Character encoding aliases for legacy web content,BSD 3-Clause,Anaconda
614 | websocket-client,0.56.0,WebSocket client for Python. hybi13 is supported.,BSD,PyPI
615 | wfdb,2.2.1,The WFDB Python Toolbox,MIT,PyPI
616 | wheel,0.33.4,A built-package format for Python.,MIT,Anaconda
617 | widgetsnbextension,3.5.1,Interactive Widgets for Jupyter,BSD 3-clause,Anaconda
618 | word2number,1.1,Convert number words eg. three hundred and forty two to numbers (342).,MIT,PyPI
619 | wordcloud,1.5.0,A little word cloud generator,MIT,PyPI
620 | wordsegment,1.3.1,English word segmentation.,Apache 2.0,PyPI
621 | wrapt,1.11.2,"Module for decorators, wrappers and monkey patching",BSD 2-Clause,Anaconda
622 | wurlitzer,1.0.3,Capture C-level stdout/stderr in Python,MIT,Anaconda
623 | xarray,0.12.3,N-D labeled arrays and datasets in Python.,Apache-2.0,Anaconda
624 | xgboost,0.90,XGBoost Python Package,Apache-2.0,PyPI
625 | xlrd,1.2.0,Library for developers to extract data from Microsoft Excel (tm) spreadsheet files,BSD 3-Clause and BSD with advertising,Anaconda
626 | xlwt,1.3.0,Writing data and formatting information to Excel files,BSD,Anaconda
627 | xvfbwrapper,0.2.9,run headless display inside X virtual framebuffer (Xvfb),MIT,PyPI
628 | xxhash,1.3.0,Python binding for xxHash,BSD,PyPI
629 | yellowbrick,0.9.1,A suite of visual analysis and diagnostic tools for machine learning.,Apache 2,PyPI
630 | zict,1.0.0,Composable Dictionary Classes,BSD 3-Clause,Anaconda
631 | zipp,0.5.2,A pathlib-compatible Zipfile object wrapper,MIT,Anaconda
632 |
--------------------------------------------------------------------------------
/s22_wiki.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/navneetkrc/langchain_colab_experiments/ef37bf48f653463a1a2580b20610061391512af6/s22_wiki.pdf
--------------------------------------------------------------------------------
/s23_wiki.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/navneetkrc/langchain_colab_experiments/ef37bf48f653463a1a2580b20610061391512af6/s23_wiki.pdf
--------------------------------------------------------------------------------
/the_constitution_of_india.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/navneetkrc/langchain_colab_experiments/ef37bf48f653463a1a2580b20610061391512af6/the_constitution_of_india.pdf
--------------------------------------------------------------------------------