Skip to content

Releases: c-wilkinson/basic-FPL-scrape-scripts

Patch Release 1.1.1

22 Jun 21:44
Compare
Choose a tag to compare

This release is to cover the extra gameweeks caused by the COVID lockdown.

Initial release

15 Mar 11:53
Compare
Choose a tag to compare

This is the point in the repository that version 1.0 was released in to the PowerShell Gallery. This release contains three basic object creations: -

  • Session
  • League
  • Chart

The session object is used to authenticate with various parts of the FPL system. The league object contains an array with information about the mini-league it has parsed. The chart object is able to output a chart of the history of the league object that has been passed in.

Patch Release

16 Mar 14:30
Compare
Choose a tag to compare

Authenticate no longer takes a username and password string combination, instead expecting a PSCredential. A PSCredential object can be created by running "New-Object System.Management.Automation.PSCredential(yourUsername, yourPassword);". This change was made remove any potential expose of sensitive information outside of the module.