Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: manseka/pythoncode-tutorials
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: x4nth055/pythoncode-tutorials
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 13 commits
  • 16 files changed
  • 5 contributors

Commits on Aug 25, 2023

  1. Update interactive_weather_plot.py

    I am using Python 3.11.3
    I was having this error : "TypeError: 'dict_keys' object is not subscriptable"
    locations.keys() had to be explicitly converted into list to prevent this exception.
    TsKyrk authored Aug 25, 2023
    Configuration menu
    Copy the full SHA
    4767cfd View commit details
    Browse the repository at this point in the history

Commits on May 28, 2024

  1. Fix ranges extraction

    the previous code would output [[1,2],[3,3]] instead of [[1,2],[3,4]]
    because i variable increase one by one instead of the expexted two by two
    juleslagarde authored May 28, 2024
    Configuration menu
    Copy the full SHA
    de55027 View commit details
    Browse the repository at this point in the history
  2. fix indent

    juleslagarde authored May 28, 2024
    Configuration menu
    Copy the full SHA
    b0d1d82 View commit details
    Browse the repository at this point in the history

Commits on Sep 14, 2025

  1. Added Http-headers

    Muhammad-aa committed Sep 14, 2025
    Configuration menu
    Copy the full SHA
    c10f5b2 View commit details
    Browse the repository at this point in the history
  2. Merge pull request x4nth055#136 from Muhammad-aa/http-branch

    Added Http-headers
    x4nth055 authored Sep 14, 2025
    Configuration menu
    Copy the full SHA
    0e6acef View commit details
    Browse the repository at this point in the history

Commits on Sep 20, 2025

  1. Merge PR x4nth055#130: Fix bug - textArea ranges extraction

    Fix ranges extraction when serializing Text widget tag ranges in rich_text_editor.py.
    
    Previously, iterating with enumerate(ranges[::2]) caused pairing of (startN, startN) for subsequent ranges. This change iterates over the original ranges in steps of 2 to correctly pair (start, end).
    x4nth055 authored Sep 20, 2025
    Configuration menu
    Copy the full SHA
    8fca152 View commit details
    Browse the repository at this point in the history

Commits on Sep 28, 2025

  1. Add Ghostscript-based PDF compressor and update docs (fixes x4nth055#129

    )
    
    - Add pdf_compressor_ghostscript.py using open-source Ghostscript
    - Update README.md with both legacy and recommended methods
    - Update requirements.txt to note system dependencies
    - Fixes issue x4nth055#129: PDFTron/PDFNet is now commercial and requires license
    - Provides free alternative with same functionality and API
    x4nth055 authored Sep 28, 2025
    Configuration menu
    Copy the full SHA
    2e77319 View commit details
    Browse the repository at this point in the history

Commits on Sep 29, 2025

  1. Merge pull request x4nth055#128 from TsKyrk/patch-1 — Convert RadioBu…

    …ttons labels to list
    
    Fix RadioButtons labels: convert dict_keys to list to avoid TypeError on Python 3.11+ (Matplotlib expects an indexable sequence). Verified in sandbox that `dict_keys` raises and `list(...)` works. Safe, minimal change.
    x4nth055 authored Sep 29, 2025
    Configuration menu
    Copy the full SHA
    bf1862e View commit details
    Browse the repository at this point in the history
  2. Fix YouTube video extractor script with complete rewrite

    - Replace broken meta tag extraction with modern ytInitialData approach
    - Fix channel URL construction to use proper /channel/ path prefix
    - Add robust error handling for YouTube's changing structure
    - Extract title, views, date, channel info, and description successfully
    - Maintain backward compatibility with command-line interface
    
    The original script was completely broken due to YouTube's HTML structure changes.
    This rewrite successfully extracts core video information using the modern approach.
    x4nth055 committed Sep 29, 2025
    Configuration menu
    Copy the full SHA
    dd98afd View commit details
    Browse the repository at this point in the history

Commits on Oct 3, 2025

  1. - Updated the script to list the security type for windows, along wi…

    …th the password, wifi network name, and cipher.
    
      - Updated the README file to briefly explain what the script output shows.
    G-Balabhaskarrao committed Oct 3, 2025
    Configuration menu
    Copy the full SHA
    21817de View commit details
    Browse the repository at this point in the history

Commits on Oct 6, 2025

  1. Merge pull request x4nth055#138 from G-Balabhaskarrao/my-feature-branch

     Adding security type for windows in the output
    x4nth055 authored Oct 6, 2025
    Configuration menu
    Copy the full SHA
    e085c5f View commit details
    Browse the repository at this point in the history
  2. Add FastMCP MCP Todo Manager example (server, client, README, require…

    …ments) under general/fastmcp-mcp-client-server-todo-manager.
    x4nth055 committed Oct 6, 2025
    Configuration menu
    Copy the full SHA
    2b6507f View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    ae8517a View commit details
    Browse the repository at this point in the history
Loading