Browse Scripts
Discover Python scripts turned into web apps by the community
Discover Python scripts turned into web apps by the community
Transfer movie ratings and watchlist from Letterboxd to IMDb Key features: Import movie ratings from Letterboxd export Transfer watchlist entries Create custom IMDb lists for unrated movies Customizable default ratings for unrated movies Usage: Export Letterboxd ratings (How to) Obtain IMDb authentication cookie (How to) Run script to transfer ratings/watchlist
A powerful utility to transform captured HTTP traffic from mitmproxy into comprehensive, well-formatted markdown documentation. This tool helps developers and analysts: Generate detailed API documentation Create reproducible HTTP request examples Produce instant cURL command representations Analyze and document network traffic flows Provide context-rich information for API debugging and AI-assisted analysis
A tool for automatically converting mitmproxy captures to OpenAPI 3.0 specifications. Key Features Reverse-engineer REST APIs by capturing network traffic Supports mitmproxy flow files and browser HAR exports Generates OpenAPI 3.0 specification documents Provides options for adding examples and headers to API documentation Two-Pass Process Pass 1: Generate Path Templates Run the tool with your traffic file and API base URL. This generates an x-path-templates section with all discovered paths prefixed by ignore:. Edit Schema Remove ignore: from paths you want to include: x-path-templates: /users/{id} # ✓ Include ignore:/internal # ✗ Skip Pass 2: Generate Endpoints Run the tool again with the same inputs but specify your edited file as the Existing OpenAPI Schema. It will generate full endpoint descriptions for paths without ignore:. Notes: Use Include Examples and Include Headers options with caution (may expose sensitive data)
A comprehensive Python script designed to seamlessly migrate analytics data from Matomo to Umami by generating direct database import SQL statements. Key Features Complete data transfer including sessions, page views, and visitor information Flexible migration with custom date range selection Preserves detailed visitor data like browser info, location, and referrer details Migration Process: Extracts data from Matomo via API Generates PostgreSQL-compatible SQL import file Enables direct database import to Umami Import the file: After generating the SQL file, import it into your Umami PostgreSQL database: Using psql command line psql -h localhost -U umami_user -d umami_db -f migration.sql