-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrequirements.txt
More file actions
72 lines (57 loc) · 2.46 KB
/
requirements.txt
File metadata and controls
72 lines (57 loc) · 2.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# Core Python Lab - Project Dependencies
# Updated: June 2026
# Python 3.8+ required
# ============================================================================
# Data Science & Scientific Computing
# ============================================================================
# NumPy for numerical operations and array manipulation
numpy>=1.24.0
# Pandas for data manipulation and analysis
pandas>=1.5.0
# Pydantic for data validation and serialization
pydantic[email]>=2.7.0
# ============================================================================
# Web Framework & UI
# ============================================================================
# Streamlit for building interactive web applications
streamlit>=1.30.0
# ============================================================================
# HTTP & Web Scraping
# ============================================================================
# Requests for HTTP requests
requests>=2.31.0
# BeautifulSoup4 for HTML parsing and web scraping
beautifulsoup4>=4.12.0
# LXML for fast XML and HTML processing
lxml>=4.9.0
# HTTPX for async HTTP operations
httpx>=0.24.0
# ============================================================================
# Advanced Async & Concurrency
# ============================================================================
# AIOHTTP for async HTTP client/server
aiohttp>=3.8.0
# Fake-useragent for rotating user agents in requests
fake-useragent>=1.2.0
# ============================================================================
# Browser Automation (Optional)
# ============================================================================
# Selenium for browser automation (optional but included)
selenium>=4.13.0
# Playwright for browser automation (optional but included)
playwright>=1.40.0
# ============================================================================
# Testing & Development
# ============================================================================
# Pytest for unit testing and test discovery
pytest>=7.0.0
# Pytest-cov for code coverage reports
pytest-cov>=4.1.0
# ============================================================================
# Code Quality & Development Tools (Optional)
# ============================================================================
# Uncomment these for linting and formatting:
# black>=23.0.0 # Code formatter
# flake8>=6.0.0 # Linter
# mypy>=1.0.0 # Static type checker
# pylint>=2.17.0 # Code analysis