- Add 'twitter search' command with --type (Top/Latest/Photos/Videos), --max, --json, --filter - Add 'twitter likes' command to view tweets liked by a user - Add SearchTimeline and Likes GraphQL operations with fallback queryIds - Update README with new command examples (EN + CN)
325 lines
12 KiB
Python
325 lines
12 KiB
Python
"""CLI entry point for twitter-cli.
|
|
|
|
Usage:
|
|
twitter feed # fetch home timeline (For You)
|
|
twitter feed -t following # fetch following feed
|
|
twitter feed --max 50 # custom fetch count
|
|
twitter feed --filter # enable score-based filtering
|
|
twitter feed --json # JSON output
|
|
twitter favorite # fetch bookmarks
|
|
twitter feed --input tweets.json # load existing data
|
|
twitter feed --output out.json # save filtered tweets
|
|
twitter user elonmusk # view user profile
|
|
twitter user-posts elonmusk # list user tweets
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
import logging
|
|
import sys
|
|
import time
|
|
from pathlib import Path
|
|
|
|
import click
|
|
from rich.console import Console
|
|
|
|
from . import __version__
|
|
from .auth import get_cookies
|
|
from .client import TwitterClient
|
|
from .config import load_config
|
|
from .filter import filter_tweets
|
|
from .formatter import print_filter_stats, print_tweet_table, print_user_profile
|
|
from .serialization import tweets_from_json, tweets_to_json
|
|
|
|
|
|
console = Console()
|
|
FEED_TYPES = ["for-you", "following"]
|
|
|
|
|
|
def _setup_logging(verbose):
|
|
# type: (bool) -> None
|
|
level = logging.DEBUG if verbose else logging.WARNING
|
|
logging.basicConfig(
|
|
level=level,
|
|
format="%(levelname)s %(name)s: %(message)s",
|
|
stream=sys.stderr,
|
|
)
|
|
|
|
|
|
def _load_tweets_from_json(path):
|
|
# type: (str) -> List[Tweet]
|
|
"""Load tweets from a JSON file (previously exported)."""
|
|
file_path = Path(path)
|
|
if not file_path.exists():
|
|
raise RuntimeError("Input file not found: %s" % path)
|
|
|
|
try:
|
|
raw = file_path.read_text(encoding="utf-8")
|
|
return tweets_from_json(raw)
|
|
except (ValueError, OSError) as exc:
|
|
raise RuntimeError("Invalid tweet JSON file %s: %s" % (path, exc))
|
|
|
|
|
|
def _get_client(config=None):
|
|
# type: (Optional[Dict[str, Any]]) -> TwitterClient
|
|
"""Create an authenticated API client."""
|
|
console.print("\n🔐 Getting Twitter cookies...")
|
|
try:
|
|
cookies = get_cookies()
|
|
except RuntimeError as exc:
|
|
raise RuntimeError(str(exc))
|
|
rate_limit_config = (config or {}).get("rateLimit")
|
|
return TwitterClient(cookies["auth_token"], cookies["ct0"], rate_limit_config)
|
|
|
|
|
|
def _resolve_fetch_count(max_count, configured):
|
|
# type: (Optional[int], int) -> int
|
|
"""Resolve fetch count with bounds checks."""
|
|
if max_count is not None:
|
|
if max_count <= 0:
|
|
raise RuntimeError("--max must be greater than 0")
|
|
return max_count
|
|
return max(configured, 1)
|
|
|
|
|
|
def _apply_filter(tweets, do_filter, config):
|
|
# type: (List[Tweet], bool, dict) -> List[Tweet]
|
|
"""Optionally apply tweet filtering."""
|
|
if not do_filter:
|
|
return tweets
|
|
filter_config = config.get("filter", {})
|
|
original_count = len(tweets)
|
|
filtered = filter_tweets(tweets, filter_config)
|
|
print_filter_stats(original_count, filtered, console)
|
|
console.print()
|
|
return filtered
|
|
|
|
|
|
@click.group()
|
|
@click.option("--verbose", "-v", is_flag=True, help="Enable debug logging.")
|
|
@click.version_option(version=__version__)
|
|
def cli(verbose):
|
|
# type: (bool) -> None
|
|
"""twitter — Twitter/X CLI tool 🐦"""
|
|
_setup_logging(verbose)
|
|
|
|
|
|
@cli.command()
|
|
@click.option(
|
|
"--type",
|
|
"-t",
|
|
"feed_type",
|
|
type=click.Choice(FEED_TYPES),
|
|
default="for-you",
|
|
help="Feed type: for-you (algorithmic) or following (chronological).",
|
|
)
|
|
@click.option("--max", "-n", "max_count", type=int, default=None, help="Max number of tweets to fetch.")
|
|
@click.option("--json", "as_json", is_flag=True, help="Output as JSON.")
|
|
@click.option("--input", "-i", "input_file", type=str, default=None, help="Load tweets from JSON file.")
|
|
@click.option("--output", "-o", "output_file", type=str, default=None, help="Save filtered tweets to JSON file.")
|
|
@click.option("--filter", "do_filter", is_flag=True, help="Enable score-based filtering.")
|
|
def feed(feed_type, max_count, as_json, input_file, output_file, do_filter):
|
|
# type: (str, Optional[int], bool, Optional[str], Optional[str], bool) -> None
|
|
"""Fetch home timeline with optional filtering."""
|
|
config = load_config()
|
|
try:
|
|
if input_file:
|
|
console.print("📂 Loading tweets from %s..." % input_file)
|
|
tweets = _load_tweets_from_json(input_file)
|
|
console.print(" Loaded %d tweets" % len(tweets))
|
|
else:
|
|
fetch_count = _resolve_fetch_count(max_count, config.get("fetch", {}).get("count", 50))
|
|
client = _get_client(config)
|
|
label = "following feed" if feed_type == "following" else "home timeline"
|
|
console.print("📡 Fetching %s (%d tweets)...\n" % (label, fetch_count))
|
|
start = time.time()
|
|
if feed_type == "following":
|
|
tweets = client.fetch_following_feed(fetch_count)
|
|
else:
|
|
tweets = client.fetch_home_timeline(fetch_count)
|
|
elapsed = time.time() - start
|
|
console.print("✅ Fetched %d tweets in %.1fs\n" % (len(tweets), elapsed))
|
|
except RuntimeError as exc:
|
|
console.print("[red]❌ %s[/red]" % exc)
|
|
sys.exit(1)
|
|
|
|
filtered = _apply_filter(tweets, do_filter, config)
|
|
|
|
if output_file:
|
|
Path(output_file).write_text(tweets_to_json(filtered), encoding="utf-8")
|
|
console.print("💾 Saved filtered tweets to %s\n" % output_file)
|
|
|
|
if as_json:
|
|
click.echo(tweets_to_json(filtered))
|
|
return
|
|
|
|
title = "👥 Following" if feed_type == "following" else "📱 Twitter"
|
|
title += " — %d tweets" % len(filtered)
|
|
print_tweet_table(filtered, console, title=title)
|
|
console.print()
|
|
|
|
|
|
@cli.command()
|
|
@click.option("--max", "-n", "max_count", type=int, default=None, help="Max number of tweets to fetch.")
|
|
@click.option("--json", "as_json", is_flag=True, help="Output as JSON.")
|
|
@click.option("--output", "-o", "output_file", type=str, default=None, help="Save tweets to JSON file.")
|
|
@click.option("--filter", "do_filter", is_flag=True, help="Enable score-based filtering.")
|
|
def favorite(max_count, as_json, output_file, do_filter):
|
|
# type: (Optional[int], bool, Optional[str], bool) -> None
|
|
"""Fetch bookmarked (favorite) tweets."""
|
|
config = load_config()
|
|
try:
|
|
fetch_count = _resolve_fetch_count(max_count, config.get("fetch", {}).get("count", 50))
|
|
client = _get_client(config)
|
|
console.print("🔖 Fetching favorites (%d tweets)...\n" % fetch_count)
|
|
start = time.time()
|
|
tweets = client.fetch_bookmarks(fetch_count)
|
|
elapsed = time.time() - start
|
|
console.print("✅ Fetched %d favorites in %.1fs\n" % (len(tweets), elapsed))
|
|
except RuntimeError as exc:
|
|
console.print("[red]❌ %s[/red]" % exc)
|
|
sys.exit(1)
|
|
|
|
filtered = _apply_filter(tweets, do_filter, config)
|
|
|
|
if output_file:
|
|
Path(output_file).write_text(tweets_to_json(filtered), encoding="utf-8")
|
|
console.print("💾 Saved to %s\n" % output_file)
|
|
|
|
if as_json:
|
|
click.echo(tweets_to_json(filtered))
|
|
return
|
|
|
|
print_tweet_table(filtered, console, title="🔖 Favorites — %d tweets" % len(filtered))
|
|
console.print()
|
|
|
|
|
|
@cli.command()
|
|
@click.argument("screen_name")
|
|
def user(screen_name):
|
|
# type: (str,) -> None
|
|
"""View a user's profile. SCREEN_NAME is the @handle (without @)."""
|
|
screen_name = screen_name.lstrip("@")
|
|
config = load_config()
|
|
try:
|
|
client = _get_client(config)
|
|
console.print("👤 Fetching user @%s..." % screen_name)
|
|
profile = client.fetch_user(screen_name)
|
|
except RuntimeError as exc:
|
|
console.print("[red]❌ %s[/red]" % exc)
|
|
sys.exit(1)
|
|
|
|
console.print()
|
|
print_user_profile(profile, console)
|
|
|
|
|
|
@cli.command("user-posts")
|
|
@click.argument("screen_name")
|
|
@click.option("--max", "-n", "max_count", type=int, default=20, help="Max number of tweets to fetch.")
|
|
@click.option("--json", "as_json", is_flag=True, help="Output as JSON.")
|
|
def user_posts(screen_name, max_count, as_json):
|
|
# type: (str, int, bool) -> None
|
|
"""List a user's tweets. SCREEN_NAME is the @handle (without @)."""
|
|
screen_name = screen_name.lstrip("@")
|
|
config = load_config()
|
|
try:
|
|
fetch_count = _resolve_fetch_count(max_count, 20)
|
|
client = _get_client(config)
|
|
console.print("👤 Fetching @%s's profile..." % screen_name)
|
|
profile = client.fetch_user(screen_name)
|
|
console.print("📝 Fetching tweets (%d)...\n" % fetch_count)
|
|
start = time.time()
|
|
tweets = client.fetch_user_tweets(profile.id, fetch_count)
|
|
elapsed = time.time() - start
|
|
console.print("✅ Fetched %d tweets in %.1fs\n" % (len(tweets), elapsed))
|
|
except RuntimeError as exc:
|
|
console.print("[red]❌ %s[/red]" % exc)
|
|
sys.exit(1)
|
|
|
|
if as_json:
|
|
click.echo(tweets_to_json(tweets))
|
|
return
|
|
|
|
print_tweet_table(tweets, console, title="📝 @%s — %d tweets" % (screen_name, len(tweets)))
|
|
console.print()
|
|
|
|
|
|
SEARCH_PRODUCTS = ["Top", "Latest", "Photos", "Videos"]
|
|
|
|
|
|
@cli.command()
|
|
@click.argument("query")
|
|
@click.option(
|
|
"--type",
|
|
"-t",
|
|
"product",
|
|
type=click.Choice(SEARCH_PRODUCTS, case_sensitive=False),
|
|
default="Top",
|
|
help="Search tab: Top, Latest, Photos, or Videos.",
|
|
)
|
|
@click.option("--max", "-n", "max_count", type=int, default=20, help="Max number of tweets to fetch.")
|
|
@click.option("--json", "as_json", is_flag=True, help="Output as JSON.")
|
|
@click.option("--filter", "do_filter", is_flag=True, help="Enable score-based filtering.")
|
|
def search(query, product, max_count, as_json, do_filter):
|
|
# type: (str, str, int, bool, bool) -> None
|
|
"""Search tweets by QUERY string."""
|
|
config = load_config()
|
|
try:
|
|
fetch_count = _resolve_fetch_count(max_count, 20)
|
|
client = _get_client(config)
|
|
console.print("🔍 Searching '%s' (%s, %d tweets)...\n" % (query, product, fetch_count))
|
|
start = time.time()
|
|
tweets = client.fetch_search(query, fetch_count, product)
|
|
elapsed = time.time() - start
|
|
console.print("✅ Found %d tweets in %.1fs\n" % (len(tweets), elapsed))
|
|
except RuntimeError as exc:
|
|
console.print("[red]❌ %s[/red]" % exc)
|
|
sys.exit(1)
|
|
|
|
filtered = _apply_filter(tweets, do_filter, config)
|
|
|
|
if as_json:
|
|
click.echo(tweets_to_json(filtered))
|
|
return
|
|
|
|
print_tweet_table(filtered, console, title="🔍 '%s' — %d tweets" % (query, len(filtered)))
|
|
console.print()
|
|
|
|
|
|
@cli.command()
|
|
@click.argument("screen_name")
|
|
@click.option("--max", "-n", "max_count", type=int, default=20, help="Max number of tweets to fetch.")
|
|
@click.option("--json", "as_json", is_flag=True, help="Output as JSON.")
|
|
@click.option("--filter", "do_filter", is_flag=True, help="Enable score-based filtering.")
|
|
def likes(screen_name, max_count, as_json, do_filter):
|
|
# type: (str, int, bool, bool) -> None
|
|
"""Show tweets liked by a user. SCREEN_NAME is the @handle (without @)."""
|
|
screen_name = screen_name.lstrip("@")
|
|
config = load_config()
|
|
try:
|
|
fetch_count = _resolve_fetch_count(max_count, 20)
|
|
client = _get_client(config)
|
|
console.print("👤 Fetching @%s's profile..." % screen_name)
|
|
profile = client.fetch_user(screen_name)
|
|
console.print("❤️ Fetching likes (%d)...\n" % fetch_count)
|
|
start = time.time()
|
|
tweets = client.fetch_user_likes(profile.id, fetch_count)
|
|
elapsed = time.time() - start
|
|
console.print("✅ Fetched %d liked tweets in %.1fs\n" % (len(tweets), elapsed))
|
|
except RuntimeError as exc:
|
|
console.print("[red]❌ %s[/red]" % exc)
|
|
sys.exit(1)
|
|
|
|
filtered = _apply_filter(tweets, do_filter, config)
|
|
|
|
if as_json:
|
|
click.echo(tweets_to_json(filtered))
|
|
return
|
|
|
|
print_tweet_table(filtered, console, title="❤️ @%s likes — %d tweets" % (screen_name, len(filtered)))
|
|
console.print()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
cli()
|