Files
vibe-coding-cn/i18n/zh/skills/twscrape/references/installation.md
T
tukuaiai 624ef8d5f9 refactor: 重构目录结构以支持 i18n
创建 'i18n' 目录以存放多语言内容。将所有现有的中文内容(文档、提示词、技能、README)移动到 'i18n/zh/' 中。添加了新的根 README 作为语言入口,并为英文('en')翻译创建了占位符结构。
2025-12-16 21:30:13 +08:00

1.0 KiB

Installation

Standard Installation

pip install twscrape

Development Version

Install the latest development version directly from GitHub:

pip install git+https://github.com/vladkens/twscrape.git

Requirements

  • Python 3.7+
  • asyncio support
  • Internet connection for Twitter/X access

Dependencies

The library automatically installs required dependencies:

  • httpx - Async HTTP client
  • aiosqlite - Async SQLite database
  • Additional dependencies as specified in setup.py

Verification

Verify installation:

# Check CLI is available
twscrape --help

# Check Python import works
python -c "from twscrape import API; print('OK')"

Upgrading

pip install --upgrade twscrape

Uninstallation

pip uninstall twscrape

Database Location

By default, twscrape creates accounts.db in your current working directory. You can specify a custom location:

api = API("path/to/custom.db")

Or via CLI:

twscrape --db path/to/custom.db <command>