Skip to main content

A way to retrieve information about members from the ForeningLet API (www.foreninglet.dk) - ForeningLet is a member system for small (typically) voluntary organizations in Denmark

Project description

foreninglet-data

Python module for generalising access to the ForeningLet (www.foreninglet.dk) member system API

Current functionality

The project is work in progress. As of now, calling the ForeningLet API has been generalised, and the memberlist can be retrieved.

A memberlist object can be genereated, and so far has functionality to count the members, and genders.

Installation

For now this code can be pip installed by referring to the get repo:

python -m pip install git+https://github.com/simcax/foreninglet-data

Compulsory Settings

Export settings as environment variables:

API_USERNAME=username
API_PASSWORD=password
API_BASE_URL=https://foreninglet.dk/api/
API_VERSION=version=1
API_MEMBERS_API=members
API_ACTIVITIES_API=activities
API_RESIGNED_MEMBERS_API=members/status/resigned
MEMBERSHIP_KEYWORDS=keyword1,keyword2 

The MEMBERSHIP_KEYWORDS environment variable is needed to correctly match a membership to a member. I.e. consider having the following memberships:

  • 3 måneders medlemskab
  • 6 måneders medlemskab
  • 9 måneders medlemskab

Then giving an environment variable this way: MEMBERSHIP_KEYWORDS=medlemskab will get the membership activity IDs from the activity API, and assign the correct membership to each member in the membership list object:

>>> memberlist_obj.memberlist[0].get('Membership')
>>> '3 måneders medlemskab'

Usage

Then import:

from foreninglet_data.api import ForeningLet
from foreninglet_data.memberlist import Memberlist

And get the memberlist:

fl_obj = ForeningLet()
memberlist = fl_obj.get_memberlist()
memberlist_obj = Memberlist(memberlist)

This will give you a Python memberlist object. The memberlist object contains all the information from the members API call, now accessible as an object:

memberlist_obj.members 

gives you a dictionary with all the members in it. In addition the object also holds the data as a Pandas Dataframe:

memberlist_obj.memberlist_dataframe

This will enable further data manipulation and investigation into the data returned.

This has not been tested with HUGE organisations, only up till about 1200 members. There could be some limitations on memory consumption. (Hence the sub 1.0 release ;-) )

Retrieve the membercount:

# All members
memberlist.member_count
# All the GenuineMembers
memberlist.genuine_member_count
# The number of new members in the current month
memberlist.new_members_current_month
memberlist.new_members_current_month_percentage
# The number of new members in the previous month
memberlist.new_members_previous_month
memberlist.new_members_previous_month_percentage
# Number of members joined last year
memberlist.members_last_year
# Number of members joined current year
memberlist.members_current_year
# Members enrolled per year
memberlist.members_per_year 
- Returns a dictionary with year as key and number of enrolled members as values:
  {'2020': 14, '2021': 15, '2022': 15, '2023': 10}

Retrieve the count of genders:

memberlist.count_men
memberlist.count_women

Getting a list of member ages

memberlist.member_age_list

This is a dict with a full range of each age from the youngest to the eldest member. In the case no members are of a given age, the dict will contain the age but a count of 0.

The dict is sorted by age.

i.e:

{23: 1, 24: 0, 25: 0, 26: 0, 27: 0, 28: 0, 29: 0, 30: 1, 31: 0, 32: 0, 33: 0, 34: 0, 35: 0, 36: 0, ...}

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

foreninglet_data-0.5.2.tar.gz (29.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

foreninglet_data-0.5.2-py3-none-any.whl (24.2 kB view details)

Uploaded Python 3

File details

Details for the file foreninglet_data-0.5.2.tar.gz.

File metadata

  • Download URL: foreninglet_data-0.5.2.tar.gz
  • Upload date:
  • Size: 29.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for foreninglet_data-0.5.2.tar.gz
Algorithm Hash digest
SHA256 8e4f9a15c2732f42af91f14cee0fc0d6cff92938c7ff62f993a9c02ccd5a2737
MD5 e2d89b71517de4089207c7cbcdc0307f
BLAKE2b-256 38bdf7abdd69d1858060b6f28b59380b28eba2d4bba12e3f05648c97aafeee69

See more details on using hashes here.

Provenance

The following attestation bundles were made for foreninglet_data-0.5.2.tar.gz:

Publisher: tag_release.yml on simcax/foreninglet-data

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

File details

Details for the file foreninglet_data-0.5.2-py3-none-any.whl.

File metadata

File hashes

Hashes for foreninglet_data-0.5.2-py3-none-any.whl
Algorithm Hash digest
SHA256 250332c5931ba0a6562c745681956a41ae6f16241debb84191ac636dafa8a73b
MD5 4cbf77b2862217846434b2990b6d1d87
BLAKE2b-256 d3b2d8832cda8d7164b72328eded475431ce7c78b4064e5b05b02c66d3862242

See more details on using hashes here.

Provenance

The following attestation bundles were made for foreninglet_data-0.5.2-py3-none-any.whl:

Publisher: tag_release.yml on simcax/foreninglet-data

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