Skip to content

Latest commit

 

History

History
45 lines (33 loc) · 1.29 KB

File metadata and controls

45 lines (33 loc) · 1.29 KB

Python Experiments Suite

Purpose

Legacy Python sandbox for small experiments covering:

  • web form and QA automation
  • HTTP scraping and request handling
  • threading/concurrency patterns
  • file-system and utility helpers
  • lightweight desktop/game-style demos

This repository is best used as a historical archive and reference for quick prototypes.

Repository structure

  • src/test_qa/
    Selenium and urllib scripts for form submission and QA experiments.
  • src/flights/
    Flight-search scrapers and helpers for booking-site probes.
  • src/test_game/
    Small game demos (snake, worm, tank, etc.).
  • src/test_gui/
    PyQt/threaded GUI sample.
  • src/
    General utility scripts for threading, file rename helpers, and recursion examples.

Quick start

Run one file directly:

python src/threads.py
python src/threads_1.py
python src/file_rename2.py
python src/recurse.py

For web automation modules, open the corresponding script under src/test_qa/ and run it from that directory.

Notes

  • Most files were written for older Python runtime layouts (Python 2 style in places).
  • Many scripts are intentionally minimal and unopinionated; they are quick prototypes rather than production utilities.
  • Add your own virtual environment and dependency pinning before extension.