Allow to interact with FFBB apis


License
Apache-2.0
Install
pip install ffbb-api-client==0.0.9.9.7

Documentation

PyPI-Server Project generated with PyScaffold

ffbb_api_client

Allow to interact with FFBB apis

ffbb_api_client allow to interact with FFBB api. You can retrieve information about clubs, teams, matches, etc...

Installation

pip install ffbb_api_client

Quick start

import os
from ffbb_api_client import FFBBApiClient

# Load env from file if needed
# from dotenv import load_dotenv
# load_dotenv()

# Retrieve api user / pass
basic_auth_user = os.getenv("FFBB_BASIC_AUTH_USER")
basic_auth_pass = os.getenv("FFBB_BASIC_AUTH_PASS")

# Create an instance of the api client
api_client = FFBBApiClient(
    basic_auth_user=basic_auth_user,
    basic_auth_pass=basic_auth_pass
)

Examples

Take a look at quick_start.py to see how to use the library.

Note

This project has been set up using PyScaffold 4.5. For details and usage information on PyScaffold see https://pyscaffold.org/.

Licence

ffbb_api_client is distributed under the Apache 2.0 license.

Dev notes

Command used to create this project:

putup FFBBApiClient_Python -p ffbb_api_client -l Apache-2.0 -d "Allow to interact with FFBB apis" -u "https://github.com/Rinzler78/FFBBApiClient_Python" -v --github-actions --venv .venv