Changes between Initial Version and Version 1 of Ticket #36501


Ignore:
Timestamp:
Jul 9, 2025, 2:14:31 AM (2 months ago)
Author:
JoseStevens
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #36501 – Description

    initial v1  
    1 I'm building a Django app for sports analytics and need to generate random test data for my models to simulate user interactions and test my views and APIs. Specifically, I want to populate a Player model with random [https://wputopia.com/tools/random-nba-player/ NBA player names], stats (e.g., points, rebounds), and other attributes to stress-test my database queries and API endpoints.
     1I'm building a Django app for sports analytics and need to generate random test data for my models to simulate user interactions and test my views and APIs. Specifically, I want to populate a Player model with [https://wputopia.com/tools/random-nba-player/  random NBA player names], stats (e.g., points, rebounds), and other attributes to stress-test my database queries and API endpoints.
    22
    33I’ve started with a simple approach using Python’s random module in a Django management command:
Back to Top