Skip to content

Commit 4b8363a

Browse files
committed
Update 2025-09 attendance
1 parent 8477d79 commit 4b8363a

File tree

3 files changed

+16
-7
lines changed

3 files changed

+16
-7
lines changed
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1-
name,org,attend
1+
"name","org","remote","attend"
2+
"Wesley Bland","Meta","0","1"
3+
"Anthony Skjellum","Tennessee Technological University","0","1"

meetings/2025/09/attendance.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ date: September 29, 2025 - October 01, 2025
44
permalink: meetings/2025/09/attendance
55
year: "2025"
66
month: "09"
7-
prev_year: ""
8-
prev_month: ""
9-
prev_prev_year: ""
10-
prev_prev_month: ""
7+
prev_year: "2025"
8+
prev_month: "06"
9+
prev_prev_year: "2025"
10+
prev_prev_month: "03"
1111
---
1212

utils/parse_eventbrite_registration.py

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,13 +46,20 @@ def main():
4646
first_name = registration['First Name']
4747
last_name = registration['Last Name']
4848
name = first_name + " " + last_name
49-
org = registration['Organization you are representing'].strip()
49+
org = registration['Organization you are representing (Required for MPI Forum Attendees)'].strip()
5050
email = registration['Email']
51+
ticket_type = registration['Ticket Type']
52+
53+
if org == "":
54+
continue
55+
56+
if ticket_type != "Early Combined (IWOMP, EuroMPI, MPI Forum, Social)" and ticket_type == "Student Registration (all week)" and ticket_type == "MPI Forum - Online Only":
57+
continue
5158

5259
if org in org_dict:
5360
org = org_dict[org]
5461

55-
if any_remote and registration['Ticket Type'] == "On-line Only":
62+
if any_remote and ticket_type == "MPI Forum - Online Only":
5663
remote = 1
5764
else:
5865
remote = 0

0 commit comments

Comments
 (0)