Network
Language · FA
Dark mode

LIBRARIES

Python Libraries

52 libraries — pip install, PyPI version, mirror commands.

Python Libraries — pip install reference

LibraryCategoryVersionInstallDescription
numpyData Science1.26pip install numpyArray math, linear algebra, FFT
pandasData Science2.2pip install pandasDataFrames, CSV/Excel/SQL I/O, groupby
scipyData Science1.13pip install scipyScientific algorithms, stats, signal, optimize
statsmodelsData Science0.14pip install statsmodelsStatistical models, econometrics, time series
polarsData Science0.20pip install polarsBlazing-fast DataFrame (Rust-backed)
scikit-learnMachine Learning1.4pip install scikit-learnClassical ML: SVM, trees, clustering, pipelines
xgboostMachine Learning2.0pip install xgboostGradient boosted trees (tabular SOTA)
lightgbmMachine Learning4.3pip install lightgbmFast GBDT, low memory, Microsoft
catboostMachine Learning1.2pip install catboostGradient boosting for categorical features
optunaMachine Learning3.6pip install optunaHyperparameter optimization framework
torchDeep Learning2.3pip install torchPyTorch — autograd, NN, GPU (Meta)
tensorflowDeep Learning2.16pip install tensorflowTF + Keras — end-to-end DL platform (Google)
kerasDeep Learning3.3pip install kerasHigh-level DL API (multi-backend)
jaxDeep Learning0.4pip install jaxAutograd + XLA JIT, NumPy-compatible (Google)
onnxDeep Learning1.16pip install onnxruntimeOpen Neural Network Exchange format + runtime
transformersLLM / AI Agents4.40pip install transformersHuggingFace — 500+ pretrained models
langchainLLM / AI Agents0.2pip install langchainLLM chains, agents, RAG pipelines
openaiLLM / AI Agents1.30pip install openaiOpenAI API client (GPT, DALL-E, Whisper)
anthropicLLM / AI Agents0.26pip install anthropicAnthropic Claude API client
llama-indexLLM / AI Agents0.10pip install llama-indexData framework for LLM applications (RAG)
sentence-transformersLLM / AI Agents2.7pip install sentence-transformersSentence embeddings, semantic similarity
fastapiWeb Frameworks0.111pip install fastapiAsync REST APIs, auto OpenAPI docs, Pydantic
djangoWeb Frameworks5.0pip install djangoFull-stack web framework, ORM, admin, batteries
flaskWeb Frameworks3.0pip install flaskMicro web framework, WSGI, extensible
starletteWeb Frameworks0.37pip install starletteASGI toolkit (base for FastAPI)
aiohttpWeb Frameworks3.9pip install aiohttpAsync HTTP client + server
requestsHTTP & Networking2.32pip install requestsSimple HTTP client, sessions, auth
httpxHTTP & Networking0.27pip install httpxModern HTTP client, async support
paramikoHTTP & Networking3.4pip install paramikoSSH2 client/server, SCP, SFTP
websocketsHTTP & Networking12.0pip install websocketsWebSocket client + server (async)
scapyHTTP & Networking2.5pip install scapyPacket crafting, network analysis
matplotlibVisualization3.9pip install matplotlib2D/3D plots, publication-quality figures
seabornVisualization0.13pip install seabornStatistical visualization on top of matplotlib
plotlyVisualization5.22pip install plotlyInteractive charts, Dash web apps
bokehVisualization3.4pip install bokehInteractive web visualizations
altairVisualization5.3pip install altairDeclarative Vega-Lite visualization
sqlalchemyDatabase & ORM2.0pip install sqlalchemySQL toolkit + ORM, supports all major DBs
psycopg2Database & ORM2.9pip install psycopg2-binaryPostgreSQL adapter (C-based)
pymongoDatabase & ORM4.7pip install pymongoMongoDB driver
redisDatabase & ORM5.0pip install redisRedis client (sync + async)
motorDatabase & ORM3.4pip install motorAsync MongoDB driver (asyncio)
tortoise-ormDatabase & ORM0.21pip install tortoise-ormAsync ORM inspired by Django
clickCLI & Output8.1pip install clickCommand-line interface toolkit
typerCLI & Output0.12pip install typerFastAPI-style CLI from type hints
richCLI & Output13.7pip install richRich text, tables, progress in terminal
textualCLI & Output0.61pip install textualTUI framework (terminal apps)
pydanticUtilities2.7pip install pydanticData validation via Python type hints
loguruUtilities0.7pip install loguruEasy logging with colors and rotation
python-dotenvUtilities1.0pip install python-dotenvLoad .env files into os.environ
pillowUtilities10.3pip install PillowImage processing (PIL fork)
opencv-pythonUtilities4.9pip install opencv-pythonComputer vision, video, image processing
pytestUtilities8.2pip install pytestTesting framework, fixtures, plugins

Mirror / Offline Install

For environments without internet access:

MethodCommand
Download wheel firstpip download numpy -d ./wheels
Install from wheel dirpip install --no-index --find-links=./wheels numpy
Iran PyPI mirror (Arvan)pip install -i https://mirror.arvancloud.ir/pypi/simple/ numpy
Tsinghua mirror (China)pip install -i https://pypi.tuna.tsinghua.edu.cn/simple numpy
USTC mirror (China)pip install -i https://pypi.mirrors.ustc.edu.cn/simple/ numpy
Aliyun mirror (China)pip install -i https://mirrors.aliyun.com/pypi/simple/ numpy
requirements.txtpip install -r requirements.txt