Git Product home page Git Product logo

azifpl's Introduction

azifpl

A wrapper around the Fantasy Premier League Platform, implementing multiple functionnalities from getting gameweek score, to players prices, changing teams names, leagues history, set captain and more ⚽ ⚽

Getting Started

These instructions will get you wokring with this package and integrate it in your code.

Prerequisites

Prior to use this module, you only need a working Node js installation, and yes of course, an internet connexion 😄

Installing

Add the dependency to your package.json file:

...
"dependencies": {
    ...
    "azifpl": "latest",
    ...
...

And then install it using:

npm install

you can do add the module to your package.json and install it running a single command:

npm install azifpl --save

All you need next is to require the module in your code using:

var azifpl = require('azifpl');

and call its functions in your code.

Example 1 Get the worst and the best overall rank of a fantasy team:

azifpl.getTeamBestandWorstOverallRank(455312).then(function (res) {
    console.log(res)
}, function (err) {
    console.log(err)
})

Output:

{ playerId: 455312,
  data: 
   { bestOverAllRank: { Value: 36605, eventNumber: 5 },
     worstOverAllRank: { Value: 1857687, eventNumber: 1 } } }

Example 2: get used chips scores/Gameweek activation:

azifpl.chipsPoints(455312).then(function (res) {
    console.log(res)
}, function (err) {
    console.log(err)
})

Output:

[ { chips: 'wildcard', event: 9, points: 25 },
  { chips: 'freehit', event: 19, points: 78 } ]

Take a look at index.js to see what are the available methods.

To Do ( In no particular order ) :

  • Compare two fantasy teams against each others => Done
  • Chips used and corresponding event/points => Done
  • Changing a team name ( Using Login mail and Password )
  • transfer and replace player ( Using Login mail and Password )
  • set Captain/Vice Captain (C/VC) ( Using Login mail and Password )

and many more! stay tunned! 👀

Authors

azifpl's People

Contributors

azizfcb avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

azifpl's Issues

Any luck on automating player transfers?

Just wondering if you manged to automate the transfer of players during the game week with your package. I have a similar python package but the only thing I'm missing is the player transfers and would like to see if anyone has had success with this.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.