Skip to main content

Python library to get FIFA Ranking since 2007.

Project description

pyrankingfifa

A lightweight and zero dependencies Python library that allows you to extract the Ranking FIFA since 2007.

This library wraps the FIFA Ranking through ceroaceros/soccerzz website. Note this isn't affiliated with FIFA or ceroaceros.

Installation

From PyPI

pip install pyrankingfifa

From source code clone it

git clone https://github.com/manucabral/pyrankingfifa.git

Usage

Setting up

from pyrankingfifa import Ranking

mens_ranking = Ranking('mens')

womens ranking is not available for now

Let's get current ranking.

ranking = mens_ranking.get()
for team in ranking:
    print(team.rank, team.name, team.points)

If you need more rank positions apply the param page=id

Let's get a specific ranking date.

ranking = mens.get(year=2018, month='aug')
for team in teams:
    print(team)

The library saves all requests rankings for a faster request speed, if you want to remove these files call refresh() method.

Constributions

All constributions, bug reports or fixes and ideas are welcome.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pyrankingfifa-0.0.4.tar.gz (7.0 kB view hashes)

Uploaded Source

Built Distribution

pyrankingfifa-0.0.4-py3-none-any.whl (8.2 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page