A Python client to handle communication with FranceConnect
Project description
France Connect Py
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).
Python
(supported versions)
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],
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_authorization_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(decoded_token["id_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(decoded_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.0.0 (2024-10-07)
- Initial release
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file france_connect_py-2.0.0.tar.gz
.
File metadata
- Download URL: france_connect_py-2.0.0.tar.gz
- Upload date:
- Size: 9.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e5480a2ff4dedbbff1fce8f046b1d88d7cb5cd5a81a4f0a2c20b65d2154632e8 |
|
MD5 | d924e7455b97c7b296866e8ef083943d |
|
BLAKE2b-256 | f0424b769c3fd49a87b5aadda6144fcf381cc2256d4b5368a3a8f07c1bf5b81c |