Skip to main content

A Python client to handle communication with FranceConnect

Project description

France Connect Py

PyPI Version Tests Python 3.9+ License MIT codecov CodeFactor

france-connect-py is a package allowing to interact with FranceConnect V2 through a single and easy-to-use class.

Requirements

france-connect-py only support the supported version of each dependency (mainstream & lts).

Installation

The easiest way to install france-connect-py is through pip:

  • pip install france-connect-py

How to use

You only need to import the FranceConnect class and create an instance to start using the France Connect API.

from france_connect.clients import FranceConnect
from france_connect.scopes import ACRValues, Scopes

fc = FranceConnect(
    client_id="<client_id>",
    client_secret="<client_secret>",
    scopes=[Scopes.PROFILE, Scopes.IDENTITE_PIVOT],
    # Must be THE SAME url as defined in FranceConnect
    # No additional query params
    # Do not forget the potential trailing slash
    login_callback_url="<login_callback_url>",
    logout_callback_url="<logout_callback_url>",
    fc_base_url="https://fcp-low.integ01.dev-franceconnect.fr",
)

# You can retrieve the FranceConnect's OpenID configuration as follow.
fc.get_configuration()

# Get the authorization URL.
#
# You can provide a specific `nonce` and `state` if needed, or let the class
# generate them as a random 64 bytes hex string. You can also inherit
# `FranceConnect` and override `generate_nonce()` and `generate_state()` to change
# the way they are generated.
# 
# `eidas1` is used as the default level of end user assurance, you can provide
# a different value using the `acr_values` parameter.
# For more information, see:
#   https://docs.partenaires.franceconnect.gouv.fr/fs/fs-technique/fs-technique-eidas-acr/
# 
# The `login_callback_url` provided at instantiation will be used as the
# callback URL, you can override it using the `callback_url` parameter.
url, nonce, state = fc.get_authentication_url(acr_values=[ACRValues.EIDAS2])


# The following code must be called when the user is redirected back to the
# service provider after a successful authentication of FranceConnect.
#
# Retrieve the code from the FranceConnect request
code = ...


# Retrieve the ID Token (the signature is verified automatically)
raw_token, decoded_token = fc.get_id_token(code)


# Retrieve the user's information using the ID Token (the signature is also
# verified automatically) `user_info` is a dictionary containing the user's
# information asked in the scopes.
user_info = fc.get_user_info(raw_token["access_token"])


# To retrieve the logout url, uses `get_logout_url()`.
#
# The `logout_callback_url` provided at instantiation will be used as the
# callback URL, you can override it using the `callback_url` parameter.
logout_url = fc.get_logout_url(raw_token["id_token"], state)

Other

france-connect-py uses the requests library to interact with the France Connect API. You can override how the library is used using the following FranceConnect class parameters:

  • timeout: int = 10
  • verify_ssl: bool = True
  • allow_redirects: bool = True

Changelog

2.1.0 (2025-05-20)

  • Allow customization of JWT algorithms using jwt_algorithms when instantiating client (#7), Contributed by Vayel.

2.0.0 (2024-10-07)

  • Initial release

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

france_connect_py-2.1.0.tar.gz (10.2 kB view details)

Uploaded Source

File details

Details for the file france_connect_py-2.1.0.tar.gz.

File metadata

  • Download URL: france_connect_py-2.1.0.tar.gz
  • Upload date:
  • Size: 10.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for france_connect_py-2.1.0.tar.gz
Algorithm Hash digest
SHA256 84136073d913f2a6f84b4afe72bde914a26d83e749ae6b1473beac80045d2fb2
MD5 15b3a84c50a563d5ac116242833139de
BLAKE2b-256 988baa9afe9c4f225832c67af9a277b755845bc7cfae254d04de6126b09c4f0d

See more details on using hashes here.

Provenance

The following attestation bundles were made for france_connect_py-2.1.0.tar.gz:

Publisher: tests_and_publish.yml on Codoc-os/france-connect-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

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