This Azure Function retrieves data from the fantasy football league Sleeper API, specifically focusing on keeper player information.
- GetKeepers Function: Retrieves and processes keeper player data from the Sleeper API.
- Asynchronous Processing: Utilizes async functions for efficient data handling.
- JSON Handling: Fetches JSON data and converts it into a list of
Player
objects.
- .NET 6.0 SDK
- Azure Functions Core Tools (for local development)
- Git
- Clone the repository:
git clone https://github.com/eric22f/Sleeper.git
- Navigate to the project directory:
cd Sleeper
- Install dependencies:
dotnet restore
- Run the function locally:
func start
Deploy the function to Azure and set up any required environment variables or configurations in the Azure portal. The GetKeepers
function will automatically run according to the configured schedule or can be triggered manually.
Feel free to fork the repository and submit pull requests. Contributions are welcome!
This project is licensed under the MIT License. See the LICENSE file for details.
This should give a concise overview of your project, helping others understand its purpose and how to get started. You can adjust the details to better fit your specific needs or add any additional sections that might be useful.