diff --git a/common/test-utils.js b/common/test-utils.js index 1f67706..8f09620 100644 --- a/common/test-utils.js +++ b/common/test-utils.js @@ -106,8 +106,8 @@ const setupCacheMock = (dirname, suffix) => { // A hash ID value was added to BFI cache. Instead of updating all manual // recording filenames, let's remove the ID here so they continue to map. if (filename.startsWith("bfi.org.uk-")) { - const [prefix, , ...remainder] = filename.split("-"); - filename = `${prefix}-${remainder.join("-")}`; + const [prefix, venue, ...remainder] = filename.split("-"); + if (venue !== "bfi") filename = `${prefix}-${remainder.join("-")}`; } return path.join( dirname, diff --git a/sources/bfi.org.uk-bfi-festivals/attributes.js b/sources/bfi.org.uk-bfi-festivals/attributes.js new file mode 100644 index 0000000..7a81af0 --- /dev/null +++ b/sources/bfi.org.uk-bfi-festivals/attributes.js @@ -0,0 +1,5 @@ +module.exports = { + id: "bfi.org.uk-bfi-festivals", + name: "BFI Festivals", + url: "https://whatson.bfi.org.uk/flare/Online/", +}; diff --git a/sources/bfi.org.uk-bfi-festivals/find-events.js b/sources/bfi.org.uk-bfi-festivals/find-events.js new file mode 100644 index 0000000..22d4e1d --- /dev/null +++ b/sources/bfi.org.uk-bfi-festivals/find-events.js @@ -0,0 +1,223 @@ +const path = require("node:path"); +const cheerio = require("cheerio"); +const { + generateShowingId, + createOverview, + createPerformance, + getText, + createAccessibility, + readJSON, +} = require("../../common/utils"); +const { venueMatchesCinema } = require("../../common/source-utils"); +const { parseDate } = require("../../common/bfi.org.uk/utils"); +const attributes = require("./attributes"); + +// Indices within each articleContext.searchResults entry (confirmed from live data) +const RESULT_DATETIME = 7; // "Friday 20 March 2026 15:30" +const RESULT_YEAR = 11; // "2026" +const RESULT_BOOKING_URL = 18; // "default.asp?doWork::WScontent..." +const RESULT_SCREEN_FULL_NAME = 64; // "BFI Southbank, Screen NFT1" + +function getOverviewFor($) { + const overview = { + categories: "", + directors: "", + actors: "", + }; + + const $showInfo = $("ul.Film-info__information li"); + $showInfo.each(function () { + const heading = getText( + $(this).find(".Film-info__information__heading"), + ).toLowerCase(); + const content = getText($(this).find(".Film-info__information__value")); + + if ( + (heading === "director" || heading === "director-screenwriter") && + !overview.directors + ) { + overview.directors = content; + } else if (heading === "with" && !overview.actors) { + overview.actors = content; + } else if (heading === "certificate" && !overview.classification) { + overview.classification = content; + } else { + const hasTimings = content.match(/\s+(\d{4}).\s+(\d+)min(?:\s|$)/i); + if (hasTimings && !overview.year) { + overview.year = hasTimings[1]; + } + if (hasTimings && !overview.duration) { + overview.duration = hasTimings[2]; + } + } + }); + + return createOverview(overview); +} + +function getAccessibilityFlagsForType(typeText) { + if (typeText === "Relaxed screening") { + return { relaxed: true }; + } + if (typeText === "Descriptive Subtitles") { + return { hardOfHearing: true }; + } + if (typeText === "BSL") { + return { hardOfHearing: true }; + } + if (typeText === "Live captioned") { + return { hardOfHearing: true }; + } + if (typeText.startsWith("Closed Captions")) { + return { hardOfHearing: true }; + } + if (typeText === "Audio Description") { + return { audioDescription: true }; + } + console.warn( + `[bfi.org.uk-bfi-festivals] Unrecognised access screening type: "${typeText}"`, + ); + return null; +} + +function buildAccessibilityByTime($, searchResults) { + const accessibilityByTime = new Map(); + + // Find the "Access screenings" content section + const $accessHeading = $(".Film-info__content__heading").filter(function () { + return getText($(this)) === "Access screenings"; + }); + + if (!$accessHeading.length) return accessibilityByTime; + + const $content = $accessHeading + .closest(".Film-info__content") + .find(".Film-info__content__content"); + + // Get year from the first performance entry to parse partial access dates + const firstResult = searchResults[0]; + if (!firstResult) return accessibilityByTime; + const year = firstResult[RESULT_YEAR]; + + $content.find("p").each(function () { + const $p = $(this); + const strongText = getText($p.find("strong")); + if (!strongText) return; + + // "Wednesday 25 March 16:00" → "Wednesday 25 March 2026 16:00" + const fullDateStr = strongText.replace(/(\d{2}:\d{2})$/, `${year} $1`); + let date; + try { + date = parseDate(fullDateStr); + } catch { + console.warn( + `[bfi.org.uk-bfi-festivals] Unable to parse access screening date: "${strongText}"`, + ); + return; + } + + // Collect flags from all text nodes following a
+ let flags = {}; + for (const br of $p.find("br").toArray()) { + const typeText = br.nextSibling?.data?.trim(); + if (!typeText) continue; + const brFlags = getAccessibilityFlagsForType(typeText); + if (brFlags) flags = { ...flags, ...brFlags }; + } + + if (Object.keys(flags).length === 0) return; + + const existing = accessibilityByTime.get(date.getTime()) ?? {}; + accessibilityByTime.set(date.getTime(), { ...existing, ...flags }); + }); + + return accessibilityByTime; +} + +async function findEvents(cinema) { + const dataSrc = path.join( + process.cwd(), + "retrieved-data", + "bfi.org.uk-bfi-festivals", + ); + + let data = {}; + try { + data = await readJSON(dataSrc); + } catch { + return []; + } + + const moviePages = data.moviePages ?? {}; + const events = []; + + for (const [articleUrl, movie] of Object.entries(moviePages)) { + const { html, searchResults, domain, festival } = movie; + + if (!searchResults || searchResults.length === 0) continue; + + const $ = cheerio.load(html); + const title = searchResults[0][5]; + + const overview = getOverviewFor($); + + const $articleBody = $(".main-article-body").clone(); + $articleBody.find(".Breadcrumbs,.Booking").remove(); + $articleBody + .find(".Film-info__content__heading") + .filter(function () { + return getText($(this)) === "Access screenings"; + }) + .parent() + .remove(); + $articleBody.find("script").remove(); + const overviewText = getText($articleBody) + .split("\n") + .map((line) => line.trim()) + .filter(Boolean) + .join("\n"); + + const accessibilityByTime = buildAccessibilityByTime($, searchResults); + + const performances = []; + for (const result of searchResults) { + const [venueName, screen] = result[RESULT_SCREEN_FULL_NAME].split(", "); + if (!venueMatchesCinema(cinema, venueName)) continue; + + const date = parseDate(result[RESULT_DATETIME]); + const accessibilityFlags = accessibilityByTime.get(date.getTime()) ?? {}; + + performances.push( + createPerformance({ + date, + url: `${domain}${result[RESULT_BOOKING_URL]}`, + screen, + notesList: [`Part of the ${festival} festival`], + accessibility: createAccessibility( + title, + accessibilityFlags, + overviewText, + ), + }), + ); + } + + if (performances.length === 0) continue; + + const slug = new URL(articleUrl).searchParams.get( + "BOparam::WScontent::loadArticle::permalink", + ); + events.push({ + showingId: generateShowingId(attributes, slug), + title, + url: articleUrl, + overview, + performances, + matchingHints: { overview: overviewText }, + }); + } + + return events; +} + +module.exports = findEvents; diff --git a/sources/bfi.org.uk-bfi-festivals/index.js b/sources/bfi.org.uk-bfi-festivals/index.js new file mode 100644 index 0000000..5e380f8 --- /dev/null +++ b/sources/bfi.org.uk-bfi-festivals/index.js @@ -0,0 +1,9 @@ +const attributes = require("./attributes"); +const retrieve = require("./retrieve"); +const findEvents = require("./find-events"); + +module.exports = { + attributes, + retrieve, + findEvents, +}; diff --git a/sources/bfi.org.uk-bfi-festivals/retrieve.js b/sources/bfi.org.uk-bfi-festivals/retrieve.js new file mode 100644 index 0000000..abae21b --- /dev/null +++ b/sources/bfi.org.uk-bfi-festivals/retrieve.js @@ -0,0 +1,110 @@ +const cheerio = require("cheerio"); +const getPageWithPlaywright = require("../../common/get-page-with-playwright"); + +const FESTIVALS = [ + { + id: "flare", + name: "BFI Flare", + azUrl: + "https://whatson.bfi.org.uk/flare/Online/default.asp?BOparam::WScontent::loadArticle::permalink=flare-films-az", + domain: "https://whatson.bfi.org.uk/flare/Online/", + }, +]; + +async function getAzPage(festival) { + return getPageWithPlaywright( + festival.azUrl, + `bfi.org.uk-bfi-festivals-az-${festival.id}`, + async (page) => { + try { + await page.waitForLoadState("networkidle"); + } catch { + // If this fails it timed out — keep going and let the next wait handle it + } + await page.locator("#content").waitFor({ strict: false }); + return page.content(); + }, + ); +} + +async function getMoviePage(articleUrl) { + const slug = new URL(articleUrl).searchParams.get( + "BOparam::WScontent::loadArticle::permalink", + ); + return getPageWithPlaywright( + articleUrl, + `bfi.org.uk-bfi-festivals-${slug}`, + async (page) => { + try { + await page.waitForLoadState("networkidle"); + } catch { + // If this fails it timed out — keep going and let the next wait handle it + } + + const errorLocator = page + .locator("#content h2") + .filter({ hasText: /500 - internal server error/i }); + const validContentLocator = page.locator(".Film-info__information"); + + await errorLocator + .or(validContentLocator.first()) + .waitFor({ state: "attached" }); + + if (await errorLocator.isVisible()) { + const errorText = await errorLocator.textContent(); + return new Error(`Error page detected - ${errorText}`); + } + + const html = await page.content(); + if (typeof html !== "string" || html.length === 0) { + return new Error(`Empty page contents at ${articleUrl}`); + } + + const searchResults = await page.evaluate( + // eslint-disable-next-line no-undef + () => window.articleContext?.searchResults ?? null, + ); + + return { html, searchResults }; + }, + ); +} + +async function retrieve() { + const movieListPages = {}; + const moviePages = {}; + + for (const festival of FESTIVALS) { + console.log(` - Retrieving A-Z page for ${festival.name} ...`); + const html = await getAzPage(festival); + movieListPages[festival.id] = html; + + const $ = cheerio.load(html); + const articleUrls = new Set(); + + $(".main-article-body .Rich-text li > a").each(function () { + const articleUrl = $(this).attr("href"); + articleUrls.add(articleUrl); + }); + + for (const url of articleUrls) { + const absoluteUrl = `${festival.domain}${url}`; + console.log( + ` - [${Date.now()}] Getting data for article ${absoluteUrl} ...`, + ); + const result = await getMoviePage(absoluteUrl); + + if (result instanceof Error) throw result; + + moviePages[absoluteUrl] = { + ...result, + domain: festival.domain, + festival: festival.name, + }; + } + } + + return { movieListPages, moviePages }; +} + +module.exports = retrieve; diff --git a/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-10s-across-the-borders-flare26-2026-02-23 b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-10s-across-the-borders-flare26-2026-02-23 new file mode 100644 index 0000000..b1a8ead --- /dev/null +++ b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-10s-across-the-borders-flare26-2026-02-23 @@ -0,0 +1,209 @@ +{ + "html": "\nBuy tickets for 10s Across the Borders | BFI Flare: London LGBTQIA+ Film Festival 2026\n\n\n\n\n\n\n\n\n\n\n\n \n\n \n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n\n\n\t\n\t\n\t\n\t\n\t\n\t\n
\n
\n \n \n \n
\n\n\n
\n \n \n \n
\n
\n
\n\n \n Order for\n Customer\n\n
\n
\n
\n \n
\n \n
\n \n Your basket is empty\n \n
\n \n
\n\n \n
\n\n \n \n\n\n \n
\n
\n \n\n\n
\n
\n\n \n
\n
\n Order for\n Customer\n \n
\n
\n\n \n
\n
    \n \n
\n
\n
\n\n
\n
\"BFI \"BFI \n
\n\n
\n\n \n \n
\n\n
\n \n
\n\t
\n\t\t\n\n\t
\n
\n\n\n
\n
\n\n \n
\n\n\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n
    \n
  • \n Search films and events\n \n
  • \n
  • \n Search dates\n from\n
    \n
    \n
  • \n
  • \n to\n
    \n
    \n
  • \n
  • \n \n
  • \n
\n \n
\n
\n\n \n\n
\n\n \n \n\n
\n \n
\n
\n
\n\n
\n\n\n
\n

10s Across the Borders

\n\n

Sze-Wei Chan’s soulful documentary takes a deep dive into Southeast Asian ballroom culture.

\n
\n\n\n

Screening dates and booking

\n\n
\n

Book your festival tickets a week early when you become a BFI Member.\n

\n
\n\n\n
\n
-Thursday 19 March 2026 18:20
BFI Southbank, Screen NFT2
10s Across the Borders
-Friday 20 March 2026 18:40
BFI Southbank, Screen NFT4
10s Across the Borders
\n
\n\n\n
\n
\n
\n\n\n

Credits

\n\n
\n
    \n\t
  • \n\t

    Director

    \n\n\t

    Sze-Wei Chan

    \n\t
  • \n\t
  • \n\t

    Screenwriters

    \n\n\t

    Aurora Sun Labeija, Sze-Wei Chan

    \n\t
  • \n\t
  • \n\t

    With

    \n\n\t

    Teddy Oricci, XYZA Pinklady Mizrahi, Aurora Sun Labeija

    \n\t
  • \n\t
  • \n\t

    Philippines-Singapore-Germany 2025. 99min

    \n\t
  • \n\t
  • \n\t

    Courtesy of

    \n\n\t

    Rise And Shine World Sales

    \n\t
  • \n\t
  • \n\t

    Languages

    \n\n\t

    English, Filipino, Mandarin Chinese, Norwegian, Malay, Thai

    \n\n\t

    With English subtitles

    \n\t
  • \n
\n
\n\n\n

Introduction

\n\n
\n

The legacy of New York’s legendary ballroom scene echoes through Malaysia, Philippines and Thailand, where Teddy, Xyza and Sun aim to prove their skill, artistry and showcraft. Combining dynamic performance and personal testimonies, this compelling film highlights ballroom’s role as a place of solidarity and (chosen) family.

\n\n

Diana Cipriano

\n\n

Content advice

\n\n

Contains homophobic attitudes and language.

\n\n

Contains flashing images.

\n
\n\n\n

How to book

\n\n
\n

BFI Flare tickets start from £10, with concessions available for many screenings and discounts for BFI Members. Booking information and ticket prices.

\n\n

If you’re aged 16 to 25, sign up for free to BFI 25 and Under for a chance to get £6 tickets to all screenings and events (subject to availability).

\n\n
\n

Missed out?

\n\n

More tickets may become available for these screenings before and during the festival. Find out about extra ticket releases and standby queues.

\n
\n
\n\n\n
\n

Our programmers recommend...

\n\n
\n
\n
\n
\"\"\n
\n\n
\n

TO DANCE IS TO RESIST

\n\n

Two Ukrainian dancers seek life and artistic freedom following Russia’s invasion of their country.

\n
\nRead more about TO DANCE IS TO RESIST\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Heavenly Havens

\n\n

Carving out spaces to thrive and survive, this programme is a paean to the nightlife that seduces and sustains us, and the creation of places we can truly call home. Contains strobe effects/flashing lights.

\n
\nRead more about Heavenly Havens\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Beyond the Fire: The Life of Japan’s First Pride Parade Pioneer

\n\n

This marvellous film dives deep into Japan’s queer history, highlighting the incredible life of the man who pioneered the country’s first Pride march.

\n
\nRead more about Beyond the Fire: The Life of Japan’s First Pride Parade Pioneer\n\n
\n
\n
\n
\n
\n\n
\n \n
\n \n\n\n\n
\n
\n
 
\n
\n\n
\n\n \n
\n \n
\n \n
\n \n
\n
\n

Bodies

\n\n

Stories of sex, identity and transformation.

\nFind out more\n
\n
\n\n
\n \n
\n
\n
\n

March 2026

\n
\n\n
\n
MON
\n\n
TUE
\n\n
WED
\n\n
THU
\n\n
FRI
\n\n
SAT
\n\n
SUN
\n\n
16
\n\n
17
\n18 19 20 21 22 23 24 25 26 27 28 29\n
\n
\n\n
\n \n
\n  \n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

BFI Membership

\n\n

Become a BFI Member from £39 to enjoy priority festival booking as well as other great benefits all year round.

\nJoin today\n
\n
\n\n
\n \n
\n \n
\n
\n

About the festival

\n\n

A quick guide to the festival.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

Screenings and events with access provision

\n\n

Making BFI Flare: London LGBTQIA+ Film Festival as welcoming, inclusive and accessible as possible for everyone.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

25 and Under

\n\n

£6 cinema tickets for 16 to 25 year olds.

\nSign up\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

2026 festival brochure

\n\n

Download our digital festival brochure (PDF) for the 2026 edition of the festival.

\nDownload brochure\n
\n
\n\n
\n \n
\n \n
\n
\n

Festival pass

\n\n

See 10 films for less.

\nFind out more\n
\n
\n\n
\n \n
\n
\n \n \n \n \n\n

\n Add a promo code

\n
    \n \n
  • \n \n
  • \n \n
  • \n
    \n \n \n \n \n
    \n
  • \n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n\n
\n
\n\n
\n
\n
\n
\n\n
\n
\n
\n

British Film Institute

\n\n

We are a cultural charity, a National Lottery funding distributor, and the UK’s lead organisation for film and the moving image.

\n\n\n\n\n
\n\n
\n

Supported by

\n\n
\n
\n
\"Funded\n
\n\n
\"Culture\n
\n\n
\"BFI\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n
\n
\n
©2025 British Film Institute. All rights reserved.
\n\n
Registered charity 287780
\n\n
Registered office 21 Stephen St, London W1T 1LN
\n
\n
\n
\n
\n\n
\n
\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n
\n ", + "searchResults": [ + [ + "6365697B-4ABC-4925-B5A3-D1A07DFCE0AA", + "P", + "BFI Flare Festival", + "LLGFF", + "10sa_19Mar26", + "10s Across the Borders", + "10s Across the Borders", + "Thursday 19 March 2026 18:20", + "18:20", + "19", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "G", + "52", + "Bodies, Sze-Wei Chan, Philippines-Singapore-Germany,Subtitles,Teddy Oricci, XYZA Pinklady Mizrahi, Aurora Sun Labeija", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=E2BFF813-0DF9-45D8-AE58-4CDE22FA5A80&BOparam::WScontent::loadArticle::context_id=6365697B-4ABC-4925-B5A3-D1A07DFCE0AA", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREBODIES", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "", + "", + "", + "527ADADE-4BF3-4A03-BADB-12000B5C7BD6", + "Flare NFT2", + "BFI Southbank, Screen NFT2", + "BFI Southbank, Screen NFT2", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ], + [ + "71D0D0E1-E769-4691-9EA5-C5E9479CF330", + "P", + "BFI Flare Festival", + "LLGFF", + "10sa_20Mar26", + "10s Across the Borders", + "10s Across the Borders", + "Friday 20 March 2026 18:40", + "18:40", + "20", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "G", + "23", + "Teddy Oricci, XYZA Pinklady Mizrahi, Aurora Sun Labeija,Bodies, Sze-Wei Chan, Philippines-Singapore-Germany,Subtitles", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=E2BFF813-0DF9-45D8-AE58-4CDE22FA5A80&BOparam::WScontent::loadArticle::context_id=71D0D0E1-E769-4691-9EA5-C5E9479CF330", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREBODIES", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "United Kingdom", + "", + "", + "A76FC31F-05EE-4F50-9AC1-C73800A414DA", + "Flare NFT4", + "BFI Southbank, Screen NFT4", + "BFI Southbank, Screen NFT4", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ] + ] +} \ No newline at end of file diff --git a/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-all-these-liberations-flare26-2026-02-23 b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-all-these-liberations-flare26-2026-02-23 new file mode 100644 index 0000000..0f4fa01 --- /dev/null +++ b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-all-these-liberations-flare26-2026-02-23 @@ -0,0 +1,209 @@ +{ + "html": "\nBuy tickets for All These Liberations | BFI Flare: London LGBTQIA+ Film Festival 2026\n\n\n\n\n\n\n\n\n\n\n\n \n\n \n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n\n\n\t\n\t\n\t\n\t\n\t\n\t\n
\n
\n \n \n \n
\n\n\n
\n \n \n \n
\n
\n
\n\n \n Order for\n Customer\n\n
\n
\n
\n \n
\n \n
\n \n Your basket is empty\n \n
\n \n
\n\n \n
\n\n \n \n\n\n \n
\n
\n \n\n\n
\n
\n\n \n
\n
\n Order for\n Customer\n \n
\n
\n\n \n
\n
    \n \n
\n
\n
\n\n
\n
\"BFI \"BFI \n
\n\n
\n\n \n \n
\n\n
\n \n
\n\t
\n\t\t\n\n\t
\n
\n\n\n
\n
\n\n \n
\n\n\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n
    \n
  • \n Search films and events\n \n
  • \n
  • \n Search dates\n from\n
    \n
    \n
  • \n
  • \n to\n
    \n
    \n
  • \n
  • \n \n
  • \n
\n \n
\n
\n\n \n\n
\n\n \n \n\n
\n \n
\n
\n
\n\n
\n\n\n
\n

All These Liberations

\n\n

Stories of hope and determination against the odds, by and about queer people, from the Middle East, North Africa and Turkey.

\n
\n\n\n

Screening dates and booking

\n\n
\n

Book your festival tickets a week early when you become a BFI Member.\n

\n
\n\n\n
\n
-Tuesday 24 March 2026 20:55
BFI Southbank, Screen NFT2
All These Liberations
-Saturday 28 March 2026 20:20
BFI Southbank, Screen NFT4
All These Liberations
\n
\n\n\n

Credits

\n\n
\n
    \n\t
  • \n\t

    Total running time

    \n\n\t

    91min

    \n\t
  • \n\t
  • \n\t

    Programmed by

    \n\n\t

    Grace Barber-Plentie

    \n\t
  • \n\t
  • \n\t

    Content advice

    \n\n\t

    This short film programme contains homophobic attitudes and language.

    \n\t
  • \n
\n
\n\n\n
\n

Abstraction Belongs to Us

\n\n\n
\"\"\n
\n\n\n
\n
    \n\t
  • \n\t

    Director

    \n\n\t

    Gaby Sahhar

    \n\t
  • \n\t
  • \n\t

    UK-France 2025. 12min

    \n\t
  • \n\t
  • \n\t

    Languages

    \n\n\t

    English, French
    \n\tWith English subtitles

    \n\t
  • \n
\n
\n\n\n
\n

Queer Palestinians in London and Paris navigate the intersections between their national identity and sexuality.

\n
\n
\n\n\n
\n

Daria’s Night Flowers

\n\n\n
\"\"\n
\n\n\n
\n
    \n\t
  • \n\t

    Director

    \n\n\t

    Maryam Tafakory

    \n\t
  • \n\t
  • \n\t

    Iran-UK-France 2025. 16min

    \n\t
  • \n\t
  • \n\t

    Language

    \n\n\t

    Farsi
    \n\tWith English subtitles

    \n\t
  • \n
\n
\n\n\n
\n

Maryam Tafakory uses archival film and poetry to weave a story of forbidden love between two Iranian women.

\n
\n
\n\n\n
\n

Everything Between Us

\n\n

Aramizda Kalan Her Sey

\n\n\n
\"\"\n
\n\n\n
\n
    \n\t
  • \n\t

    Director

    \n\n\t

    Ilgin G Korugan

    \n\t
  • \n\t
  • \n\t

    Turkey 2025. 17min

    \n\t
  • \n\t
  • \n\t

    Language

    \n\n\t

    Turkish
    \n\tWith English subtitles

    \n\t
  • \n
\n
\n\n\n
\n

A bullied girl finds solace in an unlikely place and a new ally.

\n
\n
\n\n\n
\n

COYOTES

\n\n\n
\"\"\n
\n\n\n
\n
    \n\t
  • \n\t

    Director

    \n\n\t

    Said Zagha

    \n\t
  • \n\t
  • \n\t

    Palestine-UK-France-Jordan 2025. 20min

    \n\t
  • \n\t
  • \n\t

    Languages

    \n\n\t

    Arabic, English, Hebrew
    \n\tWith English subtitles

    \n\t
  • \n\t
  • \n\t

    Content advice

    \n\n\t

    Contains homophobic attitudes and language.

    \n\t
  • \n
\n
\n\n\n
\n

A doctor’s commute home to Ramallah takes a turn when a ‘good Samaritan’ offers to help her change a tire.

\n
\n
\n\n\n
\n

Krizalit

\n\n\n
\"\"\n
\n\n\n
\n
    \n\t
  • \n\t

    Directors

    \n\n\t

    Arantxa Ibarra, Naz Tokgöz

    \n\t
  • \n\t
  • \n\t

    Turkey 2025. 16min

    \n\t
  • \n\t
  • \n\t

    Language

    \n\n\t

    Turkish
    \n\tWith English subtitles

    \n\t
  • \n
\n
\n\n\n
\n

Set in the heart of a rapidly changing Turkey, Deniz navigates love, loss and finding her identity.

\n
\n
\n\n\n
\n

Kisses and Bullets

\n\n\n
\"\"\n
\n\n\n
\n
    \n\t
  • \n\t

    Director

    \n\n\t

    Faranak Sahafian

    \n\t
  • \n\t
  • \n\t

    USA 2024. 12min

    \n\t
  • \n\t
  • \n\t

    Languages

    \n\n\t

    Persian, English
    \n\tWith English subtitles

    \n\t
  • \n
\n
\n\n\n
\n

Two Iranian women in two different countries find a connection when attending worldwide Women, Life, Freedom protests.

\n
\n
\n\n\n

How to book

\n\n
\n

BFI Flare tickets start from £10, with concessions available for many screenings and discounts for BFI Members. Booking information and ticket prices.

\n\n

If you’re aged 16 to 25, sign up for free to BFI 25 and Under for a chance to get £6 tickets to all screenings and events (subject to availability).

\n\n
\n

Missed out?

\n\n

More tickets may become available for these screenings before and during the festival. Find out about extra ticket releases and standby queues.

\n
\n
\n\n\n
\n

Our programmers recommend...

\n\n
\n
\n
\n
\"\"\n
\n\n
\n

Treat Me Like Your Mother

\n\n

Based on the book Trans* Histories from Beirut’s Forgotten Past, this kaleidoscopic documentary is a contemplative journey through the lives of five Lebanese women.

\n
\nRead more about Treat Me Like Your Mother\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

This Is Home

\n\n

In this programme of shorts films by Indian directors, queer people find support, community and acceptance – sometimes in the unlikeliest of places.

\n
\nRead more about This Is Home\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Edges of Belonging

\n\n

From queer immigrants striving to find their place in the world to a solitary farmer’s quiet existence and a young man’s erotic fixation, this programme explores lives on the margins, and the ways people forge bonds, find intimacy and meaningful connections, and a place to belong.

\n
\nRead more about Edges of Belonging\n\n
\n
\n
\n
\n
\n\n
\n \n
\n \n\n\n\n
\n
\n
 
\n
\n\n
\n\n \n
\n \n
\n \n
\n \n
\n
\n

Shorts

\n\n

Small but perfectly formed.

\nFind out more\n
\n
\n\n
\n \n
\n
\n
\n

March 2026

\n
\n\n
\n
MON
\n\n
TUE
\n\n
WED
\n\n
THU
\n\n
FRI
\n\n
SAT
\n\n
SUN
\n\n
16
\n\n
17
\n18 19 20 21 22 23 24 25 26 27 28 29\n
\n
\n\n
\n \n
\n  \n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

BFI Membership

\n\n

Become a BFI Member from £39 to enjoy priority festival booking as well as other great benefits all year round.

\nJoin today\n
\n
\n\n
\n \n
\n \n
\n
\n

About the festival

\n\n

A quick guide to the festival.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

Screenings and events with access provision

\n\n

Making BFI Flare: London LGBTQIA+ Film Festival as welcoming, inclusive and accessible as possible for everyone.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

25 and Under

\n\n

£6 cinema tickets for 16 to 25 year olds.

\nSign up\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

2026 festival brochure

\n\n

Download our digital festival brochure (PDF) for the 2026 edition of the festival.

\nDownload brochure\n
\n
\n\n
\n \n
\n \n
\n
\n

Festival pass

\n\n

See 10 films for less.

\nFind out more\n
\n
\n\n
\n \n
\n
\n \n \n \n \n\n

\n Add a promo code

\n
    \n \n
  • \n \n
  • \n \n
  • \n
    \n \n \n \n \n
    \n
  • \n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n\n
\n
\n\n
\n
\n
\n
\n\n
\n
\n
\n

British Film Institute

\n\n

We are a cultural charity, a National Lottery funding distributor, and the UK’s lead organisation for film and the moving image.

\n\n\n\n\n
\n\n
\n

Supported by

\n\n
\n
\n
\"Funded\n
\n\n
\"Culture\n
\n\n
\"BFI\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n
\n
\n
©2025 British Film Institute. All rights reserved.
\n\n
Registered charity 287780
\n\n
Registered office 21 Stephen St, London W1T 1LN
\n
\n
\n
\n
\n\n
\n
\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n
\n ", + "searchResults": [ + [ + "8EDEC8EE-29F3-48D8-96CF-F3B766BB61F2", + "P", + "BFI Flare Festival", + "LLGFF", + "allthe_24Mar26", + "All These Liberations", + "All These Liberations", + "Tuesday 24 March 2026 20:55", + "20:55", + "24", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "G", + "53", + "Abstraction Belongs to Us,Minds, Maryam Tafakory, Iran-UK-France,Minds, Ilgin G Korugan, Turkey,Daria’s Night Flowers,Kisses and Bullets, Krizalit,Minds, Arantxa Ibarra, Naz Tokgöz, Turkey,Minds, Gaby Sahhar, UK-France,COYOTES, Everything Between Us,Minds, Said Zagha, Palestine-UK-France-Jordan,Minds, Faranak Sahafian, USA", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=7459A8BF-429D-4362-B3E2-63865B0060BA&BOparam::WScontent::loadArticle::context_id=8EDEC8EE-29F3-48D8-96CF-F3B766BB61F2", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREMINDS", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "", + "", + "", + "527ADADE-4BF3-4A03-BADB-12000B5C7BD6", + "Flare NFT2", + "BFI Southbank, Screen NFT2", + "BFI Southbank, Screen NFT2", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ], + [ + "8A872884-2912-421C-97A4-77347D602871", + "P", + "BFI Flare Festival", + "LLGFF", + "allthe_28Mar26", + "All These Liberations", + "All These Liberations", + "Saturday 28 March 2026 20:20", + "20:20", + "28", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "E", + "28", + "Minds, Said Zagha, Palestine-UK-France-Jordan,Minds, Faranak Sahafian, USA,Daria’s Night Flowers, COYOTES,Everything Between Us,Minds, Arantxa Ibarra, Naz Tokgöz, Turkey,Abstraction Belongs to Us,Minds, Ilgin G Korugan, Turkey,Minds, Maryam Tafakory, Iran-UK-France,Krizalit, Kisses and Bullets,Minds, Gaby Sahhar, UK-France", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=7459A8BF-429D-4362-B3E2-63865B0060BA&BOparam::WScontent::loadArticle::context_id=8A872884-2912-421C-97A4-77347D602871", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREMINDS", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "United Kingdom", + "", + "", + "A76FC31F-05EE-4F50-9AC1-C73800A414DA", + "Flare NFT4", + "BFI Southbank, Screen NFT4", + "BFI Southbank, Screen NFT4", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ] + ] +} \ No newline at end of file diff --git a/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-amantes-flare26-2026-02-23 b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-amantes-flare26-2026-02-23 new file mode 100644 index 0000000..613d2ed --- /dev/null +++ b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-amantes-flare26-2026-02-23 @@ -0,0 +1,209 @@ +{ + "html": "\nBuy tickets for Amantes | BFI Flare: London LGBTQIA+ Film Festival 2026\n\n\n\n\n\n\n\n\n\n\n\n \n\n \n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n\n\n\t\n\t\n\t\n\t\n\t\n\t\n
\n
\n \n \n \n
\n\n\n
\n \n \n \n
\n
\n
\n\n \n Order for\n Customer\n\n
\n
\n
\n \n
\n \n
\n \n Your basket is empty\n \n
\n \n
\n\n \n
\n\n \n \n\n\n \n
\n
\n \n\n\n
\n
\n\n \n
\n
\n Order for\n Customer\n \n
\n
\n\n \n
\n
    \n \n
\n
\n
\n\n
\n
\"BFI \"BFI \n
\n\n
\n\n \n \n
\n\n
\n \n
\n\t
\n\t\t\n\n\t
\n
\n\n\n
\n
\n\n \n
\n\n\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n
    \n
  • \n Search films and events\n \n
  • \n
  • \n Search dates\n from\n
    \n
    \n
  • \n
  • \n to\n
    \n
    \n
  • \n
  • \n \n
  • \n
\n \n
\n
\n\n \n\n
\n\n \n \n\n
\n \n
\n
\n
\n\n
\n\n\n
\n

Amantes

\n\n

Actor Caroline Fournier’s fun romcom explores the complexities of lesbian dating in Paris.

\n
\n\n\n

Screening dates and booking

\n\n
\n

Book your festival tickets a week early when you become a BFI Member.\n

\n
\n\n\n
\n
-Wednesday 25 March 2026 18:15
BFI Southbank, Screen NFT2
Amantes
-Thursday 26 March 2026 20:25
BFI Southbank, Screen NFT4
Amantes
\n
\n\n\n
\n
\n
\n\n\n

Credits

\n\n
\n
    \n\t
  • \n\t

    Director-screenwriter

    \n\n\t

    Caroline Fournier

    \n\t
  • \n\t
  • \n\t

    With

    \n\n\t

    Nabila Mekkid, Tessa Bazin, Sarah Labhar

    \n\t
  • \n\t
  • \n\t

    France 2025. 105min

    \n\t
  • \n\t
  • \n\t

    Language

    \n\n\t

    French

    \n\n\t

    With English subtitles

    \n\t
  • \n
\n
\n\n\n

Introduction

\n\n
\n

Adored characters from popular web series Q star in this ensemble piece, featuring three intertwined stories. Nour, an intense musician, struggles to embrace vulnerability in a budding relationship. Anxious millennial Laura questions her place in a throuple. And renowned therapist Gabrielle finds herself drifting away from her younger, workaholic partner. It’s a smart and witty take on modern romance and relationships.

\n\n

Wema Mumma

\n\n

Content advice

\n\n

Contains scenes of sex.

\n\n

Contains flashing images.

\n
\n\n\n

How to book

\n\n
\n

BFI Flare tickets start from £10, with concessions available for many screenings and discounts for BFI Members. Booking information and ticket prices.

\n\n

If you’re aged 16 to 25, sign up for free to BFI 25 and Under for a chance to get £6 tickets to all screenings and events (subject to availability).

\n\n
\n

Missed out?

\n\n

More tickets may become available for these screenings before and during the festival. Find out about extra ticket releases and standby queues.

\n
\n
\n\n\n
\n

Our programmers recommend...

\n\n
\n
\n
\n
\"\"\n
\n\n
\n

Love Letters

\n\n

In this examination of the complexities of maternal love, a lesbian couple navigate pregnancy and legal hurdles to achieve legitimacy.

\n
\nRead more about Love Letters\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Can’t Go Over It

\n\n

Two queer best friends are forced to confront the gradual dissolution of their friendship when they go on an annual hiking trip.

\n
\nRead more about Can’t Go Over It\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Montreal, My Beautiful

\n\n

Joan Chen stuns in this powerful story of a Chinese immigrant in her 50s exploring her hidden lesbian desires for the first time.

\n
\nRead more about Montreal, My Beautiful\n\n
\n
\n
\n
\n
\n\n
\n \n
\n \n\n\n\n
\n
\n
 
\n
\n\n
\n\n \n
\n \n
\n \n
\n \n
\n
\n

Hearts

\n\n

Films about love, romance and friendship.

\nFind out more\n
\n
\n\n
\n \n
\n
\n
\n

March 2026

\n
\n\n
\n
MON
\n\n
TUE
\n\n
WED
\n\n
THU
\n\n
FRI
\n\n
SAT
\n\n
SUN
\n\n
16
\n\n
17
\n18 19 20 21 22 23 24 25 26 27 28 29\n
\n
\n\n
\n \n
\n  \n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

BFI Membership

\n\n

Become a BFI Member from £39 to enjoy priority festival booking as well as other great benefits all year round.

\nJoin today\n
\n
\n\n
\n \n
\n \n
\n
\n

About the festival

\n\n

A quick guide to the festival.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

Screenings and events with access provision

\n\n

Making BFI Flare: London LGBTQIA+ Film Festival as welcoming, inclusive and accessible as possible for everyone.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

25 and Under

\n\n

£6 cinema tickets for 16 to 25 year olds.

\nSign up\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

2026 festival brochure

\n\n

Download our digital festival brochure (PDF) for the 2026 edition of the festival.

\nDownload brochure\n
\n
\n\n
\n \n
\n \n
\n
\n

Festival pass

\n\n

See 10 films for less.

\nFind out more\n
\n
\n\n
\n \n
\n
\n \n \n \n \n\n

\n Add a promo code

\n
    \n \n
  • \n \n
  • \n \n
  • \n
    \n \n \n \n \n
    \n
  • \n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n\n
\n
\n\n
\n
\n
\n
\n\n
\n
\n
\n

British Film Institute

\n\n

We are a cultural charity, a National Lottery funding distributor, and the UK’s lead organisation for film and the moving image.

\n\n\n\n\n
\n\n
\n

Supported by

\n\n
\n
\n
\"Funded\n
\n\n
\"Culture\n
\n\n
\"BFI\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n
\n
\n
©2025 British Film Institute. All rights reserved.
\n\n
Registered charity 287780
\n\n
Registered office 21 Stephen St, London W1T 1LN
\n
\n
\n
\n
\n\n
\n
\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n
\n ", + "searchResults": [ + [ + "7E998B3F-7783-4455-89C3-C3D78A868311", + "P", + "BFI Flare Festival", + "LLGFF", + "aman_25Mar26", + "Amantes", + "Amantes", + "Wednesday 25 March 2026 18:15", + "18:15", + "25", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "G", + "68", + "Subtitles,Hearts, Caroline Fournier, France,Nabila Mekkid, Tessa Bazin, Sarah Labhar", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=BCE403E8-5D92-4FA5-AB26-4AB93D7C569E&BOparam::WScontent::loadArticle::context_id=7E998B3F-7783-4455-89C3-C3D78A868311", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREHEARTS", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "", + "", + "", + "527ADADE-4BF3-4A03-BADB-12000B5C7BD6", + "Flare NFT2", + "BFI Southbank, Screen NFT2", + "BFI Southbank, Screen NFT2", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ], + [ + "C6584CF8-171B-45DF-A6B3-5659FA453D37", + "P", + "BFI Flare Festival", + "LLGFF", + "aman_26Mar26", + "Amantes", + "Amantes", + "Thursday 26 March 2026 20:25", + "20:25", + "26", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "E", + "26", + "Hearts, Caroline Fournier, France,Subtitles,Nabila Mekkid, Tessa Bazin, Sarah Labhar", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=BCE403E8-5D92-4FA5-AB26-4AB93D7C569E&BOparam::WScontent::loadArticle::context_id=C6584CF8-171B-45DF-A6B3-5659FA453D37", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREHEARTS", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "United Kingdom", + "", + "", + "A76FC31F-05EE-4F50-9AC1-C73800A414DA", + "Flare NFT4", + "BFI Southbank, Screen NFT4", + "BFI Southbank, Screen NFT4", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ] + ] +} \ No newline at end of file diff --git a/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-another-man-flare26-2026-02-23 b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-another-man-flare26-2026-02-23 new file mode 100644 index 0000000..e0bba5e --- /dev/null +++ b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-another-man-flare26-2026-02-23 @@ -0,0 +1,209 @@ +{ + "html": "\nBuy tickets for Another Man | BFI Flare: London LGBTQIA+ Film Festival 2026\n\n\n\n\n\n\n\n\n\n\n\n \n\n \n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n\n\n\t\n\t\n\t\n\t\n\t\n\t\n
\n
\n \n \n \n
\n\n\n
\n \n \n \n
\n
\n
\n\n \n Order for\n Customer\n\n
\n
\n
\n \n
\n \n
\n \n Your basket is empty\n \n
\n \n
\n\n \n
\n\n \n \n\n\n \n
\n
\n \n\n\n
\n
\n\n \n
\n
\n Order for\n Customer\n \n
\n
\n\n \n
\n
    \n \n
\n
\n
\n\n
\n
\"BFI \"BFI \n
\n\n
\n\n \n \n
\n\n
\n \n
\n\t
\n\t\t\n\n\t
\n
\n\n\n
\n
\n\n \n
\n\n\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n
    \n
  • \n Search films and events\n \n
  • \n
  • \n Search dates\n from\n
    \n
    \n
  • \n
  • \n to\n
    \n
    \n
  • \n
  • \n \n
  • \n
\n \n
\n
\n\n \n\n
\n\n \n \n\n
\n \n
\n
\n
\n\n
\n\n\n
\n

Another Man

\n\n

Un Altre Home

\n\n

Marc’s dissatisfaction with his settled existence sees him unexpectedly attracted to a new neighbour, in this delicate exploration of thirtysomething life.

\n
\n\n\n

Screening dates and booking

\n\n
\n

Book your festival tickets a week early when you become a BFI Member.\n

\n
\n\n\n
\n
-Friday 27 March 2026 20:50
BFI Southbank, Screen NFT2
Another Man
-Saturday 28 March 2026 16:10
BFI Southbank, Screen NFT4
Another Man
\n
\n\n\n
\"\"\n
\n\n\n

Credits

\n\n
\n
    \n\t
  • \n\t

    Director-screenwriter

    \n\n\t

    David Moragas

    \n\t
  • \n\t
  • \n\t

    With

    \n\n\t

    Lluís Marquès, Quim Àvila, Bruna Cusí

    \n\t
  • \n\t
  • \n\t

    Spain 2025. 91min

    \n\t
  • \n\t
  • \n\t

    Courtesy of

    \n\n\t

    Filmax

    \n\t
  • \n\t
  • \n\t

    Language

    \n\n\t

    Catalan

    \n\n\t

    With English subtitles

    \n\t
  • \n
\n
\n\n\n

Introduction

\n\n
\n

Marc lives with his partner Eunald in Barcelona. He has a stable job and a close relationship with his sister. But perfection in this bourgeois paradise isn’t what it’s cracked up to be, and a new ‘hot’ neighbour becomes the ideal escape for Marc’s unwillingness to engage with his anxieties. This is a nuanced look at the importance of grappling with life on our own terms.

\n\n

Diana Cipriano

\n\n

Content advice

\n\n

Contains themes of suicide.

\n
\n\n\n

How to book

\n\n
\n

BFI Flare tickets start from £10, with concessions available for many screenings and discounts for BFI Members. Booking information and ticket prices.

\n\n

If you’re aged 16 to 25, sign up for free to BFI 25 and Under for a chance to get £6 tickets to all screenings and events (subject to availability).

\n\n
\n

Missed out?

\n\n

More tickets may become available for these screenings before and during the festival. Find out about extra ticket releases and standby queues.

\n
\n
\n\n\n
\n

Our programmers recommend...

\n\n
\n
\n
\n
\"\"\n
\n\n
\n

Drunken Noodles

\n\n

Lucio Castro’s third feature blends magical realist elements in this intimate character study.

\n
\nRead more about Drunken Noodles\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Maspalomas

\n\n

This portrait of elder queer desire highlights the importance of reconciling all parts of ourselves.

\n
\nRead more about Maspalomas\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Perro Perro

\n\n

Argentinian filmmaker Marco Berger presents a boldly absurdist fairy tale.

\n
\nRead more about Perro Perro\n\n
\n
\n
\n
\n
\n\n
\n \n
\n \n\n\n\n
\n
\n
 
\n
\n\n
\n\n \n
\n \n
\n \n
\n \n
\n
\n

Hearts

\n\n

Films about love, romance and friendship.

\nFind out more\n
\n
\n\n
\n \n
\n
\n
\n

March 2026

\n
\n\n
\n
MON
\n\n
TUE
\n\n
WED
\n\n
THU
\n\n
FRI
\n\n
SAT
\n\n
SUN
\n\n
16
\n\n
17
\n18 19 20 21 22 23 24 25 26 27 28 29\n
\n
\n\n
\n \n
\n  \n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

BFI Membership

\n\n

Become a BFI Member from £39 to enjoy priority festival booking as well as other great benefits all year round.

\nJoin today\n
\n
\n\n
\n \n
\n \n
\n
\n

About the festival

\n\n

A quick guide to the festival.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

Screenings and events with access provision

\n\n

Making BFI Flare: London LGBTQIA+ Film Festival as welcoming, inclusive and accessible as possible for everyone.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

25 and Under

\n\n

£6 cinema tickets for 16 to 25 year olds.

\nSign up\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

2026 festival brochure

\n\n

Download our digital festival brochure (PDF) for the 2026 edition of the festival.

\nDownload brochure\n
\n
\n\n
\n \n
\n \n
\n
\n

Festival pass

\n\n

See 10 films for less.

\nFind out more\n
\n
\n\n
\n \n
\n
\n \n \n \n \n\n

\n Add a promo code

\n
    \n \n
  • \n \n
  • \n \n
  • \n
    \n \n \n \n \n
    \n
  • \n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n\n
\n
\n\n
\n
\n
\n
\n\n
\n
\n
\n

British Film Institute

\n\n

We are a cultural charity, a National Lottery funding distributor, and the UK’s lead organisation for film and the moving image.

\n\n\n\n\n
\n\n
\n

Supported by

\n\n
\n
\n
\"Funded\n
\n\n
\"Culture\n
\n\n
\"BFI\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n
\n
\n
©2025 British Film Institute. All rights reserved.
\n\n
Registered charity 287780
\n\n
Registered office 21 Stephen St, London W1T 1LN
\n
\n
\n
\n
\n\n
\n
\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n
\n ", + "searchResults": [ + [ + "F0BED10F-BE9B-4EED-A324-E5975F936C51", + "P", + "BFI Flare Festival", + "LLGFF", + "anoth_27Mar26", + "Another Man", + "Another Man", + "Friday 27 March 2026 20:50", + "20:50", + "27", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "G", + "68", + "Subtitles,Hearts, David Moragas, Spain,Lluís Marquès, Quim Àvila, Bruna Cusí", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=0404A50B-AC2B-4A2F-98F1-F4B7897DD515&BOparam::WScontent::loadArticle::context_id=F0BED10F-BE9B-4EED-A324-E5975F936C51", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREHEARTS", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "", + "", + "", + "527ADADE-4BF3-4A03-BADB-12000B5C7BD6", + "Flare NFT2", + "BFI Southbank, Screen NFT2", + "BFI Southbank, Screen NFT2", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ], + [ + "D8AF5A11-8B7B-4E52-B7EF-68A19BAFC677", + "P", + "BFI Flare Festival", + "LLGFF", + "anoth_28Mar26", + "Another Man", + "Another Man", + "Saturday 28 March 2026 16:10", + "16:10", + "28", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "G", + "17", + "Hearts, David Moragas, Spain,Lluís Marquès, Quim Àvila, Bruna Cusí,Subtitles", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=0404A50B-AC2B-4A2F-98F1-F4B7897DD515&BOparam::WScontent::loadArticle::context_id=D8AF5A11-8B7B-4E52-B7EF-68A19BAFC677", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREHEARTS", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "United Kingdom", + "", + "", + "A76FC31F-05EE-4F50-9AC1-C73800A414DA", + "Flare NFT4", + "BFI Southbank, Screen NFT4", + "BFI Southbank, Screen NFT4", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ] + ] +} \ No newline at end of file diff --git a/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-az-flare-2026-02-23 b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-az-flare-2026-02-23 new file mode 100644 index 0000000..390bcc0 --- /dev/null +++ b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-az-flare-2026-02-23 @@ -0,0 +1 @@ +"\nFilms A to Z | BFI Flare: London LGBTQIA+ Film Festival – 18 to 29 March 2026\n\n\n\n\n\n\n\n\n\n\n\n \n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n\n\n\t\n\t\n\t\n\t\n\t\n\t\n
\n
\n \n \n \n
\n\n\n
\n \n \n \n
\n
\n
\n\n \n Order for\n Customer\n\n
\n
\n
\n \n
\n \n
\n \n Your basket is empty\n \n
\n \n
\n\n \n
\n\n \n \n\n\n \n
\n
\n \n\n\n
\n
\n\n \n
\n
\n Order for\n Customer\n \n
\n
\n\n \n
\n
    \n \n
\n
\n
\n\n
\n
\"BFI \"BFI \n
\n\n
\n\n \n \n
\n\n
\n \n
\n\t
\n\t\t\n\n\t
\n
\n\n\n
\n
\n\n \n
\n\n\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n
    \n
  • \n Search films and events\n \n
  • \n
  • \n Search dates\n from\n
    \n
    \n
  • \n
  • \n to\n
    \n
    \n
  • \n
  • \n \n
  • \n
\n \n
\n
\n\n \n\n
\n\n \n \n\n
\n \n
\n
\n\n
\n\n
\n

Films A to Z

\n\n

All films and works showing in the BFI Flare: London LGBTQIA+ Film Festival.

\n
\n\n
\n

#

\n\n\n\n

A

\n\n\n\n

B

\n\n\n\n

C

\n\n\n\n

D

\n\n\n\n

E

\n\n\n\n

F

\n\n
    \n\t
  • Fish & Chips, in the programme (When the Rainbow Is Enuf)
  • \n\t
  • Fishy, in the programme She Got Claws!
  • \n\t
  • Flash Sale, in the programme Having the Last Laugh
  • \n\t
  • The Fling, in the programme (When the Rainbow Is Enuf)
  • \n\t
  • Forbidden Fruit, screening with Woubi Chéri
  • \n
\n\n

G

\n\n\n\n

H

\n\n\n\n

I

\n\n\n\n

J

\n\n\n\n

K

\n\n\n\n

L

\n\n\n\n

M

\n\n\n\n

N

\n\n\n\n

O

\n\n\n\n

P

\n\n\n\n

Q

\n\n\n\n

R

\n\n\n\n

S

\n\n\n\n

T

\n\n\n\n

U

\n\n\n\n

W

\n\n\n\n

Y

\n\n\n
\n\n
\n \n
\n \n\n\n
\n \n
\n \n
\n
\n
\n

March 2026

\n
\n\n
\n
MON
\n\n
TUE
\n\n
WED
\n\n
THU
\n\n
FRI
\n\n
SAT
\n\n
SUN
\n\n
16
\n\n
17
\n18 19 20 21 22 23 24 25 26 27 28 29\n
\n
\n\n
\n \n
\n  \n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

BFI Membership

\n\n

Become a BFI Member from £39 to enjoy priority festival booking as well as other great benefits all year round.

\nJoin today\n
\n
\n\n
\n \n
\n \n
\n
\n

About the festival

\n\n

A quick guide to the festival.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

Screenings and events with access provision

\n\n

Making BFI Flare: London LGBTQIA+ Film Festival as welcoming, inclusive and accessible as possible for everyone.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

25 and Under

\n\n

£6 cinema tickets for 16 to 25 year olds.

\nSign up\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

2026 festival brochure

\n\n

Download our digital festival brochure (PDF) for the 2026 edition of the festival.

\nDownload brochure\n
\n
\n\n
\n \n
\n \n
\n
\n

Festival pass

\n\n

See 10 films for less.

\nFind out more\n
\n
\n\n
\n \n
\n
\n \n \n \n \n\n

\n Add a promo code

\n
    \n \n
  • \n \n
  • \n \n
  • \n
    \n \n \n \n \n
    \n
  • \n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n\n
\n
\n\n
\n
\n
\n
\n\n
\n
\n
\n

British Film Institute

\n\n

We are a cultural charity, a National Lottery funding distributor, and the UK’s lead organisation for film and the moving image.

\n\n\n\n\n
\n\n
\n

Supported by

\n\n
\n
\n
\"Funded\n
\n\n
\"Culture\n
\n\n
\"BFI\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n
\n
\n
©2025 British Film Institute. All rights reserved.
\n\n
Registered charity 287780
\n\n
Registered office 21 Stephen St, London W1T 1LN
\n
\n
\n
\n
\n\n
\n
\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n
\n " \ No newline at end of file diff --git a/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-baby-flare26-2026-02-23 b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-baby-flare26-2026-02-23 new file mode 100644 index 0000000..7ce836d --- /dev/null +++ b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-baby-flare26-2026-02-23 @@ -0,0 +1,107 @@ +{ + "html": "\nBuy tickets for Baby | BFI Flare: London LGBTQIA+ Film Festival 2026\n\n\n\n\n\n\n\n\n\n\n\n \n\n \n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n\n\n\t\n\t\n\t\n\t\n\t\n\t\n
\n
\n \n \n \n
\n\n\n
\n \n \n \n
\n
\n
\n\n \n Order for\n Customer\n\n
\n
\n
\n \n
\n \n
\n \n Your basket is empty\n \n
\n \n
\n\n \n
\n\n \n \n\n\n \n
\n
\n \n\n\n
\n
\n\n \n
\n
\n Order for\n Customer\n \n
\n
\n\n \n
\n
    \n \n
\n
\n
\n\n
\n
\"BFI \"BFI \n
\n\n
\n\n \n \n
\n\n
\n \n
\n\t
\n\t\t\n\n\t
\n
\n\n\n
\n
\n\n \n
\n\n\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n
    \n
  • \n Search films and events\n \n
  • \n
  • \n Search dates\n from\n
    \n
    \n
  • \n
  • \n to\n
    \n
    \n
  • \n
  • \n \n
  • \n
\n \n
\n
\n\n \n\n
\n\n \n \n\n
\n \n
\n
\n
\n\n
\n\n\n
\n

Baby

\n\n

Marcelo Caetano follows Body Electric with a portrait of a complex and loving relationship between two men that close out alongside a dynamic exploration of São Paulo’s vibrant queer scene.

\n
\n\n\n

Screening dates and booking

\n\n
\n

Book your festival tickets a week early when you become a BFI Member.\n

\n
\n\n\n
\n
-Sunday 29 March 2026 17:45
BFI Southbank, Screen NFT3
Baby
\n
\n\n\n
\n
\n
\n\n\n

Credits

\n\n
\n
    \n\t
  • \n\t

    Director

    \n\n\t

    Marcelo Caetano

    \n\t
  • \n\t
  • \n\t

    Screenwriters

    \n\n\t

    Marcelo Caetano, Gabriel Domingues

    \n\t
  • \n\t
  • \n\t

    With

    \n\n\t

    João Pedro Mariano, Ricardo Teodoro, Ana Flavia Cavalcanti

    \n\t
  • \n\t
  • \n\t

    Brazil 2024. 107min

    \n\t
  • \n\t
  • \n\t

    Courtesy of

    \n\n\t

    Peccadillo Pictures

    \n\t
  • \n\t
  • \n\t

    Language

    \n\n\t

    Portuguese

    \n\n\t

    With English subtitles

    \n\t
  • \n\t
  • Certificate\n\t

    BBFC 15

    \n\t
  • \n
\n
\n\n\n

Introduction

\n\n
\n

Wellington returns to São Paulo, following a stint in juvenile prison, only to discover his parents have disappeared. Adrift and unsure of his next step, he meets Ronaldo, an older hustler. The two embark on a fluid, passionate and caring relationship, allowing Wellington, selfname Baby, to experience different sides of hustling life and, more importantly, to redefine what ‘family’ means to him.

\n\n

Diana Cipriano

\n
\n\n\n

How to book

\n\n
\n

BFI Flare tickets start from £10, with concessions available for many screenings and discounts for BFI Members. Booking information and ticket prices.

\n\n

If you’re aged 16 to 25, sign up for free to BFI 25 and Under for a chance to get £6 tickets to all screenings and events (subject to availability).

\n\n
\n

Missed out?

\n\n

More tickets may become available for these screenings before and during the festival. Find out about extra ticket releases and standby queues.

\n
\n
\n\n\n
\n

Our programmers recommend...

\n\n
\n
\n
\n
\"\"\n
\n\n
\n

Dreamers

\n\n

In Joy Gharoro-Akpojotor’s impressive feature debut, Nigerian immigrants Isio and Farah dare to imagine a vibrant future outside of their confinement at a British immigration removal centre.

\n
\nRead more about Dreamers\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Keep Coming Back

\n\n

An 18-year-old Uruguayan navigates grief, financial struggles and uncontrollable hormones.

\n
\nRead more about Keep Coming Back\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Little Trouble Girls

\n\n

A Slovenian catholic girl navigates the exhilaration and confusion of first desire in this sensorial, sensitive and sublime coming-of-age feature debut.

\n
\nRead more about Little Trouble Girls\n\n
\n
\n
\n
\n
\n\n
\n \n
\n \n\n\n\n
\n
\n
 
\n
\n\n
\n\n \n
\n \n
\n \n
\n
\n
\n

March 2026

\n
\n\n
\n
MON
\n\n
TUE
\n\n
WED
\n\n
THU
\n\n
FRI
\n\n
SAT
\n\n
SUN
\n\n
16
\n\n
17
\n18 19 20 21 22 23 24 25 26 27 28 29\n
\n
\n\n
\n \n
\n  \n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

BFI Membership

\n\n

Become a BFI Member from £39 to enjoy priority festival booking as well as other great benefits all year round.

\nJoin today\n
\n
\n\n
\n \n
\n \n
\n
\n

About the festival

\n\n

A quick guide to the festival.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

Screenings and events with access provision

\n\n

Making BFI Flare: London LGBTQIA+ Film Festival as welcoming, inclusive and accessible as possible for everyone.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

25 and Under

\n\n

£6 cinema tickets for 16 to 25 year olds.

\nSign up\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

2026 festival brochure

\n\n

Download our digital festival brochure (PDF) for the 2026 edition of the festival.

\nDownload brochure\n
\n
\n\n
\n \n
\n \n
\n
\n

Festival pass

\n\n

See 10 films for less.

\nFind out more\n
\n
\n\n
\n \n
\n
\n \n \n \n \n\n

\n Add a promo code

\n
    \n \n
  • \n \n
  • \n \n
  • \n
    \n \n \n \n \n
    \n
  • \n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n\n
\n
\n\n
\n
\n
\n
\n\n
\n
\n
\n

British Film Institute

\n\n

We are a cultural charity, a National Lottery funding distributor, and the UK’s lead organisation for film and the moving image.

\n\n\n\n\n
\n\n
\n

Supported by

\n\n
\n
\n
\"Funded\n
\n\n
\"Culture\n
\n\n
\"BFI\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n
\n
\n
©2025 British Film Institute. All rights reserved.
\n\n
Registered charity 287780
\n\n
Registered office 21 Stephen St, London W1T 1LN
\n
\n
\n
\n
\n\n
\n
\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n
\n ", + "searchResults": [ + [ + "4C14B7C9-5F10-4B08-8717-6A0305E8E5CC", + "P", + "BFI Flare Festival", + "LLGFF", + "baby_29Mar26", + "Baby", + "Baby", + "Sunday 29 March 2026 17:45", + "17:45", + "29", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "G", + "66", + "Best of Year, Marcelo Caetano, Brazil,João Pedro Mariano, Ricardo Teodoro, Ana Flavia Cavalcanti,Subtitles", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=9A841366-0C59-4CDF-9238-948FC4D93507&BOparam::WScontent::loadArticle::context_id=4C14B7C9-5F10-4B08-8717-6A0305E8E5CC", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREBESTOFYEAR", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "United Kingdom", + "", + "", + "C14E3C2A-68EC-4B8B-B4DA-E00E79BD3822", + "Flare NFT3", + "BFI Southbank, Screen NFT3", + "BFI Southbank, Screen NFT3", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ] + ] +} \ No newline at end of file diff --git a/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-barbara-forever-flare26-2026-02-23 b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-barbara-forever-flare26-2026-02-23 new file mode 100644 index 0000000..abffd84 --- /dev/null +++ b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-barbara-forever-flare26-2026-02-23 @@ -0,0 +1,209 @@ +{ + "html": "\nBuy tickets for Barbara Forever | BFI Flare: London LGBTQIA+ Film Festival 2026\n\n\n\n\n\n\n\n\n\n\n\n \n\n \n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n\n\n\t\n\t\n\t\n\t\n\t\n\t\n
\n
\n \n \n \n
\n\n\n
\n \n \n \n
\n
\n
\n\n \n Order for\n Customer\n\n
\n
\n
\n \n
\n \n
\n \n Your basket is empty\n \n
\n \n
\n\n \n
\n\n \n \n\n\n \n
\n
\n \n\n\n
\n
\n\n \n
\n
\n Order for\n Customer\n \n
\n
\n\n \n
\n
    \n \n
\n
\n
\n\n
\n
\"BFI \"BFI \n
\n\n
\n\n \n \n
\n\n
\n \n
\n\t
\n\t\t\n\n\t
\n
\n\n\n
\n
\n\n \n
\n\n\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n
    \n
  • \n Search films and events\n \n
  • \n
  • \n Search dates\n from\n
    \n
    \n
  • \n
  • \n to\n
    \n
    \n
  • \n
  • \n \n
  • \n
\n \n
\n
\n\n \n\n
\n\n \n \n\n
\n \n
\n
\n
\n\n
\n\n\n
\n

Barbara Forever

\n\n

This portrait of trailblazing experimental filmmaker Barbara Hammer is a striking account of how personal art can become political strength.

\n
\n\n\n

Screening dates and booking

\n\n
\n

Book your festival tickets a week early when you become a BFI Member.\n

\n
\n\n\n
\n
-Friday 27 March 2026 17:50
BFI Southbank, Screen NFT1
Barbara Forever
-Saturday 28 March 2026 11:00
BFI Southbank, Screen NFT3
Barbara Forever
\n
\n\n\n
\"\"\n
\n\n\n

Credits

\n\n
\n
    \n\t
  • \n\t

    Director

    \n\n\t

    Brydie O’Connor

    \n\t
  • \n\t
  • \n\t

    With

    \n\n\t

    Barbara Hammer

    \n\t
  • \n\t
  • \n\t

    USA 2026. 102min

    \n\t
  • \n\t
  • \n\t

    Courtesy of

    \n\n\t

    The Film Collaborative

    \n\t
  • \n\t
  • \n\t

    Language

    \n\n\t

    English

    \n\t
  • \n
\n\n
\n

Access screenings

\n\n
\n

Friday 27 March 17:50\n
\nClosed Captions (CC) via WatchWord smart glasses

\n\n

Saturday 28 March 11:00\n
\nDescriptive Subtitles

\n\n

Find out about booking tickets for access screenings\n

\n
\n
\n
\n\n\n

Introduction

\n\n
\n

‘I was born when I became a lesbian’ says Hammer, her legacy presenting as a testament to this statement. Barbara Forever is a lyrical and beautifully crafted first-person doc that details the iconic artist’s life, from her early seminal works to her mission of an afterlife through film – tracing how she lived, loved, created and inspired. Moving and galvanising, this is a fitting tribute to an indomitable spirit and eternal lesbian icon.

\n\n

Diana Cipriano

\n\n

Content advice

\n\n

Contains scenes of nudity and sex.

\n
\n\n\n

How to book

\n\n
\n

BFI Flare tickets start from £10, with concessions available for many screenings and discounts for BFI Members. Booking information and ticket prices.

\n\n

If you’re aged 16 to 25, sign up for free to BFI 25 and Under for a chance to get £6 tickets to all screenings and events (subject to availability).

\n\n
\n

Missed out?

\n\n

More tickets may become available for these screenings before and during the festival. Find out about extra ticket releases and standby queues.

\n
\n
\n\n\n
\n

Our programmers recommend...

\n\n
\n
\n
\n
\"\"\n
\n\n
\n

Uchronia: Parallel histories of queer revolt

\n\n

This bold, daring cinematic essay explores revolutionary politics, queer history and art.

\n
\nRead more about Uchronia: Parallel histories of queer revolt\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

The Watermelon Woman

\n\n

The first feature directed by an African-American lesbian, Cheryl Dunye’s film is as funny, thought-provoking and original as it was 30 years ago.

\n
\nRead more about The Watermelon Woman\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Treat Me Like Your Mother

\n\n

Based on the book Trans* Histories from Beirut’s Forgotten Past, this kaleidoscopic documentary is a contemplative journey through the lives of five Lebanese women.

\n
\nRead more about Treat Me Like Your Mother\n\n
\n
\n
\n
\n
\n\n
\n \n
\n \n\n\n\n
\n
\n
 
\n
\n\n
\n\n \n
\n \n
\n \n
\n \n
\n
\n

Minds

\n\n

Reflections on art, politics and community.

\nFind out more\n
\n
\n\n
\n \n
\n
\n
\n

March 2026

\n
\n\n
\n
MON
\n\n
TUE
\n\n
WED
\n\n
THU
\n\n
FRI
\n\n
SAT
\n\n
SUN
\n\n
16
\n\n
17
\n18 19 20 21 22 23 24 25 26 27 28 29\n
\n
\n\n
\n \n
\n  \n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

BFI Membership

\n\n

Become a BFI Member from £39 to enjoy priority festival booking as well as other great benefits all year round.

\nJoin today\n
\n
\n\n
\n \n
\n \n
\n
\n

About the festival

\n\n

A quick guide to the festival.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

Screenings and events with access provision

\n\n

Making BFI Flare: London LGBTQIA+ Film Festival as welcoming, inclusive and accessible as possible for everyone.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

25 and Under

\n\n

£6 cinema tickets for 16 to 25 year olds.

\nSign up\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

2026 festival brochure

\n\n

Download our digital festival brochure (PDF) for the 2026 edition of the festival.

\nDownload brochure\n
\n
\n\n
\n \n
\n \n
\n
\n

Festival pass

\n\n

See 10 films for less.

\nFind out more\n
\n
\n\n
\n \n
\n
\n \n \n \n \n\n

\n Add a promo code

\n
    \n \n
  • \n \n
  • \n \n
  • \n
    \n \n \n \n \n
    \n
  • \n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n\n
\n
\n\n
\n
\n
\n
\n\n
\n
\n
\n

British Film Institute

\n\n

We are a cultural charity, a National Lottery funding distributor, and the UK’s lead organisation for film and the moving image.

\n\n\n\n\n
\n\n
\n

Supported by

\n\n
\n
\n
\"Funded\n
\n\n
\"Culture\n
\n\n
\"BFI\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n
\n
\n
©2025 British Film Institute. All rights reserved.
\n\n
Registered charity 287780
\n\n
Registered office 21 Stephen St, London W1T 1LN
\n
\n
\n
\n
\n\n
\n
\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n
\n ", + "searchResults": [ + [ + "2FF3CFCC-4878-46B7-807E-98EBD57E2ACF", + "P", + "BFI Flare Festival", + "LLGFF", + "barb_27Mar26", + "Barbara Forever", + "Barbara Forever", + "Friday 27 March 2026 17:50", + "17:50", + "27", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "E", + "358", + "Minds, Brydie O’Connor, USA,Closed Captions (CC),Barbara Hammer", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=1E9D0679-644B-46CF-9A5F-9482251073CE&BOparam::WScontent::loadArticle::context_id=2FF3CFCC-4878-46B7-807E-98EBD57E2ACF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREMINDS", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "", + "", + "", + "C4B57E43-F123-4CE5-8A17-6CB9F0409CF5", + "Flare - NFT1", + "BFI Southbank, Screen NFT1", + "BFI Southbank, Screen NFT1", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ], + [ + "8392E761-065C-43D9-8F96-10CA95E45226", + "P", + "BFI Flare Festival", + "LLGFF", + "barb_28Mar26", + "Barbara Forever", + "Barbara Forever", + "Saturday 28 March 2026 11:00", + "11:00", + "28", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "G", + "61", + "Minds, Brydie O’Connor, USA,DS descriptive subtitles,Barbara Hammer", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=1E9D0679-644B-46CF-9A5F-9482251073CE&BOparam::WScontent::loadArticle::context_id=8392E761-065C-43D9-8F96-10CA95E45226", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREMINDS", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "United Kingdom", + "", + "", + "C14E3C2A-68EC-4B8B-B4DA-E00E79BD3822", + "Flare NFT3", + "BFI Southbank, Screen NFT3", + "BFI Southbank, Screen NFT3", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ] + ] +} \ No newline at end of file diff --git a/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-bearcave-flare26-2026-02-23 b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-bearcave-flare26-2026-02-23 new file mode 100644 index 0000000..fa02ae3 --- /dev/null +++ b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-bearcave-flare26-2026-02-23 @@ -0,0 +1,209 @@ +{ + "html": "\nBuy tickets for Bearcave | BFI Flare: London LGBTQIA+ Film Festival 2026\n\n\n\n\n\n\n\n\n\n\n\n \n\n \n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n\n\n\t\n\t\n\t\n\t\n\t\n\t\n
\n
\n \n \n \n
\n\n\n
\n \n \n \n
\n
\n
\n\n \n Order for\n Customer\n\n
\n
\n
\n \n
\n \n
\n \n Your basket is empty\n \n
\n \n
\n\n \n
\n\n \n \n\n\n \n
\n
\n \n\n\n
\n
\n\n \n
\n
\n Order for\n Customer\n \n
\n
\n\n \n
\n
    \n \n
\n
\n
\n\n
\n
\"BFI \"BFI \n
\n\n
\n\n \n \n
\n\n
\n \n
\n\t
\n\t\t\n\n\t
\n
\n\n\n
\n
\n\n \n
\n\n\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n
    \n
  • \n Search films and events\n \n
  • \n
  • \n Search dates\n from\n
    \n
    \n
  • \n
  • \n to\n
    \n
    \n
  • \n
  • \n \n
  • \n
\n \n
\n
\n\n \n\n
\n\n \n \n\n
\n \n
\n
\n
\n\n
\n\n\n
\n

Bearcave

\n\n

Arkoudotrypa

\n\n

In this gorgeously shot drama, a friendship between two girls soon reveals hidden depths.

\n
\n\n\n

Screening dates and booking

\n\n
\n

Book your festival tickets a week early when you become a BFI Member.\n

\n
\n\n\n
\n
-Tuesday 24 March 2026 17:50
BFI Southbank, Screen NFT2
Bearcave
-Wednesday 25 March 2026 20:20
BFI Southbank, Screen NFT4
Bearcave
\n
\n\n\n
\"\"\n
\n\n\n

Credits

\n\n
\n
    \n\t
  • \n\t

    Director-screenwriters

    \n\n\t

    Stergios Dinopoulos, Krysianna B. Papadakis

    \n\t
  • \n\t
  • \n\t

    With

    \n\n\t

    Xara Kyriazi, Pamela Oikonomaki

    \n\t
  • \n\t
  • \n\t

    Greece 2025. 132min

    \n\t
  • \n\t
  • \n\t

    Courtesy of

    \n\n\t

    Pucci Productions

    \n\t
  • \n\t
  • \n\t

    Language

    \n\n\t

    Greek

    \n\n\t

    With English subtitles

    \n\t
  • \n
\n
\n\n\n

Introduction

\n\n
\n

Animal-loving Argyro and dreamer Anneta have been close since childhood. Argyro is devastated when Anneta announces she’s pregnant and suddenly leaves town. As we revisit their last day, the layers of their relationship peel away to reveal just how profound and intimate it really is. Clever, kaleidoscopic writing and breathtaking cinematography make for a lyrical debut about the power of love and perseverance.

\n\n

Diana Cipriano

\n\n

Content advice

\n\n

Contains scenes of animal cruelty.

\n
\n\n\n

How to book

\n\n
\n

BFI Flare tickets start from £10, with concessions available for many screenings and discounts for BFI Members. Booking information and ticket prices.

\n\n

If you’re aged 16 to 25, sign up for free to BFI 25 and Under for a chance to get £6 tickets to all screenings and events (subject to availability).

\n\n
\n

Missed out?

\n\n

More tickets may become available for these screenings before and during the festival. Find out about extra ticket releases and standby queues.

\n
\n
\n\n\n
\n

Our programmers recommend...

\n\n
\n
\n
\n
\"\"\n
\n\n
\n

Jone, Sometimes

\n\n

First love and looming parental mortality indelibly shape one young woman’s summer of festivities.

\n
\nRead more about Jone, Sometimes\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

The Little Sister

\n\n

In Hafsia Herzi’s drama, French-Algerian teen Fatima navigates her nascent sexuality, Muslim identity and her family’s expectations for her life.

\n
\nRead more about The Little Sister\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Skiff

\n\n

A young rower struggles to balance family life, self-expression and taboo crushes.

\n
\nRead more about Skiff\n\n
\n
\n
\n
\n
\n\n
\n \n
\n \n\n\n\n
\n
\n
 
\n
\n\n
\n\n \n
\n \n
\n \n
\n \n
\n
\n

Bodies

\n\n

Stories of sex, identity and transformation.

\nFind out more\n
\n
\n\n
\n \n
\n
\n
\n

March 2026

\n
\n\n
\n
MON
\n\n
TUE
\n\n
WED
\n\n
THU
\n\n
FRI
\n\n
SAT
\n\n
SUN
\n\n
16
\n\n
17
\n18 19 20 21 22 23 24 25 26 27 28 29\n
\n
\n\n
\n \n
\n  \n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

BFI Membership

\n\n

Become a BFI Member from £39 to enjoy priority festival booking as well as other great benefits all year round.

\nJoin today\n
\n
\n\n
\n \n
\n \n
\n
\n

About the festival

\n\n

A quick guide to the festival.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

Screenings and events with access provision

\n\n

Making BFI Flare: London LGBTQIA+ Film Festival as welcoming, inclusive and accessible as possible for everyone.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

25 and Under

\n\n

£6 cinema tickets for 16 to 25 year olds.

\nSign up\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

2026 festival brochure

\n\n

Download our digital festival brochure (PDF) for the 2026 edition of the festival.

\nDownload brochure\n
\n
\n\n
\n \n
\n \n
\n
\n

Festival pass

\n\n

See 10 films for less.

\nFind out more\n
\n
\n\n
\n \n
\n
\n \n \n \n \n\n

\n Add a promo code

\n
    \n \n
  • \n \n
  • \n \n
  • \n
    \n \n \n \n \n
    \n
  • \n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n\n
\n
\n\n
\n
\n
\n
\n\n
\n
\n
\n

British Film Institute

\n\n

We are a cultural charity, a National Lottery funding distributor, and the UK’s lead organisation for film and the moving image.

\n\n\n\n\n
\n\n
\n

Supported by

\n\n
\n
\n
\"Funded\n
\n\n
\"Culture\n
\n\n
\"BFI\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n
\n
\n
©2025 British Film Institute. All rights reserved.
\n\n
Registered charity 287780
\n\n
Registered office 21 Stephen St, London W1T 1LN
\n
\n
\n
\n
\n\n
\n
\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n
\n ", + "searchResults": [ + [ + "EC584906-F008-4554-9B7C-58C51AF47D14", + "P", + "BFI Flare Festival", + "LLGFF", + "bear_24Mar26", + "Bearcave", + "Bearcave", + "Tuesday 24 March 2026 17:50", + "17:50", + "24", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "G", + "38", + "Bodies, Stergios Dinopoulos, Krysianna B. Papadakis, Greece,Subtitles,Xara Kyriazi, Pamela Oikonomaki", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=8E45C3EB-4323-4F8B-916A-EBE4DB120175&BOparam::WScontent::loadArticle::context_id=EC584906-F008-4554-9B7C-58C51AF47D14", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREBODIES", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "", + "", + "", + "527ADADE-4BF3-4A03-BADB-12000B5C7BD6", + "Flare NFT2", + "BFI Southbank, Screen NFT2", + "BFI Southbank, Screen NFT2", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ], + [ + "A55C9EF9-B424-4078-8ABF-410A7889E9D8", + "P", + "BFI Flare Festival", + "LLGFF", + "bear_25Mar26", + "Bearcave", + "Bearcave", + "Wednesday 25 March 2026 20:20", + "20:20", + "25", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "E", + "26", + "Bodies, Stergios Dinopoulos, Krysianna B. Papadakis, Greece,Subtitles,Xara Kyriazi, Pamela Oikonomaki", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=8E45C3EB-4323-4F8B-916A-EBE4DB120175&BOparam::WScontent::loadArticle::context_id=A55C9EF9-B424-4078-8ABF-410A7889E9D8", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREBODIES", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "United Kingdom", + "", + "", + "A76FC31F-05EE-4F50-9AC1-C73800A414DA", + "Flare NFT4", + "BFI Southbank, Screen NFT4", + "BFI Southbank, Screen NFT4", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ] + ] +} \ No newline at end of file diff --git a/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-beyond-the-fire-flare26-2026-02-23 b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-beyond-the-fire-flare26-2026-02-23 new file mode 100644 index 0000000..060f7fc --- /dev/null +++ b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-beyond-the-fire-flare26-2026-02-23 @@ -0,0 +1,209 @@ +{ + "html": "\nBuy tickets for Beyond the Fire: The Life of Japan’s First Pride Parade Pioneer | BFI Flare: London LGBTQIA+ Film Festival 2026\n\n\n\n\n\n\n\n\n\n\n\n \n\n \n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n\n\n\t\n\t\n\t\n\t\n\t\n\t\n
\n
\n \n \n \n
\n\n\n
\n \n \n \n
\n
\n
\n\n \n Order for\n Customer\n\n
\n
\n
\n \n
\n \n
\n \n Your basket is empty\n \n
\n \n
\n\n \n
\n\n \n \n\n\n \n
\n
\n \n\n\n
\n
\n\n \n
\n
\n Order for\n Customer\n \n
\n
\n\n \n
\n
    \n \n
\n
\n
\n\n
\n
\"BFI \"BFI \n
\n\n
\n\n \n \n
\n\n
\n \n
\n\t
\n\t\t\n\n\t
\n
\n\n\n
\n
\n\n \n
\n\n\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n
    \n
  • \n Search films and events\n \n
  • \n
  • \n Search dates\n from\n
    \n
    \n
  • \n
  • \n to\n
    \n
    \n
  • \n
  • \n \n
  • \n
\n \n
\n
\n\n \n\n
\n\n \n \n\n
\n \n
\n
\n
\n\n
\n\n\n
\n

Beyond the Fire: The Life of Japan’s First Pride Parade Pioneer

\n\n

This marvellous film dives deep into Japan’s queer history, highlighting the incredible life of the man who pioneered the country’s first Pride march.

\n
\n\n\n

Screening dates and booking

\n\n
\n

Book your festival tickets a week early when you become a BFI Member.\n

\n
\n\n\n
\n
-Friday 20 March 2026 20:40
BFI Southbank, Screen NFT3
Beyond the Fire: The Life of Japan’s First Pride Parade Pioneer
-Saturday 21 March 2026 12:30
BFI Southbank, Screen NFT2
Beyond the Fire: The Life of Japan’s First Pride Parade Pioneer
\n
\n\n\n
\n
\n
\n\n\n

Credits

\n\n
\n
    \n\t
  • \n\t

    Director-screenwriter

    \n\n\t

    Hiroaki Matsuoka

    \n\t
  • \n\t
  • \n\t

    With

    \n\n\t

    Teishiro Minami

    \n\t
  • \n\t
  • \n\t

    Japan-Sweden 2025. 105min

    \n\t
  • \n\t
  • \n\t

    Courtesy of

    \n\n\t

    KamiHUG production

    \n\t
  • \n\t
  • \n\t

    Languages

    \n\n\t

    Japanese, English

    \n\n\t

    With English subtitles

    \n\t
  • \n
\n
\n\n\n

Introduction

\n\n
\n

Born in 1931, Teishiro Minami launched Japan’s first commercial gay magazine, coordinated a queer helpline and organised the nation’s first Pride parade in 1994. Minami and friends reflect on the complicated relationships and inter-community clashes that paved the way for today’s movement. Comprising a rich trove of archive footage and vibrant animation, Hiroaki Matsuoka’s documentary honours Minami’s legacy.

\n\n

Wema Mumma

\n\n

Content advice

\n\n

Contains themes of suicide.

\n\n

Contains homophobic attitudes and language.

\n\n

Contains flashing images.

\n
\n\n\n

How to book

\n\n
\n

BFI Flare tickets start from £10, with concessions available for many screenings and discounts for BFI Members. Booking information and ticket prices.

\n\n

If you’re aged 16 to 25, sign up for free to BFI 25 and Under for a chance to get £6 tickets to all screenings and events (subject to availability).

\n\n
\n

Missed out?

\n\n

More tickets may become available for these screenings before and during the festival. Find out about extra ticket releases and standby queues.

\n
\n
\n\n\n
\n

Our programmers recommend...

\n\n
\n
\n
\n
\"\"\n
\n\n
\n

10s Across the Borders

\n\n

Sze-Wei Chan’s soulful documentary takes a deep dive into Southeast Asian ballroom culture.

\n
\nRead more about 10s Across the Borders\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

The Deepest Space in Us

\n\n

In this touching, introspective drama, an aromantic asexual woman seeks an honest connection with other people.

\n
\nRead more about The Deepest Space in Us\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Impure Nuns

\n\n

This transgressive 1950s treasure, previously unseen outside of Japan, chronicles an affair between two nuns at a boarding school.

\n
\nRead more about Impure Nuns\n\n
\n
\n
\n
\n
\n\n
\n \n
\n \n\n\n\n
\n
\n
 
\n
\n\n
\n\n \n
\n \n
\n \n
\n \n
\n
\n

Minds

\n\n

Reflections on art, politics and community.

\nFind out more\n
\n
\n\n
\n \n
\n
\n
\n

March 2026

\n
\n\n
\n
MON
\n\n
TUE
\n\n
WED
\n\n
THU
\n\n
FRI
\n\n
SAT
\n\n
SUN
\n\n
16
\n\n
17
\n18 19 20 21 22 23 24 25 26 27 28 29\n
\n
\n\n
\n \n
\n  \n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

BFI Membership

\n\n

Become a BFI Member from £39 to enjoy priority festival booking as well as other great benefits all year round.

\nJoin today\n
\n
\n\n
\n \n
\n \n
\n
\n

About the festival

\n\n

A quick guide to the festival.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

Screenings and events with access provision

\n\n

Making BFI Flare: London LGBTQIA+ Film Festival as welcoming, inclusive and accessible as possible for everyone.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

25 and Under

\n\n

£6 cinema tickets for 16 to 25 year olds.

\nSign up\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

2026 festival brochure

\n\n

Download our digital festival brochure (PDF) for the 2026 edition of the festival.

\nDownload brochure\n
\n
\n\n
\n \n
\n \n
\n
\n

Festival pass

\n\n

See 10 films for less.

\nFind out more\n
\n
\n\n
\n \n
\n
\n \n \n \n \n\n

\n Add a promo code

\n
    \n \n
  • \n \n
  • \n \n
  • \n
    \n \n \n \n \n
    \n
  • \n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n\n
\n
\n\n
\n
\n
\n
\n\n
\n
\n
\n

British Film Institute

\n\n

We are a cultural charity, a National Lottery funding distributor, and the UK’s lead organisation for film and the moving image.

\n\n\n\n\n
\n\n
\n

Supported by

\n\n
\n
\n
\"Funded\n
\n\n
\"Culture\n
\n\n
\"BFI\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n
\n
\n
©2025 British Film Institute. All rights reserved.
\n\n
Registered charity 287780
\n\n
Registered office 21 Stephen St, London W1T 1LN
\n
\n
\n
\n
\n\n
\n
\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n
\n ", + "searchResults": [ + [ + "F52067EA-E64E-4E24-87ED-41CA47560674", + "P", + "BFI Flare Festival", + "LLGFF", + "beyon_20Mar26", + "Beyond the Fire: The Life of Japan’s First Pride Parade Pioneer", + "Beyond the Fire: The Life of Japan’s First Pride Parade Pioneer", + "Friday 20 March 2026 20:40", + "20:40", + "20", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "G", + "46", + "Subtitles,Teishiro Minami,Minds, Hiroaki Matsuoka, Japan-Sweden", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=9AE98D22-1FA3-410C-84EF-B17E33AEEFEE&BOparam::WScontent::loadArticle::context_id=F52067EA-E64E-4E24-87ED-41CA47560674", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREMINDS", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "United Kingdom", + "", + "", + "C14E3C2A-68EC-4B8B-B4DA-E00E79BD3822", + "Flare NFT3", + "BFI Southbank, Screen NFT3", + "BFI Southbank, Screen NFT3", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ], + [ + "2D0E527F-4B28-49B4-80CC-7D68EE172B7A", + "P", + "BFI Flare Festival", + "LLGFF", + "beyon_21Mar26", + "Beyond the Fire: The Life of Japan’s First Pride Parade Pioneer", + "Beyond the Fire: The Life of Japan’s First Pride Parade Pioneer", + "Saturday 21 March 2026 12:30", + "12:30", + "21", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "G", + "64", + "Minds, Hiroaki Matsuoka, Japan-Sweden,Teishiro Minami,Subtitles", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=9AE98D22-1FA3-410C-84EF-B17E33AEEFEE&BOparam::WScontent::loadArticle::context_id=2D0E527F-4B28-49B4-80CC-7D68EE172B7A", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREMINDS", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "", + "", + "", + "527ADADE-4BF3-4A03-BADB-12000B5C7BD6", + "Flare NFT2", + "BFI Southbank, Screen NFT2", + "BFI Southbank, Screen NFT2", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ] + ] +} \ No newline at end of file diff --git a/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-big-girls-dont-cry-flare26-2026-02-23 b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-big-girls-dont-cry-flare26-2026-02-23 new file mode 100644 index 0000000..9b6eec1 --- /dev/null +++ b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-big-girls-dont-cry-flare26-2026-02-23 @@ -0,0 +1,209 @@ +{ + "html": "\nBuy tickets for Big Girls Don’t Cry | BFI Flare: London LGBTQIA+ Film Festival 2026\n\n\n\n\n\n\n\n\n\n\n\n \n\n \n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n\n\n\t\n\t\n\t\n\t\n\t\n\t\n
\n
\n \n \n \n
\n\n\n
\n \n \n \n
\n
\n
\n\n \n Order for\n Customer\n\n
\n
\n
\n \n
\n \n
\n \n Your basket is empty\n \n
\n \n
\n\n \n
\n\n \n \n\n\n \n
\n
\n \n\n\n
\n
\n\n \n
\n
\n Order for\n Customer\n \n
\n
\n\n \n
\n
    \n \n
\n
\n
\n\n
\n
\"BFI \"BFI \n
\n\n
\n\n \n \n
\n\n
\n \n
\n\t
\n\t\t\n\n\t
\n
\n\n\n
\n
\n\n \n
\n\n\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n
    \n
  • \n Search films and events\n \n
  • \n
  • \n Search dates\n from\n
    \n
    \n
  • \n
  • \n to\n
    \n
    \n
  • \n
  • \n \n
  • \n
\n \n
\n
\n\n \n\n
\n\n \n \n\n
\n \n
\n
\n\n\n\n
\n

Special Presentation

\n\n

Big Girls Don’t Cry

\n\n

Paloma Schneideman’s accomplished debut is an engrossing portrait of a teenage girl navigating her burgeoning desires in early 2000s New Zealand.

\n
\n\n\n

Screening dates and booking

\n\n
\n

Book your festival tickets a week early when you become a BFI Member.\n

\n
\n\n\n
\n
-Thursday 26 March 2026 20:50
BFI Southbank, Screen NFT1
Big Girls Don’t Cry
-Saturday 28 March 2026 15:55
BFI Southbank, Screen NFT3
Big Girls Don’t Cry
\n
\n\n\n
\"\"\n
\n\n\n

Credits

\n\n
\n
    \n\t
  • \n\t

    Director-screenwriter

    \n\n\t

    Paloma Schneideman

    \n\t
  • \n\t
  • \n\t

    With

    \n\n\t

    Ani Palmer, Rain Spencer, Noah Taylor

    \n\t
  • \n\t
  • \n\t

    New Zealand 2026. 100min

    \n\t
  • \n\t
  • \n\t

    Courtesy of

    \n\n\t

    Blue Fox Entertainment

    \n\t
  • \n\t
  • \n\t

    Language

    \n\n\t

    English

    \n\t
  • \n
\n
\n\n\n

Introduction

\n\n
\n

It’s the summer holidays and 14-year-old Sid is adrift. Days are spent listlessly avoiding her distracted father (a fantastic Noah Taylor), while evenings see her exploring the murky worlds of online chatrooms. Caught on the cusp between childhood and adulthood, and experiencing the first bloom of sexuality, she is desperate to fit in, even modelling her behaviour after a group of older teens. Executive produced by Jane Campion and screening to great acclaim at this year’s Sundance Film Festival, Schneideman’s assured and intimate drama explores an age when desire and sexuality often feel impossible to articulate, but overwhelm in their intensity. Newcomer Ani Palmer perfectly captures these emotions in a performance that feels bracingly real and lived in.

\n\n

Grace Barber-Plentie

\n\n

Content advice

\n\n

Contains scenes of drug use, nudity, and sex.

\n
\n\n\n

How to book

\n\n
\n

BFI Flare tickets start from £10, with concessions available for many screenings and discounts for BFI Members. Booking information and ticket prices.

\n\n

If you’re aged 16 to 25, sign up for free to BFI 25 and Under for a chance to get £6 tickets to all screenings and events (subject to availability).

\n\n
\n

Missed out?

\n\n

More tickets may become available for these screenings before and during the festival. Find out about extra ticket releases and standby queues.

\n
\n
\n\n\n
\n

Our programmers recommend...

\n\n
\n
\n
\n
\"\"\n
\n\n
\n

Bearcave

\n\n

In this gorgeously shot drama, a friendship between two girls soon reveals hidden depths.

\n
\nRead more about Bearcave\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Barbara Forever

\n\n

This portrait of trailblazing experimental filmmaker Barbara Hammer is a striking account of how personal art can become political strength.

\n
\nRead more about Barbara Forever\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Dreamers

\n\n

In Joy Gharoro-Akpojotor’s impressive feature debut, Nigerian immigrants Isio and Farah dare to imagine a vibrant future outside of their confinement at a British immigration removal centre.

\n
\nRead more about Dreamers\n\n
\n
\n
\n
\n
\n\n
\n \n
\n \n\n\n\n
\n
\n
 
\n
\n\n
\n\n \n
\n \n
\n \n
\n \n
\n
\n

Special Presentations

\n\n

Opening and Closing Night Films as well as Special Presentation.

\nFind out more\n
\n
\n\n
\n \n
\n
\n
\n

March 2026

\n
\n\n
\n
MON
\n\n
TUE
\n\n
WED
\n\n
THU
\n\n
FRI
\n\n
SAT
\n\n
SUN
\n\n
16
\n\n
17
\n18 19 20 21 22 23 24 25 26 27 28 29\n
\n
\n\n
\n \n
\n  \n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

BFI Membership

\n\n

Become a BFI Member from £39 to enjoy priority festival booking as well as other great benefits all year round.

\nJoin today\n
\n
\n\n
\n \n
\n \n
\n
\n

About the festival

\n\n

A quick guide to the festival.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

Screenings and events with access provision

\n\n

Making BFI Flare: London LGBTQIA+ Film Festival as welcoming, inclusive and accessible as possible for everyone.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

25 and Under

\n\n

£6 cinema tickets for 16 to 25 year olds.

\nSign up\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

2026 festival brochure

\n\n

Download our digital festival brochure (PDF) for the 2026 edition of the festival.

\nDownload brochure\n
\n
\n\n
\n \n
\n \n
\n
\n

Festival pass

\n\n

See 10 films for less.

\nFind out more\n
\n
\n\n
\n \n
\n
\n \n \n \n \n\n

\n Add a promo code

\n
    \n \n
  • \n \n
  • \n \n
  • \n
    \n \n \n \n \n
    \n
  • \n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n\n
\n
\n\n
\n
\n
\n
\n\n
\n
\n
\n

British Film Institute

\n\n

We are a cultural charity, a National Lottery funding distributor, and the UK’s lead organisation for film and the moving image.

\n\n\n\n\n
\n\n
\n

Supported by

\n\n
\n
\n
\"Funded\n
\n\n
\"Culture\n
\n\n
\"BFI\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n
\n
\n
©2025 British Film Institute. All rights reserved.
\n\n
Registered charity 287780
\n\n
Registered office 21 Stephen St, London W1T 1LN
\n
\n
\n
\n
\n\n
\n
\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n
\n ", + "searchResults": [ + [ + "EAA94C92-A4A7-40C9-B61B-38E6EE9CB2F1", + "P", + "BFI Flare Festival", + "LLGFF", + "bigg_26Mar26", + "Big Girls Don’t Cry", + "Big Girls Don’t Cry", + "Thursday 26 March 2026 20:50", + "20:50", + "26", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "E", + "324", + "Galas and Special Presentations, Paloma Schneideman, New Zealand,Ani Palmer, Rain Spencer, Noah Taylor", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=8B348468-4966-4518-825D-23AA954FD2D6&BOparam::WScontent::loadArticle::context_id=EAA94C92-A4A7-40C9-B61B-38E6EE9CB2F1", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLARESPECIALPRESENTATION", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "", + "", + "", + "C4B57E43-F123-4CE5-8A17-6CB9F0409CF5", + "Flare - NFT1", + "BFI Southbank, Screen NFT1", + "BFI Southbank, Screen NFT1", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ], + [ + "5F0280E2-6D3C-4934-9A17-552EB8F9CD8F", + "P", + "BFI Flare Festival", + "LLGFF", + "bigg_28Mar26", + "Big Girls Don’t Cry", + "Big Girls Don’t Cry", + "Saturday 28 March 2026 15:55", + "15:55", + "28", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "G", + "48", + "Ani Palmer, Rain Spencer, Noah Taylor,Galas and Special Presentations, Paloma Schneideman, New Zealand", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=8B348468-4966-4518-825D-23AA954FD2D6&BOparam::WScontent::loadArticle::context_id=5F0280E2-6D3C-4934-9A17-552EB8F9CD8F", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLARESPECIALPRESENTATION", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "United Kingdom", + "", + "", + "C14E3C2A-68EC-4B8B-B4DA-E00E79BD3822", + "Flare NFT3", + "BFI Southbank, Screen NFT3", + "BFI Southbank, Screen NFT3", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ] + ] +} \ No newline at end of file diff --git a/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-black-burns-fast-flare26-2026-02-23 b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-black-burns-fast-flare26-2026-02-23 new file mode 100644 index 0000000..70b547d --- /dev/null +++ b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-black-burns-fast-flare26-2026-02-23 @@ -0,0 +1,209 @@ +{ + "html": "\nBuy tickets for Black Burns Fast | BFI Flare: London LGBTQIA+ Film Festival 2026\n\n\n\n\n\n\n\n\n\n\n\n \n\n \n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n\n\n\t\n\t\n\t\n\t\n\t\n\t\n
\n
\n \n \n \n
\n\n\n
\n \n \n \n
\n
\n
\n\n \n Order for\n Customer\n\n
\n
\n
\n \n
\n \n
\n \n Your basket is empty\n \n
\n \n
\n\n \n
\n\n \n \n\n\n \n
\n
\n \n\n\n
\n
\n\n \n
\n
\n Order for\n Customer\n \n
\n
\n\n \n
\n
    \n \n
\n
\n
\n\n
\n
\"BFI \"BFI \n
\n\n
\n\n \n \n
\n\n
\n \n
\n\t
\n\t\t\n\n\t
\n
\n\n\n
\n
\n\n \n
\n\n\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n
    \n
  • \n Search films and events\n \n
  • \n
  • \n Search dates\n from\n
    \n
    \n
  • \n
  • \n to\n
    \n
    \n
  • \n
  • \n \n
  • \n
\n \n
\n
\n\n \n\n
\n\n \n \n\n
\n \n
\n
\n\n\n\n
\n

Closing Night Film

\n\n

Black Burns Fast

\n\n

In Sandulela Asanda’s warm-hearted directorial debut, the arrival of new girl at nerdy Luthando’s prestigious South African boarding school prompts her sexual awakening.

\n
\n\n\n

Screening dates and booking

\n\n
\n

Book your festival tickets a week early when you become a BFI Member.\n

\n
\n\n\n
\n
-Saturday 28 March 2026 18:00
BFI Southbank, Screen NFT1
Black Burns Fast
-Saturday 28 March 2026 20:40
BFI Southbank, Screen NFT1
Black Burns Fast
\n
\n\n\n
\n
\n
\n\n\n

Credits

\n\n
\n
    \n\t
  • \n\t

    Director-screenwriter

    \n\n\t

    Sandulela Asanda

    \n\t
  • \n\t
  • \n\t

    With

    \n\n\t

    Esihle Ndleleni, Muadi Ilung, Mila Smith, Khensani Khoza, Ntsimedi Gwangwa, Basetsana Motloung

    \n\t
  • \n\t
  • \n\t

    South Africa 2025. 96min

    \n\t
  • \n\t
  • \n\t

    Courtesy of

    \n\n\t

    Courtesy of Urucu

    \n\t
  • \n\t
  • \n\t

    Language

    \n\n\t

    English, Xhosa

    \n\n\t

    With English subtitles

    \n\t
  • \n
\n
\n\n\n

Introduction

\n\n
\n

It’s Luthando’s final year of high school. She and her best friend Jodie, two of the school’s scholarship students, are content to be viewed as studious and chronically uncool. However, the arrival of fiery Ayanda in their class dramatically changes things. Luthando is introduced to the ‘cool’ scholarship set and her rebellious side soon starts to bloom. But what is she meant to do about her confusing feelings for Ayanda? And how is she going to juggle new and old friendships – and those sexual desires – while remaining a top student and ensuring she lives up to her mother’s high expectations of her? Turning high-school movie tropes on their head, Black Burns Fast is a refreshing and creative love letter to queer Black girlhood that announces Asanda as a major new cinematic voice. It’s impossible to leave this film without a broad smile on your face.

\n\n

Grace Barber-Plentie

\n
\n\n\n

How to book

\n\n
\n

BFI Flare tickets start from £10, with concessions available for many screenings and discounts for BFI Members. Booking information and ticket prices.

\n\n

If you’re aged 16 to 25, sign up for free to BFI 25 and Under for a chance to get £6 tickets to all screenings and events (subject to availability).

\n\n
\n

Missed out?

\n\n

More tickets may become available for these screenings before and during the festival. Find out about extra ticket releases and standby queues.

\n
\n
\n\n\n
\n

Our programmers recommend...

\n\n
\n
\n
\n
\"\"\n
\n\n
\n

ìfé: (The Sequel)

\n\n

The highly anticipated sequel to Nigeria’s first lesbian film reunites former lovers ífé and Adaora years after their separation.

\n
\nRead more about ìfé: (The Sequel)\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Low Rider

\n\n

Campbell X’s long-awaited second feature takes us on a fun ride across South Africa.

\n
\nRead more about Low Rider\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Skiff

\n\n

A young rower struggles to balance family life, self-expression and taboo crushes.

\n
\nRead more about Skiff\n\n
\n
\n
\n
\n
\n\n
\n \n
\n \n\n\n\n
\n
\n
 
\n
\n\n
\n\n \n
\n \n
\n \n
\n \n
\n
\n

Special Presentations

\n\n

Opening and Closing Night Films as well as Special Presentation.

\nFind out more\n
\n
\n\n
\n \n
\n
\n
\n

March 2026

\n
\n\n
\n
MON
\n\n
TUE
\n\n
WED
\n\n
THU
\n\n
FRI
\n\n
SAT
\n\n
SUN
\n\n
16
\n\n
17
\n18 19 20 21 22 23 24 25 26 27 28 29\n
\n
\n\n
\n \n
\n  \n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

BFI Membership

\n\n

Become a BFI Member from £39 to enjoy priority festival booking as well as other great benefits all year round.

\nJoin today\n
\n
\n\n
\n \n
\n \n
\n
\n

About the festival

\n\n

A quick guide to the festival.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

Screenings and events with access provision

\n\n

Making BFI Flare: London LGBTQIA+ Film Festival as welcoming, inclusive and accessible as possible for everyone.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

25 and Under

\n\n

£6 cinema tickets for 16 to 25 year olds.

\nSign up\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

2026 festival brochure

\n\n

Download our digital festival brochure (PDF) for the 2026 edition of the festival.

\nDownload brochure\n
\n
\n\n
\n \n
\n \n
\n
\n

Festival pass

\n\n

See 10 films for less.

\nFind out more\n
\n
\n\n
\n \n
\n
\n \n \n \n \n\n

\n Add a promo code

\n
    \n \n
  • \n \n
  • \n \n
  • \n
    \n \n \n \n \n
    \n
  • \n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n\n
\n
\n\n
\n
\n
\n
\n\n
\n
\n
\n

British Film Institute

\n\n

We are a cultural charity, a National Lottery funding distributor, and the UK’s lead organisation for film and the moving image.

\n\n\n\n\n
\n\n
\n

Supported by

\n\n
\n
\n
\"Funded\n
\n\n
\"Culture\n
\n\n
\"BFI\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n
\n
\n
©2025 British Film Institute. All rights reserved.
\n\n
Registered charity 287780
\n\n
Registered office 21 Stephen St, London W1T 1LN
\n
\n
\n
\n
\n\n
\n
\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n
\n ", + "searchResults": [ + [ + "4A38ED8D-01EF-40CA-AEE0-7892B3870E0D", + "P", + "BFI Flare Festival", + "LLGFF", + "blac_e1_28Mar26", + "Black Burns Fast", + "Black Burns Fast", + "Saturday 28 March 2026 18:00", + "18:00", + "28", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "L", + "112", + "Esihle Ndleleni, Muadi Ilung, Mila Smith, Khensani Khoza, Ntsimedi Gwangwa, Basetsana Motloung,Galas and Special Presentations, Sandulela Asanda, South Africa,Subtitles", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=43AFDBC6-E1FE-4FBA-9E09-357F7D30011A&BOparam::WScontent::loadArticle::context_id=4A38ED8D-01EF-40CA-AEE0-7892B3870E0D", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLARECN", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "", + "", + "", + "C4B57E43-F123-4CE5-8A17-6CB9F0409CF5", + "Flare - NFT1", + "BFI Southbank, Screen NFT1", + "BFI Southbank, Screen NFT1", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£18.00", + "£18.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ], + [ + "45604C9D-6F4D-4AC6-9CB4-9379F7DB7EF7", + "P", + "BFI Flare Festival", + "LLGFF", + "blac_e2_28Mar26", + "Black Burns Fast", + "Black Burns Fast", + "Saturday 28 March 2026 20:40", + "20:40", + "28", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "E", + "351", + "Galas and Special Presentations, Sandulela Asanda, South Africa,Subtitles,Esihle Ndleleni, Muadi Ilung, Mila Smith, Khensani Khoza, Ntsimedi Gwangwa, Basetsana Motloung", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=43AFDBC6-E1FE-4FBA-9E09-357F7D30011A&BOparam::WScontent::loadArticle::context_id=45604C9D-6F4D-4AC6-9CB4-9379F7DB7EF7", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLARECN", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "", + "", + "", + "C4B57E43-F123-4CE5-8A17-6CB9F0409CF5", + "Flare - NFT1", + "BFI Southbank, Screen NFT1", + "BFI Southbank, Screen NFT1", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£18.00", + "£18.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ] + ] +} \ No newline at end of file diff --git a/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-broken-r-flare26-2026-02-23 b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-broken-r-flare26-2026-02-23 new file mode 100644 index 0000000..b855cb5 --- /dev/null +++ b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-broken-r-flare26-2026-02-23 @@ -0,0 +1,208 @@ +{ + "html": "\nBuy tickets for The Broken R | BFI Flare: London LGBTQIA+ Film Festival 2026\n\n\n\n\n\n\n\n\n\n\n\n \n\n \n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n\n\n\t\n\t\n\t\n\t\n\t\n\t\n
\n
\n \n \n \n
\n\n\n
\n \n \n \n
\n
\n
\n\n \n Order for\n Customer\n\n
\n
\n
\n \n
\n \n
\n \n Your basket is empty\n \n
\n \n
\n\n \n
\n\n \n \n\n\n \n
\n
\n \n\n\n
\n
\n\n \n
\n
\n Order for\n Customer\n \n
\n
\n\n \n
\n
    \n \n
\n
\n
\n\n
\n
\"BFI \"BFI \n
\n\n
\n\n \n \n
\n\n
\n \n
\n\t
\n\t\t\n\n\t
\n
\n\n\n
\n
\n\n \n
\n\n\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n
    \n
  • \n Search films and events\n \n
  • \n
  • \n Search dates\n from\n
    \n
    \n
  • \n
  • \n to\n
    \n
    \n
  • \n
  • \n \n
  • \n
\n \n
\n
\n\n \n\n
\n\n \n \n\n
\n \n
\n
\n
\n\n
\n\n\n
\n

The Broken R

\n\n

Rotacismo

\n\n

Ricardo Ruales Eguiguren’s film reflects upon his rare genetic condition and his sexual identity.

\n
\n\n\n

Screening dates and booking

\n\n
\n

Book your festival tickets a week early when you become a BFI Member.\n

\n
\n\n\n
\n
-Saturday 21 March 2026 15:50
BFI Southbank, Screen NFT3
The Broken R
-Tuesday 24 March 2026 18:30
BFI Southbank, Screen NFT4
The Broken R
\n
\n\n\n
\n
\n
\n\n\n

Credits

\n\n
\n
    \n\t
  • \n\t

    Director

    \n\n\t

    Ricardo Ruales Eguiguren

    \n\t
  • \n\t
  • \n\t

    Screenwriters

    \n\n\t

    Soledad Santelices, Nicole Moscoso, Ricardo Ruales Eguiguren

    \n\t
  • \n\t
  • \n\t

    Ecuador-Italy 2025. 85min

    \n\t
  • \n\t
  • \n\t

    Courtesy of

    \n\n\t

    Utopia Docs

    \n\t
  • \n\t
  • \n\t

    Language

    \n\n\t

    Spanish

    \n\n\t

    With English subtitles

    \n\t
  • \n
\n\n
\n

Access screenings

\n\n
\n

Tuesday 24 March 18:30\n
\nRelaxed screening

\n\n

Find out about booking tickets for access screenings\n

\n
\n
\n
\n\n\n

Introduction

\n\n
\n

Ricardo and his father have Treacher Collins syndrome. Weaving together archive footage, interviews and animation, Ricardo attempts to understand his relationship to his family, his condition and his sexuality.

\n\n

Grace Barber-Plentie

\n
\n\n\n

Screening with

\n\n\n
\n

Rag Dolls

\n\n\n
\"\"\n
\n\n\n
\n
    \n\t
  • \n\t

    Director

    \n\n\t

    Amy Adler

    \n\t
  • \n\t
  • \n\t

    USA-Mexico 2025. 12min

    \n\t
  • \n\t
  • \n\t

    Language

    \n\n\t

    Spanish

    \n\t
  • \n\t
  • \n\t

    With English subtitles

    \n\t
  • \n
\n
\n\n\n

This documentary follows Rosalinda and Diana, a disabled lesbian couple creating their own space of love and mutual care.

\n\n

Content advice

\n\n

Contains homophobic attitudes and language.

\n
\n\n\n

How to book

\n\n
\n

BFI Flare tickets start from £10, with concessions available for many screenings and discounts for BFI Members. Booking information and ticket prices.

\n\n

If you’re aged 16 to 25, sign up for free to BFI 25 and Under for a chance to get £6 tickets to all screenings and events (subject to availability).

\n\n
\n

Missed out?

\n\n

More tickets may become available for these screenings before and during the festival. Find out about extra ticket releases and standby queues.

\n
\n
\n\n\n
\n

Our programmers recommend...

\n\n
\n
\n
\n
\"\"\n
\n\n
\n

The Last Guest of the Holloway Motel

\n\n

In this impressive feature debut, a former British football star reflects on his past and the family he abandoned to hide his true identity.

\n
\nRead more about The Last Guest of the Holloway Motel\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

TO DANCE IS TO RESIST

\n\n

Two Ukrainian dancers seek life and artistic freedom following Russia’s invasion of their country.

\n
\nRead more about TO DANCE IS TO RESIST\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Edges of Belonging

\n\n

From queer immigrants striving to find their place in the world to a solitary farmer’s quiet existence and a young man’s erotic fixation, this programme explores lives on the margins, and the ways people forge bonds, find intimacy and meaningful connections, and a place to belong.

\n
\nRead more about Edges of Belonging\n\n
\n
\n
\n
\n
\n\n
\n \n
\n \n\n\n\n
\n
\n
 
\n
\n\n
\n\n \n
\n \n
\n \n
\n \n
\n
\n

Bodies

\n\n

Stories of sex, identity and transformation.

\nFind out more\n
\n
\n\n
\n \n
\n
\n
\n

March 2026

\n
\n\n
\n
MON
\n\n
TUE
\n\n
WED
\n\n
THU
\n\n
FRI
\n\n
SAT
\n\n
SUN
\n\n
16
\n\n
17
\n18 19 20 21 22 23 24 25 26 27 28 29\n
\n
\n\n
\n \n
\n  \n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

BFI Membership

\n\n

Become a BFI Member from £39 to enjoy priority festival booking as well as other great benefits all year round.

\nJoin today\n
\n
\n\n
\n \n
\n \n
\n
\n

About the festival

\n\n

A quick guide to the festival.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

Screenings and events with access provision

\n\n

Making BFI Flare: London LGBTQIA+ Film Festival as welcoming, inclusive and accessible as possible for everyone.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

25 and Under

\n\n

£6 cinema tickets for 16 to 25 year olds.

\nSign up\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

2026 festival brochure

\n\n

Download our digital festival brochure (PDF) for the 2026 edition of the festival.

\nDownload brochure\n
\n
\n\n
\n \n
\n \n
\n
\n

Festival pass

\n\n

See 10 films for less.

\nFind out more\n
\n
\n\n
\n \n
\n
\n \n \n \n \n\n

\n Add a promo code

\n
    \n \n
  • \n \n
  • \n \n
  • \n
    \n \n \n \n \n
    \n
  • \n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n\n
\n
\n\n
\n
\n
\n
\n\n
\n
\n
\n

British Film Institute

\n\n

We are a cultural charity, a National Lottery funding distributor, and the UK’s lead organisation for film and the moving image.

\n\n\n\n\n
\n\n
\n

Supported by

\n\n
\n
\n
\"Funded\n
\n\n
\"Culture\n
\n\n
\"BFI\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n
\n
\n
©2025 British Film Institute. All rights reserved.
\n\n
Registered charity 287780
\n\n
Registered office 21 Stephen St, London W1T 1LN
\n
\n
\n
\n
\n\n
\n
\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n
\n ", + "searchResults": [ + [ + "3EB75F80-CEF5-4AD1-95D2-CFDAF875281A", + "P", + "BFI Flare Festival", + "LLGFF", + "brok_21Mar26", + "The Broken R", + "The Broken R", + "Saturday 21 March 2026 15:50", + "15:50", + "21", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "G", + "48", + "Bodies, Ricardo Ruales Eguiguren, Ecuador-Italy,Rag Dolls, Amy Adler, USA-Mexico,Subtitles", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=76A891CC-ADAA-41F3-9904-2BF06CE350B4&BOparam::WScontent::loadArticle::context_id=3EB75F80-CEF5-4AD1-95D2-CFDAF875281A", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREBODIES", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "United Kingdom", + "", + "", + "C14E3C2A-68EC-4B8B-B4DA-E00E79BD3822", + "Flare NFT3", + "BFI Southbank, Screen NFT3", + "BFI Southbank, Screen NFT3", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ], + [ + "4707CFAA-98C7-41B5-8E56-CA39FADA4A3D", + "P", + "BFI Flare Festival", + "LLGFF", + "broke_24Mar26", + "The Broken R", + "The Broken R", + "Tuesday 24 March 2026 18:30", + "18:30", + "24", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "G", + "17", + "Bodies, Ricardo Ruales Eguiguren, Ecuador-Italy,Rag Dolls, Amy Adler, USA-Mexico,Subtitles,Relaxed", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=76A891CC-ADAA-41F3-9904-2BF06CE350B4&BOparam::WScontent::loadArticle::context_id=4707CFAA-98C7-41B5-8E56-CA39FADA4A3D", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREBODIES", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1" + ], + "", + "", + "", + "", + "", + "", + "", + "CC14D511-4D26-4B51-9327-BABE4A8EA546", + "Flare NFT4 General Admission", + "BFI Southbank, Screen NFT4", + "BFI Southbank, Screen NFT4", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£6.00", + "£6.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ] + ] +} \ No newline at end of file diff --git a/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-cant-go-over-it-flare26-2026-02-23 b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-cant-go-over-it-flare26-2026-02-23 new file mode 100644 index 0000000..a7d7ff3 --- /dev/null +++ b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-cant-go-over-it-flare26-2026-02-23 @@ -0,0 +1,209 @@ +{ + "html": "\nBuy tickets for Can’t Go Over It | BFI Flare: London LGBTQIA+ Film Festival 2026\n\n\n\n\n\n\n\n\n\n\n\n \n\n \n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n\n\n\t\n\t\n\t\n\t\n\t\n\t\n
\n
\n \n \n \n
\n\n\n
\n \n \n \n
\n
\n
\n\n \n Order for\n Customer\n\n
\n
\n
\n \n
\n \n
\n \n Your basket is empty\n \n
\n \n
\n\n \n
\n\n \n \n\n\n \n
\n
\n \n\n\n
\n
\n\n \n
\n
\n Order for\n Customer\n \n
\n
\n\n \n
\n
    \n \n
\n
\n
\n\n
\n
\"BFI \"BFI \n
\n\n
\n\n \n \n
\n\n
\n \n
\n\t
\n\t\t\n\n\t
\n
\n\n\n
\n
\n\n \n
\n\n\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n
    \n
  • \n Search films and events\n \n
  • \n
  • \n Search dates\n from\n
    \n
    \n
  • \n
  • \n to\n
    \n
    \n
  • \n
  • \n \n
  • \n
\n \n
\n
\n\n \n\n
\n\n \n \n\n
\n \n
\n
\n
\n\n
\n\n\n
\n

Can’t Go Over It

\n\n

Two queer best friends are forced to confront the gradual dissolution of their friendship when they go on an annual hiking trip.

\n
\n\n\n

Screening dates and booking

\n\n
\n

Book your festival tickets a week early when you become a BFI Member.\n

\n
\n\n\n
\n
-Sunday 22 March 2026 15:50
BFI Southbank, Screen NFT1
Can’t Go Over It
-Monday 23 March 2026 21:00
BFI Southbank, Screen NFT4
Can’t Go Over It
\n
\n\n\n
\"\"\n
\n\n\n

Credits

\n\n
\n
    \n\t
  • \n\t

    Director-screenwriter

    \n\n\t

    Ethan Fuirst

    \n\t
  • \n\t
  • \n\t

    With

    \n\n\t

    Susannah Perkins, Taylor Trensch

    \n\t
  • \n\t
  • \n\t

    USA 2025. 76min

    \n\t
  • \n\t
  • \n\t

    Courtesy of

    \n\n\t

    Lucky Milk

    \n\t
  • \n\t
  • \n\t

    Language

    \n\n\t

    English

    \n\t
  • \n
\n\n
\n

Access screenings

\n\n
\n

Sunday 22 March 15:50\n
\nClosed Captions (CC) via WatchWord smart glasses

\n\n

Monday 23 March 21:00\n
\nDescriptive Subtitles

\n\n

Find out about booking tickets for access screenings\n

\n
\n
\n
\n\n\n

Introduction

\n\n
\n

When Miller and Caleb first started going on walking trips together, they were idealistic twentysomethings. Now, in their 30s, the strain upon their friendship is becoming more difficult to ignore. Ethan Fuirst balances humour with heartbreak skilfully in this timely reminder of the importance of queer platonic relationships – even the ones that may not last.

\n\n

Grace Barber-Plentie

\n
\n\n\n

How to book

\n\n
\n

BFI Flare tickets start from £10, with concessions available for many screenings and discounts for BFI Members. Booking information and ticket prices.

\n\n

If you’re aged 16 to 25, sign up for free to BFI 25 and Under for a chance to get £6 tickets to all screenings and events (subject to availability).

\n\n
\n

Missed out?

\n\n

More tickets may become available for these screenings before and during the festival. Find out about extra ticket releases and standby queues.

\n
\n
\n\n\n
\n

Our programmers recommend...

\n\n
\n
\n
\n
\"\"\n
\n\n
\n

Washed Up

\n\n

This charming, Cornwall-set drama finds a struggling artist falling in love with a mythical selkie.

\n
\nRead more about Washed Up\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Having the Last Laugh

\n\n

When life gives you lemons, laughter is a tonic. Here are trans tales of levity, liberation and looking for love, featuring fundraising sexcapades, gender-flipping frolics and bodily autonomy in abundance.

\n
\nRead more about Having the Last Laugh\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

The Little Sister

\n\n

In Hafsia Herzi’s drama, French-Algerian teen Fatima navigates her nascent sexuality, Muslim identity and her family’s expectations for her life.

\n
\nRead more about The Little Sister\n\n
\n
\n
\n
\n
\n\n
\n \n
\n \n\n\n\n
\n
\n
 
\n
\n\n
\n\n \n
\n \n
\n \n
\n \n
\n
\n

Hearts

\n\n

Films about love, romance and friendship.

\nFind out more\n
\n
\n\n
\n \n
\n
\n
\n

March 2026

\n
\n\n
\n
MON
\n\n
TUE
\n\n
WED
\n\n
THU
\n\n
FRI
\n\n
SAT
\n\n
SUN
\n\n
16
\n\n
17
\n18 19 20 21 22 23 24 25 26 27 28 29\n
\n
\n\n
\n \n
\n  \n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

BFI Membership

\n\n

Become a BFI Member from £39 to enjoy priority festival booking as well as other great benefits all year round.

\nJoin today\n
\n
\n\n
\n \n
\n \n
\n
\n

About the festival

\n\n

A quick guide to the festival.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

Screenings and events with access provision

\n\n

Making BFI Flare: London LGBTQIA+ Film Festival as welcoming, inclusive and accessible as possible for everyone.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

25 and Under

\n\n

£6 cinema tickets for 16 to 25 year olds.

\nSign up\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

2026 festival brochure

\n\n

Download our digital festival brochure (PDF) for the 2026 edition of the festival.

\nDownload brochure\n
\n
\n\n
\n \n
\n \n
\n
\n

Festival pass

\n\n

See 10 films for less.

\nFind out more\n
\n
\n\n
\n \n
\n
\n \n \n \n \n\n

\n Add a promo code

\n
    \n \n
  • \n \n
  • \n \n
  • \n
    \n \n \n \n \n
    \n
  • \n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n\n
\n
\n\n
\n
\n
\n
\n\n
\n
\n
\n

British Film Institute

\n\n

We are a cultural charity, a National Lottery funding distributor, and the UK’s lead organisation for film and the moving image.

\n\n\n\n\n
\n\n
\n

Supported by

\n\n
\n
\n
\"Funded\n
\n\n
\"Culture\n
\n\n
\"BFI\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n
\n
\n
©2025 British Film Institute. All rights reserved.
\n\n
Registered charity 287780
\n\n
Registered office 21 Stephen St, London W1T 1LN
\n
\n
\n
\n
\n\n
\n
\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n
\n ", + "searchResults": [ + [ + "43089CE8-3A44-498C-BCC7-E5EADFAD2595", + "P", + "BFI Flare Festival", + "LLGFF", + "cant_22Mar26", + "Can’t Go Over It", + "Can’t Go Over It", + "Sunday 22 March 2026 15:50", + "15:50", + "22", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "E", + "343", + "Susannah Perkins, Taylor Trensch,Closed Captions (CC),Hearts, Ethan Fuirst, USA", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=04ED0584-91FC-4EDE-97BB-F186AD6B74A0&BOparam::WScontent::loadArticle::context_id=43089CE8-3A44-498C-BCC7-E5EADFAD2595", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREHEARTS", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "", + "", + "", + "C4B57E43-F123-4CE5-8A17-6CB9F0409CF5", + "Flare - NFT1", + "BFI Southbank, Screen NFT1", + "BFI Southbank, Screen NFT1", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ], + [ + "DD1497B9-1771-4358-A363-A13E9D734BE2", + "P", + "BFI Flare Festival", + "LLGFF", + "cant_23Mar26", + "Can’t Go Over It", + "Can’t Go Over It", + "Monday 23 March 2026 21:00", + "21:00", + "23", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "G", + "25", + "DS descriptive subtitles,Hearts, Ethan Fuirst, USA,Susannah Perkins, Taylor Trensch", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=04ED0584-91FC-4EDE-97BB-F186AD6B74A0&BOparam::WScontent::loadArticle::context_id=DD1497B9-1771-4358-A363-A13E9D734BE2", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREHEARTS", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "United Kingdom", + "", + "", + "A76FC31F-05EE-4F50-9AC1-C73800A414DA", + "Flare NFT4", + "BFI Southbank, Screen NFT4", + "BFI Southbank, Screen NFT4", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ] + ] +} \ No newline at end of file diff --git a/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-castration-movie-chapter-iii-flare26-2026-02-23 b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-castration-movie-chapter-iii-flare26-2026-02-23 new file mode 100644 index 0000000..2d4c7db --- /dev/null +++ b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-castration-movie-chapter-iii-flare26-2026-02-23 @@ -0,0 +1,209 @@ +{ + "html": "\nBuy tickets for Castration Movie Chapter iii. Junior Ghosts—Premorphic Drift; a fragmentary passage | BFI Flare: London LGBTQIA+ Film Festival 2026\n\n\n\n\n\n\n\n\n\n\n\n \n\n \n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n\n\n\t\n\t\n\t\n\t\n\t\n\t\n
\n
\n \n \n \n
\n\n\n
\n \n \n \n
\n
\n
\n\n \n Order for\n Customer\n\n
\n
\n
\n \n
\n \n
\n \n Your basket is empty\n \n
\n \n
\n\n \n
\n\n \n \n\n\n \n
\n
\n \n\n\n
\n
\n\n \n
\n
\n Order for\n Customer\n \n
\n
\n\n \n
\n
    \n \n
\n
\n
\n\n
\n
\"BFI \"BFI \n
\n\n
\n\n \n \n
\n\n
\n \n
\n\t
\n\t\t\n\n\t
\n
\n\n\n
\n
\n\n \n
\n\n\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n
    \n
  • \n Search films and events\n \n
  • \n
  • \n Search dates\n from\n
    \n
    \n
  • \n
  • \n to\n
    \n
    \n
  • \n
  • \n \n
  • \n
\n \n
\n
\n\n \n\n
\n\n \n \n\n
\n \n
\n
\n
\n
    \n\t
  • Films and events\n
  • \n\t
  • Minds\n
  • \n\t
  • Castration Movie Chapter iii. Junior Ghosts—Premorphic Drift; a fragmentary passage
  • \n
\n
\n\n\n
\n

Castration Movie Chapter iii. Junior Ghosts—Premorphic Drift; a fragmentary passage

\n\n

In this bold new chapter of Louise Weard’s trans epic, a heterosexual couple are upended by an abrupt transition.

\n
\n\n\n

Screening dates and booking

\n\n
\n

Book your festival tickets a week early when you become a BFI Member.\n

\n
\n\n\n
\n
-Sunday 22 March 2026 20:25
BFI Southbank, Screen NFT3
Castration Movie Chapter iii. Junior Ghosts—Premorphic Drift; a fragmentary passage
-Monday 23 March 2026 17:30
BFI Southbank, Screen NFT2
Castration Movie Chapter iii. Junior Ghosts—Premorphic Drift; a fragmentary passage
\n
\n\n\n
\n
\n
\n\n\n

Credits

\n\n
\n
    \n\t
  • \n\t

    Director-screenwriter

    \n\n\t

    Louise Weard

    \n\t
  • \n\t
  • \n\t

    With

    \n\n\t

    Avalon Fast, Henri Gillespi, Louise Weard

    \n\t
  • \n\t
  • \n\t

    Canada 2026. 126min

    \n\t
  • \n\t
  • \n\t

    Courtesy of

    \n\n\t

    Matchbox Cine

    \n\t
  • \n\t
  • \n\t

    Language

    \n\n\t

    English

    \n\t
  • \n
\n\n
\n

Access screenings

\n\n
\n

Sunday 22 March 20:25\n
\nDescriptive Subtitles
\nAudio Description

\n\n

Monday 23 March 17:30\n
\nDescriptive Subtitles
\nAudio Description

\n\n

Find out about booking tickets for access screenings\n

\n
\n
\n
\n\n\n

Introduction

\n\n
\n

Weard revels in the tortuous rhetoric and reality of contemporary trans life, directing her Sony Handicam Hi8 towards the unseemly and repulsive behaviour of cis and trans people alike. In Chapter iii, a young cis woman does everything in her power to stop her partner from transitioning. It’s a bold satire of female paranoia, biological essentialism and Mumsnet

\n\n

Jaye Hudson

\n\n

Content advice

\n\n

Contains scenes of graphic violence or injury and sex.

\n\n

Contains themes of suicide.

\n\n

Contains homophobic and transphobic attitudes and language.

\n
\n\n\n

How to book

\n\n
\n

BFI Flare tickets start from £10, with concessions available for many screenings and discounts for BFI Members. Booking information and ticket prices.

\n\n

If you’re aged 16 to 25, sign up for free to BFI 25 and Under for a chance to get £6 tickets to all screenings and events (subject to availability).

\n\n
\n

Missed out?

\n\n

More tickets may become available for these screenings before and during the festival. Find out about extra ticket releases and standby queues.

\n
\n
\n\n\n
\n

Our programmers recommend...

\n\n
\n
\n
\n
\"\"\n
\n\n
\n

A Sweetness from Nowhere

\n\n

Ester Bergsmark ruminates on trans violence and healing, in this evocative and personal film.

\n
\nRead more about A Sweetness from Nowhere\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

The Serpent’s Skin

\n\n

Lesbian goths and vampiric trade abound in this punk, trans-led queer horror.

\n
\nRead more about The Serpent’s Skin\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

We Are Pat

\n\n

Examining an androgynous character on Saturday Night Live, this uproarious, thoughtful film invites trans comedians to recreate and reclaim Pat.

\n
\nRead more about We Are Pat\n\n
\n
\n
\n
\n
\n\n
\n \n
\n \n\n\n\n
\n
\n
 
\n
\n\n
\n\n \n
\n \n
\n \n
\n \n
\n
\n

Minds

\n\n

Reflections on art, politics and community.

\nFind out more\n
\n
\n\n
\n \n
\n
\n
\n

March 2026

\n
\n\n
\n
MON
\n\n
TUE
\n\n
WED
\n\n
THU
\n\n
FRI
\n\n
SAT
\n\n
SUN
\n\n
16
\n\n
17
\n18 19 20 21 22 23 24 25 26 27 28 29\n
\n
\n\n
\n \n
\n  \n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

BFI Membership

\n\n

Become a BFI Member from £39 to enjoy priority festival booking as well as other great benefits all year round.

\nJoin today\n
\n
\n\n
\n \n
\n \n
\n
\n

About the festival

\n\n

A quick guide to the festival.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

Screenings and events with access provision

\n\n

Making BFI Flare: London LGBTQIA+ Film Festival as welcoming, inclusive and accessible as possible for everyone.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

25 and Under

\n\n

£6 cinema tickets for 16 to 25 year olds.

\nSign up\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

2026 festival brochure

\n\n

Download our digital festival brochure (PDF) for the 2026 edition of the festival.

\nDownload brochure\n
\n
\n\n
\n \n
\n \n
\n
\n

Festival pass

\n\n

See 10 films for less.

\nFind out more\n
\n
\n\n
\n \n
\n
\n \n \n \n \n\n

\n Add a promo code

\n
    \n \n
  • \n \n
  • \n \n
  • \n
    \n \n \n \n \n
    \n
  • \n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n\n
\n
\n\n
\n
\n
\n
\n\n
\n
\n
\n

British Film Institute

\n\n

We are a cultural charity, a National Lottery funding distributor, and the UK’s lead organisation for film and the moving image.

\n\n\n\n\n
\n\n
\n

Supported by

\n\n
\n
\n
\"Funded\n
\n\n
\"Culture\n
\n\n
\"BFI\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n
\n
\n
©2025 British Film Institute. All rights reserved.
\n\n
Registered charity 287780
\n\n
Registered office 21 Stephen St, London W1T 1LN
\n
\n
\n
\n
\n\n
\n
\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n
\n ", + "searchResults": [ + [ + "EC6A5C07-9981-4A64-89FC-59BAEA7C72F6", + "P", + "BFI Flare Festival", + "LLGFF", + "castra_22Mar26", + "Castration Movie Chapter iii. Junior Ghosts—Premorphic Drift; a fragmentary passage", + "Castration Movie Chapter iii. Junior Ghosts—Premorphic Drift; a fragmentary passage", + "Sunday 22 March 2026 20:25", + "20:25", + "22", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "G", + "57", + "AD audio description,DS descriptive subtitles,Minds, Louise Weard, Canada,Avalon Fast, Henri Gillespi, Louise Weard", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=3C9876AC-513C-4920-8846-AC779053C56E&BOparam::WScontent::loadArticle::context_id=EC6A5C07-9981-4A64-89FC-59BAEA7C72F6", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREMINDS", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "United Kingdom", + "", + "", + "C14E3C2A-68EC-4B8B-B4DA-E00E79BD3822", + "Flare NFT3", + "BFI Southbank, Screen NFT3", + "BFI Southbank, Screen NFT3", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ], + [ + "3F32FA09-C22D-4AB5-A696-E3940E3E7354", + "P", + "BFI Flare Festival", + "LLGFF", + "castra_23Mar26", + "Castration Movie Chapter iii. Junior Ghosts—Premorphic Drift; a fragmentary passage", + "Castration Movie Chapter iii. Junior Ghosts—Premorphic Drift; a fragmentary passage", + "Monday 23 March 2026 17:30", + "17:30", + "23", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "G", + "68", + "DS descriptive subtitles,Minds, Louise Weard, Canada,Avalon Fast, Henri Gillespi, Louise Weard,AD audio description", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=3C9876AC-513C-4920-8846-AC779053C56E&BOparam::WScontent::loadArticle::context_id=3F32FA09-C22D-4AB5-A696-E3940E3E7354", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREMINDS", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "", + "", + "", + "527ADADE-4BF3-4A03-BADB-12000B5C7BD6", + "Flare NFT2", + "BFI Southbank, Screen NFT2", + "BFI Southbank, Screen NFT2", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ] + ] +} \ No newline at end of file diff --git a/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-cherri-flare26-2026-02-23 b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-cherri-flare26-2026-02-23 new file mode 100644 index 0000000..0dc4e65 --- /dev/null +++ b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-cherri-flare26-2026-02-23 @@ -0,0 +1,209 @@ +{ + "html": "\nBuy tickets for Cherri | BFI Flare: London LGBTQIA+ Film Festival 2026\n\n\n\n\n\n\n\n\n\n\n\n \n\n \n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n\n\n\t\n\t\n\t\n\t\n\t\n\t\n
\n
\n \n \n \n
\n\n\n
\n \n \n \n
\n
\n
\n\n \n Order for\n Customer\n\n
\n
\n
\n \n
\n \n
\n \n Your basket is empty\n \n
\n \n
\n\n \n
\n\n \n \n\n\n \n
\n
\n \n\n\n
\n
\n\n \n
\n
\n Order for\n Customer\n \n
\n
\n\n \n
\n
    \n \n
\n
\n
\n\n
\n
\"BFI \"BFI \n
\n\n
\n\n \n \n
\n\n
\n \n
\n\t
\n\t\t\n\n\t
\n
\n\n\n
\n
\n\n \n
\n\n\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n
    \n
  • \n Search films and events\n \n
  • \n
  • \n Search dates\n from\n
    \n
    \n
  • \n
  • \n to\n
    \n
    \n
  • \n
  • \n \n
  • \n
\n \n
\n
\n\n \n\n
\n\n \n \n\n
\n \n
\n
\n
\n\n
\n\n\n
\n

Cherri

\n\n

This poignant, melancholic character study promotes respect for diverse body types.

\n
\n\n\n

Screening dates and booking

\n\n
\n

Book your festival tickets a week early when you become a BFI Member.\n

\n
\n\n\n
\n
-Friday 27 March 2026 18:20
BFI Southbank, Screen NFT2
Cherri
-Saturday 28 March 2026 21:00
BFI Southbank, Screen NFT3
Cherri
\n
\n\n\n
\"\"\n
\n\n\n

Credits

\n\n
\n
    \n\t
  • \n\t

    Director-screenwriter

    \n\n\t

    Fabian Suarez

    \n\t
  • \n\t
  • \n\t

    With

    \n\n\t

    Juan Miguel Más, Noslen Sánchez, Roberto Díaz Gomar

    \n\t
  • \n\t
  • \n\t

    Cuba-Guatemala-Mexico 2025. 82min

    \n\t
  • \n\t
  • \n\t

    Courtesy of

    \n\n\t

    Habanero Film Sales

    \n\t
  • \n\t
  • \n\t

    Language

    \n\n\t

    Spanish

    \n\n\t

    With English subtitles

    \n\t
  • \n
\n
\n\n\n

Introduction

\n\n
\n

Cherri, an obese ballet choreographer, leads a troupe at a Havana weight-loss clinic while caring for his disabled husband and grappling with an obsessive crush on Tim, a manipulative young security guard. Through Fabian Suarez’s compassionate lens, we enter Cherri’s interior world, exploring how desire, rejection and self-doubt are shaped by the world around him.

\n\n

Darren Jones

\n\n

Content advice

\n\n

Contains scenes of nudity and sex.

\n\n

Contains homophobic attitudes and language.

\n
\n\n\n

How to book

\n\n
\n

BFI Flare tickets start from £10, with concessions available for many screenings and discounts for BFI Members. Booking information and ticket prices.

\n\n

If you’re aged 16 to 25, sign up for free to BFI 25 and Under for a chance to get £6 tickets to all screenings and events (subject to availability).

\n\n
\n

Missed out?

\n\n

More tickets may become available for these screenings before and during the festival. Find out about extra ticket releases and standby queues.

\n
\n
\n\n\n
\n

Our programmers recommend...

\n\n
\n
\n
\n
\"\"\n
\n\n
\n

Don’t Come Out

\n\n

In Victoria Linares Villegas’ gory and gloriously fun film, a queer medical student grapples with her sexuality as deadly forces pursue her.

\n
\nRead more about Don’t Come Out\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Strange River

\n\n

Jaume Claret Muxart’s poetic debut feature is a sensitive and lyrical coming-of-age drama.

\n
\nRead more about Strange River\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

The Broken R

\n\n

Ricardo Ruales Eguiguren’s film reflects upon his rare genetic condition and his sexual identity.

\n
\nRead more about The Broken R\n\n
\n
\n
\n
\n
\n\n
\n \n
\n \n\n\n\n
\n
\n
 
\n
\n\n
\n\n \n
\n \n
\n \n
\n \n
\n
\n

Bodies

\n\n

Stories of sex, identity and transformation.

\nFind out more\n
\n
\n\n
\n \n
\n
\n
\n

March 2026

\n
\n\n
\n
MON
\n\n
TUE
\n\n
WED
\n\n
THU
\n\n
FRI
\n\n
SAT
\n\n
SUN
\n\n
16
\n\n
17
\n18 19 20 21 22 23 24 25 26 27 28 29\n
\n
\n\n
\n \n
\n  \n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

BFI Membership

\n\n

Become a BFI Member from £39 to enjoy priority festival booking as well as other great benefits all year round.

\nJoin today\n
\n
\n\n
\n \n
\n \n
\n
\n

About the festival

\n\n

A quick guide to the festival.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

Screenings and events with access provision

\n\n

Making BFI Flare: London LGBTQIA+ Film Festival as welcoming, inclusive and accessible as possible for everyone.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

25 and Under

\n\n

£6 cinema tickets for 16 to 25 year olds.

\nSign up\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

2026 festival brochure

\n\n

Download our digital festival brochure (PDF) for the 2026 edition of the festival.

\nDownload brochure\n
\n
\n\n
\n \n
\n \n
\n
\n

Festival pass

\n\n

See 10 films for less.

\nFind out more\n
\n
\n\n
\n \n
\n
\n \n \n \n \n\n

\n Add a promo code

\n
    \n \n
  • \n \n
  • \n \n
  • \n
    \n \n \n \n \n
    \n
  • \n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n\n
\n
\n\n
\n
\n
\n
\n\n
\n
\n
\n

British Film Institute

\n\n

We are a cultural charity, a National Lottery funding distributor, and the UK’s lead organisation for film and the moving image.

\n\n\n\n\n
\n\n
\n

Supported by

\n\n
\n
\n
\"Funded\n
\n\n
\"Culture\n
\n\n
\"BFI\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n
\n
\n
©2025 British Film Institute. All rights reserved.
\n\n
Registered charity 287780
\n\n
Registered office 21 Stephen St, London W1T 1LN
\n
\n
\n
\n
\n\n
\n
\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n
\n ", + "searchResults": [ + [ + "BC00A223-F304-4A9E-BFE7-EF5B1D0D274E", + "P", + "BFI Flare Festival", + "LLGFF", + "cher_27Mar26", + "Cherri", + "Cherri", + "Friday 27 March 2026 18:20", + "18:20", + "27", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "G", + "70", + "Subtitles,Bodies, Fabian Suarez, Cuba-Guatemala-Mexico,Juan Miguel Más, Noslen Sánchez, Roberto Díaz Gomar", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=CEB64026-EE12-4015-B9A5-67B7057FE15E&BOparam::WScontent::loadArticle::context_id=BC00A223-F304-4A9E-BFE7-EF5B1D0D274E", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREBODIES", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "", + "", + "", + "527ADADE-4BF3-4A03-BADB-12000B5C7BD6", + "Flare NFT2", + "BFI Southbank, Screen NFT2", + "BFI Southbank, Screen NFT2", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ], + [ + "CBB75348-460E-4418-BCCC-9676DD3D6FB5", + "P", + "BFI Flare Festival", + "LLGFF", + "cher_28Mar26", + "Cherri", + "Cherri", + "Saturday 28 March 2026 21:00", + "21:00", + "28", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "G", + "57", + "Juan Miguel Más, Noslen Sánchez, Roberto Díaz Gomar,Subtitles,Bodies, Fabian Suarez, Cuba-Guatemala-Mexico", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=CEB64026-EE12-4015-B9A5-67B7057FE15E&BOparam::WScontent::loadArticle::context_id=CBB75348-460E-4418-BCCC-9676DD3D6FB5", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREBODIES", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "United Kingdom", + "", + "", + "C14E3C2A-68EC-4B8B-B4DA-E00E79BD3822", + "Flare NFT3", + "BFI Southbank, Screen NFT3", + "BFI Southbank, Screen NFT3", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ] + ] +} \ No newline at end of file diff --git a/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-death-and-life-madalena-flare26-2026-02-23 b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-death-and-life-madalena-flare26-2026-02-23 new file mode 100644 index 0000000..c9ef32d --- /dev/null +++ b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-death-and-life-madalena-flare26-2026-02-23 @@ -0,0 +1,209 @@ +{ + "html": "\nBuy tickets for Death and Life Madalena | BFI Flare: London LGBTQIA+ Film Festival 2026\n\n\n\n\n\n\n\n\n\n\n\n \n\n \n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n\n\n\t\n\t\n\t\n\t\n\t\n\t\n
\n
\n \n \n \n
\n\n\n
\n \n \n \n
\n
\n
\n\n \n Order for\n Customer\n\n
\n
\n
\n \n
\n \n
\n \n Your basket is empty\n \n
\n \n
\n\n \n
\n\n \n \n\n\n \n
\n
\n \n\n\n
\n
\n\n \n
\n
\n Order for\n Customer\n \n
\n
\n\n \n
\n
    \n \n
\n
\n
\n\n
\n
\"BFI \"BFI \n
\n\n
\n\n \n \n
\n\n
\n \n
\n\t
\n\t\t\n\n\t
\n
\n\n\n
\n
\n\n \n
\n\n\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n
    \n
  • \n Search films and events\n \n
  • \n
  • \n Search dates\n from\n
    \n
    \n
  • \n
  • \n to\n
    \n
    \n
  • \n
  • \n \n
  • \n
\n \n
\n
\n\n \n\n
\n\n \n \n\n
\n \n
\n
\n
\n\n
\n\n\n
\n

Death and Life Madalena

\n\n

Morte e Vida Madalena

\n\n

Guto Parente’s dryly witty film sees a heavily pregnant woman take the reigns of a kitsch B-movie juggernaut, with startling results.

\n
\n\n\n

Screening dates and booking

\n\n
\n

Book your festival tickets a week early when you become a BFI Member.\n

\n
\n\n\n
\n
-Wednesday 25 March 2026 20:45
BFI Southbank, Screen NFT3
Death and Life Madalena
-Thursday 26 March 2026 18:20
BFI Southbank, Screen NFT4
Death and Life Madalena
\n
\n\n\n
\n
\n
\n\n\n

Credits

\n\n
\n
    \n\t
  • \n\t

    Director-screenwriter

    \n\n\t

    Guto Parente

    \n\t
  • \n\t
  • \n\t

    With

    \n\n\t

    Noá Bonoba, Tavinho Teixeira, Nataly Rocha

    \n\t
  • \n\t
  • \n\t

    Brazil-Portugal 2025. 85min

    \n\t
  • \n\t
  • \n\t

    Courtesy of

    \n\n\t

    Lights On

    \n\t
  • \n\t
  • \n\t

    Language

    \n\n\t

    Portuguese

    \n\n\t

    With English subtitles

    \n\t
  • \n
\n
\n\n\n

Introduction

\n\n
\n

Madalena’s legendary producer father recently died and the director of his final sci-fi epic has fled from the shoot. Nothing if not stoic, Madalena is deadly serious about cinema and steps in to steer the production. With an impressive queer and trans cast, this is a wild ride through the mayhem of movie making.

\n\n

Zorian Clayton

\n\n

Content advice

\n\n

Contains flashing images.

\n
\n\n\n

How to book

\n\n
\n

BFI Flare tickets start from £10, with concessions available for many screenings and discounts for BFI Members. Booking information and ticket prices.

\n\n

If you’re aged 16 to 25, sign up for free to BFI 25 and Under for a chance to get £6 tickets to all screenings and events (subject to availability).

\n\n
\n

Missed out?

\n\n

More tickets may become available for these screenings before and during the festival. Find out about extra ticket releases and standby queues.

\n
\n
\n\n\n
\n

Our programmers recommend...

\n\n
\n
\n
\n
\"\"\n
\n\n
\n

Having the Last Laugh

\n\n

When life gives you lemons, laughter is a tonic. Here are trans tales of levity, liberation and looking for love, featuring fundraising sexcapades, gender-flipping frolics and bodily autonomy in abundance.

\n
\nRead more about Having the Last Laugh\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Lunar Sway

\n\n

In this offbeat comedy, a bi guy in a desert town receives a surprise visit from his con-artist birth mother, with chaos ensuing.

\n
\nRead more about Lunar Sway\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Satisfaction

\n\n

Alex Burunova movingly explores the complex relationship between two British composers.

\n
\nRead more about Satisfaction\n\n
\n
\n
\n
\n
\n\n
\n \n
\n \n\n\n\n
\n
\n
 
\n
\n\n
\n\n \n
\n \n
\n \n
\n \n
\n
\n

Minds

\n\n

Reflections on art, politics and community.

\nFind out more\n
\n
\n\n
\n \n
\n
\n
\n

March 2026

\n
\n\n
\n
MON
\n\n
TUE
\n\n
WED
\n\n
THU
\n\n
FRI
\n\n
SAT
\n\n
SUN
\n\n
16
\n\n
17
\n18 19 20 21 22 23 24 25 26 27 28 29\n
\n
\n\n
\n \n
\n  \n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

BFI Membership

\n\n

Become a BFI Member from £39 to enjoy priority festival booking as well as other great benefits all year round.

\nJoin today\n
\n
\n\n
\n \n
\n \n
\n
\n

About the festival

\n\n

A quick guide to the festival.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

Screenings and events with access provision

\n\n

Making BFI Flare: London LGBTQIA+ Film Festival as welcoming, inclusive and accessible as possible for everyone.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

25 and Under

\n\n

£6 cinema tickets for 16 to 25 year olds.

\nSign up\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

2026 festival brochure

\n\n

Download our digital festival brochure (PDF) for the 2026 edition of the festival.

\nDownload brochure\n
\n
\n\n
\n \n
\n \n
\n
\n

Festival pass

\n\n

See 10 films for less.

\nFind out more\n
\n
\n\n
\n \n
\n
\n \n \n \n \n\n

\n Add a promo code

\n
    \n \n
  • \n \n
  • \n \n
  • \n
    \n \n \n \n \n
    \n
  • \n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n\n
\n
\n\n
\n
\n
\n
\n\n
\n
\n
\n

British Film Institute

\n\n

We are a cultural charity, a National Lottery funding distributor, and the UK’s lead organisation for film and the moving image.

\n\n\n\n\n
\n\n
\n

Supported by

\n\n
\n
\n
\"Funded\n
\n\n
\"Culture\n
\n\n
\"BFI\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n
\n
\n
©2025 British Film Institute. All rights reserved.
\n\n
Registered charity 287780
\n\n
Registered office 21 Stephen St, London W1T 1LN
\n
\n
\n
\n
\n\n
\n
\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n
\n ", + "searchResults": [ + [ + "F2585380-D168-4FEE-9D79-497606DA93CC", + "P", + "BFI Flare Festival", + "LLGFF", + "death_25Mar26", + "Death and Life Madalena", + "Death and Life Madalena", + "Wednesday 25 March 2026 20:45", + "20:45", + "25", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "G", + "57", + "Noá Bonoba, Tavinho Teixeira, Nataly Rocha,Minds, Guto Parente, Brazil-Portugal,Subtitles", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=DFC26142-5205-4E22-8B7D-ED8D4711B077&BOparam::WScontent::loadArticle::context_id=F2585380-D168-4FEE-9D79-497606DA93CC", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREMINDS", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "United Kingdom", + "", + "", + "C14E3C2A-68EC-4B8B-B4DA-E00E79BD3822", + "Flare NFT3", + "BFI Southbank, Screen NFT3", + "BFI Southbank, Screen NFT3", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ], + [ + "DBE112FE-E1A7-4351-841C-A876D7D3501A", + "P", + "BFI Flare Festival", + "LLGFF", + "death_26Mar26", + "Death and Life Madalena", + "Death and Life Madalena", + "Thursday 26 March 2026 18:20", + "18:20", + "26", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "E", + "27", + "Subtitles,Noá Bonoba, Tavinho Teixeira, Nataly Rocha,Minds, Guto Parente, Brazil-Portugal", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=DFC26142-5205-4E22-8B7D-ED8D4711B077&BOparam::WScontent::loadArticle::context_id=DBE112FE-E1A7-4351-841C-A876D7D3501A", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREMINDS", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "United Kingdom", + "", + "", + "A76FC31F-05EE-4F50-9AC1-C73800A414DA", + "Flare NFT4", + "BFI Southbank, Screen NFT4", + "BFI Southbank, Screen NFT4", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ] + ] +} \ No newline at end of file diff --git a/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-deepest-space-in-us-flare26-2026-02-23 b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-deepest-space-in-us-flare26-2026-02-23 new file mode 100644 index 0000000..cad4442 --- /dev/null +++ b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-deepest-space-in-us-flare26-2026-02-23 @@ -0,0 +1,209 @@ +{ + "html": "\nBuy tickets for The Deepest Space in Us | BFI Flare: London LGBTQIA+ Film Festival 2026\n\n\n\n\n\n\n\n\n\n\n\n \n\n \n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n\n\n\t\n\t\n\t\n\t\n\t\n\t\n
\n
\n \n \n \n
\n\n\n
\n \n \n \n
\n
\n
\n\n \n Order for\n Customer\n\n
\n
\n
\n \n
\n \n
\n \n Your basket is empty\n \n
\n \n
\n\n \n
\n\n \n \n\n\n \n
\n
\n \n\n\n
\n
\n\n \n
\n
\n Order for\n Customer\n \n
\n
\n\n \n
\n
    \n \n
\n
\n
\n\n
\n
\"BFI \"BFI \n
\n\n
\n\n \n \n
\n\n
\n \n
\n\t
\n\t\t\n\n\t
\n
\n\n\n
\n
\n\n \n
\n\n\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n
    \n
  • \n Search films and events\n \n
  • \n
  • \n Search dates\n from\n
    \n
    \n
  • \n
  • \n to\n
    \n
    \n
  • \n
  • \n \n
  • \n
\n \n
\n
\n\n \n\n
\n\n \n \n\n
\n \n
\n
\n
\n\n
\n\n\n
\n

The Deepest Space in Us

\n\n

In this touching, introspective drama, an aromantic asexual woman seeks an honest connection with other people.

\n
\n\n\n

Screening dates and booking

\n\n
\n

Book your festival tickets a week early when you become a BFI Member.\n

\n
\n\n\n
\n
-Thursday 26 March 2026 18:10
BFI Southbank, Screen NFT2
The Deepest Space in Us
-Friday 27 March 2026 20:45
BFI Southbank, Screen NFT4
The Deepest Space in Us
\n
\n\n\n
\n
\n
\n\n\n

Credits

\n\n
\n
    \n\t
  • \n\t

    Director-screenwriter

    \n\n\t

    Yasutomo Chikuma

    \n\t
  • \n\t
  • \n\t

    With

    \n\n\t

    Momoko Fukuchi, Kanichiro, Ryutaro Nakagawa

    \n\t
  • \n\t
  • \n\t

    Japan 2025. 98min

    \n\t
  • \n\t
  • \n\t

    Courtesy of

    \n\n\t

    Parallax Films

    \n\t
  • \n\t
  • \n\t

    Language

    \n\n\t

    Japanese

    \n\n\t

    With English subtitles

    \n\t
  • \n
\n
\n\n\n

Introduction

\n\n
\n

Kaori never expected to find understanding in Takeru, the lawyer handling her estranged mother’s estate. But their connection is unlike anything she’s ever experienced. They travel to a seaside town together, planning to register their marriage, but things are cut short by a tragic incident, prompting Kaori to uncover the layers of her partner’s life.

\n\n

Wema Mumma

\n\n

Content advice

\n\n

Contains scenes of sex and suicide.

\n
\n\n\n

How to book

\n\n
\n

BFI Flare tickets start from £10, with concessions available for many screenings and discounts for BFI Members. Booking information and ticket prices.

\n\n

If you’re aged 16 to 25, sign up for free to BFI 25 and Under for a chance to get £6 tickets to all screenings and events (subject to availability).

\n\n
\n

Missed out?

\n\n

More tickets may become available for these screenings before and during the festival. Find out about extra ticket releases and standby queues.

\n
\n
\n\n\n
\n

Our programmers recommend...

\n\n
\n
\n
\n
\"\"\n
\n\n
\n

Beyond the Fire: The Life of Japan’s First Pride Parade Pioneer

\n\n

This marvellous film dives deep into Japan’s queer history, highlighting the incredible life of the man who pioneered the country’s first Pride march.

\n
\nRead more about Beyond the Fire: The Life of Japan’s First Pride Parade Pioneer\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Impure Nuns

\n\n

This transgressive 1950s treasure, previously unseen outside of Japan, chronicles an affair between two nuns at a boarding school.

\n
\nRead more about Impure Nuns\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Whisperings of the Moon

\n\n

Lai Yuqing’s debut feature is a vivid portrait of an actor returning to Cambodia following a bereavement and reconnecting with her ex-lover.

\n
\nRead more about Whisperings of the Moon\n\n
\n
\n
\n
\n
\n\n
\n \n
\n \n\n\n\n
\n
\n
 
\n
\n\n
\n\n \n
\n \n
\n \n
\n \n
\n
\n

Hearts

\n\n

Films about love, romance and friendship.

\nFind out more\n
\n
\n\n
\n \n
\n
\n
\n

March 2026

\n
\n\n
\n
MON
\n\n
TUE
\n\n
WED
\n\n
THU
\n\n
FRI
\n\n
SAT
\n\n
SUN
\n\n
16
\n\n
17
\n18 19 20 21 22 23 24 25 26 27 28 29\n
\n
\n\n
\n \n
\n  \n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

BFI Membership

\n\n

Become a BFI Member from £39 to enjoy priority festival booking as well as other great benefits all year round.

\nJoin today\n
\n
\n\n
\n \n
\n \n
\n
\n

About the festival

\n\n

A quick guide to the festival.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

Screenings and events with access provision

\n\n

Making BFI Flare: London LGBTQIA+ Film Festival as welcoming, inclusive and accessible as possible for everyone.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

25 and Under

\n\n

£6 cinema tickets for 16 to 25 year olds.

\nSign up\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

2026 festival brochure

\n\n

Download our digital festival brochure (PDF) for the 2026 edition of the festival.

\nDownload brochure\n
\n
\n\n
\n \n
\n \n
\n
\n

Festival pass

\n\n

See 10 films for less.

\nFind out more\n
\n
\n\n
\n \n
\n
\n \n \n \n \n\n

\n Add a promo code

\n
    \n \n
  • \n \n
  • \n \n
  • \n
    \n \n \n \n \n
    \n
  • \n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n\n
\n
\n\n
\n
\n
\n
\n\n
\n
\n
\n

British Film Institute

\n\n

We are a cultural charity, a National Lottery funding distributor, and the UK’s lead organisation for film and the moving image.

\n\n\n\n\n
\n\n
\n

Supported by

\n\n
\n
\n
\"Funded\n
\n\n
\"Culture\n
\n\n
\"BFI\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n
\n
\n
©2025 British Film Institute. All rights reserved.
\n\n
Registered charity 287780
\n\n
Registered office 21 Stephen St, London W1T 1LN
\n
\n
\n
\n
\n\n
\n
\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n
\n ", + "searchResults": [ + [ + "199CB27D-0434-4DC3-806E-49DF9F915CF6", + "P", + "BFI Flare Festival", + "LLGFF", + "deep_26Mar26", + "The Deepest Space in Us", + "The Deepest Space in Us", + "Thursday 26 March 2026 18:10", + "18:10", + "26", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "G", + "63", + "Hearts, Yasutomo Chikuma, Japan,Momoko Fukuchi, Kanichiro, Ryutaro Nakagawa,Subtitles", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=58AFC203-04B4-4F0C-B50F-3A03B34266E2&BOparam::WScontent::loadArticle::context_id=199CB27D-0434-4DC3-806E-49DF9F915CF6", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREHEARTS", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "", + "", + "", + "527ADADE-4BF3-4A03-BADB-12000B5C7BD6", + "Flare NFT2", + "BFI Southbank, Screen NFT2", + "BFI Southbank, Screen NFT2", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ], + [ + "22892C41-4B67-4C45-B46E-B3E1FB99769F", + "P", + "BFI Flare Festival", + "LLGFF", + "deep_27Mar26", + "The Deepest Space in Us", + "The Deepest Space in Us", + "Friday 27 March 2026 20:45", + "20:45", + "27", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "E", + "28", + "Momoko Fukuchi, Kanichiro, Ryutaro Nakagawa,Hearts, Yasutomo Chikuma, Japan,Subtitles", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=58AFC203-04B4-4F0C-B50F-3A03B34266E2&BOparam::WScontent::loadArticle::context_id=22892C41-4B67-4C45-B46E-B3E1FB99769F", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREHEARTS", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "United Kingdom", + "", + "", + "A76FC31F-05EE-4F50-9AC1-C73800A414DA", + "Flare NFT4", + "BFI Southbank, Screen NFT4", + "BFI Southbank, Screen NFT4", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ] + ] +} \ No newline at end of file diff --git a/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-dont-come-out-flare26-2026-02-23 b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-dont-come-out-flare26-2026-02-23 new file mode 100644 index 0000000..c573a6f --- /dev/null +++ b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-dont-come-out-flare26-2026-02-23 @@ -0,0 +1,209 @@ +{ + "html": "\nBuy tickets for Don’t Come Out | BFI Flare: London LGBTQIA+ Film Festival 2026\n\n\n\n\n\n\n\n\n\n\n\n \n\n \n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n\n\n\t\n\t\n\t\n\t\n\t\n\t\n
\n
\n \n \n \n
\n\n\n
\n \n \n \n
\n
\n
\n\n \n Order for\n Customer\n\n
\n
\n
\n \n
\n \n
\n \n Your basket is empty\n \n
\n \n
\n\n \n
\n\n \n \n\n\n \n
\n
\n \n\n\n
\n
\n\n \n
\n
\n Order for\n Customer\n \n
\n
\n\n \n
\n
    \n \n
\n
\n
\n\n
\n
\"BFI \"BFI \n
\n\n
\n\n \n \n
\n\n
\n \n
\n\t
\n\t\t\n\n\t
\n
\n\n\n
\n
\n\n \n
\n\n\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n
    \n
  • \n Search films and events\n \n
  • \n
  • \n Search dates\n from\n
    \n
    \n
  • \n
  • \n to\n
    \n
    \n
  • \n
  • \n \n
  • \n
\n \n
\n
\n\n \n\n
\n\n \n \n\n
\n \n
\n
\n
\n\n
\n\n\n
\n

Don’t Come Out

\n\n

No Salgas

\n\n

In Victoria Linares Villegas’ gory and gloriously fun film, a queer medical student grapples with her sexuality as deadly forces pursue her.

\n
\n\n\n

Screening dates and booking

\n\n
\n

Book your festival tickets a week early when you become a BFI Member.\n

\n
\n\n\n
\n
-Thursday 19 March 2026 17:50
BFI Southbank, Screen NFT4
Don’t Come Out
-Friday 20 March 2026 20:45
BFI Southbank, Screen NFT1
Don’t Come Out
\n
\n\n\n
\"\"\n
\n\n\n

Credits

\n\n
\n
    \n\t
  • \n\t

    Director

    \n\n\t

    Victoria Linares Villegas

    \n\t
  • \n\t
  • \n\t

    Screenwriters

    \n\n\t

    Victoria Linares Villegas, Carlos Marranzini

    \n\t
  • \n\t
  • \n\t

    With

    \n\n\t

    Cecile van Welie, Gabriela Cortés, Camila Issa

    \n\t
  • \n\t
  • \n\t

    Dominican Republic 2026. 105min

    \n\t
  • \n\t
  • \n\t

    Courtesy of

    \n\n\t

    El Perro de Argento

    \n\t
  • \n\t
  • \n\t

    Language

    \n\n\t

    Spanish

    \n\n\t

    With English subtitles

    \n\t
  • \n
\n
\n\n\n

Introduction

\n\n
\n

As violent killings unfold in her Dominican town, Liz begins to suspect the deaths may have their roots in homophobia. After her girlfriend is brutally slaughtered, Liz decides to hide her sexuality to keep herself and others safe. But on a weekend trip, forbidden desires are reawakened. Quietly political, this is an enormously entertaining ride.

\n\n

Diana Cipriano

\n\n

Content advice

\n\n

Contains scenes of graphic violence or injury.

\n
\n\n\n

How to book

\n\n
\n

BFI Flare tickets start from £10, with concessions available for many screenings and discounts for BFI Members. Booking information and ticket prices.

\n\n

If you’re aged 16 to 25, sign up for free to BFI 25 and Under for a chance to get £6 tickets to all screenings and events (subject to availability).

\n\n
\n

Missed out?

\n\n

More tickets may become available for these screenings before and during the festival. Find out about extra ticket releases and standby queues.

\n
\n
\n\n\n
\n

Our programmers recommend...

\n\n
\n
\n
\n
\"\"\n
\n\n
\n

The Serpent’s Skin

\n\n

Lesbian goths and vampiric trade abound in this punk, trans-led queer horror.

\n
\nRead more about The Serpent’s Skin\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Cherri

\n\n

This poignant, melancholic character study promotes respect for diverse body types.

\n
\nRead more about Cherri\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Big Girls Don’t Cry

\n\n

Paloma Schneideman’s accomplished debut is an engrossing portrait of a teenage girl navigating her burgeoning desires in early 2000s New Zealand.

\n
\nRead more about Big Girls Don’t Cry\n\n
\n
\n
\n
\n
\n\n
\n \n
\n \n\n\n\n
\n
\n
 
\n
\n\n
\n\n \n
\n \n
\n \n
\n \n
\n
\n

Bodies

\n\n

Stories of sex, identity and transformation.

\nFind out more\n
\n
\n\n
\n \n
\n
\n
\n

March 2026

\n
\n\n
\n
MON
\n\n
TUE
\n\n
WED
\n\n
THU
\n\n
FRI
\n\n
SAT
\n\n
SUN
\n\n
16
\n\n
17
\n18 19 20 21 22 23 24 25 26 27 28 29\n
\n
\n\n
\n \n
\n  \n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

BFI Membership

\n\n

Become a BFI Member from £39 to enjoy priority festival booking as well as other great benefits all year round.

\nJoin today\n
\n
\n\n
\n \n
\n \n
\n
\n

About the festival

\n\n

A quick guide to the festival.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

Screenings and events with access provision

\n\n

Making BFI Flare: London LGBTQIA+ Film Festival as welcoming, inclusive and accessible as possible for everyone.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

25 and Under

\n\n

£6 cinema tickets for 16 to 25 year olds.

\nSign up\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

2026 festival brochure

\n\n

Download our digital festival brochure (PDF) for the 2026 edition of the festival.

\nDownload brochure\n
\n
\n\n
\n \n
\n \n
\n
\n

Festival pass

\n\n

See 10 films for less.

\nFind out more\n
\n
\n\n
\n \n
\n
\n \n \n \n \n\n

\n Add a promo code

\n
    \n \n
  • \n \n
  • \n \n
  • \n
    \n \n \n \n \n
    \n
  • \n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n\n
\n
\n\n
\n
\n
\n
\n\n
\n
\n
\n

British Film Institute

\n\n

We are a cultural charity, a National Lottery funding distributor, and the UK’s lead organisation for film and the moving image.

\n\n\n\n\n
\n\n
\n

Supported by

\n\n
\n
\n
\"Funded\n
\n\n
\"Culture\n
\n\n
\"BFI\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n
\n
\n
©2025 British Film Institute. All rights reserved.
\n\n
Registered charity 287780
\n\n
Registered office 21 Stephen St, London W1T 1LN
\n
\n
\n
\n
\n\n
\n
\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n
\n ", + "searchResults": [ + [ + "6E6222D3-83C2-41A9-BA55-3DF8D3438020", + "P", + "BFI Flare Festival", + "LLGFF", + "dont_19Mar26", + "Don’t Come Out", + "Don’t Come Out", + "Thursday 19 March 2026 17:50", + "17:50", + "19", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "E", + "27", + "Cecile van Welie, Gabriela Cortés, Camila Issa,Bodies, Victoria Linares Villegas, Dominican Republic,Subtitles", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=674A5602-CEC1-4880-AD39-FF97C5AEBFFB&BOparam::WScontent::loadArticle::context_id=6E6222D3-83C2-41A9-BA55-3DF8D3438020", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREBODIES", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "United Kingdom", + "", + "", + "A76FC31F-05EE-4F50-9AC1-C73800A414DA", + "Flare NFT4", + "BFI Southbank, Screen NFT4", + "BFI Southbank, Screen NFT4", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ], + [ + "BCC4891B-6B7E-414E-948A-45CABA1A1194", + "P", + "BFI Flare Festival", + "LLGFF", + "dont_20Mar26", + "Don’t Come Out", + "Don’t Come Out", + "Friday 20 March 2026 20:45", + "20:45", + "20", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "E", + "349", + "Cecile van Welie, Gabriela Cortés, Camila Issa,Subtitles,Bodies, Victoria Linares Villegas, Dominican Republic", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=674A5602-CEC1-4880-AD39-FF97C5AEBFFB&BOparam::WScontent::loadArticle::context_id=BCC4891B-6B7E-414E-948A-45CABA1A1194", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREBODIES", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "", + "", + "", + "C4B57E43-F123-4CE5-8A17-6CB9F0409CF5", + "Flare - NFT1", + "BFI Southbank, Screen NFT1", + "BFI Southbank, Screen NFT1", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ] + ] +} \ No newline at end of file diff --git a/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-dreamers-flare26-2026-02-23 b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-dreamers-flare26-2026-02-23 new file mode 100644 index 0000000..27c24c4 --- /dev/null +++ b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-dreamers-flare26-2026-02-23 @@ -0,0 +1,107 @@ +{ + "html": "\nBuy tickets for Dreamers | BFI Flare: London LGBTQIA+ Film Festival 2026\n\n\n\n\n\n\n\n\n\n\n\n \n\n \n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n\n\n\t\n\t\n\t\n\t\n\t\n\t\n
\n
\n \n \n \n
\n\n\n
\n \n \n \n
\n
\n
\n\n \n Order for\n Customer\n\n
\n
\n
\n \n
\n \n
\n \n Your basket is empty\n \n
\n \n
\n\n \n
\n\n \n \n\n\n \n
\n
\n \n\n\n
\n
\n\n \n
\n
\n Order for\n Customer\n \n
\n
\n\n \n
\n
    \n \n
\n
\n
\n\n
\n
\"BFI \"BFI \n
\n\n
\n\n \n \n
\n\n
\n \n
\n\t
\n\t\t\n\n\t
\n
\n\n\n
\n
\n\n \n
\n\n\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n
    \n
  • \n Search films and events\n \n
  • \n
  • \n Search dates\n from\n
    \n
    \n
  • \n
  • \n to\n
    \n
    \n
  • \n
  • \n \n
  • \n
\n \n
\n
\n\n \n\n
\n\n \n \n\n
\n \n
\n
\n
\n\n
\n\n\n
\n

Dreamers

\n\n

In Joy Gharoro-Akpojotor’s impressive feature debut, Nigerian immigrants Isio and Farah dare to imagine a vibrant future outside of their confinement at a British immigration removal centre.

\n
\n\n\n

Screening dates and booking

\n\n
\n

Book your festival tickets a week early when you become a BFI Member.\n

\n
\n\n\n
\n
-Sunday 29 March 2026 20:15
BFI Southbank, Screen NFT3
Dreamers
\n
\n\n\n
\"\"\n
\n\n\n

Credits

\n\n
\n
    \n\t
  • \n\t

    Director-screenwriter

    \n\n\t

    Joy Gharoro-Akpojotor

    \n\t
  • \n\t
  • \n\t

    With

    \n\n\t

    Ronkẹ Adékọluẹ́jọ́, Ann Akinjirin

    \n\t
  • \n\t
  • \n\t

    UK 2025. 78min

    \n\t
  • \n\t
  • \n\t

    Courtesy of

    \n\n\t

    We Are Parable

    \n\t
  • \n\t
  • \n\t

    Language

    \n\n\t

    English

    \n\t
  • \n\t
  • Certificate\n\t

    BBFC 15

    \n\t
  • \n
\n\n
\n

Access screenings

\n\n
\n

Sunday 29 March 20:15\n
\nDescriptive Subtitles

\n\n

Find out about booking tickets for access screenings\n

\n
\n
\n
\n\n\n

Introduction

\n\n
\n

When undocumented immigrant Isio is discovered by the British authorities, she is remanded to Hatchworth Removal Centre, where deportation looms. The gruelling environment would be unbearable were it not for Farah, her roommate. What begins as a begrudging friendship soon blossoms into something much more profound.

\n\n

Wema Mumma

\n\n

Content advice

\n\n

Contains homophobic attitudes and language.

\n\n

Contains flashing images.

\n
\n\n\n

How to book

\n\n
\n

BFI Flare tickets start from £10, with concessions available for many screenings and discounts for BFI Members. Booking information and ticket prices.

\n\n

If you’re aged 16 to 25, sign up for free to BFI 25 and Under for a chance to get £6 tickets to all screenings and events (subject to availability).

\n\n
\n

Missed out?

\n\n

More tickets may become available for these screenings before and during the festival. Find out about extra ticket releases and standby queues.

\n
\n
\n\n\n
\n

Our programmers recommend...

\n\n
\n
\n
\n
\"\"\n
\n\n
\n

Little Trouble Girls

\n\n

A Slovenian catholic girl navigates the exhilaration and confusion of first desire in this sensorial, sensitive and sublime coming-of-age feature debut.

\n
\nRead more about Little Trouble Girls\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Baby

\n\n

Marcelo Caetano follows Body Electric with a portrait of a complex and loving relationship between two men that close out alongside a dynamic exploration of São Paulo’s vibrant queer scene.

\n
\nRead more about Baby\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

ìfé: (The Sequel)

\n\n

The highly anticipated sequel to Nigeria’s first lesbian film reunites former lovers ífé and Adaora years after their separation.

\n
\nRead more about ìfé: (The Sequel)\n\n
\n
\n
\n
\n
\n\n
\n \n
\n \n\n\n\n
\n
\n
 
\n
\n\n
\n\n \n
\n \n
\n \n
\n
\n
\n

March 2026

\n
\n\n
\n
MON
\n\n
TUE
\n\n
WED
\n\n
THU
\n\n
FRI
\n\n
SAT
\n\n
SUN
\n\n
16
\n\n
17
\n18 19 20 21 22 23 24 25 26 27 28 29\n
\n
\n\n
\n \n
\n  \n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

BFI Membership

\n\n

Become a BFI Member from £39 to enjoy priority festival booking as well as other great benefits all year round.

\nJoin today\n
\n
\n\n
\n \n
\n \n
\n
\n

About the festival

\n\n

A quick guide to the festival.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

Screenings and events with access provision

\n\n

Making BFI Flare: London LGBTQIA+ Film Festival as welcoming, inclusive and accessible as possible for everyone.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

25 and Under

\n\n

£6 cinema tickets for 16 to 25 year olds.

\nSign up\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

2026 festival brochure

\n\n

Download our digital festival brochure (PDF) for the 2026 edition of the festival.

\nDownload brochure\n
\n
\n\n
\n \n
\n \n
\n
\n

Festival pass

\n\n

See 10 films for less.

\nFind out more\n
\n
\n\n
\n \n
\n
\n \n \n \n \n\n

\n Add a promo code

\n
    \n \n
  • \n \n
  • \n \n
  • \n
    \n \n \n \n \n
    \n
  • \n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n\n
\n
\n\n
\n
\n
\n
\n\n
\n
\n
\n

British Film Institute

\n\n

We are a cultural charity, a National Lottery funding distributor, and the UK’s lead organisation for film and the moving image.

\n\n\n\n\n
\n\n
\n

Supported by

\n\n
\n
\n
\"Funded\n
\n\n
\"Culture\n
\n\n
\"BFI\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n
\n
\n
©2025 British Film Institute. All rights reserved.
\n\n
Registered charity 287780
\n\n
Registered office 21 Stephen St, London W1T 1LN
\n
\n
\n
\n
\n\n
\n
\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n
\n ", + "searchResults": [ + [ + "6AB238E2-39D9-4BAF-9AD5-3D740B96FB5E", + "P", + "BFI Flare Festival", + "LLGFF", + "dream_29Mar26", + "Dreamers", + "Dreamers", + "Sunday 29 March 2026 20:15", + "20:15", + "29", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "E", + "78", + "DS descriptive subtitles,Best of Year, Joy Gharoro-Akpojotor, UK,Ronkẹ Adékọluẹ́jọ́, Ann Akinjirin", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=DA69F89D-CA5E-48EB-8FF2-04E7C4713722&BOparam::WScontent::loadArticle::context_id=6AB238E2-39D9-4BAF-9AD5-3D740B96FB5E", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREBESTOFYEAR", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "United Kingdom", + "", + "", + "C14E3C2A-68EC-4B8B-B4DA-E00E79BD3822", + "Flare NFT3", + "BFI Southbank, Screen NFT3", + "BFI Southbank, Screen NFT3", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ] + ] +} \ No newline at end of file diff --git a/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-drunken-noodles-flare26-2026-02-23 b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-drunken-noodles-flare26-2026-02-23 new file mode 100644 index 0000000..7893161 --- /dev/null +++ b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-drunken-noodles-flare26-2026-02-23 @@ -0,0 +1,209 @@ +{ + "html": "\nBuy tickets for Drunken Noodles | BFI Flare: London LGBTQIA+ Film Festival 2026\n\n\n\n\n\n\n\n\n\n\n\n \n\n \n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n\n\n\t\n\t\n\t\n\t\n\t\n\t\n
\n
\n \n \n \n
\n\n\n
\n \n \n \n
\n
\n
\n\n \n Order for\n Customer\n\n
\n
\n
\n \n
\n \n
\n \n Your basket is empty\n \n
\n \n
\n\n \n
\n\n \n \n\n\n \n
\n
\n \n\n\n
\n
\n\n \n
\n
\n Order for\n Customer\n \n
\n
\n\n \n
\n
    \n \n
\n
\n
\n\n
\n
\"BFI \"BFI \n
\n\n
\n\n \n \n
\n\n
\n \n
\n\t
\n\t\t\n\n\t
\n
\n\n\n
\n
\n\n \n
\n\n\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n
    \n
  • \n Search films and events\n \n
  • \n
  • \n Search dates\n from\n
    \n
    \n
  • \n
  • \n to\n
    \n
    \n
  • \n
  • \n \n
  • \n
\n \n
\n
\n\n \n\n
\n\n \n \n\n
\n \n
\n
\n
\n\n
\n\n\n
\n

Drunken Noodles

\n\n

Lucio Castro’s third feature blends magical realist elements in this intimate character study.

\n
\n\n\n

Screening dates and booking

\n\n
\n

Book your festival tickets a week early when you become a BFI Member.\n

\n
\n\n\n
\n
-Sunday 22 March 2026 21:00
BFI Southbank, Screen NFT2
Drunken Noodles
-Tuesday 24 March 2026 20:40
BFI Southbank, Screen NFT4
Drunken Noodles
\n
\n\n\n
\n
\n
\n\n\n

Credits

\n\n
\n
    \n\t
  • \n\t

    Director-screenwriter

    \n\n\t

    Lucio Castro

    \n\t
  • \n\t
  • \n\t

    With

    \n\n\t

    Laith Khalifeh, Ezriel Kornel, Matthew Risch

    \n\t
  • \n\t
  • \n\t

    USA-Argentina 2025. 82min

    \n\t
  • \n\t
  • \n\t

    Courtesy of

    \n\n\t

    m-appeal

    \n\t
  • \n\t
  • \n\t

    Languages

    \n\n\t

    English, Spanish

    \n\n\t

    With English subtitles

    \n\t
  • \n
\n
\n\n\n

Introduction

\n\n
\n

A young art student drifts through a New York summer, cat-sitting and interning at an art gallery. But a series of intimate and erotic encounters stir reflections on past loves, slowly revealing why he is awash in ennui, loneliness and sexual longing. Castro’s film is a delicate portrait of desire, memory and the fleeting intensity of human connection.

\n\n

Darren Jones

\n\n

Content advice

\n\n

Contains scenes of nudity and sex.

\n
\n\n\n

How to book

\n\n
\n

BFI Flare tickets start from £10, with concessions available for many screenings and discounts for BFI Members. Booking information and ticket prices.

\n\n

If you’re aged 16 to 25, sign up for free to BFI 25 and Under for a chance to get £6 tickets to all screenings and events (subject to availability).

\n\n
\n

Missed out?

\n\n

More tickets may become available for these screenings before and during the festival. Find out about extra ticket releases and standby queues.

\n
\n
\n\n\n
\n

Our programmers recommend...

\n\n
\n
\n
\n
\"\"\n
\n\n
\n

Another Man

\n\n

Marc’s dissatisfaction with his settled existence sees him unexpectedly attracted to a new neighbour, in this delicate exploration of thirtysomething life.

\n
\nRead more about Another Man\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Strange River

\n\n

Jaume Claret Muxart’s poetic debut feature is a sensitive and lyrical coming-of-age drama.

\n
\nRead more about Strange River\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Cherri

\n\n

This poignant, melancholic character study promotes respect for diverse body types.

\n
\nRead more about Cherri\n\n
\n
\n
\n
\n
\n\n
\n \n
\n \n\n\n\n
\n
\n
 
\n
\n\n
\n\n \n
\n \n
\n \n
\n \n
\n
\n

Hearts

\n\n

Films about love, romance and friendship.

\nFind out more\n
\n
\n\n
\n \n
\n
\n
\n

March 2026

\n
\n\n
\n
MON
\n\n
TUE
\n\n
WED
\n\n
THU
\n\n
FRI
\n\n
SAT
\n\n
SUN
\n\n
16
\n\n
17
\n18 19 20 21 22 23 24 25 26 27 28 29\n
\n
\n\n
\n \n
\n  \n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

BFI Membership

\n\n

Become a BFI Member from £39 to enjoy priority festival booking as well as other great benefits all year round.

\nJoin today\n
\n
\n\n
\n \n
\n \n
\n
\n

About the festival

\n\n

A quick guide to the festival.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

Screenings and events with access provision

\n\n

Making BFI Flare: London LGBTQIA+ Film Festival as welcoming, inclusive and accessible as possible for everyone.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

25 and Under

\n\n

£6 cinema tickets for 16 to 25 year olds.

\nSign up\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

2026 festival brochure

\n\n

Download our digital festival brochure (PDF) for the 2026 edition of the festival.

\nDownload brochure\n
\n
\n\n
\n \n
\n \n
\n
\n

Festival pass

\n\n

See 10 films for less.

\nFind out more\n
\n
\n\n
\n \n
\n
\n \n \n \n \n\n

\n Add a promo code

\n
    \n \n
  • \n \n
  • \n \n
  • \n
    \n \n \n \n \n
    \n
  • \n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n\n
\n
\n\n
\n
\n
\n
\n\n
\n
\n
\n

British Film Institute

\n\n

We are a cultural charity, a National Lottery funding distributor, and the UK’s lead organisation for film and the moving image.

\n\n\n\n\n
\n\n
\n

Supported by

\n\n
\n
\n
\"Funded\n
\n\n
\"Culture\n
\n\n
\"BFI\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n
\n
\n
©2025 British Film Institute. All rights reserved.
\n\n
Registered charity 287780
\n\n
Registered office 21 Stephen St, London W1T 1LN
\n
\n
\n
\n
\n\n
\n
\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n
\n ", + "searchResults": [ + [ + "FCB5994B-74C2-49AE-A5B8-E77302C3BBFF", + "P", + "BFI Flare Festival", + "LLGFF", + "drunk_22Mar26", + "Drunken Noodles", + "Drunken Noodles", + "Sunday 22 March 2026 21:00", + "21:00", + "22", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "G", + "53", + "Subtitles,Hearts, Lucio Castro, USA-Argentina,Laith Khalifeh, Ezriel Kornel, Matthew Risch", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=33DCEB33-31A8-40DB-B79F-76F2DF574F35&BOparam::WScontent::loadArticle::context_id=FCB5994B-74C2-49AE-A5B8-E77302C3BBFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREHEARTS", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "", + "", + "", + "527ADADE-4BF3-4A03-BADB-12000B5C7BD6", + "Flare NFT2", + "BFI Southbank, Screen NFT2", + "BFI Southbank, Screen NFT2", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ], + [ + "5B168278-2129-4005-8D72-F4622E6999EF", + "P", + "BFI Flare Festival", + "LLGFF", + "drunk_24Mar26", + "Drunken Noodles", + "Drunken Noodles", + "Tuesday 24 March 2026 20:40", + "20:40", + "24", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "E", + "27", + "Subtitles,Hearts, Lucio Castro, USA-Argentina,Laith Khalifeh, Ezriel Kornel, Matthew Risch", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=33DCEB33-31A8-40DB-B79F-76F2DF574F35&BOparam::WScontent::loadArticle::context_id=5B168278-2129-4005-8D72-F4622E6999EF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREHEARTS", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "United Kingdom", + "", + "", + "A76FC31F-05EE-4F50-9AC1-C73800A414DA", + "Flare NFT4", + "BFI Southbank, Screen NFT4", + "BFI Southbank, Screen NFT4", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ] + ] +} \ No newline at end of file diff --git a/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-edges-of-belonging-flare26-2026-02-23 b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-edges-of-belonging-flare26-2026-02-23 new file mode 100644 index 0000000..6e0129b --- /dev/null +++ b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-edges-of-belonging-flare26-2026-02-23 @@ -0,0 +1,209 @@ +{ + "html": "\nBuy tickets for Edges of Belonging | BFI Flare: London LGBTQIA+ Film Festival 2026\n\n\n\n\n\n\n\n\n\n\n\n \n\n \n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n\n\n\t\n\t\n\t\n\t\n\t\n\t\n
\n
\n \n \n \n
\n\n\n
\n \n \n \n
\n
\n
\n\n \n Order for\n Customer\n\n
\n
\n
\n \n
\n \n
\n \n Your basket is empty\n \n
\n \n
\n\n \n
\n\n \n \n\n\n \n
\n
\n \n\n\n
\n
\n\n \n
\n
\n Order for\n Customer\n \n
\n
\n\n \n
\n
    \n \n
\n
\n
\n\n
\n
\"BFI \"BFI \n
\n\n
\n\n \n \n
\n\n
\n \n
\n\t
\n\t\t\n\n\t
\n
\n\n\n
\n
\n\n \n
\n\n\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n
    \n
  • \n Search films and events\n \n
  • \n
  • \n Search dates\n from\n
    \n
    \n
  • \n
  • \n to\n
    \n
    \n
  • \n
  • \n \n
  • \n
\n \n
\n
\n\n \n\n
\n\n \n \n\n
\n \n
\n
\n
\n\n
\n\n\n
\n

Edges of Belonging

\n\n

From queer immigrants striving to find their place in the world to a solitary farmer’s quiet existence and a young man’s erotic fixation, this programme explores lives on the margins, and the ways people forge bonds, find intimacy and meaningful connections, and a place to belong.

\n
\n\n\n

Screening dates and booking

\n\n
\n

Book your festival tickets a week early when you become a BFI Member.\n

\n
\n\n\n
\n
-Friday 20 March 2026 15:30
BFI Southbank, Screen NFT1
Edges of Belonging
-Saturday 21 March 2026 20:30
BFI Southbank, Screen NFT4
Edges of Belonging
\n
\n\n\n

Credits

\n\n
\n
    \n\t
  • \n\t

    Total running time

    \n\n\t

    85min

    \n\t
  • \n\t
  • \n\t

    Programmed by

    \n\n\t

    Darren Jones

    \n\t
  • \n\t
  • Age rating\n\t

    18+

    \n\t
  • \n\t
  • \n\t

    Content advice

    \n\n\t

    This short film programme contains scenes of sex, nudity, sexual violence, graphic violence or injury, and homophobic attitudes and language.

    \n\t
  • \n
\n
\n\n\n
\n

One Day This Kid

\n\n\n
\"\"\n
\n\n\n
\n
    \n\t
  • \n\t

    Director

    \n\n\t

    Alexander Farah

    \n\t
  • \n\t
  • \n\t

    Canada 2024. 18min

    \n\t
  • \n\t
  • \n\t

    Languages

    \n\n\t

    English, Dari, Persian
    \n\tWith English subtitles

    \n\t
  • \n\t
  • \n\t

    Content advice

    \n\n\t

    Contains scenes of sex.
    \n\tContains homophobic attitudes and language.

    \n\t
  • \n
\n
\n\n\n
\n

Hamed, a gay Afghan/Iranian living in Canada, navigates both his queer and Muslim identities, always conscious of the shadow his father casts over his life.

\n
\n
\n\n\n
\n

America

\n\n\n
\"\"\n
\n\n\n
\n
    \n\t
  • \n\t

    Director

    \n\n\t

    Aly Muritiba

    \n\t
  • \n\t
  • \n\t

    USA-Brazil 2025. 22min

    \n\t
  • \n\t
  • \n\t

    Languages

    \n\n\t

    English, Spanish
    \n\tWith English subtitles

    \n\t
  • \n\t
  • \n\t

    Content advice

    \n\n\t

    Contains scenes of graphic violence or injury.

    \n\t
  • \n
\n
\n\n\n
\n

The threat of deportation hangs over undocumented Brazilian Tom, as he navigates love and connection while facing the harsh realities of Trump-era immigration policies.

\n
\n
\n\n\n
\n

0004NGEL

\n\n\n
\"\"\n
\n\n\n
\n
    \n\t
  • \n\t

    Director

    \n\n\t

    Eli Jean Tahchi

    \n\t
  • \n\t
  • \n\t

    Canada 2025. 12min

    \n\t
  • \n\t
  • \n\t

    Languages

    \n\n\t

    Spanish, French, English
    \n\tWith English subtitles

    \n\t
  • \n\t
  • Certificate\n\t

    Festival 18

    \n\t
  • \n\t
  • \n\t

    Content advice

    \n\n\t

    Contains scenes of nudity.

    \n\t
  • \n
\n
\n\n\n
\n

An intimate character study that explores the life of Angel, a Mexican immigrant living in Montreal, who makes a living as a webcam model and dancer at a bar.

\n
\n
\n\n\n
\n

Don’t Ask, Don’t Tell

\n\n\n
\"\"\n
\n\n\n
\n
    \n\t
  • \n\t

    Director

    \n\n\t

    Jazz Martinez-Gamboa

    \n\t
  • \n\t
  • \n\t

    UK-Cuba 2025. 13min

    \n\t
  • \n\t
  • \n\t

    Language

    \n\n\t

    Spanish
    \n\tWith English subtitles

    \n\t
  • \n
\n
\n\n\n
\n

A solitary man lives a measured and almost ritualistic life on his quiet farm, until a young couple, stranded by a broken-down motorbike, knock at his door and shift the stillness of his world.

\n
\n
\n\n\n
\n

The Motorcycle

\n\n

La Moto

\n\n\n
\"\"\n
\n\n\n
\n
    \n\t
  • \n\t

    Director

    \n\n\t

    Matteo Giampetruzzi

    \n\t
  • \n\t
  • \n\t

    Italy-Denmark-Spain 2025. 20min

    \n\t
  • \n\t
  • \n\t

    Language

    \n\n\t

    Dialogue-free

    \n\t
  • \n\t
  • \n\t

    Content advice

    \n\n\t

    Contains scenes of sex and sexual violence.

    \n\t
  • \n
\n
\n\n\n
\n

Luca, a shy young man, becomes fixated on Valerio, an older man with a passion for motorcycles, and pursues a desire that escalates into an obsession.

\n
\n
\n\n\n

How to book

\n\n
\n

BFI Flare tickets start from £10, with concessions available for many screenings and discounts for BFI Members. Booking information and ticket prices.

\n\n

If you’re aged 16 to 25, sign up for free to BFI 25 and Under for a chance to get £6 tickets to all screenings and events (subject to availability).

\n\n
\n

Missed out?

\n\n

More tickets may become available for these screenings before and during the festival. Find out about extra ticket releases and standby queues.

\n
\n
\n\n\n
\n

Our programmers recommend...

\n\n
\n
\n
\n
\"\"\n
\n\n
\n

Fragments of Us

\n\n

A collection of UK shorts exploring desire, trauma and identity. Through moments of connection, courage and honesty, they illuminate the struggles and triumphs that shape our most vulnerable selves.

\n
\nRead more about Fragments of Us\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Another Man

\n\n

Marc’s dissatisfaction with his settled existence sees him unexpectedly attracted to a new neighbour, in this delicate exploration of thirtysomething life.

\n
\nRead more about Another Man\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Drunken Noodles

\n\n

Lucio Castro’s third feature blends magical realist elements in this intimate character study.

\n
\nRead more about Drunken Noodles\n\n
\n
\n
\n
\n
\n\n
\n \n
\n \n\n\n\n
\n
\n
 
\n
\n\n
\n\n \n
\n \n
\n \n
\n \n
\n
\n

Shorts

\n\n

Small but perfectly formed.

\nFind out more\n
\n
\n\n
\n \n
\n
\n
\n

March 2026

\n
\n\n
\n
MON
\n\n
TUE
\n\n
WED
\n\n
THU
\n\n
FRI
\n\n
SAT
\n\n
SUN
\n\n
16
\n\n
17
\n18 19 20 21 22 23 24 25 26 27 28 29\n
\n
\n\n
\n \n
\n  \n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

BFI Membership

\n\n

Become a BFI Member from £39 to enjoy priority festival booking as well as other great benefits all year round.

\nJoin today\n
\n
\n\n
\n \n
\n \n
\n
\n

About the festival

\n\n

A quick guide to the festival.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

Screenings and events with access provision

\n\n

Making BFI Flare: London LGBTQIA+ Film Festival as welcoming, inclusive and accessible as possible for everyone.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

25 and Under

\n\n

£6 cinema tickets for 16 to 25 year olds.

\nSign up\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

2026 festival brochure

\n\n

Download our digital festival brochure (PDF) for the 2026 edition of the festival.

\nDownload brochure\n
\n
\n\n
\n \n
\n \n
\n
\n

Festival pass

\n\n

See 10 films for less.

\nFind out more\n
\n
\n\n
\n \n
\n
\n \n \n \n \n\n

\n Add a promo code

\n
    \n \n
  • \n \n
  • \n \n
  • \n
    \n \n \n \n \n
    \n
  • \n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n\n
\n
\n\n
\n
\n
\n
\n\n
\n
\n
\n

British Film Institute

\n\n

We are a cultural charity, a National Lottery funding distributor, and the UK’s lead organisation for film and the moving image.

\n\n\n\n\n
\n\n
\n

Supported by

\n\n
\n
\n
\"Funded\n
\n\n
\"Culture\n
\n\n
\"BFI\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n
\n
\n
©2025 British Film Institute. All rights reserved.
\n\n
Registered charity 287780
\n\n
Registered office 21 Stephen St, London W1T 1LN
\n
\n
\n
\n
\n\n
\n
\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n
\n ", + "searchResults": [ + [ + "468F3542-12E5-4F07-BB40-629C1F171938", + "P", + "BFI Flare Festival", + "LLGFF", + "edge_20Mar26", + "Edges of Belonging", + "Edges of Belonging", + "Friday 20 March 2026 15:30", + "15:30", + "20", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "E", + "297", + "Bodies, Aly Muritiba, USA-Brazil,Don’t Ask, Don’t Tell,One Day This Kid,Bodies, Matteo Giampetruzzi, Italy-Denmark-Spain,The Motorcycle,0004NGEL,America,Bodies, Eli Jean Tahchi, Canada,Bodies, Jazz Martinez-Gamboa, UK-Cuba,Bodies, Alexander Farah, Canada", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=4EFCA518-E418-4E81-9A43-7EAADEEEA13A&BOparam::WScontent::loadArticle::context_id=468F3542-12E5-4F07-BB40-629C1F171938", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREBODIES", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "", + "", + "", + "C4B57E43-F123-4CE5-8A17-6CB9F0409CF5", + "Flare - NFT1", + "BFI Southbank, Screen NFT1", + "BFI Southbank, Screen NFT1", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£10.00", + "£10.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ], + [ + "775C823B-DE4F-4CAB-9743-FFF6BE388113", + "P", + "BFI Flare Festival", + "LLGFF", + "edge_21Mar26", + "Edges of Belonging", + "Edges of Belonging", + "Saturday 21 March 2026 20:30", + "20:30", + "21", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "G", + "18", + "One Day This Kid,Bodies, Aly Muritiba, USA-Brazil,Don’t Ask, Don’t Tell,0004NGEL,Bodies, Alexander Farah, Canada,America,Bodies, Jazz Martinez-Gamboa, UK-Cuba,The Motorcycle,Bodies, Matteo Giampetruzzi, Italy-Denmark-Spain,Bodies, Eli Jean Tahchi, Canada", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=4EFCA518-E418-4E81-9A43-7EAADEEEA13A&BOparam::WScontent::loadArticle::context_id=775C823B-DE4F-4CAB-9743-FFF6BE388113", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREBODIES", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "United Kingdom", + "", + "", + "A76FC31F-05EE-4F50-9AC1-C73800A414DA", + "Flare NFT4", + "BFI Southbank, Screen NFT4", + "BFI Southbank, Screen NFT4", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ] + ] +} \ No newline at end of file diff --git a/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-fragments-of-us-flare26-2026-02-23 b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-fragments-of-us-flare26-2026-02-23 new file mode 100644 index 0000000..8d47a72 --- /dev/null +++ b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-fragments-of-us-flare26-2026-02-23 @@ -0,0 +1,209 @@ +{ + "html": "\nBuy tickets for Fragments of Us | BFI Flare: London LGBTQIA+ Film Festival 2026\n\n\n\n\n\n\n\n\n\n\n\n \n\n \n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n\n\n\t\n\t\n\t\n\t\n\t\n\t\n
\n
\n \n \n \n
\n\n\n
\n \n \n \n
\n
\n
\n\n \n Order for\n Customer\n\n
\n
\n
\n \n
\n \n
\n \n Your basket is empty\n \n
\n \n
\n\n \n
\n\n \n \n\n\n \n
\n
\n \n\n\n
\n
\n\n \n
\n
\n Order for\n Customer\n \n
\n
\n\n \n
\n
    \n \n
\n
\n
\n\n
\n
\"BFI \"BFI \n
\n\n
\n\n \n \n
\n\n
\n \n
\n\t
\n\t\t\n\n\t
\n
\n\n\n
\n
\n\n \n
\n\n\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n
    \n
  • \n Search films and events\n \n
  • \n
  • \n Search dates\n from\n
    \n
    \n
  • \n
  • \n to\n
    \n
    \n
  • \n
  • \n \n
  • \n
\n \n
\n
\n\n \n\n
\n\n \n \n\n
\n \n
\n
\n
\n\n
\n\n\n
\n

Fragments of Us

\n\n

A collection of UK shorts exploring desire, trauma and identity. Through moments of connection, courage and honesty, they illuminate the struggles and triumphs that shape our most vulnerable selves.

\n
\n\n\n

Screening dates and booking

\n\n
\n

Book your festival tickets a week early when you become a BFI Member.\n

\n
\n\n\n
\n
-Wednesday 25 March 2026 12:40
BFI Southbank, Screen NFT1
Fragments of Us
-Saturday 28 March 2026 18:35
BFI Southbank, Screen NFT3
Fragments of Us
\n
\n\n\n

Credits

\n\n
\n
    \n\t
  • \n\t

    Total running time

    \n\n\t

    93min

    \n\t
  • \n\t
  • \n\t

    Programmed by

    \n\n\t

    Darren Jones

    \n\t
  • \n\t
  • \n\t

    Content advice

    \n\n\t

    This short film programme contains flashing images, sexual violence, and homophobic attitudes and language.

    \n\t
  • \n
\n
\n\n\n
\n

MAGID / ZAFAR

\n\n\n
\"\"\n
\n\n\n
\n
    \n\t
  • \n\t

    Director

    \n\n\t

    Luís Hindman

    \n\t
  • \n\t
  • \n\t

    UK 2025. 18min

    \n\t
  • \n\t
  • \n\t

    Languages

    \n\n\t

    English, Urdu
    \n\tWith English subtitles

    \n\t
  • \n
\n
\n\n\n
\n

Inside a busy British Pakistani takeaway, Magid and Zafar confront tensions, as Magid is forced to face truths about his relationships, identity and future.

\n
\n
\n\n\n
\n

This Love Isn’t Taught

\n\n\n
\"\"\n
\n\n\n
\n
    \n\t
  • \n\t

    Director

    \n\n\t

    Harry Brandrick

    \n\t
  • \n\t
  • \n\t

    UK 2025. 11min

    \n\t
  • \n\t
  • \n\t

    Language

    \n\n\t

    English

    \n\t
  • \n\t
  • \n\t

    Content advice

    \n\n\t

    Contains flashing images.

    \n\t
  • \n
\n
\n\n\n
\n

Jordan, a bisexual dad, reunites with a past gay love at a lively London party, forcing him to confront identity, desire and truth.

\n
\n
\n\n\n
\n

Ubiquitous

\n\n\n
\"\"\n
\n\n\n
\n
    \n\t
  • \n\t

    Director

    \n\n\t

    Masha Maroutitch

    \n\t
  • \n\t
  • \n\t

    UK 2025. 7min

    \n\t
  • \n\t
  • \n\t

    Language

    \n\n\t

    English

    \n\t
  • \n
\n
\n\n\n
\n

A young black man battles internalised homophobia and unrequited love, navigating identity and isolation through poetic visuals.

\n
\n
\n\n\n
\n

Every Time I See a Yellow Car

\n\n\n
\"\"\n
\n\n\n
\n
    \n\t
  • \n\t

    Director

    \n\n\t

    Matt Chandler

    \n\t
  • \n\t
  • \n\t

    UK 2025. 14min

    \n\t
  • \n\t
  • \n\t

    Language

    \n\n\t

    English

    \n\t
  • \n\t
  • \n\t

    Content advice

    \n\n\t

    Contains scenes of sexual violence.
    \n\tContains flashing images.

    \n\t
  • \n
\n
\n\n\n
\n

When Olly confides in his older brother after being raped, it sets off a chain reaction of events that ends in tragedy.

\n
\n
\n\n\n
\n

Breaking through the Fear

\n\n\n
\"\"\n
\n\n\n
\n
    \n\t
  • \n\t

    Director

    \n\n\t

    Darren Brade

    \n\t
  • \n\t
  • \n\t

    UK 2026. 15min

    \n\t
  • \n\t
  • \n\t

    Language

    \n\n\t

    English

    \n\t
  • \n\t
  • \n\t

    Content advice

    \n\n\t

    Contains homophobic attitudes and language.

    \n\t
  • \n
\n
\n\n\n
\n

After falling victim to a hate crime, a gay man struggles to reclaim life with support from his loving partner.

\n
\n
\n\n\n
\n

Yellow Bucket

\n\n\n
\"\"\n
\n\n\n
\n
    \n\t
  • \n\t

    Director

    \n\n\t

    Simon Brooke

    \n\t
  • \n\t
  • \n\t

    UK 2025. 15min

    \n\t
  • \n\t
  • \n\t

    Language

    \n\n\t

    English

    \n\t
  • \n
\n
\n\n\n
\n

Gay teen Connor worries his supportive parents might use a bizarre, scientific ‘gay trigger’ to shape his younger brother’s future sexuality.

\n
\n
\n\n\n
\n

Kiloran Bay

\n\n\n
\"\"\n
\n\n\n
\n
    \n\t
  • \n\t

    Director

    \n\n\t

    Michael Bruce

    \n\t
  • \n\t
  • \n\t

    UK 2026. 13min

    \n\t
  • \n\t
  • \n\t

    Language

    \n\n\t

    English

    \n\t
  • \n\t
  • \n\t

    Content advice

    \n\n\t

    Contains homophobic attitudes and language.

    \n\t
  • \n
\n
\n\n\n
\n

After decades away from his homeland, a gay man returns to Scotland with his partner to attend a wedding cèilidh, only to recall memories he spent a lifetime avoiding.

\n
\n
\n\n\n

How to book

\n\n
\n

BFI Flare tickets start from £10, with concessions available for many screenings and discounts for BFI Members. Booking information and ticket prices.

\n\n

If you’re aged 16 to 25, sign up for free to BFI 25 and Under for a chance to get £6 tickets to all screenings and events (subject to availability).

\n\n
\n

Missed out?

\n\n

More tickets may become available for these screenings before and during the festival. Find out about extra ticket releases and standby queues.

\n
\n
\n\n\n
\n

Our programmers recommend...

\n\n
\n
\n
\n
\"\"\n
\n\n
\n

Edges of Belonging

\n\n

From queer immigrants striving to find their place in the world to a solitary farmer’s quiet existence and a young man’s erotic fixation, this programme explores lives on the margins, and the ways people forge bonds, find intimacy and meaningful connections, and a place to belong.

\n
\nRead more about Edges of Belonging\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Perro Perro

\n\n

Argentinian filmmaker Marco Berger presents a boldly absurdist fairy tale.

\n
\nRead more about Perro Perro\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

The Last Guest of the Holloway Motel

\n\n

In this impressive feature debut, a former British football star reflects on his past and the family he abandoned to hide his true identity.

\n
\nRead more about The Last Guest of the Holloway Motel\n\n
\n
\n
\n
\n
\n\n
\n \n
\n \n\n\n\n
\n
\n
 
\n
\n\n
\n\n \n
\n \n
\n \n
\n \n
\n
\n

Shorts

\n\n

Small but perfectly formed.

\nFind out more\n
\n
\n\n
\n \n
\n
\n
\n

March 2026

\n
\n\n
\n
MON
\n\n
TUE
\n\n
WED
\n\n
THU
\n\n
FRI
\n\n
SAT
\n\n
SUN
\n\n
16
\n\n
17
\n18 19 20 21 22 23 24 25 26 27 28 29\n
\n
\n\n
\n \n
\n  \n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

BFI Membership

\n\n

Become a BFI Member from £39 to enjoy priority festival booking as well as other great benefits all year round.

\nJoin today\n
\n
\n\n
\n \n
\n \n
\n
\n

About the festival

\n\n

A quick guide to the festival.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

Screenings and events with access provision

\n\n

Making BFI Flare: London LGBTQIA+ Film Festival as welcoming, inclusive and accessible as possible for everyone.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

25 and Under

\n\n

£6 cinema tickets for 16 to 25 year olds.

\nSign up\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

2026 festival brochure

\n\n

Download our digital festival brochure (PDF) for the 2026 edition of the festival.

\nDownload brochure\n
\n
\n\n
\n \n
\n \n
\n
\n

Festival pass

\n\n

See 10 films for less.

\nFind out more\n
\n
\n\n
\n \n
\n
\n \n \n \n \n\n

\n Add a promo code

\n
    \n \n
  • \n \n
  • \n \n
  • \n
    \n \n \n \n \n
    \n
  • \n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n\n
\n
\n\n
\n
\n
\n
\n\n
\n
\n
\n

British Film Institute

\n\n

We are a cultural charity, a National Lottery funding distributor, and the UK’s lead organisation for film and the moving image.

\n\n\n\n\n
\n\n
\n

Supported by

\n\n
\n
\n
\"Funded\n
\n\n
\"Culture\n
\n\n
\"BFI\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n
\n
\n
©2025 British Film Institute. All rights reserved.
\n\n
Registered charity 287780
\n\n
Registered office 21 Stephen St, London W1T 1LN
\n
\n
\n
\n
\n\n
\n
\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n
\n ", + "searchResults": [ + [ + "726A3407-1B18-492A-BCF3-F2E3AC11806F", + "P", + "BFI Flare Festival", + "LLGFF", + "frag_25Mar26", + "Fragments of Us", + "Fragments of Us", + "Wednesday 25 March 2026 12:40", + "12:40", + "25", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "G", + "280", + "Bodies, Simon Brooke, UK,This Love Isn’t Taught, Breaking through the Fear,Bodies, Luís Hindman, UK,Bodies, Harry Brandrick, UK,Yellow Bucket, Kiloran Bay,Bodies, Matt Chandler, UK,Bodies, Michael Bruce, UK,MAGID / ZAFAR, Ubiquitous, Every Time I See a Yellow Car,Bodies, Darren Brade, UK,Bodies, Masha Maroutitch, UK", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=F0B4F7D3-3CC9-4032-9AED-5C9FD8443D9C&BOparam::WScontent::loadArticle::context_id=726A3407-1B18-492A-BCF3-F2E3AC11806F", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREBODIES", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "", + "", + "", + "C4B57E43-F123-4CE5-8A17-6CB9F0409CF5", + "Flare - NFT1", + "BFI Southbank, Screen NFT1", + "BFI Southbank, Screen NFT1", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£10.00", + "£10.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ], + [ + "6E90A687-2437-496C-BC1E-5AD39CA95EF2", + "P", + "BFI Flare Festival", + "LLGFF", + "frag_28Mar26", + "Fragments of Us", + "Fragments of Us", + "Saturday 28 March 2026 18:35", + "18:35", + "28", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "G", + "54", + "Bodies, Matt Chandler, UK,Bodies, Michael Bruce, UK,Bodies, Simon Brooke, UK,Yellow Bucket, Kiloran Bay,Bodies, Luís Hindman, UK,Bodies, Harry Brandrick, UK,This Love Isn’t Taught, Breaking through the Fear,Bodies, Darren Brade, UK,MAGID / ZAFAR, Ubiquitous, Every Time I See a Yellow Car,Bodies, Masha Maroutitch, UK", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=F0B4F7D3-3CC9-4032-9AED-5C9FD8443D9C&BOparam::WScontent::loadArticle::context_id=6E90A687-2437-496C-BC1E-5AD39CA95EF2", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREBODIES", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "United Kingdom", + "", + "", + "C14E3C2A-68EC-4B8B-B4DA-E00E79BD3822", + "Flare NFT3", + "BFI Southbank, Screen NFT3", + "BFI Southbank, Screen NFT3", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ] + ] +} \ No newline at end of file diff --git a/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-having-the-last-laugh-flare26-2026-02-23 b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-having-the-last-laugh-flare26-2026-02-23 new file mode 100644 index 0000000..a5952be --- /dev/null +++ b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-having-the-last-laugh-flare26-2026-02-23 @@ -0,0 +1,209 @@ +{ + "html": "\nBuy tickets for Having the Last Laugh | BFI Flare: London LGBTQIA+ Film Festival 2026\n\n\n\n\n\n\n\n\n\n\n\n \n\n \n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n\n\n\t\n\t\n\t\n\t\n\t\n\t\n
\n
\n \n \n \n
\n\n\n
\n \n \n \n
\n
\n
\n\n \n Order for\n Customer\n\n
\n
\n
\n \n
\n \n
\n \n Your basket is empty\n \n
\n \n
\n\n \n
\n\n \n \n\n\n \n
\n
\n \n\n\n
\n
\n\n \n
\n
\n Order for\n Customer\n \n
\n
\n\n \n
\n
    \n \n
\n
\n
\n\n
\n
\"BFI \"BFI \n
\n\n
\n\n \n \n
\n\n
\n \n
\n\t
\n\t\t\n\n\t
\n
\n\n\n
\n
\n\n \n
\n\n\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n
    \n
  • \n Search films and events\n \n
  • \n
  • \n Search dates\n from\n
    \n
    \n
  • \n
  • \n to\n
    \n
    \n
  • \n
  • \n \n
  • \n
\n \n
\n
\n\n \n\n
\n\n \n \n\n
\n \n
\n
\n
\n\n
\n\n\n
\n

Having the Last Laugh

\n\n

When life gives you lemons, laughter is a tonic. Here are trans tales of levity, liberation and looking for love, featuring fundraising sexcapades, gender-flipping frolics and bodily autonomy in abundance.

\n
\n\n\n

Screening dates and booking

\n\n
\n

Book your festival tickets a week early when you become a BFI Member.\n

\n
\n\n\n
\n
-Friday 27 March 2026 15:20
BFI Southbank, Screen NFT1
Having the Last Laugh
-Saturday 28 March 2026 13:40
BFI Southbank, Screen NFT3
Having the Last Laugh
\n
\n\n\n

Credits

\n\n
\n
    \n\t
  • \n\t

    Total running time

    \n\n\t

    86min

    \n\t
  • \n\t
  • \n\t

    Programmed by

    \n\n\t

    Zorian Clayton

    \n\t
  • \n\t
  • \n\t

    Content advice

    \n\n\t

    This short film programme contains scenes of drug use, nudity and sex.

    \n\t
  • \n
\n
\n\n\n
\n

Cockroach

\n\n\n
\"\"\n
\n\n\n
\n
    \n\t
  • \n\t

    Directors

    \n\n\t

    Justice Singleton, Liliana Padilla

    \n\t
  • \n\t
  • \n\t

    USA 2025. 23min

    \n\t
  • \n\t
  • \n\t

    Language

    \n\n\t

    English

    \n\t
  • \n\t
  • \n\t

    Content advice

    \n\n\t

    Contains scenes of nudity and sex.

    \n\t
  • \n
\n
\n\n\n
\n

A Black trans man dipping his toe into the world of sex work is scuppered by a wise-talking roach, in this playful two-hander.

\n
\n
\n\n\n
\n

They, with an Axe

\n\n

Entró con un hacha

\n\n\n
\"\"\n
\n\n\n
\n
    \n\t
  • \n\t

    Director

    \n\n\t

    Cande Lázaro

    \n\t
  • \n\t
  • \n\t

    Spain 2025. 13min

    \n\t
  • \n\t
  • \n\t

    Language

    \n\n\t

    Spanish
    \n\tWith English subtitles

    \n\t
  • \n
\n
\n\n\n
\n

In this barmy binary buster, set in an old-fashioned Spanish bar, an enigmatic outsider lays down the law after wagging tongues spread rumours.

\n
\n
\n\n\n
\n

Salty

\n\n\n
\"\"\n
\n\n\n
\n
    \n\t
  • \n\t

    Director

    \n\n\t

    Erby Beauvil

    \n\t
  • \n\t
  • \n\t

    USA 2025. 21min

    \n\t
  • \n\t
  • \n\t

    Language

    \n\n\t

    English

    \n\t
  • \n\t
  • \n\t

    Content advice

    \n\n\t

    Contains scenes of drug use.

    \n\t
  • \n
\n
\n\n\n
\n

Lily drags lovelorn romcom addict KeKe out to a club after a break-up – but is she ready for romance this soon?

\n
\n
\n\n\n
\n

Flash Sale

\n\n\n
\"\"\n
\n\n\n
\n
    \n\t
  • \n\t

    Director

    \n\n\t

    Autumn Boxley

    \n\t
  • \n\t
  • \n\t

    USA 2025. 13min

    \n\t
  • \n\t
  • \n\t

    Language

    \n\n\t

    English

    \n\t
  • \n
\n
\n\n\n
\n

Tony can’t stand another New York summer in a binder so hatches a sassy plan to rake in some dough.

\n
\n
\n\n\n
\n

Room 206

\n\n\n
\"\"\n
\n\n\n
\n
    \n\t
  • \n\t

    Director

    \n\n\t

    Laurie Bisceglia

    \n\t
  • \n\t
  • \n\t

    France 2025. 16min

    \n\t
  • \n\t
  • \n\t

    Language

    \n\n\t

    French
    \n\tWith English subtitles

    \n\t
  • \n
\n
\n\n\n
\n

Share in Clair’s joie de vivre as his wait for gender affirming surgery is finally over.

\n
\n
\n\n\n

How to book

\n\n
\n

BFI Flare tickets start from £10, with concessions available for many screenings and discounts for BFI Members. Booking information and ticket prices.

\n\n

If you’re aged 16 to 25, sign up for free to BFI 25 and Under for a chance to get £6 tickets to all screenings and events (subject to availability).

\n\n
\n

Missed out?

\n\n

More tickets may become available for these screenings before and during the festival. Find out about extra ticket releases and standby queues.

\n
\n
\n\n\n
\n

Our programmers recommend...

\n\n
\n
\n
\n
\"\"\n
\n\n
\n

I Am Going to Miss You

\n\n

A T4T couple move in together and are forced to face their differences in this indie romantic drama featuring an all-trans cast.

\n
\nRead more about I Am Going to Miss You\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Warla

\n\n

In Kevin Alambra’s provocative drama, a group of vigilante Filipino trans women kidnap foreign businessmen to fund gender-affirming surgeries.

\n
\nRead more about Warla\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

We Are Pat

\n\n

Examining an androgynous character on Saturday Night Live, this uproarious, thoughtful film invites trans comedians to recreate and reclaim Pat.

\n
\nRead more about We Are Pat\n\n
\n
\n
\n
\n
\n\n
\n \n
\n \n\n\n\n
\n
\n
 
\n
\n\n
\n\n \n
\n \n
\n \n
\n \n
\n
\n

Shorts

\n\n

Small but perfectly formed.

\nFind out more\n
\n
\n\n
\n \n
\n
\n
\n

March 2026

\n
\n\n
\n
MON
\n\n
TUE
\n\n
WED
\n\n
THU
\n\n
FRI
\n\n
SAT
\n\n
SUN
\n\n
16
\n\n
17
\n18 19 20 21 22 23 24 25 26 27 28 29\n
\n
\n\n
\n \n
\n
 
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

BFI Membership

\n\n

Become a BFI Member from £39 to enjoy priority festival booking as well as other great benefits all year round.

\nJoin today\n
\n
\n\n
\n \n
\n \n
\n
\n

About the festival

\n\n

A quick guide to the festival.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

Screenings and events with access provision

\n\n

Making BFI Flare: London LGBTQIA+ Film Festival as welcoming, inclusive and accessible as possible for everyone.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

25 and Under

\n\n

£6 cinema tickets for 16 to 25 year olds.

\nSign up\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

2026 festival brochure

\n\n

Download our digital festival brochure (PDF) for the 2026 edition of the festival.

\nDownload brochure\n
\n
\n\n
\n \n
\n \n
\n
\n

Festival pass

\n\n

See 10 films for less.

\nFind out more\n
\n
\n\n
\n \n
\n
\n \n \n \n \n\n

\n Add a promo code

\n
    \n \n
  • \n \n
  • \n \n
  • \n
    \n \n \n \n \n
    \n
  • \n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n\n
\n
\n\n
\n
\n
\n
\n\n
\n
\n
\n

British Film Institute

\n\n

We are a cultural charity, a National Lottery funding distributor, and the UK’s lead organisation for film and the moving image.

\n\n\n\n\n
\n\n
\n

Supported by

\n\n
\n
\n
\"Funded\n
\n\n
\"Culture\n
\n\n
\"BFI\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n
\n
\n
©2025 British Film Institute. All rights reserved.
\n\n
Registered charity 287780
\n\n
Registered office 21 Stephen St, London W1T 1LN
\n
\n
\n
\n
\n\n
\n
\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n
\n ", + "searchResults": [ + [ + "830097C3-809A-4C44-98D9-D400798BC7CF", + "P", + "BFI Flare Festival", + "LLGFF", + "havi_27Mar26", + "Having the Last Laugh", + "Having the Last Laugh", + "Friday 27 March 2026 15:20", + "15:20", + "27", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "E", + "302", + "Bodies, Laurie Bisceglia, France,They, with an Axe,Bodies, Autumn Boxley, USA,Bodies, Justice Singleton, Liliana Padilla, USA,Bodies, Erby Beauvil, USA,Bodies, Cande Lázaro, Spain,Flash Sale,Room 206,Salty,Cockroach", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=974FDE3A-7925-4FC8-9B73-C56ABBF36F2C&BOparam::WScontent::loadArticle::context_id=830097C3-809A-4C44-98D9-D400798BC7CF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREBODIES", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "", + "", + "", + "C4B57E43-F123-4CE5-8A17-6CB9F0409CF5", + "Flare - NFT1", + "BFI Southbank, Screen NFT1", + "BFI Southbank, Screen NFT1", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£10.00", + "£10.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ], + [ + "2648EAE0-6B7A-4096-894F-917634EB4045", + "P", + "BFI Flare Festival", + "LLGFF", + "havi_28Mar26", + "Having the Last Laugh", + "Having the Last Laugh", + "Saturday 28 March 2026 13:40", + "13:40", + "28", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "G", + "61", + "Salty,Flash Sale,They, with an Axe,Bodies, Autumn Boxley, USA,Cockroach,Bodies, Laurie Bisceglia, France,Room 206,Bodies, Justice Singleton, Liliana Padilla, USA,Bodies, Erby Beauvil, USA,Bodies, Cande Lázaro, Spain", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=974FDE3A-7925-4FC8-9B73-C56ABBF36F2C&BOparam::WScontent::loadArticle::context_id=2648EAE0-6B7A-4096-894F-917634EB4045", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREBODIES", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "United Kingdom", + "", + "", + "C14E3C2A-68EC-4B8B-B4DA-E00E79BD3822", + "Flare NFT3", + "BFI Southbank, Screen NFT3", + "BFI Southbank, Screen NFT3", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ] + ] +} \ No newline at end of file diff --git a/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-heavenly-havens-flare26-2026-02-23 b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-heavenly-havens-flare26-2026-02-23 new file mode 100644 index 0000000..331af87 --- /dev/null +++ b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-heavenly-havens-flare26-2026-02-23 @@ -0,0 +1,107 @@ +{ + "html": "\nBuy tickets for Heavenly Havens | BFI Flare: London LGBTQIA+ Film Festival 2026\n\n\n\n\n\n\n\n\n\n\n\n \n\n \n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n\n\n\t\n\t\n\t\n\t\n\t\n\t\n
\n
\n \n \n \n
\n\n\n
\n \n \n \n
\n
\n
\n\n \n Order for\n Customer\n\n
\n
\n
\n \n
\n \n
\n \n Your basket is empty\n \n
\n \n
\n\n \n
\n\n \n \n\n\n \n
\n
\n \n\n\n
\n
\n\n \n
\n
\n Order for\n Customer\n \n
\n
\n\n \n
\n
    \n \n
\n
\n
\n\n
\n
\"BFI \"BFI \n
\n\n
\n\n \n \n
\n\n
\n \n
\n\t
\n\t\t\n\n\t
\n
\n\n\n
\n
\n\n \n
\n\n\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n
    \n
  • \n Search films and events\n \n
  • \n
  • \n Search dates\n from\n
    \n
    \n
  • \n
  • \n to\n
    \n
    \n
  • \n
  • \n \n
  • \n
\n \n
\n
\n\n \n\n
\n\n \n \n\n
\n \n
\n
\n
\n\n
\n\n\n
\n

Heavenly Havens

\n\n

Carving out spaces to thrive and survive, this programme is a paean to the nightlife that seduces and sustains us, and the creation of places we can truly call home.

\n
\n\n\n

Screening dates and booking

\n\n
\n

Book your festival tickets a week early when you become a BFI Member.\n

\n
\n\n\n
\n
-Saturday 21 March 2026 10:50
BFI Southbank, Screen NFT3
Heavenly Havens
\n
\n\n\n

Credits

\n\n
\n
    \n\t
  • \n\t

    Total running time

    \n\n\t

    94min

    \n\t
  • \n\t
  • \n\t

    Programmed by

    \n\n\t

    Zorian Clayton

    \n\t
  • \n\t
  • \n\t

    Content advice

    \n\n\t

    This short film programme contains strobe effects/flashing images, scenes of drug use, and homophobic and transphobic attitudes and language.

    \n\t
  • \n
\n
\n\n\n
\n

Bottlecap

\n\n\n
\"\"\n
\n\n\n
\n
    \n\t
  • \n\t

    Director

    \n\n\t

    Kaytie Nielsen

    \n\t
  • \n\t
  • \n\t

    Germany 2026. 5min

    \n\t
  • \n\t
  • \n\t

    Languages

    \n\n\t

    German, English
    \n\tWith English subtitles

    \n\t
  • \n
  • \n\t

    Content advice

    \n\n\t

    Contains flashing images.

    \n\t
  • \n
\n
\n\n\n
\n

Musician John Grant narrates this humorous number on a Berlin dancefloor, tackling the age-old quandary of how to break the ice.

\n
\n
\n\n\n
\n

Lonelier Than Love

\n\n\n
\"\"\n
\n\n\n
\n
    \n\t
  • \n\t

    Director

    \n\n\t

    Em J Gilbertson

    \n\t
  • \n\t
  • \n\t

    UK 2026. 11min

    \n\t
  • \n\t
  • \n\t

    Language

    \n\n\t

    English

    \n\t
  • \n\t
  • \n\t

    Content advice

    \n\n\t

    Contains scenes of drug use.
    \nContains flashing images.

    \n\t
  • \n
\n
\n\n\n
\n

A Liverpudlian night owl starts to spin out of control on the hedonistic merry-go-round of endless clubbing.

\n
\n
\n\n\n
\n

Diverse House

\n\n

Casa Diversa

\n\n\n
\"\"\n
\n\n\n
\n
    \n\t
  • \n\t

    Director

    \n\n\t

    Carmen Vidal

    \n\t
  • \n\t
  • \n\t

    Spain-Paraguay 2024. 28min

    \n\t
  • \n\t
  • \n\t

    Language

    \n\n\t

    Spanish
    \n\tWith English subtitles

    \n\t
  • \n\t
  • \n\t

    Content advice

    \n\n\t

    Contains homophobic and transphobic attitudes and language.

    \n\t
  • \n
\n
\n\n\n
\n

A profile of a unique refuge in Paraguay for LGBTQIA+ people, centring on trans residents, trail-blazing activists and the fight for justice.

\n
\n
\n\n\n
\n

Last Dance at the Sundance Stompede

\n\n\n
\"\"\n
\n\n\n
\n
    \n\t
  • \n\t

    Director

    \n\n\t

    Graham Clayton-Chance

    \n\t
  • \n\t
  • \n\t

    UK-USA 2025. 50min

    \n\t
  • \n\t
  • \n\t

    Language

    \n\n\t

    English

    \n\t
  • \n
\n
\n\n\n
\n

This nostalgic, mid-length doc sees time called on a queer San Francisco country-and-western club after 27 years.

\n
\n
\n\n\n

How to book

\n\n
\n

BFI Flare tickets start from £10, with concessions available for many screenings and discounts for BFI Members. Booking information and ticket prices.

\n\n

If you’re aged 16 to 25, sign up for free to BFI 25 and Under for a chance to get £6 tickets to all screenings and events (subject to availability).

\n\n
\n

Missed out?

\n\n

More tickets may become available for these screenings before and during the festival. Find out about extra ticket releases and standby queues.

\n
\n
\n\n\n
\n

Our programmers recommend...

\n\n
\n
\n
\n
\"\"\n
\n\n
\n

All These Liberations

\n\n

Stories of hope and determination against the odds, by and about queer people, from the Middle East, North Africa and Turkey.

\n
\nRead more about All These Liberations\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

We Are Pat

\n\n

Examining an androgynous character on Saturday Night Live, this uproarious, thoughtful film invites trans comedians to recreate and reclaim Pat.

\n
\nRead more about We Are Pat\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

What Will I Become?

\n\n

A vital memorial spotlighting the all-too-silent vulnerabilities of trans masculine youth.

\n
\nRead more about What Will I Become?\n\n
\n
\n
\n
\n
\n\n
\n \n
\n \n\n\n\n
\n
\n
 
\n
\n\n
\n\n \n
\n \n
\n \n
\n \n
\n
\n

Shorts

\n\n

Small but perfectly formed.

\nFind out more\n
\n
\n\n
\n \n
\n
\n
\n

March 2026

\n
\n\n
\n
MON
\n\n
TUE
\n\n
WED
\n\n
THU
\n\n
FRI
\n\n
SAT
\n\n
SUN
\n\n
16
\n\n
17
\n18 19 20 21 22 23 24 25 26 27 28 29\n
\n
\n\n
\n \n
\n  \n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

BFI Membership

\n\n

Become a BFI Member from £39 to enjoy priority festival booking as well as other great benefits all year round.

\nJoin today\n
\n
\n\n
\n \n
\n \n
\n
\n

About the festival

\n\n

A quick guide to the festival.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

Screenings and events with access provision

\n\n

Making BFI Flare: London LGBTQIA+ Film Festival as welcoming, inclusive and accessible as possible for everyone.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

25 and Under

\n\n

£6 cinema tickets for 16 to 25 year olds.

\nSign up\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

2026 festival brochure

\n\n

Download our digital festival brochure (PDF) for the 2026 edition of the festival.

\nDownload brochure\n
\n
\n\n
\n \n
\n \n
\n
\n

Festival pass

\n\n

See 10 films for less.

\nFind out more\n
\n
\n\n
\n \n
\n
\n \n \n \n \n\n

\n Add a promo code

\n
    \n \n
  • \n \n
  • \n \n
  • \n
    \n \n \n \n \n
    \n
  • \n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n\n
\n
\n\n
\n
\n
\n
\n\n
\n
\n
\n

British Film Institute

\n\n

We are a cultural charity, a National Lottery funding distributor, and the UK’s lead organisation for film and the moving image.

\n\n\n\n\n
\n\n
\n

Supported by

\n\n
\n
\n
\"Funded\n
\n\n
\"Culture\n
\n\n
\"BFI\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n
\n
\n
©2025 British Film Institute. All rights reserved.
\n\n
Registered charity 287780
\n\n
Registered office 21 Stephen St, London W1T 1LN
\n
\n
\n
\n
\n\n
\n
\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n
\n ", + "searchResults": [ + [ + "5A54EEB3-ADE8-4897-98C2-841ADDE94D64", + "P", + "BFI Flare Festival", + "LLGFF", + "heav_21Mar26", + "Heavenly Havens", + "Heavenly Havens", + "Saturday 21 March 2026 10:50", + "10:50", + "21", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "G", + "31", + "Minds, Em J Gilbertson, UK,Minds, Graham Clayton-Chance, UK-USA,Minds, Kaytie Nielsen, Germany,Lonelier Than Love,Last Dance at the Sundance Stompede,Minds, Carmen Vidal, Spain-Paraguay,Diverse House,Bottlecap", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=90753754-9333-42B0-AAD9-801188DF9E66&BOparam::WScontent::loadArticle::context_id=5A54EEB3-ADE8-4897-98C2-841ADDE94D64", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREMINDS", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "United Kingdom", + "", + "", + "C14E3C2A-68EC-4B8B-B4DA-E00E79BD3822", + "Flare NFT3", + "BFI Southbank, Screen NFT3", + "BFI Southbank, Screen NFT3", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ] + ] +} \ No newline at end of file diff --git a/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-hunky-jesus-flare26-2026-02-23 b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-hunky-jesus-flare26-2026-02-23 new file mode 100644 index 0000000..759fe2f --- /dev/null +++ b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-hunky-jesus-flare26-2026-02-23 @@ -0,0 +1,311 @@ +{ + "html": "\nBuy tickets for Hunky Jesus | BFI Flare: London LGBTQIA+ Film Festival 2026\n\n\n\n\n\n\n\n\n\n\n\n \n\n \n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n\n\n\t\n\t\n\t\n\t\n\t\n\t\n
\n
\n \n \n \n
\n\n\n
\n \n \n \n
\n
\n
\n\n \n Order for\n Customer\n\n
\n
\n
\n \n
\n \n
\n \n Your basket is empty\n \n
\n \n
\n\n \n
\n\n \n \n\n\n \n
\n
\n \n\n\n
\n
\n\n \n
\n
\n Order for\n Customer\n \n
\n
\n\n \n
\n
    \n \n
\n
\n
\n\n
\n
\"BFI \"BFI \n
\n\n
\n\n \n \n
\n\n
\n \n
\n\t
\n\t\t\n\n\t
\n
\n\n\n
\n
\n\n \n
\n\n\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n
    \n
  • \n Search films and events\n \n
  • \n
  • \n Search dates\n from\n
    \n
    \n
  • \n
  • \n to\n
    \n
    \n
  • \n
  • \n \n
  • \n
\n \n
\n
\n\n \n\n
\n\n \n \n\n
\n \n
\n
\n\n\n\n
\n

Opening Night Film

\n\n

Hunky Jesus

\n\n

Hail Marys! A front-row seat awaits at the annual Easter pageant to find San Francisco’s hottest holy figures, enshrining LGBTQIA+ rights to boot.

\n
\n\n\n

Screening dates and booking

\n\n
\n

Book your festival tickets a week early when you become a BFI Member.\n

\n
\n\n\n
\n
-Wednesday 18 March 2026 18:00
BFI Southbank, Screen NFT1
Hunky Jesus
-Wednesday 18 March 2026 20:30
BFI Southbank, Screen NFT1
Hunky Jesus
-Thursday 19 March 2026 12:50
BFI Southbank, Screen NFT1
Hunky Jesus
\n
\n\n\n
\n
\n
\n\n\n

Credits

\n\n
\n
    \n\t
  • \n\t

    Director-screenwriter

    \n\n\t

    Jennifer M. Kroot

    \n\t
  • \n\t
  • \n\t

    With

    \n\n\t

    George Takei, Sister Roma, Honey Mahogany, Sister Vish-Knew, Sister Bella Donna Summer

    \n\t
  • \n\t
  • \n\t

    USA 2026. 85min

    \n\t
  • \n\t
  • \n\t

    Courtesy of

    \n\n\t

    Tigerlily Pictures LLC

    \n\t
  • \n\t
  • \n\t

    Language

    \n\n\t

    English

    \n\t
  • \n
\n\n
\n

Access screenings

\n\n
\n

Wednesday 18 March 18:00\n
\nDescriptive Subtitles

\n\n

Wednesday 18 March 20:30\n
\nDescriptive Subtitles

\n\n

Thursday 19 March 12:50\n
\nDescriptive Subtitles

\n\n

Find out about booking tickets for access screenings\n

\n
\n
\n
\n\n\n

Introduction

\n\n
\n

Founded in 1979 to counter the rise of evangelical preachers in the world’s most famous queer pilgrimage city, The Sisters of Perpetual Indulgence remains a unique social justice movement. This riotous documentary shows the drag nuns battling at the coal face against a religious conservatism increasingly hell-bent on eroding human rights. It interweaves the 2023 annual free festival for the queer community, featuring reincarnations of The Cockettes and a variety of blasphemous cabaret for a cause, with chronicles of the Sisters’ history on the front line of the AIDS crisis, alongside some of their biggest direct actions, like 1987’s exorcism of Pope John Paul II. Anchored by some of their longest serving icons, including Sister Roma and founding member Grand Mother Vish-Knew – who are currently taking on Trump’s America – please kneel for these glorious freedom fighters and their crucial, sexy quest.

\n\n

Zorian Clayton

\n
\n\n\n

How to book

\n\n
\n

BFI Flare tickets start from £10, with concessions available for many screenings and discounts for BFI Members. Booking information and ticket prices.

\n\n

If you’re aged 16 to 25, sign up for free to BFI 25 and Under for a chance to get £6 tickets to all screenings and events (subject to availability).

\n\n
\n

Missed out?

\n\n

More tickets may become available for these screenings before and during the festival. Find out about extra ticket releases and standby queues.

\n
\n
\n\n\n
\n

Our programmers recommend...

\n\n
\n
\n
\n
\"\"\n
\n\n
\n

Divine Dissidence: A Sistory of the Sisters

\n\n

A bold, joyful celebration of the Sisters of Perpetual Indulgence and their fearless fusion of activism, art and radical compassion.

\n
\nRead more about Divine Dissidence: A Sistory of the Sisters\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Lady Champagne

\n\n

Enter the lewd, rude and completely silly world of erotic dancer Champagne Horowitz Jones Dickerson White, in this comedy from D’Arcy Drollinger.

\n
\nRead more about Lady Champagne\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Immodest Acts

\n\n

The sacred meets the profane in this collection of shorts that explore the intersections and, more often, the collisions of faith, identity, religion and queer desire.

\n
\nRead more about Immodest Acts\n\n
\n
\n
\n
\n
\n\n
\n \n
\n \n\n\n\n
\n
\n
 
\n
\n\n
\n\n \n
\n \n
\n \n
\n \n
\n
\n

Special Presentations

\n\n

Opening and Closing Night Films as well as Special Presentation.

\nFind out more\n
\n
\n\n
\n \n
\n
\n
\n

March 2026

\n
\n\n
\n
MON
\n\n
TUE
\n\n
WED
\n\n
THU
\n\n
FRI
\n\n
SAT
\n\n
SUN
\n\n
16
\n\n
17
\n18 19 20 21 22 23 24 25 26 27 28 29\n
\n
\n\n
\n \n
\n  \n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

BFI Membership

\n\n

Become a BFI Member from £39 to enjoy priority festival booking as well as other great benefits all year round.

\nJoin today\n
\n
\n\n
\n \n
\n \n
\n
\n

About the festival

\n\n

A quick guide to the festival.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

Screenings and events with access provision

\n\n

Making BFI Flare: London LGBTQIA+ Film Festival as welcoming, inclusive and accessible as possible for everyone.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

25 and Under

\n\n

£6 cinema tickets for 16 to 25 year olds.

\nSign up\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

2026 festival brochure

\n\n

Download our digital festival brochure (PDF) for the 2026 edition of the festival.

\nDownload brochure\n
\n
\n\n
\n \n
\n \n
\n
\n

Festival pass

\n\n

See 10 films for less.

\nFind out more\n
\n
\n\n
\n \n
\n
\n \n \n \n \n\n

\n Add a promo code

\n
    \n \n
  • \n \n
  • \n \n
  • \n
    \n \n \n \n \n
    \n
  • \n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n\n
\n
\n\n
\n
\n
\n
\n\n
\n
\n
\n

British Film Institute

\n\n

We are a cultural charity, a National Lottery funding distributor, and the UK’s lead organisation for film and the moving image.

\n\n\n\n\n
\n\n
\n

Supported by

\n\n
\n
\n
\"Funded\n
\n\n
\"Culture\n
\n\n
\"BFI\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n
\n
\n
©2025 British Film Institute. All rights reserved.
\n\n
Registered charity 287780
\n\n
Registered office 21 Stephen St, London W1T 1LN
\n
\n
\n
\n
\n\n
\n
\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n
\n ", + "searchResults": [ + [ + "DA239FAC-CEA9-498C-8050-609EDA3B7F85", + "P", + "BFI Flare Festival", + "LLGFF", + "hunk_e1_18Mar26", + "Hunky Jesus", + "Hunky Jesus", + "Wednesday 18 March 2026 18:00", + "18:00", + "18", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "L", + "70", + "George Takei, Sister Roma, Honey Mahogany, Sister Vish-Knew, Sister Bella Donna Summer,Galas and Special Presentations, Jennifer M. Kroot, USA,DS descriptive subtitles", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=1EA8D93D-71A7-4083-B375-A3C5E428081A&BOparam::WScontent::loadArticle::context_id=DA239FAC-CEA9-498C-8050-609EDA3B7F85", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREON", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "", + "", + "", + "C4B57E43-F123-4CE5-8A17-6CB9F0409CF5", + "Flare - NFT1", + "BFI Southbank, Screen NFT1", + "BFI Southbank, Screen NFT1", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£18.00", + "£18.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ], + [ + "F6517D01-392A-482C-B999-6B7BE27789D8", + "P", + "BFI Flare Festival", + "LLGFF", + "hunk_e2_18Mar26", + "Hunky Jesus", + "Hunky Jesus", + "Wednesday 18 March 2026 20:30", + "20:30", + "18", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "E", + "358", + "George Takei, Sister Roma, Honey Mahogany, Sister Vish-Knew, Sister Bella Donna Summer,Galas and Special Presentations, Jennifer M. Kroot, USA,DS descriptive subtitles", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=1EA8D93D-71A7-4083-B375-A3C5E428081A&BOparam::WScontent::loadArticle::context_id=F6517D01-392A-482C-B999-6B7BE27789D8", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREON", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "", + "", + "", + "C4B57E43-F123-4CE5-8A17-6CB9F0409CF5", + "Flare - NFT1", + "BFI Southbank, Screen NFT1", + "BFI Southbank, Screen NFT1", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£18.00", + "£18.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ], + [ + "3B45AECA-1C7B-4E29-8BCD-524DC138F642", + "P", + "BFI Flare Festival", + "LLGFF", + "hunk_ma_19Mar26", + "Hunky Jesus", + "Hunky Jesus", + "Thursday 19 March 2026 12:50", + "12:50", + "19", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "E", + "329", + "George Takei, Sister Roma, Honey Mahogany, Sister Vish-Knew, Sister Bella Donna Summer,Galas and Special Presentations, Jennifer M. Kroot, USA,DS descriptive subtitles", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=1EA8D93D-71A7-4083-B375-A3C5E428081A&BOparam::WScontent::loadArticle::context_id=3B45AECA-1C7B-4E29-8BCD-524DC138F642", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREON", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "", + "", + "", + "C4B57E43-F123-4CE5-8A17-6CB9F0409CF5", + "Flare - NFT1", + "BFI Southbank, Screen NFT1", + "BFI Southbank, Screen NFT1", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£10.00", + "£10.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ] + ] +} \ No newline at end of file diff --git a/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-i-am-going-to-miss-you-flare26-2026-02-23 b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-i-am-going-to-miss-you-flare26-2026-02-23 new file mode 100644 index 0000000..b2306fd --- /dev/null +++ b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-i-am-going-to-miss-you-flare26-2026-02-23 @@ -0,0 +1,209 @@ +{ + "html": "\nBuy tickets for I Am Going to Miss You | BFI Flare: London LGBTQIA+ Film Festival 2026\n\n\n\n\n\n\n\n\n\n\n\n \n\n \n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n\n\n\t\n\t\n\t\n\t\n\t\n\t\n
\n
\n \n \n \n
\n\n\n
\n \n \n \n
\n
\n
\n\n \n Order for\n Customer\n\n
\n
\n
\n \n
\n \n
\n \n Your basket is empty\n \n
\n \n
\n\n \n
\n\n \n \n\n\n \n
\n
\n \n\n\n
\n
\n\n \n
\n
\n Order for\n Customer\n \n
\n
\n\n \n
\n
    \n \n
\n
\n
\n\n
\n
\"BFI \"BFI \n
\n\n
\n\n \n \n
\n\n
\n \n
\n\t
\n\t\t\n\n\t
\n
\n\n\n
\n
\n\n \n
\n\n\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n
    \n
  • \n Search films and events\n \n
  • \n
  • \n Search dates\n from\n
    \n
    \n
  • \n
  • \n to\n
    \n
    \n
  • \n
  • \n \n
  • \n
\n \n
\n
\n\n \n\n
\n\n \n \n\n
\n \n
\n
\n
\n\n
\n\n\n
\n

I Am Going to Miss You

\n\n

Eu Vou Ter Saudades de Você

\n\n

A T4T couple move in together and are forced to face their differences in this indie romantic drama featuring an all-trans cast.

\n
\n\n\n

Screening dates and booking

\n\n
\n

Book your festival tickets a week early when you become a BFI Member.\n

\n
\n\n\n
\n
-Friday 27 March 2026 20:30
BFI Southbank, Screen NFT1
I Am Going to Miss You
-Saturday 28 March 2026 15:20
BFI Southbank, Screen NFT2
I Am Going to Miss You
\n
\n\n\n
\n
\n
\n\n\n

Credits

\n\n
\n
    \n\t
  • \n\t

    Director

    \n\n\t

    Daniel Ribeiro

    \n\t
  • \n\t
  • \n\t

    Screenwriters

    \n\n\t

    Alice Marcone, Daniel Ribeiro

    \n\t
  • \n\t
  • \n\t

    With

    \n\n\t

    Alice Marcone, Gabriel Lodi, Luca Scarpelli

    \n\t
  • \n\t
  • \n\t

    Brazil 2026. 87min

    \n\t
  • \n\t
  • \n\t

    Courtesy of

    \n\n\t

    Lacuna Filmes

    \n\t
  • \n\t
  • \n\t

    Language

    \n\n\t

    Portuguese

    \n\n\t

    With English subtitles

    \n\t
  • \n
\n
\n\n\n

Introduction

\n\n
\n

When a transgender couple move in together, differences quickly surface. One seeks stability while the other seeks something more, in this touching drama tale by Daniel Ribeiro.

\n\n

Jaye Hudson

\n\n

Content advice

\n\n

Contains scenes of sex.

\n
\n\n\n

Screening with

\n\n\n
\n

Three Times Mina

\n\n\n
\"\"\n
\n\n\n
\n
    \n\t
  • \n\t

    Director

    \n\n\t

    Nans Laborde-Jourdàa

    \n\t
  • \n\t
  • \n\t

    France 2025. 26min

    \n\t
  • \n\t
  • \n\t

    Languages

    \n\n\t

    French, Spanish

    \n\t
  • \n\t
  • \n\t

    With English subtitles

    \n\t
  • \n
\n
\n\n\n

Mina juggles lovers, performance art, queer clubs and gossip with her girls in this seductive indie character piece.

\n\n

Content advice

\n\n

Contains scenes of nudity.

\n\n

Contains flashing images.

\n
\n\n\n

How to book

\n\n
\n

BFI Flare tickets start from £10, with concessions available for many screenings and discounts for BFI Members. Booking information and ticket prices.

\n\n

If you’re aged 16 to 25, sign up for free to BFI 25 and Under for a chance to get £6 tickets to all screenings and events (subject to availability).

\n\n
\n

Missed out?

\n\n

More tickets may become available for these screenings before and during the festival. Find out about extra ticket releases and standby queues.

\n
\n
\n\n\n
\n

Our programmers recommend...

\n\n
\n
\n
\n
\"\"\n
\n\n
\n

She Got Claws!

\n\n

Trans Femmes fight back with curses, crime, cults and cunning monstrosity in this seductive selection of high-femme shorts. Dolls, its late-stage capitalism embrace your inner creature!

\n
\nRead more about She Got Claws!\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Death and Life Madalena

\n\n

Guto Parente’s dryly witty film sees a heavily pregnant woman take the reigns of a kitsch B-movie juggernaut, with startling results.

\n
\nRead more about Death and Life Madalena\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Keep Coming Back

\n\n

An 18-year-old Uruguayan navigates grief, financial struggles and uncontrollable hormones.

\n
\nRead more about Keep Coming Back\n\n
\n
\n
\n
\n
\n\n
\n \n
\n \n\n\n\n
\n
\n
 
\n
\n\n
\n\n \n
\n \n
\n \n
\n \n
\n
\n

Hearts

\n\n

Films about love, romance and friendship.

\nFind out more\n
\n
\n\n
\n \n
\n
\n
\n

March 2026

\n
\n\n
\n
MON
\n\n
TUE
\n\n
WED
\n\n
THU
\n\n
FRI
\n\n
SAT
\n\n
SUN
\n\n
16
\n\n
17
\n18 19 20 21 22 23 24 25 26 27 28 29\n
\n
\n\n
\n \n
\n  \n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

BFI Membership

\n\n

Become a BFI Member from £39 to enjoy priority festival booking as well as other great benefits all year round.

\nJoin today\n
\n
\n\n
\n \n
\n \n
\n
\n

About the festival

\n\n

A quick guide to the festival.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

Screenings and events with access provision

\n\n

Making BFI Flare: London LGBTQIA+ Film Festival as welcoming, inclusive and accessible as possible for everyone.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

25 and Under

\n\n

£6 cinema tickets for 16 to 25 year olds.

\nSign up\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

2026 festival brochure

\n\n

Download our digital festival brochure (PDF) for the 2026 edition of the festival.

\nDownload brochure\n
\n
\n\n
\n \n
\n \n
\n
\n

Festival pass

\n\n

See 10 films for less.

\nFind out more\n
\n
\n\n
\n \n
\n
\n \n \n \n \n\n

\n Add a promo code

\n
    \n \n
  • \n \n
  • \n \n
  • \n
    \n \n \n \n \n
    \n
  • \n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n\n
\n
\n\n
\n
\n
\n
\n\n
\n
\n
\n

British Film Institute

\n\n

We are a cultural charity, a National Lottery funding distributor, and the UK’s lead organisation for film and the moving image.

\n\n\n\n\n
\n\n
\n

Supported by

\n\n
\n
\n
\"Funded\n
\n\n
\"Culture\n
\n\n
\"BFI\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n
\n
\n
©2025 British Film Institute. All rights reserved.
\n\n
Registered charity 287780
\n\n
Registered office 21 Stephen St, London W1T 1LN
\n
\n
\n
\n
\n\n
\n
\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n
\n ", + "searchResults": [ + [ + "ADB2BCA1-12A0-49FE-8DF5-5330323A56E5", + "P", + "BFI Flare Festival", + "LLGFF", + "iamg_27Mar26", + "I Am Going to Miss You", + "I Am Going to Miss You", + "Friday 27 March 2026 20:30", + "20:30", + "27", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "E", + "335", + "Three Times Mina, Nans Laborde-Jourdàa, France,Subtitles,Hearts, Jaye Hudson, Brazil,Alice Marcone, Gabriel Lodi, Luca Scarpelli", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=2CDD28BC-F19A-4C42-A0F8-7AAB62F3CD88&BOparam::WScontent::loadArticle::context_id=ADB2BCA1-12A0-49FE-8DF5-5330323A56E5", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREHEARTS", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "", + "", + "", + "C4B57E43-F123-4CE5-8A17-6CB9F0409CF5", + "Flare - NFT1", + "BFI Southbank, Screen NFT1", + "BFI Southbank, Screen NFT1", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ], + [ + "EC886C7F-E8D2-437F-969A-0B6131AC272B", + "P", + "BFI Flare Festival", + "LLGFF", + "iamg_28Mar26", + "I Am Going to Miss You", + "I Am Going to Miss You", + "Saturday 28 March 2026 15:20", + "15:20", + "28", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "G", + "67", + "Alice Marcone, Gabriel Lodi, Luca Scarpelli,Hearts, Jaye Hudson, Brazil,Three Times Mina, Nans Laborde-Jourdàa, France,Subtitles", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=2CDD28BC-F19A-4C42-A0F8-7AAB62F3CD88&BOparam::WScontent::loadArticle::context_id=EC886C7F-E8D2-437F-969A-0B6131AC272B", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREHEARTS", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "", + "", + "", + "527ADADE-4BF3-4A03-BADB-12000B5C7BD6", + "Flare NFT2", + "BFI Southbank, Screen NFT2", + "BFI Southbank, Screen NFT2", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ] + ] +} \ No newline at end of file diff --git a/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-i-am-my-own-woman-flare26-2026-02-23 b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-i-am-my-own-woman-flare26-2026-02-23 new file mode 100644 index 0000000..68e00db --- /dev/null +++ b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-i-am-my-own-woman-flare26-2026-02-23 @@ -0,0 +1,107 @@ +{ + "html": "\nBuy tickets for I Am My Own Woman | BFI Flare: London LGBTQIA+ Film Festival 2026\n\n\n\n\n\n\n\n\n\n\n\n \n\n \n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n\n\n\t\n\t\n\t\n\t\n\t\n\t\n
\n
\n \n \n \n
\n\n\n
\n \n \n \n
\n
\n
\n\n \n Order for\n Customer\n\n
\n
\n
\n \n
\n \n
\n \n Your basket is empty\n \n
\n \n
\n\n \n
\n\n \n \n\n\n \n
\n
\n \n\n\n
\n
\n\n \n
\n
\n Order for\n Customer\n \n
\n
\n\n \n
\n
    \n \n
\n
\n
\n\n
\n
\"BFI \"BFI \n
\n\n
\n\n \n \n
\n\n
\n \n
\n\t
\n\t\t\n\n\t
\n
\n\n\n
\n
\n\n \n
\n\n\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n
    \n
  • \n Search films and events\n \n
  • \n
  • \n Search dates\n from\n
    \n
    \n
  • \n
  • \n to\n
    \n
    \n
  • \n
  • \n \n
  • \n
\n \n
\n
\n\n \n\n
\n\n \n \n\n
\n \n
\n
\n
\n\n
\n\n\n
\n

I Am My Own Woman

\n\n

Ich bin meine eigene Frau

\n\n

German trans icon Charlotte Von Mahlsdorf tells her own, semi-fictional story in this 1993 doc-drama classic.

\n
\n\n\n

Screening dates and booking

\n\n
\n

Book your festival tickets a week early when you become a BFI Member.\n

\n
\n\n\n
\n
-Friday 27 March 2026 16:00
BFI Southbank, Screen NFT3
I Am My Own Woman
\n
\n\n\n
\"\"\n
\n\n\n

Credits

\n\n
\n
    \n\t
  • \n\t

    Director

    \n\n\t

    Rosa von Praunheim

    \n\t
  • \n\t
  • \n\t

    Screenwriters

    \n\n\t

    Valentin Passoni, Charlotte von Mahlsdorf, Rosa von Praunheim

    \n\t
  • \n\t
  • \n\t

    With

    \n\n\t

    Charlotte von Mahlsdorf

    \n\t
  • \n\t
  • \n\t

    Germany 1992. 91min

    \n\t
  • \n\t
  • \n\t

    Courtesy of

    \n\n\t

    missingFILMs

    \n\t
  • \n\t
  • \n\t

    Language

    \n\n\t

    German

    \n\n\t

    With English subtitles

    \n\t
  • \n
\n
\n\n\n

Introduction

\n\n
\n

Praunheim blends interviews and dramatised sequences to chart Von Mahlsdorf’s story of survival: fictionally killing her Nazi father, becoming a DJ and furniture fanatic. The film was the first trans feature to close the Festival in 1993. This screening is a tribute to Praunheim and Von Mahlsdorf, and to the legacy of trans lives on screen and on the streets.

\n\n

Jaye Hudson

\n\n

Content advice

\n\n

Contains scenes of transphobia and transphobic violence.

\n
\n\n\n

How to book

\n\n
\n

BFI Flare tickets start from £10, with concessions available for many screenings and discounts for BFI Members. Booking information and ticket prices.

\n\n

If you’re aged 16 to 25, sign up for free to BFI 25 and Under for a chance to get £6 tickets to all screenings and events (subject to availability).

\n\n
\n

Missed out?

\n\n

More tickets may become available for these screenings before and during the festival. Find out about extra ticket releases and standby queues.

\n
\n
\n\n\n
\n

Our programmers recommend...

\n\n
\n
\n
\n
\"\"\n
\n\n
\n

Pink Narcissus

\n\n

This landmark experimental queer art film, presenting the erotically charged dreamscape of a young hustler, is a celebration of the male body.

\n
\nRead more about Pink Narcissus\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Westler

\n\n

Originally screened as part of the first Gays’ Own Pictures in 1986, Westler is a striking depiction of a gay relationship during the Cold War.

\n
\nRead more about Westler\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

She Got Claws!

\n\n

Trans Femmes fight back with curses, crime, cults and cunning monstrosity in this seductive selection of high-femme shorts. Dolls, its late-stage capitalism embrace your inner creature!

\n
\nRead more about She Got Claws!\n\n
\n
\n
\n
\n
\n\n
\n \n
\n \n\n\n\n
\n
\n
 
\n
\n\n
\n\n \n
\n \n
\n \n
\n \n
\n
\n

Treasures

\n\n

Queer classics from across the decades.

\nFind out more\n
\n
\n\n
\n \n
\n
\n
\n

March 2026

\n
\n\n
\n
MON
\n\n
TUE
\n\n
WED
\n\n
THU
\n\n
FRI
\n\n
SAT
\n\n
SUN
\n\n
16
\n\n
17
\n18 19 20 21 22 23 24 25 26 27 28 29\n
\n
\n\n
\n \n
\n  \n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

BFI Membership

\n\n

Become a BFI Member from £39 to enjoy priority festival booking as well as other great benefits all year round.

\nJoin today\n
\n
\n\n
\n \n
\n \n
\n
\n

About the festival

\n\n

A quick guide to the festival.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

Screenings and events with access provision

\n\n

Making BFI Flare: London LGBTQIA+ Film Festival as welcoming, inclusive and accessible as possible for everyone.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

25 and Under

\n\n

£6 cinema tickets for 16 to 25 year olds.

\nSign up\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

2026 festival brochure

\n\n

Download our digital festival brochure (PDF) for the 2026 edition of the festival.

\nDownload brochure\n
\n
\n\n
\n \n
\n \n
\n
\n

Festival pass

\n\n

See 10 films for less.

\nFind out more\n
\n
\n\n
\n \n
\n
\n \n \n \n \n\n

\n Add a promo code

\n
    \n \n
  • \n \n
  • \n \n
  • \n
    \n \n \n \n \n
    \n
  • \n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n\n
\n
\n\n
\n
\n
\n
\n\n
\n
\n
\n

British Film Institute

\n\n

We are a cultural charity, a National Lottery funding distributor, and the UK’s lead organisation for film and the moving image.

\n\n\n\n\n
\n\n
\n

Supported by

\n\n
\n
\n
\"Funded\n
\n\n
\"Culture\n
\n\n
\"BFI\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n
\n
\n
©2025 British Film Institute. All rights reserved.
\n\n
Registered charity 287780
\n\n
Registered office 21 Stephen St, London W1T 1LN
\n
\n
\n
\n
\n\n
\n
\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n
\n ", + "searchResults": [ + [ + "6CF1B7D7-6FB7-4ED1-9560-CBE970A062D4", + "P", + "BFI Flare Festival", + "LLGFF", + "iamm_27Mar26", + "I Am My Own Woman", + "I Am My Own Woman", + "Friday 27 March 2026 16:00", + "16:00", + "27", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "G", + "65", + "Charlotte von Mahlsdorf,Treasures, Rosa von Praunheim, Germany,Subtitles", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=241B8CBB-F053-41D4-BF92-776B357F2014&BOparam::WScontent::loadArticle::context_id=6CF1B7D7-6FB7-4ED1-9560-CBE970A062D4", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLARETREASURES", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "United Kingdom", + "", + "", + "C14E3C2A-68EC-4B8B-B4DA-E00E79BD3822", + "Flare NFT3", + "BFI Southbank, Screen NFT3", + "BFI Southbank, Screen NFT3", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£10.00", + "£10.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ] + ] +} \ No newline at end of file diff --git a/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-ife-the-sequel-flare26-2026-02-23 b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-ife-the-sequel-flare26-2026-02-23 new file mode 100644 index 0000000..1ab2431 --- /dev/null +++ b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-ife-the-sequel-flare26-2026-02-23 @@ -0,0 +1,209 @@ +{ + "html": "\nBuy tickets for ìfé: (The Sequel) | BFI Flare: London LGBTQIA+ Film Festival 2026\n\n\n\n\n\n\n\n\n\n\n\n \n\n \n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n\n\n\t\n\t\n\t\n\t\n\t\n\t\n
\n
\n \n \n \n
\n\n\n
\n \n \n \n
\n
\n
\n\n \n Order for\n Customer\n\n
\n
\n
\n \n
\n \n
\n \n Your basket is empty\n \n
\n \n
\n\n \n
\n\n \n \n\n\n \n
\n
\n \n\n\n
\n
\n\n \n
\n
\n Order for\n Customer\n \n
\n
\n\n \n
\n
    \n \n
\n
\n
\n\n
\n
\"BFI \"BFI \n
\n\n
\n\n \n \n
\n\n
\n \n
\n\t
\n\t\t\n\n\t
\n
\n\n\n
\n
\n\n \n
\n\n\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n
    \n
  • \n Search films and events\n \n
  • \n
  • \n Search dates\n from\n
    \n
    \n
  • \n
  • \n to\n
    \n
    \n
  • \n
  • \n \n
  • \n
\n \n
\n
\n\n \n\n
\n\n \n \n\n
\n \n
\n
\n
\n\n
\n\n\n
\n

ìfé: (The Sequel)

\n\n

The highly anticipated sequel to Nigeria’s first lesbian film reunites former lovers ífé and Adaora years after their separation.

\n
\n\n\n

Screening dates and booking

\n\n
\n

Book your festival tickets a week early when you become a BFI Member.\n

\n
\n\n\n
\n
-Monday 23 March 2026 20:40
BFI Southbank, Screen NFT2
ife: (The Sequel)
-Tuesday 24 March 2026 15:00
BFI Southbank, Screen NFT1
ife: (The Sequel)
\n
\n\n\n
\n
\n
\n\n\n

Credits

\n\n
\n
    \n\t
  • \n\t

    Director

    \n\n\t

    Pamela Adie

    \n\t
  • \n\t
  • \n\t

    Screenwriter

    \n\n\t

    Uyaiedu Ikpe-Etim

    \n\t
  • \n\t
  • \n\t

    With

    \n\n\t

    Uzoamaka (Power) Aniunoh, Gbubemi Ejeye, Ozzy Agu

    \n\t
  • \n\t
  • \n\t

    Nigeria 2026. 117min

    \n\t
  • \n\t
  • \n\t

    Courtesy of

    \n\n\t

    The Equality Hub

    \n\t
  • \n\t
  • \n\t

    Language

    \n\n\t

    English

    \n\t
  • \n
\n\n
\n

Access screenings

\n\n
\n

Monday 23 March 20:40\n
\nClosed Captions (CC) via WatchWord smart glasses

\n\n

Tuesday 24 March 15:00\n
\nDescriptive Subtitles

\n\n

Find out about booking tickets for access screenings\n

\n
\n
\n
\n\n\n

Introduction

\n\n
\n

Pamela Adie’s film catches up with Adaora and ífé after both have moved on. Adaora settled into comfortable domesticity with her husband, while ífé found love in South Africa. But when they unexpectedly cross paths at a Lagos bookstore, old flames ignite, threatening to upend everything they’ve built.

\n\n

Wema Mumma

\n\n

Content advice

\n\n

Contains scenes of domestic violence or abuse.

\n\n

Contains homophobic attitudes and language.

\n
\n\n\n

How to book

\n\n
\n

BFI Flare tickets start from £10, with concessions available for many screenings and discounts for BFI Members. Booking information and ticket prices.

\n\n

If you’re aged 16 to 25, sign up for free to BFI 25 and Under for a chance to get £6 tickets to all screenings and events (subject to availability).

\n\n
\n

Missed out?

\n\n

More tickets may become available for these screenings before and during the festival. Find out about extra ticket releases and standby queues.

\n
\n
\n\n\n
\n

Our programmers recommend...

\n\n
\n
\n
\n
\"\"\n
\n\n
\n

Black Burns Fast

\n\n

In Sandulela Asanda’s warm-hearted directorial debut, the arrival of new girl at nerdy Luthando’s prestigious South African boarding school prompts her sexual awakening.

\n
\nRead more about Black Burns Fast\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

(When the Rainbow Is Enuf)

\n\n

A joyful twist on Ntozake Shange’s 1976 play, this programme celebrates queer Black girlhood across the spectrum: playful, romantic, chaotic and unapologetically free.

\n
\nRead more about (When the Rainbow Is Enuf)\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Woubi Chéri

\n\n

Africa’s first transgender film made a splash in the 1990s, collecting Best Documentary awards at festivals around the world.

\n
\nRead more about Woubi Chéri\n\n
\n
\n
\n
\n
\n\n
\n \n
\n \n\n\n\n
\n
\n
 
\n
\n\n
\n\n \n
\n \n
\n \n
\n \n
\n
\n

Hearts

\n\n

Films about love, romance and friendship.

\nFind out more\n
\n
\n\n
\n \n
\n
\n
\n

March 2026

\n
\n\n
\n
MON
\n\n
TUE
\n\n
WED
\n\n
THU
\n\n
FRI
\n\n
SAT
\n\n
SUN
\n\n
16
\n\n
17
\n18 19 20 21 22 23 24 25 26 27 28 29\n
\n
\n\n
\n \n
\n  \n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

BFI Membership

\n\n

Become a BFI Member from £39 to enjoy priority festival booking as well as other great benefits all year round.

\nJoin today\n
\n
\n\n
\n \n
\n \n
\n
\n

About the festival

\n\n

A quick guide to the festival.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

Screenings and events with access provision

\n\n

Making BFI Flare: London LGBTQIA+ Film Festival as welcoming, inclusive and accessible as possible for everyone.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

25 and Under

\n\n

£6 cinema tickets for 16 to 25 year olds.

\nSign up\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

2026 festival brochure

\n\n

Download our digital festival brochure (PDF) for the 2026 edition of the festival.

\nDownload brochure\n
\n
\n\n
\n \n
\n \n
\n
\n

Festival pass

\n\n

See 10 films for less.

\nFind out more\n
\n
\n\n
\n \n
\n
\n \n \n \n \n\n

\n Add a promo code

\n
    \n \n
  • \n \n
  • \n \n
  • \n
    \n \n \n \n \n
    \n
  • \n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n\n
\n
\n\n
\n
\n
\n
\n\n
\n
\n
\n

British Film Institute

\n\n

We are a cultural charity, a National Lottery funding distributor, and the UK’s lead organisation for film and the moving image.

\n\n\n\n\n
\n\n
\n

Supported by

\n\n
\n
\n
\"Funded\n
\n\n
\"Culture\n
\n\n
\"BFI\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n
\n
\n
©2025 British Film Institute. All rights reserved.
\n\n
Registered charity 287780
\n\n
Registered office 21 Stephen St, London W1T 1LN
\n
\n
\n
\n
\n\n
\n
\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n
\n ", + "searchResults": [ + [ + "9B57D2CB-6B1E-4F05-8550-6B01C8E325E9", + "P", + "BFI Flare Festival", + "LLGFF", + "ife_23Mar26", + "ife: (The Sequel)", + "ife: (The Sequel)", + "Monday 23 March 2026 20:40", + "20:40", + "23", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "G", + "70", + "Hearts, Pamela Adie, Nigeria,Uzoamaka (Power) Aniunoh, Gbubemi Ejeye, Ozzy Agu,Closed Captions (CC)", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=092D0200-35BA-4CEE-B528-0600A560BDA0&BOparam::WScontent::loadArticle::context_id=9B57D2CB-6B1E-4F05-8550-6B01C8E325E9", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREHEARTS", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "", + "", + "", + "527ADADE-4BF3-4A03-BADB-12000B5C7BD6", + "Flare NFT2", + "BFI Southbank, Screen NFT2", + "BFI Southbank, Screen NFT2", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ], + [ + "2B5D0A74-CDB6-4052-8975-A11B014935A2", + "P", + "BFI Flare Festival", + "LLGFF", + "ife_24Mar26", + "ife: (The Sequel)", + "ife: (The Sequel)", + "Tuesday 24 March 2026 15:00", + "15:00", + "24", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "E", + "334", + "Hearts, Pamela Adie, Nigeria,Uzoamaka (Power) Aniunoh, Gbubemi Ejeye, Ozzy Agu,DS descriptive subtitles", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=092D0200-35BA-4CEE-B528-0600A560BDA0&BOparam::WScontent::loadArticle::context_id=2B5D0A74-CDB6-4052-8975-A11B014935A2", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREHEARTS", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "", + "", + "", + "C4B57E43-F123-4CE5-8A17-6CB9F0409CF5", + "Flare - NFT1", + "BFI Southbank, Screen NFT1", + "BFI Southbank, Screen NFT1", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£10.00", + "£10.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ] + ] +} \ No newline at end of file diff --git a/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-immodest-acts-flare26-2026-02-23 b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-immodest-acts-flare26-2026-02-23 new file mode 100644 index 0000000..d613323 --- /dev/null +++ b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-immodest-acts-flare26-2026-02-23 @@ -0,0 +1,209 @@ +{ + "html": "\nBuy tickets for Immodest Acts | BFI Flare: London LGBTQIA+ Film Festival 2026\n\n\n\n\n\n\n\n\n\n\n\n \n\n \n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n\n\n\t\n\t\n\t\n\t\n\t\n\t\n
\n
\n \n \n \n
\n\n\n
\n \n \n \n
\n
\n
\n\n \n Order for\n Customer\n\n
\n
\n
\n \n
\n \n
\n \n Your basket is empty\n \n
\n \n
\n\n \n
\n\n \n \n\n\n \n
\n
\n \n\n\n
\n
\n\n \n
\n
\n Order for\n Customer\n \n
\n
\n\n \n
\n
    \n \n
\n
\n
\n\n
\n
\"BFI \"BFI \n
\n\n
\n\n \n \n
\n\n
\n \n
\n\t
\n\t\t\n\n\t
\n
\n\n\n
\n
\n\n \n
\n\n\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n
    \n
  • \n Search films and events\n \n
  • \n
  • \n Search dates\n from\n
    \n
    \n
  • \n
  • \n to\n
    \n
    \n
  • \n
  • \n \n
  • \n
\n \n
\n
\n\n \n\n
\n\n \n \n\n
\n \n
\n
\n
\n\n
\n\n\n
\n

Immodest Acts

\n\n

The sacred meets the profane in this collection of shorts that explore the intersections and, more often, the collisions of faith, identity, religion and queer desire.

\n
\n\n\n

Screening dates and booking

\n\n
\n

Book your festival tickets a week early when you become a BFI Member.\n

\n
\n\n\n
\n
-Sunday 22 March 2026 16:00
BFI Southbank, Screen NFT2
Immodest Acts
-Friday 27 March 2026 21:00
BFI Southbank, Screen NFT3
Immodest Acts
\n
\n\n\n

Credits

\n\n
\n
    \n\t
  • \n\t

    Total running time

    \n\n\t

    86min

    \n\t
  • \n\t
  • \n\t

    Programmed by

    \n\n\t

    Diana Cipriano

    \n\t
  • \n\t
  • \n\t

    Content advice

    \n\n\t

    This short film programme contains flashing images, and homophobic attitudes and language.

    \n\t
  • \n
\n
\n\n\n
\n

Sunday Lunch

\n\n\n
\"\"\n
\n\n\n
\n
    \n\t
  • \n\t

    Director

    \n\n\t

    Lyndon Henley Hanrahan

    \n\t
  • \n\t
  • \n\t

    UK 2025. 14min

    \n\t
  • \n\t
  • \n\t

    Language

    \n\n\t

    English

    \n\t
  • \n
\n
\n\n\n
\n

When Grace brings her girlfriend for lunch with her Catholic family, she’ll find herself hilariously tiptoeing around a minefield of family dynamics.

\n
\n
\n\n\n
\n

Nest

\n\n\n
\"\"\n
\n\n\n
\n
    \n\t
  • \n\t

    Director

    \n\n\t

    Stefania Burla

    \n\t
  • \n\t
  • \n\t

    Switzerland 2025. 20min

    \n\t
  • \n\t
  • \n\t

    Languages

    \n\n\t

    Swiss, German
    \n\tWith English subtitles

    \n\t
  • \n
\n
\n\n\n
\n

On the night before a religious procession, an introverted 15-year-old has an illuminating, life-changing encounter with another girl.

\n
\n
\n\n\n
\n

Nice Jewish Girl

\n\n\n
\"\"\n
\n\n\n
\n
    \n\t
  • \n\t

    Director

    \n\n\t

    Carly Brand

    \n\t
  • \n\t
  • \n\t

    Australia 2025. 10min

    \n\t
  • \n\t
  • \n\t

    Language

    \n\n\t

    English

    \n\t
  • \n
\n
\n\n\n
\n

Tali thought she liked boys. But when unexpected feelings start bubbling up at religious camp, she begins to question everything.

\n
\n
\n\n\n
\n

Saints

\n\n

Sante

\n\n\n
\"\"\n
\n\n\n
\n
    \n\t
  • \n\t

    Director

    \n\n\t

    Valeria Gaudieri

    \n\t
  • \n\t
  • \n\t

    Italy 2025. 19min

    \n\t
  • \n\t
  • \n\t

    Language

    \n\n\t

    Italian
    \n\tWith English subtitles

    \n\t
  • \n
\n
\n\n\n
\n

Altar girl Bianca, who is due to play a Saint in a festivity, has an existential crisis after sharing a kiss with a girl – her desire a stark contrast to her devotion.

\n
\n
\n\n\n
\n

Spiders On My Lashline

\n\n\n
\"\"\n
\n\n\n
\n
    \n\t
  • \n\t

    Director

    \n\n\t

    Grace Tan

    \n\t
  • \n\t
  • \n\t

    Australia 2026. 8min

    \n\t
  • \n\t
  • \n\t

    Language

    \n\n\t

    English

    \n\t
  • \n\t
  • \n\t

    Content advice

    \n\n\t

    Contains homophobic attitudes and language.
    \n\tContains flashing images.

    \n\t
  • \n
\n
\n\n\n
\n

After being attacked, genderqueer pole dancer Ash seeks refuge in a church. Flooded by core memories of childhood, they will regain their strength.

\n
\n
\n\n\n
\n

Tumtum

\n\n\n
\"\"\n
\n\n\n
\n
    \n\t
  • \n\t

    Director

    \n\n\t

    Rebecca Ozer

    \n\t
  • \n\t
  • \n\t

    UK 2025. 15min

    \n\t
  • \n\t
  • \n\t

    Language

    \n\n\t

    English

    \n\t
  • \n\t
  • \n\t

    Content advice

    \n\n\t

    Contains flashing images.

    \n\t
  • \n
\n
\n\n\n
\n

Alex, non-binary and Jewish, struggles with desire and living out their identity after meeting a fiery, cute girl on Yom Kippur – the holiest day of the year.

\n
\n
\n\n\n

How to book

\n\n
\n

BFI Flare tickets start from £10, with concessions available for many screenings and discounts for BFI Members. Booking information and ticket prices.

\n\n

If you’re aged 16 to 25, sign up for free to BFI 25 and Under for a chance to get £6 tickets to all screenings and events (subject to availability).

\n\n
\n

Missed out?

\n\n

More tickets may become available for these screenings before and during the festival. Find out about extra ticket releases and standby queues.

\n
\n
\n\n\n
\n

Our programmers recommend...

\n\n
\n
\n
\n
\"\"\n
\n\n
\n

Hunky Jesus

\n\n

Hail Marys! A front-row seat awaits at the annual Easter pageant to find San Francisco’s hottest holy figures, enshrining LGBTQIA+ rights to boot.

\n
\nRead more about Hunky Jesus\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Impure Nuns

\n\n

This transgressive 1950s treasure, previously unseen outside of Japan, chronicles an affair between two nuns at a boarding school.

\n
\nRead more about Impure Nuns\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Little Trouble Girls

\n\n

A Slovenian catholic girl navigates the exhilaration and confusion of first desire in this sensorial, sensitive and sublime coming-of-age feature debut.

\n
\nRead more about Little Trouble Girls\n\n
\n
\n
\n
\n
\n\n
\n \n
\n \n\n\n\n
\n
\n
 
\n
\n\n
\n\n \n
\n \n
\n \n
\n \n
\n
\n

Shorts

\n\n

Small but perfectly formed.

\nFind out more\n
\n
\n\n
\n \n
\n
\n
\n

March 2026

\n
\n\n
\n
MON
\n\n
TUE
\n\n
WED
\n\n
THU
\n\n
FRI
\n\n
SAT
\n\n
SUN
\n\n
16
\n\n
17
\n18 19 20 21 22 23 24 25 26 27 28 29\n
\n
\n\n
\n \n
\n  \n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

BFI Membership

\n\n

Become a BFI Member from £39 to enjoy priority festival booking as well as other great benefits all year round.

\nJoin today\n
\n
\n\n
\n \n
\n \n
\n
\n

About the festival

\n\n

A quick guide to the festival.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

Screenings and events with access provision

\n\n

Making BFI Flare: London LGBTQIA+ Film Festival as welcoming, inclusive and accessible as possible for everyone.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

25 and Under

\n\n

£6 cinema tickets for 16 to 25 year olds.

\nSign up\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

2026 festival brochure

\n\n

Download our digital festival brochure (PDF) for the 2026 edition of the festival.

\nDownload brochure\n
\n
\n\n
\n \n
\n \n
\n
\n

Festival pass

\n\n

See 10 films for less.

\nFind out more\n
\n
\n\n
\n \n
\n
\n \n \n \n \n\n

\n Add a promo code

\n
    \n \n
  • \n \n
  • \n \n
  • \n
    \n \n \n \n \n
    \n
  • \n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n\n
\n
\n\n
\n
\n
\n
\n\n
\n
\n
\n

British Film Institute

\n\n

We are a cultural charity, a National Lottery funding distributor, and the UK’s lead organisation for film and the moving image.

\n\n\n\n\n
\n\n
\n

Supported by

\n\n
\n
\n
\"Funded\n
\n\n
\"Culture\n
\n\n
\"BFI\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n
\n
\n
©2025 British Film Institute. All rights reserved.
\n\n
Registered charity 287780
\n\n
Registered office 21 Stephen St, London W1T 1LN
\n
\n
\n
\n
\n\n
\n
\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n
\n ", + "searchResults": [ + [ + "71A71647-8F83-4ACB-9218-9C83DB65D5DC", + "P", + "BFI Flare Festival", + "LLGFF", + "immod_22Mar26", + "Immodest Acts", + "Immodest Acts", + "Sunday 22 March 2026 16:00", + "16:00", + "22", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "G", + "41", + "Minds, Grace Tan, Australia,Minds, Stefania Burla, Switzerland,Sunday Lunch, Nest,Minds, Valeria Gaudieri, Italy,Spiders On My Lashline, Tumtum,Minds, Carly Brand, Australia,Nice Jewish Girl, Saints,Minds, Lyndon Henley Hanrahan, UK,Minds, Rebecca Ozer, UK", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=C7889F8B-21CE-4943-9B83-663505250242&BOparam::WScontent::loadArticle::context_id=71A71647-8F83-4ACB-9218-9C83DB65D5DC", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREMINDS", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "", + "", + "", + "527ADADE-4BF3-4A03-BADB-12000B5C7BD6", + "Flare NFT2", + "BFI Southbank, Screen NFT2", + "BFI Southbank, Screen NFT2", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ], + [ + "26EE128C-F7AF-44C8-9E2D-4491F930A86C", + "P", + "BFI Flare Festival", + "LLGFF", + "immod_27Mar26", + "Immodest Acts", + "Immodest Acts", + "Friday 27 March 2026 21:00", + "21:00", + "27", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "G", + "62", + "Minds, Valeria Gaudieri, Italy,Nest, Sunday Lunch,Minds, Rebecca Ozer, UK,Minds, Grace Tan, Australia,Tumtum, Spiders On My Lashline,Saints, Nice Jewish Girl,Minds, Lyndon Henley Hanrahan, UK,Minds, Carly Brand, Australia,Minds, Stefania Burla, Switzerland", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=C7889F8B-21CE-4943-9B83-663505250242&BOparam::WScontent::loadArticle::context_id=26EE128C-F7AF-44C8-9E2D-4491F930A86C", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREMINDS", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "United Kingdom", + "", + "", + "C14E3C2A-68EC-4B8B-B4DA-E00E79BD3822", + "Flare NFT3", + "BFI Southbank, Screen NFT3", + "BFI Southbank, Screen NFT3", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ] + ] +} \ No newline at end of file diff --git a/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-impure-nuns-flare26-2026-02-23 b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-impure-nuns-flare26-2026-02-23 new file mode 100644 index 0000000..a9db960 --- /dev/null +++ b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-impure-nuns-flare26-2026-02-23 @@ -0,0 +1,107 @@ +{ + "html": "\nBuy tickets for Impure Nuns | BFI Flare: London LGBTQIA+ Film Festival 2026\n\n\n\n\n\n\n\n\n\n\n\n \n\n \n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n\n\n\t\n\t\n\t\n\t\n\t\n\t\n
\n
\n \n \n \n
\n\n\n
\n \n \n \n
\n
\n
\n\n \n Order for\n Customer\n\n
\n
\n
\n \n
\n \n
\n \n Your basket is empty\n \n
\n \n
\n\n \n
\n\n \n \n\n\n \n
\n
\n \n\n\n
\n
\n\n \n
\n
\n Order for\n Customer\n \n
\n
\n\n \n
\n
    \n \n
\n
\n
\n\n
\n
\"BFI \"BFI \n
\n\n
\n\n \n \n
\n\n
\n \n
\n\t
\n\t\t\n\n\t
\n
\n\n\n
\n
\n\n \n
\n\n\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n
    \n
  • \n Search films and events\n \n
  • \n
  • \n Search dates\n from\n
    \n
    \n
  • \n
  • \n to\n
    \n
    \n
  • \n
  • \n \n
  • \n
\n \n
\n
\n\n \n\n
\n\n \n \n\n
\n \n
\n
\n
\n\n
\n\n\n
\n

Impure Nuns

\n\n

Kegareta Nikutai Seijo

\n\n

This transgressive 1950s treasure, previously unseen outside of Japan, chronicles an affair between two nuns at a boarding school.

\n
\n\n\n

Screening dates and booking

\n\n
\n

Book your festival tickets a week early when you become a BFI Member.\n

\n
\n\n\n
\n
-Sunday 22 March 2026 11:00
BFI Southbank, Screen NFT1
Impure Nuns
\n
\n\n\n
\"\"\n
\n\n\n

Credits

\n\n
\n
    \n\t
  • \n\t

    Director

    \n\n\t

    Michiyoshi Doi

    \n\t
  • \n\t
  • \n\t

    Screenwriter

    \n\n\t

    Akira Sugimoto

    \n\t
  • \n\t
  • \n\t

    With

    \n\n\t

    Miyuki Takakura, Mayumi Ôzora, Minoru Takada

    \n\t
  • \n\t
  • \n\t

    Japan 1958. 77min

    \n\t
  • \n\t
  • \n\t

    Courtesy of

    \n\n\t

    Kokusai Hoei Co., Ltd

    \n\t
  • \n\t
  • \n\t

    Language

    \n\n\t

    Japanese

    \n\n\t

    With English subtitles

    \n\t
  • \n
\n
\n\n\n

Introduction

\n\n
\n

Three years after she was forcibly enrolled in a religious school, Eri’s world is enlivened by the presence of new student Anna. The two share a deep connection and soon act on their feelings. However, their love sparks jealousy, enmeshing them in a heated rivalry of passions. Tender, deliciously camp and unexpectedly queer, this is a delightful cinematic discovery.

\n\n

Diana Cipriano

\n\n

Content advice

\n\n

Contains scenes of sexual violence.

\n
\n\n\n

How to book

\n\n
\n

BFI Flare tickets start from £10, with concessions available for many screenings and discounts for BFI Members. Booking information and ticket prices.

\n\n

If you’re aged 16 to 25, sign up for free to BFI 25 and Under for a chance to get £6 tickets to all screenings and events (subject to availability).

\n\n
\n

Missed out?

\n\n

More tickets may become available for these screenings before and during the festival. Find out about extra ticket releases and standby queues.

\n
\n
\n\n\n
\n

Our programmers recommend...

\n\n
\n
\n
\n
\"\"\n
\n\n
\n

Immodest Acts

\n\n

The sacred meets the profane in this collection of shorts that explore the intersections and, more often, the collisions of faith, identity, religion and queer desire.

\n
\nRead more about Immodest Acts\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

The Deepest Space in Us

\n\n

In this touching, introspective drama, an aromantic asexual woman seeks an honest connection with other people.

\n
\nRead more about The Deepest Space in Us\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Beyond the Fire: The Life of Japan’s First Pride Parade Pioneer

\n\n

This marvellous film dives deep into Japan’s queer history, highlighting the incredible life of the man who pioneered the country’s first Pride march.

\n
\nRead more about Beyond the Fire: The Life of Japan’s First Pride Parade Pioneer\n\n
\n
\n
\n
\n
\n\n
\n \n
\n \n\n\n\n
\n
\n
 
\n
\n\n
\n\n \n
\n \n
\n \n
\n \n
\n
\n

Treasures

\n\n

Queer classics from across the decades.

\nFind out more\n
\n
\n\n
\n \n
\n
\n
\n

March 2026

\n
\n\n
\n
MON
\n\n
TUE
\n\n
WED
\n\n
THU
\n\n
FRI
\n\n
SAT
\n\n
SUN
\n\n
16
\n\n
17
\n18 19 20 21 22 23 24 25 26 27 28 29\n
\n
\n\n
\n \n
\n  \n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

BFI Membership

\n\n

Become a BFI Member from £39 to enjoy priority festival booking as well as other great benefits all year round.

\nJoin today\n
\n
\n\n
\n \n
\n \n
\n
\n

About the festival

\n\n

A quick guide to the festival.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

Screenings and events with access provision

\n\n

Making BFI Flare: London LGBTQIA+ Film Festival as welcoming, inclusive and accessible as possible for everyone.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

25 and Under

\n\n

£6 cinema tickets for 16 to 25 year olds.

\nSign up\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

2026 festival brochure

\n\n

Download our digital festival brochure (PDF) for the 2026 edition of the festival.

\nDownload brochure\n
\n
\n\n
\n \n
\n \n
\n
\n

Festival pass

\n\n

See 10 films for less.

\nFind out more\n
\n
\n\n
\n \n
\n
\n \n \n \n \n\n

\n Add a promo code

\n
    \n \n
  • \n \n
  • \n \n
  • \n
    \n \n \n \n \n
    \n
  • \n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n\n
\n
\n\n
\n
\n
\n
\n\n
\n
\n
\n

British Film Institute

\n\n

We are a cultural charity, a National Lottery funding distributor, and the UK’s lead organisation for film and the moving image.

\n\n\n\n\n
\n\n
\n

Supported by

\n\n
\n
\n
\"Funded\n
\n\n
\"Culture\n
\n\n
\"BFI\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n
\n
\n
©2025 British Film Institute. All rights reserved.
\n\n
Registered charity 287780
\n\n
Registered office 21 Stephen St, London W1T 1LN
\n
\n
\n
\n
\n\n
\n
\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n
\n ", + "searchResults": [ + [ + "FE1806AB-14FC-4932-8458-604E5F89CE6C", + "P", + "BFI Flare Festival", + "LLGFF", + "impu_22Mar26", + "Impure Nuns", + "Impure Nuns", + "Sunday 22 March 2026 11:00", + "11:00", + "22", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "E", + "338", + "Treasures, Michiyoshi Doi, Japan,Miyuki Takakura, Mayumi Ôzora, Minoru Takada,Subtitles", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=6096D8F6-E480-4E48-96C2-054A2E37D630&BOparam::WScontent::loadArticle::context_id=FE1806AB-14FC-4932-8458-604E5F89CE6C", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLARETREASURES", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "", + "", + "", + "C4B57E43-F123-4CE5-8A17-6CB9F0409CF5", + "Flare - NFT1", + "BFI Southbank, Screen NFT1", + "BFI Southbank, Screen NFT1", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ] + ] +} \ No newline at end of file diff --git a/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-jaripeo-flare26-2026-02-23 b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-jaripeo-flare26-2026-02-23 new file mode 100644 index 0000000..7e0cb2b --- /dev/null +++ b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-jaripeo-flare26-2026-02-23 @@ -0,0 +1,209 @@ +{ + "html": "\nBuy tickets for Jaripeo | BFI Flare: London LGBTQIA+ Film Festival 2026\n\n\n\n\n\n\n\n\n\n\n\n \n\n \n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n\n\n\t\n\t\n\t\n\t\n\t\n\t\n
\n
\n \n \n \n
\n\n\n
\n \n \n \n
\n
\n
\n\n \n Order for\n Customer\n\n
\n
\n
\n \n
\n \n
\n \n Your basket is empty\n \n
\n \n
\n\n \n
\n\n \n \n\n\n \n
\n
\n \n\n\n
\n
\n\n \n
\n
\n Order for\n Customer\n \n
\n
\n\n \n
\n
    \n \n
\n
\n
\n\n
\n
\"BFI \"BFI \n
\n\n
\n\n \n \n
\n\n
\n \n
\n\t
\n\t\t\n\n\t
\n
\n\n\n
\n
\n\n \n
\n\n\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n
    \n
  • \n Search films and events\n \n
  • \n
  • \n Search dates\n from\n
    \n
    \n
  • \n
  • \n to\n
    \n
    \n
  • \n
  • \n \n
  • \n
\n \n
\n
\n\n \n\n
\n\n \n \n\n
\n \n
\n
\n
\n\n
\n\n\n
\n

Jaripeo

\n\n

Efraín Mojica and Rebecca Zweig’s captivating, dreamlike documentary journeys into the world of Mexican rodeos.

\n
\n\n\n

Screening dates and booking

\n\n
\n

Book your festival tickets a week early when you become a BFI Member.\n

\n
\n\n\n
\n
-Saturday 21 March 2026 18:40
BFI Southbank, Screen NFT1
Jaripeo
-Sunday 22 March 2026 16:40
BFI Southbank, Screen NFT4
Jaripeo
\n
\n\n\n
\n
\n
\n\n\n

Credits

\n\n
\n
    \n\t
  • \n\t

    Directors

    \n\n\t

    Efraín Mojica, Rebecca Zweig

    \n\t
  • \n\t
  • \n\t

    Mexico-USA-France 2026. 71min

    \n\t
  • \n\t
  • \n\t

    Courtesy of

    \n\n\t

    Indox Films

    \n\t
  • \n\t
  • \n\t

    Languages

    \n\n\t

    Spanish, English

    \n\n\t

    With English subtitles

    \n\t
  • \n
\n
\n\n\n

Introduction

\n\n
\n

Drawing on Mojica’s youth in Michoacán, they return home to converse with queer people in the area. Shot on hypnotic Super 8, Jaripeo reveals the queer desire that lurks beneath the surface of hypermasculine spaces, and the significance of cultural traditions. Coming to BFI Flare fresh from Sundance and Berlinale, Jaripeo marks Mojica and Zweig as filmmakers to watch.

\n\n

Grace Barber-Plentie

\n\n

Content advice

\n\n

Contains homophobic attitudes and language.

\n\n

Contains flashing images.

\n
\n\n\n

How to book

\n\n
\n

BFI Flare tickets start from £10, with concessions available for many screenings and discounts for BFI Members. Booking information and ticket prices.

\n\n

If you’re aged 16 to 25, sign up for free to BFI 25 and Under for a chance to get £6 tickets to all screenings and events (subject to availability).

\n\n
\n

Missed out?

\n\n

More tickets may become available for these screenings before and during the festival. Find out about extra ticket releases and standby queues.

\n
\n
\n\n\n
\n

Our programmers recommend...

\n\n
\n
\n
\n
\"\"\n
\n\n
\n

TO DANCE IS TO RESIST

\n\n

Two Ukrainian dancers seek life and artistic freedom following Russia’s invasion of their country.

\n
\nRead more about TO DANCE IS TO RESIST\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

The Broken R

\n\n

Ricardo Ruales Eguiguren’s film reflects upon his rare genetic condition and his sexual identity.

\n
\nRead more about The Broken R\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Cherri

\n\n

This poignant, melancholic character study promotes respect for diverse body types.

\n
\nRead more about Cherri\n\n
\n
\n
\n
\n
\n\n
\n \n
\n \n\n\n\n
\n
\n
 
\n
\n\n
\n\n \n
\n \n
\n \n
\n \n
\n
\n

Bodies

\n\n

Stories of sex, identity and transformation.

\nFind out more\n
\n
\n\n
\n \n
\n
\n
\n

March 2026

\n
\n\n
\n
MON
\n\n
TUE
\n\n
WED
\n\n
THU
\n\n
FRI
\n\n
SAT
\n\n
SUN
\n\n
16
\n\n
17
\n18 19 20 21 22 23 24 25 26 27 28 29\n
\n
\n\n
\n \n
\n  \n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

BFI Membership

\n\n

Become a BFI Member from £39 to enjoy priority festival booking as well as other great benefits all year round.

\nJoin today\n
\n
\n\n
\n \n
\n \n
\n
\n

About the festival

\n\n

A quick guide to the festival.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

Screenings and events with access provision

\n\n

Making BFI Flare: London LGBTQIA+ Film Festival as welcoming, inclusive and accessible as possible for everyone.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

25 and Under

\n\n

£6 cinema tickets for 16 to 25 year olds.

\nSign up\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

2026 festival brochure

\n\n

Download our digital festival brochure (PDF) for the 2026 edition of the festival.

\nDownload brochure\n
\n
\n\n
\n \n
\n \n
\n
\n

Festival pass

\n\n

See 10 films for less.

\nFind out more\n
\n
\n\n
\n \n
\n
\n \n \n \n \n\n

\n Add a promo code

\n
    \n \n
  • \n \n
  • \n \n
  • \n
    \n \n \n \n \n
    \n
  • \n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n\n
\n
\n\n
\n
\n
\n
\n\n
\n
\n
\n

British Film Institute

\n\n

We are a cultural charity, a National Lottery funding distributor, and the UK’s lead organisation for film and the moving image.

\n\n\n\n\n
\n\n
\n

Supported by

\n\n
\n
\n
\"Funded\n
\n\n
\"Culture\n
\n\n
\"BFI\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n
\n
\n
©2025 British Film Institute. All rights reserved.
\n\n
Registered charity 287780
\n\n
Registered office 21 Stephen St, London W1T 1LN
\n
\n
\n
\n
\n\n
\n
\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n
\n ", + "searchResults": [ + [ + "9331332F-8E89-431B-B986-A865CEC79F25", + "P", + "BFI Flare Festival", + "LLGFF", + "jarip_21Mar26", + "Jaripeo", + "Jaripeo", + "Saturday 21 March 2026 18:40", + "18:40", + "21", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "E", + "329", + "Bodies, Efraín Mojica, Rebecca Zweig, Mexico-USA-France,Subtitles", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=74E771E1-0440-4B0C-84D0-A2AF440C391E&BOparam::WScontent::loadArticle::context_id=9331332F-8E89-431B-B986-A865CEC79F25", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREBODIES", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "", + "", + "", + "C4B57E43-F123-4CE5-8A17-6CB9F0409CF5", + "Flare - NFT1", + "BFI Southbank, Screen NFT1", + "BFI Southbank, Screen NFT1", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ], + [ + "06FCD249-430F-4D7E-9CE0-9F91CB93E5A3", + "P", + "BFI Flare Festival", + "LLGFF", + "jari_22Mar26", + "Jaripeo", + "Jaripeo", + "Sunday 22 March 2026 16:40", + "16:40", + "22", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "E", + "27", + "Bodies, Efraín Mojica, Rebecca Zweig, Mexico-USA-France,Subtitles", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=74E771E1-0440-4B0C-84D0-A2AF440C391E&BOparam::WScontent::loadArticle::context_id=06FCD249-430F-4D7E-9CE0-9F91CB93E5A3", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREBODIES", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "United Kingdom", + "", + "", + "A76FC31F-05EE-4F50-9AC1-C73800A414DA", + "Flare NFT4", + "BFI Southbank, Screen NFT4", + "BFI Southbank, Screen NFT4", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ] + ] +} \ No newline at end of file diff --git a/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-jone-sometimes-flare26-2026-02-23 b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-jone-sometimes-flare26-2026-02-23 new file mode 100644 index 0000000..0dc2b65 --- /dev/null +++ b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-jone-sometimes-flare26-2026-02-23 @@ -0,0 +1,209 @@ +{ + "html": "\nBuy tickets for Jone, Sometimes | BFI Flare: London LGBTQIA+ Film Festival 2026\n\n\n\n\n\n\n\n\n\n\n\n \n\n \n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n\n\n\t\n\t\n\t\n\t\n\t\n\t\n
\n
\n \n \n \n
\n\n\n
\n \n \n \n
\n
\n
\n\n \n Order for\n Customer\n\n
\n
\n
\n \n
\n \n
\n \n Your basket is empty\n \n
\n \n
\n\n \n
\n\n \n \n\n\n \n
\n
\n \n\n\n
\n
\n\n \n
\n
\n Order for\n Customer\n \n
\n
\n\n \n
\n
    \n \n
\n
\n
\n\n
\n
\"BFI \"BFI \n
\n\n
\n\n \n \n
\n\n
\n \n
\n\t
\n\t\t\n\n\t
\n
\n\n\n
\n
\n\n \n
\n\n\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n
    \n
  • \n Search films and events\n \n
  • \n
  • \n Search dates\n from\n
    \n
    \n
  • \n
  • \n to\n
    \n
    \n
  • \n
  • \n \n
  • \n
\n \n
\n
\n\n \n\n
\n\n \n \n\n
\n \n
\n
\n
\n\n
\n\n\n
\n

Jone, Sometimes

\n\n

Jone, Batzuetan

\n\n

First love and looming parental mortality indelibly shape one young woman’s summer of festivities.

\n
\n\n\n

Screening dates and booking

\n\n
\n

Book your festival tickets a week early when you become a BFI Member.\n

\n
\n\n\n
\n
-Saturday 21 March 2026 18:15
BFI Southbank, Screen NFT3
Jone, Sometimes
-Sunday 22 March 2026 12:30
BFI Southbank, Screen NFT3
Jone, Sometimes
\n
\n\n\n
\n
\n
\n\n\n

Credits

\n\n
\n
    \n\t
  • \n\t

    Director

    \n\n\t

    Sara Fantova

    \n\t
  • \n\t
  • \n\t

    Screenwriters

    \n\n\t

    Nuria Dunjó, Sara Fantova, Nuria Martín Esteban

    \n\t
  • \n\t
  • \n\t

    With

    \n\n\t

    Olaia Aguayo, Josean Bengoetxea, Ainhoa Artetxe

    \n\t
  • \n\t
  • \n\t

    Spain 2025. 80min

    \n\t
  • \n\t
  • \n\t

    Courtesy of

    \n\n\t

    Neo Art International

    \n\t
  • \n\t
  • \n\t

    Languages

    \n\n\t

    Spanish, Basque

    \n\n\t

    With English subtitles

    \n\t
  • \n
\n
\n\n\n

Introduction

\n\n
\n

It’s summer in Bilbao. For 20-year-old Jone, this means the youthful glow of carefree party nights and falling in love. However, her days are filled with more adult fare – juggling work while caring for her widowed father, recently incapacitated with Parkinson’s disease. Anchored by Olaia Aguayo’s electric central performance, this moving story of love and family is thrilling, intimate and all-too-human.

\n\n

Diana Cipriano

\n\n

Content advice

\n\n

Contains scenes of nudity.

\n
\n\n\n

How to book

\n\n
\n

BFI Flare tickets start from £10, with concessions available for many screenings and discounts for BFI Members. Booking information and ticket prices.

\n\n

If you’re aged 16 to 25, sign up for free to BFI 25 and Under for a chance to get £6 tickets to all screenings and events (subject to availability).

\n\n
\n

Missed out?

\n\n

More tickets may become available for these screenings before and during the festival. Find out about extra ticket releases and standby queues.

\n
\n
\n\n\n
\n

Our programmers recommend...

\n\n
\n
\n
\n
\"\"\n
\n\n
\n

Amantes

\n\n

Actor Caroline Fournier’s fun romcom explores the complexities of lesbian dating in Paris.

\n
\nRead more about Amantes\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Big Girls Don’t Cry

\n\n

Paloma Schneideman’s accomplished debut is an engrossing portrait of a teenage girl navigating her burgeoning desires in early 2000s New Zealand.

\n
\nRead more about Big Girls Don’t Cry\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Montreal, My Beautiful

\n\n

Joan Chen stuns in this powerful story of a Chinese immigrant in her 50s exploring her hidden lesbian desires for the first time.

\n
\nRead more about Montreal, My Beautiful\n\n
\n
\n
\n
\n
\n\n
\n \n
\n \n\n\n\n
\n
\n
 
\n
\n\n
\n\n \n
\n \n
\n \n
\n \n
\n
\n

Hearts

\n\n

Films about love, romance and friendship.

\nFind out more\n
\n
\n\n
\n \n
\n
\n
\n

March 2026

\n
\n\n
\n
MON
\n\n
TUE
\n\n
WED
\n\n
THU
\n\n
FRI
\n\n
SAT
\n\n
SUN
\n\n
16
\n\n
17
\n18 19 20 21 22 23 24 25 26 27 28 29\n
\n
\n\n
\n \n
\n  \n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

BFI Membership

\n\n

Become a BFI Member from £39 to enjoy priority festival booking as well as other great benefits all year round.

\nJoin today\n
\n
\n\n
\n \n
\n \n
\n
\n

About the festival

\n\n

A quick guide to the festival.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

Screenings and events with access provision

\n\n

Making BFI Flare: London LGBTQIA+ Film Festival as welcoming, inclusive and accessible as possible for everyone.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

25 and Under

\n\n

£6 cinema tickets for 16 to 25 year olds.

\nSign up\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

2026 festival brochure

\n\n

Download our digital festival brochure (PDF) for the 2026 edition of the festival.

\nDownload brochure\n
\n
\n\n
\n \n
\n \n
\n
\n

Festival pass

\n\n

See 10 films for less.

\nFind out more\n
\n
\n\n
\n \n
\n
\n \n \n \n \n\n

\n Add a promo code

\n
    \n \n
  • \n \n
  • \n \n
  • \n
    \n \n \n \n \n
    \n
  • \n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n\n
\n
\n\n
\n
\n
\n
\n\n
\n
\n
\n

British Film Institute

\n\n

We are a cultural charity, a National Lottery funding distributor, and the UK’s lead organisation for film and the moving image.

\n\n\n\n\n
\n\n
\n

Supported by

\n\n
\n
\n
\"Funded\n
\n\n
\"Culture\n
\n\n
\"BFI\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n
\n
\n
©2025 British Film Institute. All rights reserved.
\n\n
Registered charity 287780
\n\n
Registered office 21 Stephen St, London W1T 1LN
\n
\n
\n
\n
\n\n
\n
\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n
\n ", + "searchResults": [ + [ + "8A867387-8D8B-4D82-864C-C6F2CBF26169", + "P", + "BFI Flare Festival", + "LLGFF", + "jone_21Mar26", + "Jone, Sometimes", + "Jone, Sometimes", + "Saturday 21 March 2026 18:15", + "18:15", + "21", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "G", + "58", + "Subtitles,Hearts, Sara Fantova, Spain,Olaia Aguayo, Josean Bengoetxea, Ainhoa Artetxe", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=26F0FBE8-670C-48CB-9DD1-5D657184B23B&BOparam::WScontent::loadArticle::context_id=8A867387-8D8B-4D82-864C-C6F2CBF26169", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREHEARTS", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "United Kingdom", + "", + "", + "C14E3C2A-68EC-4B8B-B4DA-E00E79BD3822", + "Flare NFT3", + "BFI Southbank, Screen NFT3", + "BFI Southbank, Screen NFT3", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ], + [ + "02FA209E-A8D2-446D-89EC-2F1787DE7762", + "P", + "BFI Flare Festival", + "LLGFF", + "jone_22Mar26", + "Jone, Sometimes", + "Jone, Sometimes", + "Sunday 22 March 2026 12:30", + "12:30", + "22", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "G", + "60", + "Subtitles,Hearts, Sara Fantova, Spain,Olaia Aguayo, Josean Bengoetxea, Ainhoa Artetxe", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=26F0FBE8-670C-48CB-9DD1-5D657184B23B&BOparam::WScontent::loadArticle::context_id=02FA209E-A8D2-446D-89EC-2F1787DE7762", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREHEARTS", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "United Kingdom", + "", + "", + "C14E3C2A-68EC-4B8B-B4DA-E00E79BD3822", + "Flare NFT3", + "BFI Southbank, Screen NFT3", + "BFI Southbank, Screen NFT3", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ] + ] +} \ No newline at end of file diff --git a/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-julian-flare26-2026-02-23 b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-julian-flare26-2026-02-23 new file mode 100644 index 0000000..888bacf --- /dev/null +++ b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-julian-flare26-2026-02-23 @@ -0,0 +1,209 @@ +{ + "html": "\nBuy tickets for Julian | BFI Flare: London LGBTQIA+ Film Festival 2026\n\n\n\n\n\n\n\n\n\n\n\n \n\n \n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n\n\n\t\n\t\n\t\n\t\n\t\n\t\n
\n
\n \n \n \n
\n\n\n
\n \n \n \n
\n
\n
\n\n \n Order for\n Customer\n\n
\n
\n
\n \n
\n \n
\n \n Your basket is empty\n \n
\n \n
\n\n \n
\n\n \n \n\n\n \n
\n
\n \n\n\n
\n
\n\n \n
\n
\n Order for\n Customer\n \n
\n
\n\n \n
\n
    \n \n
\n
\n
\n\n
\n
\"BFI \"BFI \n
\n\n
\n\n \n \n
\n\n
\n \n
\n\t
\n\t\t\n\n\t
\n
\n\n\n
\n
\n\n \n
\n\n\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n
    \n
  • \n Search films and events\n \n
  • \n
  • \n Search dates\n from\n
    \n
    \n
  • \n
  • \n to\n
    \n
    \n
  • \n
  • \n \n
  • \n
\n \n
\n
\n\n \n\n
\n\n \n \n\n
\n \n
\n
\n
\n\n
\n\n\n
\n

Julian

\n\n

Executive produced by Lukas Dhont, Cato Kusters’ feature debut is a stirring depiction of a Belgian couple’s fight for marriage equality.

\n
\n\n\n

Screening dates and booking

\n\n
\n

Book your festival tickets a week early when you become a BFI Member.\n

\n
\n\n\n
\n
-Thursday 19 March 2026 18:00
BFI Southbank, Screen NFT1
Julian
-Friday 20 March 2026 18:20
BFI Southbank, Screen NFT2
Julian
\n
\n\n\n
\n
\n
\n\n\n

Credits

\n\n
\n
    \n\t
  • \n\t

    Director

    \n\n\t

    Cato Kusters

    \n\t
  • \n\t
  • \n\t

    Screenwriters

    \n\n\t

    Angelo Tijssens, Cato Kusters

    \n\t
  • \n\t
  • \n\t

    With

    \n\n\t

    Nina Meurisse, Laurence Roothooft

    \n\t
  • \n\t
  • \n\t

    Belgium 2025.

    \n\t
  • \n\t
  • \n\t

    Courtesy of

    \n\n\t

    The Match Factory

    \n\t
  • \n\t
  • \n\t

    Languages

    \n\n\t

    French, English, Dutch

    \n\n\t

    With English subtitles

    \n\t
  • \n
\n
\n\n\n

Introduction

\n\n
\n

When Fleur and Julian get engaged, they discover how limited marriage options still are for queer people. So they embark on a challenge: to get married in every country that permits them. However, an unexpected tragedy reshapes both their lives. Kusters’ film is a beautiful and heartfelt paean to the all-consuming power of love.

\n\n

Wema Mumma

\n
\n\n\n

How to book

\n\n
\n

BFI Flare tickets start from £10, with concessions available for many screenings and discounts for BFI Members. Booking information and ticket prices.

\n\n

If you’re aged 16 to 25, sign up for free to BFI 25 and Under for a chance to get £6 tickets to all screenings and events (subject to availability).

\n\n
\n

Missed out?

\n\n

More tickets may become available for these screenings before and during the festival. Find out about extra ticket releases and standby queues.

\n
\n
\n\n\n
\n

Our programmers recommend...

\n\n
\n
\n
\n
\"\"\n
\n\n
\n

Love Letters

\n\n

In this examination of the complexities of maternal love, a lesbian couple navigate pregnancy and legal hurdles to achieve legitimacy.

\n
\nRead more about Love Letters\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Jone, Sometimes

\n\n

First love and looming parental mortality indelibly shape one young woman’s summer of festivities.

\n
\nRead more about Jone, Sometimes\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Amantes

\n\n

Actor Caroline Fournier’s fun romcom explores the complexities of lesbian dating in Paris.

\n
\nRead more about Amantes\n\n
\n
\n
\n
\n
\n\n
\n \n
\n \n\n\n\n
\n
\n
 
\n
\n\n
\n\n \n
\n \n
\n \n
\n \n
\n
\n

Minds

\n\n

Reflections on art, politics and community.

\nFind out more\n
\n
\n\n
\n \n
\n
\n
\n

March 2026

\n
\n\n
\n
MON
\n\n
TUE
\n\n
WED
\n\n
THU
\n\n
FRI
\n\n
SAT
\n\n
SUN
\n\n
16
\n\n
17
\n18 19 20 21 22 23 24 25 26 27 28 29\n
\n
\n\n
\n \n
\n  \n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

BFI Membership

\n\n

Become a BFI Member from £39 to enjoy priority festival booking as well as other great benefits all year round.

\nJoin today\n
\n
\n\n
\n \n
\n \n
\n
\n

About the festival

\n\n

A quick guide to the festival.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

Screenings and events with access provision

\n\n

Making BFI Flare: London LGBTQIA+ Film Festival as welcoming, inclusive and accessible as possible for everyone.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

25 and Under

\n\n

£6 cinema tickets for 16 to 25 year olds.

\nSign up\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

2026 festival brochure

\n\n

Download our digital festival brochure (PDF) for the 2026 edition of the festival.

\nDownload brochure\n
\n
\n\n
\n \n
\n \n
\n
\n

Festival pass

\n\n

See 10 films for less.

\nFind out more\n
\n
\n\n
\n \n
\n
\n \n \n \n \n\n

\n Add a promo code

\n
    \n \n
  • \n \n
  • \n \n
  • \n
    \n \n \n \n \n
    \n
  • \n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n\n
\n
\n\n
\n
\n
\n
\n\n
\n
\n
\n

British Film Institute

\n\n

We are a cultural charity, a National Lottery funding distributor, and the UK’s lead organisation for film and the moving image.

\n\n\n\n\n
\n\n
\n

Supported by

\n\n
\n
\n
\"Funded\n
\n\n
\"Culture\n
\n\n
\"BFI\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n
\n
\n
©2025 British Film Institute. All rights reserved.
\n\n
Registered charity 287780
\n\n
Registered office 21 Stephen St, London W1T 1LN
\n
\n
\n
\n
\n\n
\n
\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n
\n ", + "searchResults": [ + [ + "D0B0E340-0455-43EB-8BE7-B35F959CFCC9", + "P", + "BFI Flare Festival", + "LLGFF", + "juli_19Mar26", + "Julian", + "Julian", + "Thursday 19 March 2026 18:00", + "18:00", + "19", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "E", + "322", + "Subtitles,Nina Meurisse, Laurence Roothooft,Minds, Cato Kusters, Belgium", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=232B8191-5EFE-4D05-BD3C-C6A949190040&BOparam::WScontent::loadArticle::context_id=D0B0E340-0455-43EB-8BE7-B35F959CFCC9", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREMINDS", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "", + "", + "", + "C4B57E43-F123-4CE5-8A17-6CB9F0409CF5", + "Flare - NFT1", + "BFI Southbank, Screen NFT1", + "BFI Southbank, Screen NFT1", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ], + [ + "2458CA81-FC8F-4E49-AA44-A17F095BEA36", + "P", + "BFI Flare Festival", + "LLGFF", + "juli_20Mar26", + "Julian", + "Julian", + "Friday 20 March 2026 18:20", + "18:20", + "20", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "G", + "71", + "Nina Meurisse, Laurence Roothooft,Minds, Cato Kusters, Belgium,Subtitles", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=232B8191-5EFE-4D05-BD3C-C6A949190040&BOparam::WScontent::loadArticle::context_id=2458CA81-FC8F-4E49-AA44-A17F095BEA36", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREMINDS", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "", + "", + "", + "527ADADE-4BF3-4A03-BADB-12000B5C7BD6", + "Flare NFT2", + "BFI Southbank, Screen NFT2", + "BFI Southbank, Screen NFT2", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ] + ] +} \ No newline at end of file diff --git a/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-keep-coming-back-flare26-2026-02-23 b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-keep-coming-back-flare26-2026-02-23 new file mode 100644 index 0000000..2c09b35 --- /dev/null +++ b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-keep-coming-back-flare26-2026-02-23 @@ -0,0 +1,209 @@ +{ + "html": "\nBuy tickets for Keep Coming Back | BFI Flare: London LGBTQIA+ Film Festival 2026\n\n\n\n\n\n\n\n\n\n\n\n \n\n \n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n\n\n\t\n\t\n\t\n\t\n\t\n\t\n
\n
\n \n \n \n
\n\n\n
\n \n \n \n
\n
\n
\n\n \n Order for\n Customer\n\n
\n
\n
\n \n
\n \n
\n \n Your basket is empty\n \n
\n \n
\n\n \n
\n\n \n \n\n\n \n
\n
\n \n\n\n
\n
\n\n \n
\n
\n Order for\n Customer\n \n
\n
\n\n \n
\n
    \n \n
\n
\n
\n\n
\n
\"BFI \"BFI \n
\n\n
\n\n \n \n
\n\n
\n \n
\n\t
\n\t\t\n\n\t
\n
\n\n\n
\n
\n\n \n
\n\n\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n
    \n
  • \n Search films and events\n \n
  • \n
  • \n Search dates\n from\n
    \n
    \n
  • \n
  • \n to\n
    \n
    \n
  • \n
  • \n \n
  • \n
\n \n
\n
\n\n \n\n
\n\n \n \n\n
\n \n
\n
\n
\n\n
\n\n\n
\n

Keep Coming Back

\n\n

Siempre Vuelven

\n\n

An 18-year-old Uruguayan navigates grief, financial struggles and uncontrollable hormones.

\n
\n\n\n

Screening dates and booking

\n\n
\n

Book your festival tickets a week early when you become a BFI Member.\n

\n
\n\n\n
\n
-Saturday 21 March 2026 20:40
BFI Southbank, Screen NFT2
Keep Coming Back
-Sunday 22 March 2026 14:15
BFI Southbank, Screen NFT4
Keep Coming Back
\n
\n\n\n
\n
\n
\n\n\n

Credits

\n\n
\n
    \n\t
  • \n\t

    Director-screenwriter

    \n\n\t

    Sergio De León

    \n\t
  • \n\t
  • \n\t

    With

    \n\n\t

    Bruce Pintos, Juan Wauters, Anabella Bacigalupo

    \n\t
  • \n\t
  • \n\t

    Uruguay-Argentina 2025. 91min

    \n\t
  • \n\t
  • \n\t

    Courtesy of

    \n\n\t

    TLA Releasing

    \n\t
  • \n\t
  • \n\t

    Language

    \n\n\t

    Spanish

    \n\n\t

    With English subtitles

    \n\t
  • \n
\n
\n\n\n

Introduction

\n\n
\n

Emilio has inherited his pigeon trainer mother's coop when she dies. Financial troubles are mounting, but he is preoccupied with intrusive erotic fantasies about the men in his life. To remedy his situation, he embarks on a journey that will hopefully help him find a sense of purpose and honours his family's pigeon training tradition. Gently humorous, with sexy, surreal touches, De León has crafted a sublime and original coming-of-age tale.

\n\n

Diana Cipriano

\n\n

Content advice

\n\n

Contains scenes of nudity and sex.

\n\n

Contains homophobic attitudes and language.

\n\n

Contains flashing images.

\n
\n\n\n

Screening with

\n\n\n
\n

Mồ Hôi

\n\n

Sweat

\n\n\n
\"\"\n
\n\n\n
\n
    \n\t
  • \n\t

    Director

    \n\n\t

    Edward Nguyen

    \n\t
  • \n\t
  • \n\t

    Vietnam-USA 2025. 15min

    \n\t
  • \n\t
  • \n\t

    Language

    \n\n\t

    Vietnamese

    \n\t
  • \n\t
  • \n\t

    With English subtitles

    \n\t
  • \n
\n
\n\n\n

This gorgeous, atmospheric drama sees a rural farm worker and his emotionally charged last day with a fellow farmer in the eve of his departure.

\n\n\n

How to book

\n\n
\n

BFI Flare tickets start from £10, with concessions available for many screenings and discounts for BFI Members. Booking information and ticket prices.

\n\n

If you’re aged 16 to 25, sign up for free to BFI 25 and Under for a chance to get £6 tickets to all screenings and events (subject to availability).

\n\n
\n

Missed out?

\n\n

More tickets may become available for these screenings before and during the festival. Find out about extra ticket releases and standby queues.

\n
\n
\n\n\n
\n

Our programmers recommend...

\n\n
\n
\n
\n
\"\"\n
\n\n
\n

Drunken Noodles

\n\n

Lucio Castro’s third feature blends magical realist elements in this intimate character study.

\n
\nRead more about Drunken Noodles\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

I Am Going to Miss You

\n\n

A T4T couple move in together and are forced to face their differences in this indie romantic drama featuring an all-trans cast.

\n
\nRead more about I Am Going to Miss You\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Baby

\n\n

Marcelo Caetano follows Body Electric with a portrait of a complex and loving relationship between two men that close out alongside a dynamic exploration of São Paulo’s vibrant queer scene.

\n
\nRead more about Baby\n\n
\n
\n
\n
\n
\n
\n\n
\n \n
\n \n\n\n\n
\n
\n
 
\n
\n\n
\n\n \n
\n \n
\n \n
\n \n
\n
\n

Bodies

\n\n

Stories of sex, identity and transformation.

\nFind out more\n
\n
\n\n
\n \n
\n
\n
\n

March 2026

\n
\n\n
\n
MON
\n\n
TUE
\n\n
WED
\n\n
THU
\n\n
FRI
\n\n
SAT
\n\n
SUN
\n\n
16
\n\n
17
\n18 19 20 21 22 23 24 25 26 27 28 29\n
\n
\n\n
\n \n
\n  \n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

BFI Membership

\n\n

Become a BFI Member from £39 to enjoy priority festival booking as well as other great benefits all year round.

\nJoin today\n
\n
\n\n
\n \n
\n \n
\n
\n

About the festival

\n\n

A quick guide to the festival.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

Screenings and events with access provision

\n\n

Making BFI Flare: London LGBTQIA+ Film Festival as welcoming, inclusive and accessible as possible for everyone.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

25 and Under

\n\n

£6 cinema tickets for 16 to 25 year olds.

\nSign up\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

2026 festival brochure

\n\n

Download our digital festival brochure (PDF) for the 2026 edition of the festival.

\nDownload brochure\n
\n
\n\n
\n \n
\n \n
\n
\n

Festival pass

\n\n

See 10 films for less.

\nFind out more\n
\n
\n\n
\n \n
\n
\n \n \n \n \n\n

\n Add a promo code

\n
    \n \n
  • \n \n
  • \n \n
  • \n
    \n \n \n \n \n
    \n
  • \n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n\n
\n
\n\n
\n
\n
\n
\n\n
\n
\n
\n

British Film Institute

\n\n

We are a cultural charity, a National Lottery funding distributor, and the UK’s lead organisation for film and the moving image.

\n\n\n\n\n
\n\n
\n

Supported by

\n\n
\n
\n
\"Funded\n
\n\n
\"Culture\n
\n\n
\"BFI\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n
\n
\n
©2025 British Film Institute. All rights reserved.
\n\n
Registered charity 287780
\n\n
Registered office 21 Stephen St, London W1T 1LN
\n
\n
\n
\n
\n\n
\n
\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n
\n ", + "searchResults": [ + [ + "7A60B9B4-E5DD-4F6D-95EB-059F89289D23", + "P", + "BFI Flare Festival", + "LLGFF", + "keep_21Mar26", + "Keep Coming Back", + "Keep Coming Back", + "Saturday 21 March 2026 20:40", + "20:40", + "21", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "G", + "63", + "Subtitles,Bruce Pintos, Juan Wauters, Anabella Bacigalupo,Bodies, Sergio De León, Uruguay-Argentina,Mo Hoi,Mồ Hôi, Sweat, Edward Nguyen, Vietnam-USA", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=67F4027D-9341-4DDA-8C6E-4A8F0843A83A&BOparam::WScontent::loadArticle::context_id=7A60B9B4-E5DD-4F6D-95EB-059F89289D23", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREBODIES", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "", + "", + "", + "527ADADE-4BF3-4A03-BADB-12000B5C7BD6", + "Flare NFT2", + "BFI Southbank, Screen NFT2", + "BFI Southbank, Screen NFT2", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ], + [ + "E9655749-A1D3-4493-8D35-724C70B9E518", + "P", + "BFI Flare Festival", + "LLGFF", + "keep_22Mar26", + "Keep Coming Back", + "Keep Coming Back", + "Sunday 22 March 2026 14:15", + "14:15", + "22", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "E", + "26", + "Bruce Pintos, Juan Wauters, Anabella Bacigalupo,Bodies, Sergio De León, Uruguay-Argentina,Mồ Hôi, Sweat, Edward Nguyen, Vietnam-USA,Mo Hoi,Subtitles", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=67F4027D-9341-4DDA-8C6E-4A8F0843A83A&BOparam::WScontent::loadArticle::context_id=E9655749-A1D3-4493-8D35-724C70B9E518", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREBODIES", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "United Kingdom", + "", + "", + "A76FC31F-05EE-4F50-9AC1-C73800A414DA", + "Flare NFT4", + "BFI Southbank, Screen NFT4", + "BFI Southbank, Screen NFT4", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ] + ] +} \ No newline at end of file diff --git a/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-lady-champagne-flare26-2026-02-23 b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-lady-champagne-flare26-2026-02-23 new file mode 100644 index 0000000..637c75a --- /dev/null +++ b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-lady-champagne-flare26-2026-02-23 @@ -0,0 +1,209 @@ +{ + "html": "\nBuy tickets for Lady Champagne | BFI Flare: London LGBTQIA+ Film Festival 2026\n\n\n\n\n\n\n\n\n\n\n\n \n\n \n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n\n\n\t\n\t\n\t\n\t\n\t\n\t\n
\n
\n \n \n \n
\n\n\n
\n \n \n \n
\n
\n
\n\n \n Order for\n Customer\n\n
\n
\n
\n \n
\n \n
\n \n Your basket is empty\n \n
\n \n
\n\n \n
\n\n \n \n\n\n \n
\n
\n \n\n\n
\n
\n\n \n
\n
\n Order for\n Customer\n \n
\n
\n\n \n
\n
    \n \n
\n
\n
\n\n
\n
\"BFI \"BFI \n
\n\n
\n\n \n \n
\n\n
\n \n
\n\t
\n\t\t\n\n\t
\n
\n\n\n
\n
\n\n \n
\n\n\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n
    \n
  • \n Search films and events\n \n
  • \n
  • \n Search dates\n from\n
    \n
    \n
  • \n
  • \n to\n
    \n
    \n
  • \n
  • \n \n
  • \n
\n \n
\n
\n\n \n\n
\n\n \n \n\n
\n \n
\n
\n
\n\n
\n\n\n
\n

Lady Champagne

\n\n

Enter the lewd, rude and completely silly world of erotic dancer Champagne Horowitz Jones Dickerson White, in this comedy from D’Arcy Drollinger.

\n
\n\n\n

Screening dates and booking

\n\n
\n

Book your festival tickets a week early when you become a BFI Member.\n

\n
\n\n\n
\n
-Thursday 19 March 2026 20:35
BFI Southbank, Screen NFT1
Lady Champagne
-Saturday 21 March 2026 13:35
BFI Southbank, Screen NFT4
Lady Champagne
\n
\n\n\n
\"\"\n
\n\n\n

Credits

\n\n
\n
    \n\t
  • \n\t

    Director-screenwriter

    \n\n\t

    D’Arcy Drollinger

    \n\t
  • \n\t
  • \n\t

    With

    \n\n\t

    D’Arcy Drollinger, Matthew Martin, Seton Brown

    \n\t
  • \n\t
  • \n\t

    USA 2026. 95min

    \n\t
  • \n\t
  • \n\t

    Courtesy of

    \n\n\t

    13th Gen

    \n\t
  • \n\t
  • \n\t

    Language

    \n\n\t

    English

    \n\t
  • \n
\n\n
\n

Access screenings

\n\n
\n

Thursday 19 March 20:35\n
\nClosed Captions (CC) via WatchWord smart glasses

\n\n

Saturday 21 March 13:35\n
\nClosed Captions (CC) via WatchWord smart glasses

\n\n

Find out about booking tickets for access screenings\n

\n
\n
\n
\n\n\n

Introduction

\n\n
\n

Champagne is one of San Francisco’s most notorious dancers. When she’s framed for her recent hubby’s death, she must outwit sinister businesswomen, incompetent detectives and sadistic prison guards. Starring a host of famous San Fran faces, Lady Champagne is the perfect queer counterpart to comedies like Airplane! and The Naked Gun.

\n\n

Grace Barber-Plentie

\n\n

Content advice

\n\n

Contains scenes of drug use, graphic violence or injury, and nudity.

\n
\n\n\n

How to book

\n\n
\n

BFI Flare tickets start from £10, with concessions available for many screenings and discounts for BFI Members. Booking information and ticket prices.

\n\n

If you’re aged 16 to 25, sign up for free to BFI 25 and Under for a chance to get £6 tickets to all screenings and events (subject to availability).

\n\n
\n

Missed out?

\n\n

More tickets may become available for these screenings before and during the festival. Find out about extra ticket releases and standby queues.

\n
\n
\n\n\n
\n

Our programmers recommend...

\n\n
\n
\n
\n
\"\"\n
\n\n
\n

Hunky Jesus

\n\n

Hail Marys! A front-row seat awaits at the annual Easter pageant to find San Francisco’s hottest holy figures, enshrining LGBTQIA+ rights to boot.

\n
\nRead more about Hunky Jesus\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Death and Life Madalena

\n\n

Guto Parente’s dryly witty film sees a heavily pregnant woman take the reigns of a kitsch B-movie juggernaut, with startling results.

\n
\nRead more about Death and Life Madalena\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Having the Last Laugh

\n\n

When life gives you lemons, laughter is a tonic. Here are trans tales of levity, liberation and looking for love, featuring fundraising sexcapades, gender-flipping frolics and bodily autonomy in abundance.

\n
\nRead more about Having the Last Laugh\n\n
\n
\n
\n
\n
\n\n
\n \n
\n \n\n\n\n
\n
\n
 
\n
\n\n
\n\n \n
\n \n
\n \n
\n \n
\n
\n

Hearts

\n\n

Films about love, romance and friendship.

\nFind out more\n
\n
\n\n
\n \n
\n
\n
\n

March 2026

\n
\n\n
\n
MON
\n\n
TUE
\n\n
WED
\n\n
THU
\n\n
FRI
\n\n
SAT
\n\n
SUN
\n\n
16
\n\n
17
\n18 19 20 21 22 23 24 25 26 27 28 29\n
\n
\n\n
\n \n
\n  \n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

BFI Membership

\n\n

Become a BFI Member from £39 to enjoy priority festival booking as well as other great benefits all year round.

\nJoin today\n
\n
\n\n
\n \n
\n \n
\n
\n

About the festival

\n\n

A quick guide to the festival.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

Screenings and events with access provision

\n\n

Making BFI Flare: London LGBTQIA+ Film Festival as welcoming, inclusive and accessible as possible for everyone.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

25 and Under

\n\n

£6 cinema tickets for 16 to 25 year olds.

\nSign up\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

2026 festival brochure

\n\n

Download our digital festival brochure (PDF) for the 2026 edition of the festival.

\nDownload brochure\n
\n
\n\n
\n \n
\n \n
\n
\n

Festival pass

\n\n

See 10 films for less.

\nFind out more\n
\n
\n\n
\n \n
\n
\n \n \n \n \n\n

\n Add a promo code

\n
    \n \n
  • \n \n
  • \n \n
  • \n
    \n \n \n \n \n
    \n
  • \n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n\n
\n
\n\n
\n
\n
\n
\n\n
\n
\n
\n

British Film Institute

\n\n

We are a cultural charity, a National Lottery funding distributor, and the UK’s lead organisation for film and the moving image.

\n\n\n\n\n
\n\n
\n

Supported by

\n\n
\n
\n
\"Funded\n
\n\n
\"Culture\n
\n\n
\"BFI\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n
\n
\n
©2025 British Film Institute. All rights reserved.
\n\n
Registered charity 287780
\n\n
Registered office 21 Stephen St, London W1T 1LN
\n
\n
\n
\n
\n\n
\n
\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n
\n ", + "searchResults": [ + [ + "564F10D5-CC5E-400B-B896-49CA1430F7A3", + "P", + "BFI Flare Festival", + "LLGFF", + "lady_19Mar26", + "Lady Champagne", + "Lady Champagne", + "Thursday 19 March 2026 20:35", + "20:35", + "19", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "E", + "335", + "Closed Captions (CC),Hearts, D’Arcy Drollinger, USA,D’Arcy Drollinger, Matthew Martin, Seton Brown", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=593C4477-E9FF-4C74-B41E-919E2DF333C8&BOparam::WScontent::loadArticle::context_id=564F10D5-CC5E-400B-B896-49CA1430F7A3", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREHEARTS", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "", + "", + "", + "C4B57E43-F123-4CE5-8A17-6CB9F0409CF5", + "Flare - NFT1", + "BFI Southbank, Screen NFT1", + "BFI Southbank, Screen NFT1", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ], + [ + "29AD3330-DB03-4FC5-860B-3FDE8ADEF833", + "P", + "BFI Flare Festival", + "LLGFF", + "lady_21Mar26", + "Lady Champagne", + "Lady Champagne", + "Saturday 21 March 2026 13:35", + "13:35", + "21", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "G", + "23", + "D’Arcy Drollinger, Matthew Martin, Seton Brown,Closed Captions (CC),Hearts, D’Arcy Drollinger, USA", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=593C4477-E9FF-4C74-B41E-919E2DF333C8&BOparam::WScontent::loadArticle::context_id=29AD3330-DB03-4FC5-860B-3FDE8ADEF833", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREHEARTS", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "United Kingdom", + "", + "", + "A76FC31F-05EE-4F50-9AC1-C73800A414DA", + "Flare NFT4", + "BFI Southbank, Screen NFT4", + "BFI Southbank, Screen NFT4", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ] + ] +} \ No newline at end of file diff --git a/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-last-guest-of-the-holloway-motel-flare26-2026-02-23 b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-last-guest-of-the-holloway-motel-flare26-2026-02-23 new file mode 100644 index 0000000..b93de83 --- /dev/null +++ b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-last-guest-of-the-holloway-motel-flare26-2026-02-23 @@ -0,0 +1,209 @@ +{ + "html": "\nBuy tickets for The Last Guest of the Holloway Motel | BFI Flare: London LGBTQIA+ Film Festival 2026\n\n\n\n\n\n\n\n\n\n\n\n \n\n \n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n\n\n\t\n\t\n\t\n\t\n\t\n\t\n
\n
\n \n \n \n
\n\n\n
\n \n \n \n
\n
\n
\n\n \n Order for\n Customer\n\n
\n
\n
\n \n
\n \n
\n \n Your basket is empty\n \n
\n \n
\n\n \n
\n\n \n \n\n\n \n
\n
\n \n\n\n
\n
\n\n \n
\n
\n Order for\n Customer\n \n
\n
\n\n \n
\n
    \n \n
\n
\n
\n\n
\n
\"BFI \"BFI \n
\n\n
\n\n \n \n
\n\n
\n \n
\n\t
\n\t\t\n\n\t
\n
\n\n\n
\n
\n\n \n
\n\n\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n
    \n
  • \n Search films and events\n \n
  • \n
  • \n Search dates\n from\n
    \n
    \n
  • \n
  • \n to\n
    \n
    \n
  • \n
  • \n \n
  • \n
\n \n
\n
\n\n \n\n
\n\n \n \n\n
\n \n
\n
\n
\n\n
\n\n\n
\n

The Last Guest of the Holloway Motel

\n\n

In this impressive feature debut, a former British football star reflects on his past and the family he abandoned to hide his true identity.

\n
\n\n\n

Screening dates and booking

\n\n
\n

Book your festival tickets a week early when you become a BFI Member.\n

\n
\n\n\n
\n
-Sunday 22 March 2026 18:15
BFI Southbank, Screen NFT1
The Last Guest of the Holloway Motel
-Tuesday 24 March 2026 15:20
BFI Southbank, Screen NFT2
The Last Guest of the Holloway Motel
\n
\n\n\n
\n
\n
\n\n\n

Credits

\n\n
\n
    \n\t
  • \n\t

    Directors

    \n\n\t

    Ramiel Petros, Nicholas Freeman

    \n\t
  • \n\t
  • \n\t

    USA-UK 2025. 92min

    \n\t
  • \n\t
  • \n\t

    Courtesy of

    \n\n\t

    LD Entertainment

    \n\t
  • \n\t
  • \n\t

    Language

    \n\n\t

    English

    \n\t
  • \n
\n\n
\n

Access screenings

\n\n
\n

Sunday 22 March 18:15\n
\nClosed Captions (CC) via WatchWord smart glasses

\n\n

Tuesday 24 March 15:20\n
\nClosed Captions (CC) via WatchWord smart glasses

\n\n

Find out about booking tickets for access screenings\n

\n
\n
\n
\n\n\n

Introduction

\n\n
\n

This is a moving and layered portrait of Tony Powell, a former 1970s football star, now an aging manager of the dilapidated Holloway motel. He disappeared for more than 40 years after abandoning his life and family for a new life in West Hollywood, rather than face the repercussions of coming out as gay at the height of his career.

\n\n

Darren Jones

\n\n

Content advice

\n\n

Contains themes of suicide.

\n\n

Contains homophobic attitudes and language.

\n
\n\n\n

How to book

\n\n
\n

BFI Flare tickets start from £10, with concessions available for many screenings and discounts for BFI Members. Booking information and ticket prices.

\n\n

If you’re aged 16 to 25, sign up for free to BFI 25 and Under for a chance to get £6 tickets to all screenings and events (subject to availability).

\n\n
\n

Missed out?

\n\n

More tickets may become available for these screenings before and during the festival. Find out about extra ticket releases and standby queues.

\n
\n
\n\n\n
\n

Our programmers recommend...

\n\n
\n
\n
\n
\"\"\n
\n\n
\n

Maspalomas

\n\n

This portrait of elder queer desire highlights the importance of reconciling all parts of ourselves.

\n
\nRead more about Maspalomas\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Madfabulous

\n\n

Celyn Jones’ quirky period drama is based on the life of Henry Cyril Paget, the dancing Marquess of Anglesey, who stuck his nose up at societal norms.

\n
\nRead more about Madfabulous\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Mickey & Richard

\n\n

A frank portrait of Richard Bernstein, aka 1980s porn star Mickey Squires.

\n
\nRead more about Mickey & Richard\n\n
\n
\n
\n
\n
\n\n
\n \n
\n \n\n\n\n
\n
\n
 
\n
\n\n
\n\n \n
\n \n
\n \n
\n \n
\n
\n

Minds

\n\n

Reflections on art, politics and community.

\nFind out more\n
\n
\n\n
\n \n
\n
\n
\n

March 2026

\n
\n\n
\n
MON
\n\n
TUE
\n\n
WED
\n\n
THU
\n\n
FRI
\n\n
SAT
\n\n
SUN
\n\n
16
\n\n
17
\n18 19 20 21 22 23 24 25 26 27 28 29\n
\n
\n\n
\n \n
\n  \n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

BFI Membership

\n\n

Become a BFI Member from £39 to enjoy priority festival booking as well as other great benefits all year round.

\nJoin today\n
\n
\n\n
\n \n
\n \n
\n
\n

About the festival

\n\n

A quick guide to the festival.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

Screenings and events with access provision

\n\n

Making BFI Flare: London LGBTQIA+ Film Festival as welcoming, inclusive and accessible as possible for everyone.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

25 and Under

\n\n

£6 cinema tickets for 16 to 25 year olds.

\nSign up\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

2026 festival brochure

\n\n

Download our digital festival brochure (PDF) for the 2026 edition of the festival.

\nDownload brochure\n
\n
\n\n
\n \n
\n \n
\n
\n

Festival pass

\n\n

See 10 films for less.

\nFind out more\n
\n
\n\n
\n \n
\n
\n \n \n \n \n\n

\n Add a promo code

\n
    \n \n
  • \n \n
  • \n \n
  • \n
    \n \n \n \n \n
    \n
  • \n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n\n
\n
\n\n
\n
\n
\n
\n\n
\n
\n
\n

British Film Institute

\n\n

We are a cultural charity, a National Lottery funding distributor, and the UK’s lead organisation for film and the moving image.

\n\n\n\n\n
\n\n
\n

Supported by

\n\n
\n
\n
\"Funded\n
\n\n
\"Culture\n
\n\n
\"BFI\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n
\n
\n
©2025 British Film Institute. All rights reserved.
\n\n
Registered charity 287780
\n\n
Registered office 21 Stephen St, London W1T 1LN
\n
\n
\n
\n
\n\n
\n
\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n
\n ", + "searchResults": [ + [ + "5A068354-90AB-4941-9372-EB3EC28A0944", + "P", + "BFI Flare Festival", + "LLGFF", + "thelast_22Mar26", + "The Last Guest of the Holloway Motel", + "The Last Guest of the Holloway Motel", + "Sunday 22 March 2026 18:15", + "18:15", + "22", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "E", + "339", + "Closed Captions (CC),Minds, Ramiel Petros, Nicholas Freeman, USA-UK", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=B33AB3F6-7A89-486C-899C-D012862C6882&BOparam::WScontent::loadArticle::context_id=5A068354-90AB-4941-9372-EB3EC28A0944", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREMINDS", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "", + "", + "", + "C4B57E43-F123-4CE5-8A17-6CB9F0409CF5", + "Flare - NFT1", + "BFI Southbank, Screen NFT1", + "BFI Southbank, Screen NFT1", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ], + [ + "719EC718-FAC6-4DCC-BC4D-9FF0BBEBCE67", + "P", + "BFI Flare Festival", + "LLGFF", + "thelas_24Mar26", + "The Last Guest of the Holloway Motel", + "The Last Guest of the Holloway Motel", + "Tuesday 24 March 2026 15:20", + "15:20", + "24", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "G", + "78", + "Closed Captions (CC),Minds, Ramiel Petros, Nicholas Freeman, USA-UK", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=B33AB3F6-7A89-486C-899C-D012862C6882&BOparam::WScontent::loadArticle::context_id=719EC718-FAC6-4DCC-BC4D-9FF0BBEBCE67", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREMINDS", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "", + "", + "", + "527ADADE-4BF3-4A03-BADB-12000B5C7BD6", + "Flare NFT2", + "BFI Southbank, Screen NFT2", + "BFI Southbank, Screen NFT2", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£10.00", + "£10.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ] + ] +} \ No newline at end of file diff --git a/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-little-sister-flare26-2026-02-23 b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-little-sister-flare26-2026-02-23 new file mode 100644 index 0000000..3ceec8d --- /dev/null +++ b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-little-sister-flare26-2026-02-23 @@ -0,0 +1,209 @@ +{ + "html": "\nBuy tickets for The Little Sister | BFI Flare: London LGBTQIA+ Film Festival 2026\n\n\n\n\n\n\n\n\n\n\n\n \n\n \n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n\n\n\t\n\t\n\t\n\t\n\t\n\t\n
\n
\n \n \n \n
\n\n\n
\n \n \n \n
\n
\n
\n\n \n Order for\n Customer\n\n
\n
\n
\n \n
\n \n
\n \n Your basket is empty\n \n
\n \n
\n\n \n
\n\n \n \n\n\n \n
\n
\n \n\n\n
\n
\n\n \n
\n
\n Order for\n Customer\n \n
\n
\n\n \n
\n
    \n \n
\n
\n
\n\n
\n
\"BFI \"BFI \n
\n\n
\n\n \n \n
\n\n
\n \n
\n\t
\n\t\t\n\n\t
\n
\n\n\n
\n
\n\n \n
\n\n\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n
    \n
  • \n Search films and events\n \n
  • \n
  • \n Search dates\n from\n
    \n
    \n
  • \n
  • \n to\n
    \n
    \n
  • \n
  • \n \n
  • \n
\n \n
\n
\n\n \n\n
\n\n \n \n\n
\n \n
\n
\n
\n\n
\n\n\n
\n

The Little Sister

\n\n

La Petite dernière

\n\n

In Hafsia Herzi’s drama, French-Algerian teen Fatima navigates her nascent sexuality, Muslim identity and her family’s expectations for her life.

\n
\n\n\n

Screening dates and booking

\n\n
\n

Book your festival tickets a week early when you become a BFI Member.\n

\n
\n\n\n
\n
-Thursday 26 March 2026 18:00
BFI Southbank, Screen NFT1
The Little Sister
-Friday 27 March 2026 15:30
BFI Southbank, Screen NFT2
The Little Sister
\n
\n\n\n
\n
\n
\n\n\n

Credits

\n\n
\n
    \n\t
  • \n\t

    Director-screenwriter

    \n\n\t

    Hafsia Herzi

    \n\t
  • \n\t
  • \n\t

    With

    \n\n\t

    Nadia Melliti, Park Ji-min, Amina Ben Mohamed

    \n\t
  • \n\t
  • \n\t

    France-Germany 2025. 107min

    \n\t
  • \n\t
  • \n\t

    Courtesy of

    \n\n\t

    mk2

    \n\t
  • \n\t
  • \n\t

    Language

    \n\n\t

    French

    \n\n\t

    With English subtitles

    \n\t
  • \n
\n
\n\n\n

Introduction

\n\n
\n

Fatima’s journey from closeted teen to experimental adult sees her moving from the Paris outskirts to study in the city, navigating secret hook-ups with women, new friendships and the passions of her first relationship. Nadia Melliti won the Best Actress prize in Cannes for her compelling performance here – it’s impossible to take your eyes off her.

\n\n

Grace Barber-Plentie

\n
\n\n\n
\n

Supported by Mishcon de Reya.

\n
\n\n\n

Content advice

\n\n

Contains scenes of nudity and sex.

\n\n

Contains flashing images.

\n
\n\n\n

How to book

\n\n
\n

BFI Flare tickets start from £10, with concessions available for many screenings and discounts for BFI Members. Booking information and ticket prices.

\n\n

If you’re aged 16 to 25, sign up for free to BFI 25 and Under for a chance to get £6 tickets to all screenings and events (subject to availability).

\n\n
\n

Missed out?

\n\n

More tickets may become available for these screenings before and during the festival. Find out about extra ticket releases and standby queues.

\n
\n
\n\n\n
\n

Our programmers recommend...

\n\n
\n
\n
\n
\"\"\n
\n\n
\n

Bearcave

\n\n

In this gorgeously shot drama, a friendship between two girls soon reveals hidden depths.

\n
\nRead more about Bearcave\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Julian

\n\n

Executive produced by Lukas Dhont, Cato Kusters’ feature debut is a stirring depiction of a Belgian couple’s fight for marriage equality.

\n
\nRead more about Julian\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Love Letters

\n\n

In this examination of the complexities of maternal love, a lesbian couple navigate pregnancy and legal hurdles to achieve legitimacy.

\n
\nRead more about Love Letters\n\n
\n
\n
\n
\n\n
\n \n
\n \n\n\n\n
\n
\n
 
\n
\n\n
\n\n \n
\n \n
\n \n
\n \n
\n
\n

Hearts

\n\n

Films about love, romance and friendship.

\nFind out more\n
\n
\n\n
\n \n
\n
\n
\n

March 2026

\n
\n\n
\n
MON
\n\n
TUE
\n\n
WED
\n\n
THU
\n\n
FRI
\n\n
SAT
\n\n
SUN
\n\n
16
\n\n
17
\n18 19 20 21 22 23 24 25 26 27 28 29\n
\n
\n\n
\n \n
\n
 
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

BFI Membership

\n\n

Become a BFI Member from £39 to enjoy priority festival booking as well as other great benefits all year round.

\nJoin today\n
\n
\n\n
\n \n
\n \n
\n
\n

About the festival

\n\n

A quick guide to the festival.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

Screenings and events with access provision

\n\n

Making BFI Flare: London LGBTQIA+ Film Festival as welcoming, inclusive and accessible as possible for everyone.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

25 and Under

\n\n

£6 cinema tickets for 16 to 25 year olds.

\nSign up\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

2026 festival brochure

\n\n

Download our digital festival brochure (PDF) for the 2026 edition of the festival.

\nDownload brochure\n
\n
\n\n
\n \n
\n \n
\n
\n

Festival pass

\n\n

See 10 films for less.

\nFind out more\n
\n
\n\n
\n \n
\n
\n \n \n \n \n\n

\n Add a promo code

\n
    \n \n
  • \n \n
  • \n \n
  • \n
    \n \n \n \n \n
    \n
  • \n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n\n
\n
\n\n
\n
\n
\n
\n\n
\n
\n
\n

British Film Institute

\n\n

We are a cultural charity, a National Lottery funding distributor, and the UK’s lead organisation for film and the moving image.

\n\n\n\n\n
\n\n
\n

Supported by

\n\n
\n
\n
\"Funded\n
\n\n
\"Culture\n
\n\n
\"BFI\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n
\n
\n
©2025 British Film Institute. All rights reserved.
\n\n
Registered charity 287780
\n\n
Registered office 21 Stephen St, London W1T 1LN
\n
\n
\n
\n
\n\n
\n
\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n
\n ", + "searchResults": [ + [ + "4B1A49B2-8912-4BFC-A90C-B90611217AB3", + "P", + "BFI Flare Festival", + "LLGFF", + "littl_26Mar26", + "The Little Sister", + "The Little Sister", + "Thursday 26 March 2026 18:00", + "18:00", + "26", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "G", + "281", + "Hearts, Hafsia Herzi, France-Germany,Subtitles,Nadia Melliti, Park Ji-min, Amina Ben Mohamed", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=99F8AE5E-8C61-4097-8440-1EC17489BE8D&BOparam::WScontent::loadArticle::context_id=4B1A49B2-8912-4BFC-A90C-B90611217AB3", + "", + "", + "", + "", + "", + "", + "", + "", + "Supported by Mishcon de Reya", + "FLAREHEARTS", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "", + "", + "", + "C4B57E43-F123-4CE5-8A17-6CB9F0409CF5", + "Flare - NFT1", + "BFI Southbank, Screen NFT1", + "BFI Southbank, Screen NFT1", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ], + [ + "0ABECCF2-FDFC-4985-A8C0-B178EC7755ED", + "P", + "BFI Flare Festival", + "LLGFF", + "little_27Mar26", + "The Little Sister", + "The Little Sister", + "Friday 27 March 2026 15:30", + "15:30", + "27", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "G", + "72", + "Nadia Melliti, Park Ji-min, Amina Ben Mohamed,Hearts, Hafsia Herzi, France-Germany,Subtitles", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=99F8AE5E-8C61-4097-8440-1EC17489BE8D&BOparam::WScontent::loadArticle::context_id=0ABECCF2-FDFC-4985-A8C0-B178EC7755ED", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREHEARTS", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "", + "", + "", + "527ADADE-4BF3-4A03-BADB-12000B5C7BD6", + "Flare NFT2", + "BFI Southbank, Screen NFT2", + "BFI Southbank, Screen NFT2", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£10.00", + "£10.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ] + ] +} \ No newline at end of file diff --git a/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-little-trouble-girls-flare26-2026-02-23 b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-little-trouble-girls-flare26-2026-02-23 new file mode 100644 index 0000000..818f797 --- /dev/null +++ b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-little-trouble-girls-flare26-2026-02-23 @@ -0,0 +1,107 @@ +{ + "html": "\nBuy tickets for Little Trouble Girls | BFI Flare: London LGBTQIA+ Film Festival 2026\n\n\n\n\n\n\n\n\n\n\n\n \n\n \n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n\n\n\t\n\t\n\t\n\t\n\t\n\t\n
\n
\n \n \n \n
\n\n\n
\n \n \n \n
\n
\n
\n\n \n Order for\n Customer\n\n
\n
\n
\n \n
\n \n
\n \n Your basket is empty\n \n
\n \n
\n\n \n
\n\n \n \n\n\n \n
\n
\n \n\n\n
\n
\n\n \n
\n
\n Order for\n Customer\n \n
\n
\n\n \n
\n
    \n \n
\n
\n
\n\n
\n
\"BFI \"BFI \n
\n\n
\n\n \n \n
\n\n
\n \n
\n\t
\n\t\t\n\n\t
\n
\n\n\n
\n
\n\n \n
\n\n\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n
    \n
  • \n Search films and events\n \n
  • \n
  • \n Search dates\n from\n
    \n
    \n
  • \n
  • \n to\n
    \n
    \n
  • \n
  • \n \n
  • \n
\n \n
\n
\n\n \n\n
\n\n \n \n\n
\n \n
\n
\n
\n\n
\n\n\n
\n

Little Trouble Girls

\n\n

A Slovenian catholic girl navigates the exhilaration and confusion of first desire in this sensorial, sensitive and sublime coming-of-age feature debut.

\n
\n\n\n

Screening dates and booking

\n\n
\n

Book your festival tickets a week early when you become a BFI Member.\n

\n
\n\n\n
\n
-Sunday 29 March 2026 15:30
BFI Southbank, Screen NFT3
Little Trouble Girls
\n
\n\n\n
\"\"\n
\n\n\n

Credits

\n\n
\n
    \n\t
  • \n\t

    Director

    \n\n\t

    Urška Djukić

    \n\t
  • \n\t
  • \n\t

    Screenwriters

    \n\n\t

    Urška Djukić, Maria Bohr, Marina Gumzi

    \n\t
  • \n\t
  • \n\t

    With

    \n\n\t

    Jara Sofija Ostan, Mina Švajger, Saša Tabaković, Nataša Burger, Staša Popović

    \n\t
  • \n\t
  • \n\t

    Slovenia-Italy-Croatia-Serbia 2025. 89min

    \n\t
  • \n\t
  • \n\t

    Courtesy of

    \n\n\t

    BFI Distribution

    \n\t
  • \n\t
  • \n\t

    Language

    \n\n\t

    Slovenian

    \n\n\t

    With English subtitles

    \n\t
  • \n\t
  • Certificate\n\t

    BBFC 15

    \n\t
  • \n
\n\n
\n

Access screenings

\n\n
\n

Sunday 29 March 15:30\n
\nDescriptive Subtitles

\n\n

Find out about booking tickets for access screenings\n

\n
\n
\n
\n\n\n

Introduction

\n\n
\n

Lucia, a quiet 16-year-old, is enchanted by extrovert Ana-Maria, the new girl in her choir. The two soon become inseparable. But during a convent retreat in the country, Lucia’s burgeoning sexuality makes her question her beliefs and disrupts the balance around her. Reminiscent of Céline Sciamma’s early work, this is a stunning, sensitively told examination of girlhood.

\n\n

Diana Cipriano

\n\n

Content advice

\n\n

Contains scenes of nudity.

\n
\n\n\n

How to book

\n\n
\n

BFI Flare tickets start from £10, with concessions available for many screenings and discounts for BFI Members. Booking information and ticket prices.

\n\n

If you’re aged 16 to 25, sign up for free to BFI 25 and Under for a chance to get £6 tickets to all screenings and events (subject to availability).

\n\n
\n

Missed out?

\n\n

More tickets may become available for these screenings before and during the festival. Find out about extra ticket releases and standby queues.

\n
\n
\n\n\n
\n

Our programmers recommend...

\n\n
\n
\n
\n
\"\"\n
\n\n
\n

Pillion

\n\n

A shy young man finds his place in the world as a submissive to a handsome biker, in Harry Lighton’s charming, sexy, tender and frequently hilarious debut.

\n
\nRead more about Pillion\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Skiff

\n\n

A young rower struggles to balance family life, self-expression and taboo crushes.

\n
\nRead more about Skiff\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Baby

\n\n

Marcelo Caetano follows Body Electric with a portrait of a complex and loving relationship between two men that close out alongside a dynamic exploration of São Paulo’s vibrant queer scene.

\n
\nRead more about Baby\n\n
\n
\n
\n
\n
\n\n
\n \n
\n \n\n\n\n
\n
\n
 
\n
\n\n
\n\n \n
\n \n
\n \n
\n
\n
\n

March 2026

\n
\n\n
\n
MON
\n\n
TUE
\n\n
WED
\n\n
THU
\n\n
FRI
\n\n
SAT
\n\n
SUN
\n\n
16
\n\n
17
\n18 19 20 21 22 23 24 25 26 27 28 29\n
\n
\n\n
\n \n
\n  \n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

BFI Membership

\n\n

Become a BFI Member from £39 to enjoy priority festival booking as well as other great benefits all year round.

\nJoin today\n
\n
\n\n
\n \n
\n \n
\n
\n

About the festival

\n\n

A quick guide to the festival.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

Screenings and events with access provision

\n\n

Making BFI Flare: London LGBTQIA+ Film Festival as welcoming, inclusive and accessible as possible for everyone.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

25 and Under

\n\n

£6 cinema tickets for 16 to 25 year olds.

\nSign up\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

2026 festival brochure

\n\n

Download our digital festival brochure (PDF) for the 2026 edition of the festival.

\nDownload brochure\n
\n
\n\n
\n \n
\n \n
\n
\n

Festival pass

\n\n

See 10 films for less.

\nFind out more\n
\n
\n\n
\n \n
\n
\n \n \n \n \n\n

\n Add a promo code

\n
    \n \n
  • \n \n
  • \n \n
  • \n
    \n \n \n \n \n
    \n
  • \n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n\n
\n
\n\n
\n
\n
\n
\n\n
\n
\n
\n

British Film Institute

\n\n

We are a cultural charity, a National Lottery funding distributor, and the UK’s lead organisation for film and the moving image.

\n\n\n\n\n
\n\n
\n

Supported by

\n\n
\n
\n
\"Funded\n
\n\n
\"Culture\n
\n\n
\"BFI\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n
\n
\n
©2025 British Film Institute. All rights reserved.
\n\n
Registered charity 287780
\n\n
Registered office 21 Stephen St, London W1T 1LN
\n
\n
\n
\n
\n\n
\n
\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n
\n ", + "searchResults": [ + [ + "8F99D1A9-C65F-4963-A9AB-5BD9CD4F0250", + "P", + "BFI Flare Festival", + "LLGFF", + "little_29Mar26", + "Little Trouble Girls", + "Little Trouble Girls", + "Sunday 29 March 2026 15:30", + "15:30", + "29", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "E", + "78", + "DS descriptive subtitles,Subtitles,Jara Sofija Ostan, Mina Švajger, Saša Tabaković, Nataša Burger, Staša Popović,Best of Year, Urška Djukić, Slovenia-Italy-Croatia-Serbia", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=6ED4BAA2-72DA-49E5-BC70-001A4C6AF8EE&BOparam::WScontent::loadArticle::context_id=8F99D1A9-C65F-4963-A9AB-5BD9CD4F0250", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREBESTOFYEAR", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "United Kingdom", + "", + "", + "C14E3C2A-68EC-4B8B-B4DA-E00E79BD3822", + "Flare NFT3", + "BFI Southbank, Screen NFT3", + "BFI Southbank, Screen NFT3", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ] + ] +} \ No newline at end of file diff --git a/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-love-letters-flare26-2026-02-23 b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-love-letters-flare26-2026-02-23 new file mode 100644 index 0000000..f782aa3 --- /dev/null +++ b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-love-letters-flare26-2026-02-23 @@ -0,0 +1,209 @@ +{ + "html": "\nBuy tickets for Love Letters | BFI Flare: London LGBTQIA+ Film Festival 2026\n\n\n\n\n\n\n\n\n\n\n\n \n\n \n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n\n\n\t\n\t\n\t\n\t\n\t\n\t\n
\n
\n \n \n \n
\n\n\n
\n \n \n \n
\n
\n
\n\n \n Order for\n Customer\n\n
\n
\n
\n \n
\n \n
\n \n Your basket is empty\n \n
\n \n
\n\n \n
\n\n \n \n\n\n \n
\n
\n \n\n\n
\n
\n\n \n
\n
\n Order for\n Customer\n \n
\n
\n\n \n
\n
    \n \n
\n
\n
\n\n
\n
\"BFI \"BFI \n
\n\n
\n\n \n \n
\n\n
\n \n
\n\t
\n\t\t\n\n\t
\n
\n\n\n
\n
\n\n \n
\n\n\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n
    \n
  • \n Search films and events\n \n
  • \n
  • \n Search dates\n from\n
    \n
    \n
  • \n
  • \n to\n
    \n
    \n
  • \n
  • \n \n
  • \n
\n \n
\n
\n\n \n\n
\n\n \n \n\n
\n \n
\n
\n
\n\n
\n\n\n
\n

Love Letters

\n\n

Des preuves d’amour

\n\n

In this examination of the complexities of maternal love, a lesbian couple navigate pregnancy and legal hurdles to achieve legitimacy.

\n
\n\n\n

Screening dates and booking

\n\n
\n

Book your festival tickets a week early when you become a BFI Member.\n

\n
\n\n\n
\n
-Saturday 21 March 2026 16:00
BFI Southbank, Screen NFT1
Love Letters
-Sunday 22 March 2026 18:20
BFI Southbank, Screen NFT2
Love Letters
\n
\n\n\n
\n
\n
\n\n\n

Credits

\n\n
\n
    \n\t
  • \n\t

    Director-screenwriter

    \n\n\t

    Alice Douard

    \n\t
  • \n\t
  • \n\t

    With

    \n\n\t

    Ella Rumpf, Monia Chokri, Noémie Lvovsky

    \n\t
  • \n\t
  • \n\t

    France 2025. 97min

    \n\t
  • \n\t
  • \n\t

    Courtesy of

    \n\n\t

    Logical Pictures International

    \n\t
  • \n\t
  • \n\t

    Language

    \n\n\t

    French

    \n\n\t

    With English subtitles

    \n\t
  • \n
\n
\n\n\n

Introduction

\n\n
\n

Céline is in her early 30s. Her wife is expecting after they conceived via IVF. But the path to legitimise herself as parent is complex, demanding that she reconnect with her mother and in the process understand the intricacies of motherhood. Anchored by subtle but powerful performances, and featuring inspired touches of comedy, this is a warm and profound drama.

\n\n

Diana Cipriano

\n\n

Content advice

\n\n

Contains flashing images.

\n
\n\n\n

How to book

\n\n
\n

BFI Flare tickets start from £10, with concessions available for many screenings and discounts for BFI Members. Booking information and ticket prices.

\n\n

If you’re aged 16 to 25, sign up for free to BFI 25 and Under for a chance to get £6 tickets to all screenings and events (subject to availability).

\n\n
\n

Missed out?

\n\n

More tickets may become available for these screenings before and during the festival. Find out about extra ticket releases and standby queues.

\n
\n
\n\n\n
\n

Our programmers recommend...

\n\n
\n
\n
\n
\"\"\n
\n\n
\n

Julian

\n\n

Executive produced by Lukas Dhont, Cato Kusters’ feature debut is a stirring depiction of a Belgian couple’s fight for marriage equality.

\n
\nRead more about Julian\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

The Little Sister

\n\n

In Hafsia Herzi’s drama, French-Algerian teen Fatima navigates her nascent sexuality, Muslim identity and her family’s expectations for her life.

\n
\nRead more about The Little Sister\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Amantes

\n\n

Actor Caroline Fournier’s fun romcom explores the complexities of lesbian dating in Paris.

\n
\nRead more about Amantes\n\n
\n
\n
\n
\n
\n\n
\n \n
\n \n\n\n\n
\n
\n
 
\n
\n\n
\n\n \n
\n \n
\n \n
\n \n
\n
\n

Hearts

\n\n

Films about love, romance and friendship.

\nFind out more\n
\n
\n\n
\n \n
\n
\n
\n

March 2026

\n
\n\n
\n
MON
\n\n
TUE
\n\n
WED
\n\n
THU
\n\n
FRI
\n\n
SAT
\n\n
SUN
\n\n
16
\n\n
17
\n18 19 20 21 22 23 24 25 26 27 28 29\n
\n
\n\n
\n \n
\n
 
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

BFI Membership

\n\n

Become a BFI Member from £39 to enjoy priority festival booking as well as other great benefits all year round.

\nJoin today\n
\n
\n\n
\n \n
\n \n
\n
\n

About the festival

\n\n

A quick guide to the festival.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

Screenings and events with access provision

\n\n

Making BFI Flare: London LGBTQIA+ Film Festival as welcoming, inclusive and accessible as possible for everyone.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

25 and Under

\n\n

£6 cinema tickets for 16 to 25 year olds.

\nSign up\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

2026 festival brochure

\n\n

Download our digital festival brochure (PDF) for the 2026 edition of the festival.

\nDownload brochure\n
\n
\n\n
\n \n
\n \n
\n
\n

Festival pass

\n\n

See 10 films for less.

\nFind out more\n
\n
\n\n
\n \n
\n
\n \n \n \n \n\n

\n Add a promo code

\n
    \n \n
  • \n \n
  • \n \n
  • \n
    \n \n \n \n \n
    \n
  • \n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n\n
\n
\n\n
\n
\n
\n
\n\n
\n
\n
\n

British Film Institute

\n\n

We are a cultural charity, a National Lottery funding distributor, and the UK’s lead organisation for film and the moving image.

\n\n\n\n\n
\n\n
\n

Supported by

\n\n
\n
\n
\"Funded\n
\n\n
\"Culture\n
\n\n
\"BFI\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n
\n
\n
©2025 British Film Institute. All rights reserved.
\n\n
Registered charity 287780
\n\n
Registered office 21 Stephen St, London W1T 1LN
\n
\n
\n
\n
\n\n
\n
\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n
\n ", + "searchResults": [ + [ + "6E78FC1D-FABB-4EBB-8693-3A0E60DFD2D0", + "P", + "BFI Flare Festival", + "LLGFF", + "love_21Mar26", + "Love Letters", + "Love Letters", + "Saturday 21 March 2026 16:00", + "16:00", + "21", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "E", + "346", + "Hearts, Alice Douard, France,Ella Rumpf, Monia Chokri, Noémie Lvovsky,Subtitles", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=ACD875CC-7D29-4757-A123-9DE117D1B0E8&BOparam::WScontent::loadArticle::context_id=6E78FC1D-FABB-4EBB-8693-3A0E60DFD2D0", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREHEARTS", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "", + "", + "", + "C4B57E43-F123-4CE5-8A17-6CB9F0409CF5", + "Flare - NFT1", + "BFI Southbank, Screen NFT1", + "BFI Southbank, Screen NFT1", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ], + [ + "A430C46F-49D6-44DE-B0A2-F9BCF8110B25", + "P", + "BFI Flare Festival", + "LLGFF", + "love_22Mar26", + "Love Letters", + "Love Letters", + "Sunday 22 March 2026 18:20", + "18:20", + "22", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "G", + "71", + "Hearts, Alice Douard, France,Ella Rumpf, Monia Chokri, Noémie Lvovsky,Subtitles", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=ACD875CC-7D29-4757-A123-9DE117D1B0E8&BOparam::WScontent::loadArticle::context_id=A430C46F-49D6-44DE-B0A2-F9BCF8110B25", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREHEARTS", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "", + "", + "", + "527ADADE-4BF3-4A03-BADB-12000B5C7BD6", + "Flare NFT2", + "BFI Southbank, Screen NFT2", + "BFI Southbank, Screen NFT2", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ] + ] +} \ No newline at end of file diff --git a/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-low-rider-flare26-2026-02-23 b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-low-rider-flare26-2026-02-23 new file mode 100644 index 0000000..899aae9 --- /dev/null +++ b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-low-rider-flare26-2026-02-23 @@ -0,0 +1,209 @@ +{ + "html": "\nBuy tickets for Low Rider | BFI Flare: London LGBTQIA+ Film Festival 2026\n\n\n\n\n\n\n\n\n\n\n\n \n\n \n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n\n\n\t\n\t\n\t\n\t\n\t\n\t\n
\n
\n \n \n \n
\n\n\n
\n \n \n \n
\n
\n
\n\n \n Order for\n Customer\n\n
\n
\n
\n \n
\n \n
\n \n Your basket is empty\n \n
\n \n
\n\n \n
\n\n \n \n\n\n \n
\n
\n \n\n\n
\n
\n\n \n
\n
\n Order for\n Customer\n \n
\n
\n\n \n
\n
    \n \n
\n
\n
\n\n
\n
\"BFI \"BFI \n
\n\n
\n\n \n \n
\n\n
\n \n
\n\t
\n\t\t\n\n\t
\n
\n\n\n
\n
\n\n \n
\n\n\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n
    \n
  • \n Search films and events\n \n
  • \n
  • \n Search dates\n from\n
    \n
    \n
  • \n
  • \n to\n
    \n
    \n
  • \n
  • \n \n
  • \n
\n \n
\n
\n\n \n\n
\n\n \n \n\n
\n \n
\n
\n
\n\n
\n\n\n
\n

Low Rider

\n\n

Campbell X’s long-awaited second feature takes us on a fun ride across South Africa.

\n
\n\n\n

Screening dates and booking

\n\n
\n

Book your festival tickets a week early when you become a BFI Member.\n

\n
\n\n\n
\n
-Saturday 21 March 2026 20:55
BFI Southbank, Screen NFT1
Low Rider
-Sunday 22 March 2026 10:00
BFI Southbank, Screen NFT3
Low Rider
\n
\n\n\n
\n
\n
\n\n\n

Credits

\n\n
\n
    \n\t
  • \n\t

    Director

    \n\n\t

    Campbell X

    \n\t
  • \n\t
  • \n\t

    Screenwriters

    \n\n\t

    Campbell X, Stephen Strachan

    \n\t
  • \n\t
  • \n\t

    With

    \n\n\t

    Emma McDonald, Thishiwe Ziqubu, Martin Kluge

    \n\t
  • \n\t
  • \n\t

    UK-South Africa 2025. 95min

    \n\t
  • \n\t
  • \n\t

    Courtesy of

    \n\n\t

    alief

    \n\t
  • \n\t
  • \n\t

    Language

    \n\n\t

    English

    \n\t
  • \n\t
  • Certificate\n\t

    BBFC 18

    \n\t
  • \n
\n
\n\n\n

Introduction

\n\n
\n

When her mother passes away, London-based millennial Quinn travels all the way to Cape Town in search of her father. What she initially imagined would be a straightforward trip instead turns into a wild goose chase for her estranged parent, involving sexy club nights, cosy campfires and unexpected company from a charming stranger.

\n\n

Wema Mumma

\n\n

Content advice

\n\n

Contains scenes of sexual violence.

\n\n

Contains homophobic attitudes and language.

\n
\n\n\n

How to book

\n\n
\n

BFI Flare tickets start from £10, with concessions available for many screenings and discounts for BFI Members. Booking information and ticket prices.

\n\n

If you’re aged 16 to 25, sign up for free to BFI 25 and Under for a chance to get £6 tickets to all screenings and events (subject to availability).

\n\n
\n

Missed out?

\n\n

More tickets may become available for these screenings before and during the festival. Find out about extra ticket releases and standby queues.

\n
\n
\n\n\n
\n

Our programmers recommend...

\n\n
\n
\n
\n
\"\"\n
\n\n
\n

The Watermelon Woman

\n\n

The first feature directed by an African-American lesbian, Cheryl Dunye’s film is as funny, thought-provoking and original as it was 30 years ago.

\n
\nRead more about The Watermelon Woman\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

On the Sea

\n\n

A moving tale of the powerful attraction between a local hand raker, who works on the mussel beds of North Wales, and an itinerant deckhand.

\n
\nRead more about On the Sea\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Til the World Stops Turning

\n\n

A celebration of some of this year’s best LGBTQIA+ short films from the UK and Ireland.

\n
\nRead more about Til the World Stops Turning\n\n
\n
\n
\n
\n
\n\n
\n \n
\n \n\n\n\n
\n
\n
 
\n
\n\n
\n\n \n
\n \n
\n \n
\n \n
\n
\n

Bodies

\n\n

Stories of sex, identity and transformation.

\nFind out more\n
\n
\n\n
\n \n
\n
\n
\n

March 2026

\n
\n\n
\n
MON
\n\n
TUE
\n\n
WED
\n\n
THU
\n\n
FRI
\n\n
SAT
\n\n
SUN
\n\n
16
\n\n
17
\n18 19 20 21 22 23 24 25 26 27 28 29\n
\n
\n\n
\n \n
\n  \n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

BFI Membership

\n\n

Become a BFI Member from £39 to enjoy priority festival booking as well as other great benefits all year round.

\nJoin today\n
\n
\n\n
\n \n
\n \n
\n
\n

About the festival

\n\n

A quick guide to the festival.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

Screenings and events with access provision

\n\n

Making BFI Flare: London LGBTQIA+ Film Festival as welcoming, inclusive and accessible as possible for everyone.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

25 and Under

\n\n

£6 cinema tickets for 16 to 25 year olds.

\nSign up\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

2026 festival brochure

\n\n

Download our digital festival brochure (PDF) for the 2026 edition of the festival.

\nDownload brochure\n
\n
\n\n
\n \n
\n \n
\n
\n

Festival pass

\n\n

See 10 films for less.

\nFind out more\n
\n
\n\n
\n \n
\n
\n \n \n \n \n\n

\n Add a promo code

\n
    \n \n
  • \n \n
  • \n \n
  • \n
    \n \n \n \n \n
    \n
  • \n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n\n
\n
\n\n
\n
\n
\n
\n\n
\n
\n
\n

British Film Institute

\n\n

We are a cultural charity, a National Lottery funding distributor, and the UK’s lead organisation for film and the moving image.

\n\n\n\n\n
\n\n
\n

Supported by

\n\n
\n
\n
\"Funded\n
\n\n
\"Culture\n
\n\n
\"BFI\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n
\n
\n
©2025 British Film Institute. All rights reserved.
\n\n
Registered charity 287780
\n\n
Registered office 21 Stephen St, London W1T 1LN
\n
\n
\n
\n
\n\n
\n
\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n
\n ", + "searchResults": [ + [ + "E74E3F47-2074-4A4A-86FF-5F77BDAFF714", + "P", + "BFI Flare Festival", + "LLGFF", + "lowr_21Mar26", + "Low Rider", + "Low Rider", + "Saturday 21 March 2026 20:55", + "20:55", + "21", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "E", + "344", + "Emma McDonald, Thishiwe Ziqubu, Martin Kluge,Bodies, Campbell X, UK-South Africa", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=A5898BBD-F39A-441A-B8AB-DC3107FF1232&BOparam::WScontent::loadArticle::context_id=E74E3F47-2074-4A4A-86FF-5F77BDAFF714", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREBODIES", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "", + "", + "", + "C4B57E43-F123-4CE5-8A17-6CB9F0409CF5", + "Flare - NFT1", + "BFI Southbank, Screen NFT1", + "BFI Southbank, Screen NFT1", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ], + [ + "73853341-A704-43D8-BFA5-8D2804A27D08", + "P", + "BFI Flare Festival", + "LLGFF", + "lowr_22Mar26", + "Low Rider", + "Low Rider", + "Sunday 22 March 2026 10:00", + "10:00", + "22", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "G", + "51", + "Bodies, Campbell X, UK-South Africa,Emma McDonald, Thishiwe Ziqubu, Martin Kluge", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=A5898BBD-F39A-441A-B8AB-DC3107FF1232&BOparam::WScontent::loadArticle::context_id=73853341-A704-43D8-BFA5-8D2804A27D08", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREBODIES", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "United Kingdom", + "", + "", + "C14E3C2A-68EC-4B8B-B4DA-E00E79BD3822", + "Flare NFT3", + "BFI Southbank, Screen NFT3", + "BFI Southbank, Screen NFT3", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ] + ] +} \ No newline at end of file diff --git a/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-lunar-sway-flare26-2026-02-23 b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-lunar-sway-flare26-2026-02-23 new file mode 100644 index 0000000..ffb80cc --- /dev/null +++ b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-lunar-sway-flare26-2026-02-23 @@ -0,0 +1,310 @@ +{ + "html": "\nBuy tickets for Lunar Sway | BFI Flare: London LGBTQIA+ Film Festival 2026\n\n\n\n\n\n\n\n\n\n\n\n \n\n \n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n\n\n\t\n\t\n\t\n\t\n\t\n\t\n
\n
\n \n \n \n
\n\n\n
\n \n \n \n
\n
\n
\n\n \n Order for\n Customer\n\n
\n
\n
\n \n
\n \n
\n \n Your basket is empty\n \n
\n \n
\n\n \n
\n\n \n \n\n\n \n
\n
\n \n\n\n
\n
\n\n \n
\n
\n Order for\n Customer\n \n
\n
\n\n \n
\n
    \n \n
\n
\n
\n\n
\n
\"BFI \"BFI \n
\n\n
\n\n \n \n
\n\n
\n \n
\n\t
\n\t\t\n\n\t
\n
\n\n\n
\n
\n\n \n
\n\n\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n
    \n
  • \n Search films and events\n \n
  • \n
  • \n Search dates\n from\n
    \n
    \n
  • \n
  • \n to\n
    \n
    \n
  • \n
  • \n \n
  • \n
\n \n
\n
\n\n \n\n
\n\n \n \n\n
\n \n
\n
\n
\n\n
\n\n\n
\n

Lunar Sway

\n\n

In this offbeat comedy, a bi guy in a desert town receives a surprise visit from his con-artist birth mother, with chaos ensuing.

\n
\n\n\n

Screening dates and booking

\n\n
\n

Book your festival tickets a week early when you become a BFI Member.\n

\n
\n\n\n
\n
-Sunday 22 March 2026 13:10
BFI Southbank, Screen NFT1
Lunar Sway
-Monday 23 March 2026 20:30
BFI Southbank, Screen NFT3
Lunar Sway
-Wednesday 25 March 2026 16:00
BFI Southbank, Screen NFT4
Lunar Sway
\n
\n\n\n
\n
\n
\n\n\n

Credits

\n\n
\n
    \n\t
  • \n\t

    Director-screenwriter

    \n\n\t

    Nick Butler

    \n\t
  • \n\t
  • \n\t

    With

    \n\n\t

    Noah Parker, Liza Weil, Douglas Smith

    \n\t
  • \n\t
  • \n\t

    Canada 2026. 98min

    \n\t
  • \n\t
  • \n\t

    Courtesy of

    \n\n\t

    alief

    \n\t
  • \n\t
  • \n\t

    Language

    \n\n\t

    English

    \n\t
  • \n
\n\n
\n

Access screenings

\n\n
\n

Wednesday 25 March 16:00\n
\nRelaxed screening

\n\n

Find out about booking tickets for access screenings\n

\n
\n
\n
\n\n\n

Introduction

\n\n
\n

Mooncrest is a small town of Lynchian proportions. It’s home to Cliff, who is green, a little jaded, yet desperate for love and adventure. When the prickly, charismatic Marg turns up out of the blue, claiming to be his mother, Cliff is drawn into her world of dubious choices in the hope of excitement and a sense of belonging. Nick Butler’s film is a low-fi delight.

\n\n

Zorian Clayton

\n\n

Content advice

\n\n

Contains scenes of nudity and sex.

\n
\n\n\n

How to book

\n\n
\n

BFI Flare tickets start from £10, with concessions available for many screenings and discounts for BFI Members. Booking information and ticket prices.

\n\n

If you’re aged 16 to 25, sign up for free to BFI 25 and Under for a chance to get £6 tickets to all screenings and events (subject to availability).

\n\n
\n

Missed out?

\n\n

More tickets may become available for these screenings before and during the festival. Find out about extra ticket releases and standby queues.

\n
\n
\n\n\n
\n

Our programmers recommend...

\n\n
\n
\n
\n
\"\"\n
\n\n
\n

Can’t Go Over It

\n\n

Two queer best friends are forced to confront the gradual dissolution of their friendship when they go on an annual hiking trip.

\n
\nRead more about Can’t Go Over It\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Death and Life Madalena

\n\n

Guto Parente’s dryly witty film sees a heavily pregnant woman take the reigns of a kitsch B-movie juggernaut, with startling results.

\n
\nRead more about Death and Life Madalena\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Drunken Noodles

\n\n

Lucio Castro’s third feature blends magical realist elements in this intimate character study.

\n
\nRead more about Drunken Noodles\n\n
\n
\n
\n
\n
\n\n
\n \n
\n \n\n\n\n
\n
\n
 
\n
\n\n
\n\n \n
\n \n
\n \n
\n \n
\n
\n

Hearts

\n\n

Films about love, romance and friendship.

\nFind out more\n
\n
\n\n
\n \n
\n
\n
\n

March 2026

\n
\n\n
\n
MON
\n\n
TUE
\n\n
WED
\n\n
THU
\n\n
FRI
\n\n
SAT
\n\n
SUN
\n\n
16
\n\n
17
\n18 19 20 21 22 23 24 25 26 27 28 29\n
\n
\n\n
\n \n
\n  \n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

BFI Membership

\n\n

Become a BFI Member from £39 to enjoy priority festival booking as well as other great benefits all year round.

\nJoin today\n
\n
\n\n
\n \n
\n \n
\n
\n

About the festival

\n\n

A quick guide to the festival.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

Screenings and events with access provision

\n\n

Making BFI Flare: London LGBTQIA+ Film Festival as welcoming, inclusive and accessible as possible for everyone.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

25 and Under

\n\n

£6 cinema tickets for 16 to 25 year olds.

\nSign up\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

2026 festival brochure

\n\n

Download our digital festival brochure (PDF) for the 2026 edition of the festival.

\nDownload brochure\n
\n
\n\n
\n \n
\n \n
\n
\n

Festival pass

\n\n

See 10 films for less.

\nFind out more\n
\n
\n\n
\n \n
\n
\n \n \n \n \n\n

\n Add a promo code

\n
    \n \n
  • \n \n
  • \n \n
  • \n
    \n \n \n \n \n
    \n
  • \n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n\n
\n
\n\n
\n
\n
\n
\n\n
\n
\n
\n

British Film Institute

\n\n

We are a cultural charity, a National Lottery funding distributor, and the UK’s lead organisation for film and the moving image.

\n\n\n\n\n
\n\n
\n

Supported by

\n\n
\n
\n
\"Funded\n
\n\n
\"Culture\n
\n\n
\"BFI\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n
\n
\n
©2025 British Film Institute. All rights reserved.
\n\n
Registered charity 287780
\n\n
Registered office 21 Stephen St, London W1T 1LN
\n
\n
\n
\n
\n\n
\n
\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n
\n ", + "searchResults": [ + [ + "84F10937-F9A1-46EC-8415-44331BA4C5B5", + "P", + "BFI Flare Festival", + "LLGFF", + "lunar_22Mar26", + "Lunar Sway", + "Lunar Sway", + "Sunday 22 March 2026 13:10", + "13:10", + "22", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "E", + "345", + "Hearts, Nick Butler, Canada,Noah Parker, Liza Weil, Douglas Smith", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=5A646C3A-5B81-403F-BBD3-C1B397611492&BOparam::WScontent::loadArticle::context_id=84F10937-F9A1-46EC-8415-44331BA4C5B5", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREHEARTS", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "", + "", + "", + "C4B57E43-F123-4CE5-8A17-6CB9F0409CF5", + "Flare - NFT1", + "BFI Southbank, Screen NFT1", + "BFI Southbank, Screen NFT1", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ], + [ + "398D1145-928F-453B-A326-B12816BD0EE3", + "P", + "BFI Flare Festival", + "LLGFF", + "lunar_23Mar26", + "Lunar Sway", + "Lunar Sway", + "Monday 23 March 2026 20:30", + "20:30", + "23", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "G", + "57", + "Noah Parker, Liza Weil, Douglas Smith,Hearts, Nick Butler, Canada", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=5A646C3A-5B81-403F-BBD3-C1B397611492&BOparam::WScontent::loadArticle::context_id=398D1145-928F-453B-A326-B12816BD0EE3", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREHEARTS", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "United Kingdom", + "", + "", + "C14E3C2A-68EC-4B8B-B4DA-E00E79BD3822", + "Flare NFT3", + "BFI Southbank, Screen NFT3", + "BFI Southbank, Screen NFT3", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ], + [ + "9C5FEFE9-D0B3-4B58-86A7-B5BD66D08F1D", + "P", + "BFI Flare Festival", + "LLGFF", + "lunar_1_25Mar26", + "Lunar Sway", + "Lunar Sway", + "Wednesday 25 March 2026 16:00", + "16:00", + "25", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "G", + "17", + "Hearts, Nick Butler, Canada,Noah Parker, Liza Weil, Douglas Smith,Relaxed", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=5A646C3A-5B81-403F-BBD3-C1B397611492&BOparam::WScontent::loadArticle::context_id=9C5FEFE9-D0B3-4B58-86A7-B5BD66D08F1D", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREHEARTS", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1" + ], + "", + "", + "", + "", + "", + "", + "", + "CC14D511-4D26-4B51-9327-BABE4A8EA546", + "Flare NFT4 General Admission", + "BFI Southbank, Screen NFT4", + "BFI Southbank, Screen NFT4", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£6.00", + "£6.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ] + ] +} \ No newline at end of file diff --git a/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-madfabulous-flare26-2026-02-23 b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-madfabulous-flare26-2026-02-23 new file mode 100644 index 0000000..995c2c4 --- /dev/null +++ b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-madfabulous-flare26-2026-02-23 @@ -0,0 +1,209 @@ +{ + "html": "\nBuy tickets for Madfabulous | BFI Flare: London LGBTQIA+ Film Festival 2026\n\n\n\n\n\n\n\n\n\n\n\n \n\n \n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n\n\n\t\n\t\n\t\n\t\n\t\n\t\n
\n
\n \n \n \n
\n\n\n
\n \n \n \n
\n
\n
\n\n \n Order for\n Customer\n\n
\n
\n
\n \n
\n \n
\n \n Your basket is empty\n \n
\n \n
\n\n \n
\n\n \n \n\n\n \n
\n
\n \n\n\n
\n
\n\n \n
\n
\n Order for\n Customer\n \n
\n
\n\n \n
\n
    \n \n
\n
\n
\n\n
\n
\"BFI \"BFI \n
\n\n
\n\n \n \n
\n\n
\n \n
\n\t
\n\t\t\n\n\t
\n
\n\n\n
\n
\n\n \n
\n\n\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n
    \n
  • \n Search films and events\n \n
  • \n
  • \n Search dates\n from\n
    \n
    \n
  • \n
  • \n to\n
    \n
    \n
  • \n
  • \n \n
  • \n
\n \n
\n
\n\n \n\n
\n\n \n \n\n
\n \n
\n
\n
\n\n
\n\n\n
\n

Madfabulous

\n\n

Celyn Jones’ quirky period drama is based on the life of Henry Cyril Paget, the dancing Marquess of Anglesey, who stuck his nose up at societal norms.

\n
\n\n\n

Screening dates and booking

\n\n
\n

Book your festival tickets a week early when you become a BFI Member.\n

\n
\n\n\n
\n
-Wednesday 25 March 2026 18:00
BFI Southbank, Screen NFT1
Madfabulous
-Thursday 26 March 2026 15:05
BFI Southbank, Screen NFT1
Madfabulous
\n
\n\n\n
\n
\n
\n\n\n

Credits

\n\n
\n
    \n\t
  • \n\t

    Director

    \n\n\t

    Celyn Jones

    \n\t
  • \n\t
  • \n\t

    Screenwriter

    \n\n\t

    Lisa Baker

    \n\t
  • \n\t
  • \n\t

    With

    \n\n\t

    Callum Scott Howells, Ruby Stokes, Rupert Everett

    \n\t
  • \n\t
  • \n\t

    UK 2025. 107min

    \n\t
  • \n\t
  • \n\t

    Courtesy of

    \n\n\t

    Noora Films

    \n\t
  • \n\t
  • \n\t

    Language

    \n\n\t

    English

    \n\t
  • \n
\n
\n\n\n

Introduction

\n\n
\n

Meet Toppy, a fabulously flamboyant aristocrat. Born in 1875, he inherited a fortune and promptly set about spending every last penny of it on jewels, theatre productions and scandalously lavish parties. While polite society clutched its pearls, Toppy became a beloved figure to the people of Bangor. Callum Scott Howells leads a game cast in this deliciously camp romp.

\n\n

Wema Mumma

\n\n

Content advice

\n\n

Contains flashing images.

\n
\n\n\n

How to book

\n\n
\n

BFI Flare tickets start from £10, with concessions available for many screenings and discounts for BFI Members. Booking information and ticket prices.

\n\n

If you’re aged 16 to 25, sign up for free to BFI 25 and Under for a chance to get £6 tickets to all screenings and events (subject to availability).

\n\n
\n

Missed out?

\n\n

More tickets may become available for these screenings before and during the festival. Find out about extra ticket releases and standby queues.

\n
\n
\n\n\n
\n

Our programmers recommend...

\n\n
\n
\n
\n
\"\"\n
\n\n
\n

On the Sea

\n\n

A moving tale of the powerful attraction between a local hand raker, who works on the mussel beds of North Wales, and an itinerant deckhand.

\n
\nRead more about On the Sea\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Perro Perro

\n\n

Argentinian filmmaker Marco Berger presents a boldly absurdist fairy tale.

\n
\nRead more about Perro Perro\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Til the World Stops Turning

\n\n

A celebration of some of this year’s best LGBTQIA+ short films from the UK and Ireland.

\n
\nRead more about Til the World Stops Turning\n\n
\n
\n
\n
\n
\n\n
\n \n
\n \n\n\n\n
\n
\n
 
\n
\n\n
\n\n \n
\n \n
\n \n
\n \n
\n
\n

Hearts

\n\n

Films about love, romance and friendship.

\nFind out more\n
\n
\n\n
\n \n
\n
\n
\n

March 2026

\n
\n\n
\n
MON
\n\n
TUE
\n\n
WED
\n\n
THU
\n\n
FRI
\n\n
SAT
\n\n
SUN
\n\n
16
\n\n
17
\n18 19 20 21 22 23 24 25 26 27 28 29\n
\n
\n\n
\n \n
\n  \n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

BFI Membership

\n\n

Become a BFI Member from £39 to enjoy priority festival booking as well as other great benefits all year round.

\nJoin today\n
\n
\n\n
\n \n
\n \n
\n
\n

About the festival

\n\n

A quick guide to the festival.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

Screenings and events with access provision

\n\n

Making BFI Flare: London LGBTQIA+ Film Festival as welcoming, inclusive and accessible as possible for everyone.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

25 and Under

\n\n

£6 cinema tickets for 16 to 25 year olds.

\nSign up\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

2026 festival brochure

\n\n

Download our digital festival brochure (PDF) for the 2026 edition of the festival.

\nDownload brochure\n
\n
\n\n
\n \n
\n \n
\n
\n

Festival pass

\n\n

See 10 films for less.

\nFind out more\n
\n
\n\n
\n \n
\n
\n \n \n \n \n\n

\n Add a promo code

\n
    \n \n
  • \n \n
  • \n \n
  • \n
    \n \n \n \n \n
    \n
  • \n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n\n
\n
\n\n
\n
\n
\n
\n\n
\n
\n
\n

British Film Institute

\n\n

We are a cultural charity, a National Lottery funding distributor, and the UK’s lead organisation for film and the moving image.

\n\n\n\n\n
\n\n
\n

Supported by

\n\n
\n
\n
\"Funded\n
\n\n
\"Culture\n
\n\n
\"BFI\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n
\n
\n
©2025 British Film Institute. All rights reserved.
\n\n
Registered charity 287780
\n\n
Registered office 21 Stephen St, London W1T 1LN
\n
\n
\n
\n
\n\n
\n
\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n
\n ", + "searchResults": [ + [ + "EDDD4807-5F9E-4453-B49C-2DA01765B6E0", + "P", + "BFI Flare Festival", + "LLGFF", + "madfa_25Mar26", + "Madfabulous", + "Madfabulous", + "Wednesday 25 March 2026 18:00", + "18:00", + "25", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "G", + "218", + "Callum Scott Howells, Ruby Stokes, Rupert Everett,Hearts, Celyn Jones, UK", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=7B44D775-21F3-4807-B208-6BAAB54E9773&BOparam::WScontent::loadArticle::context_id=EDDD4807-5F9E-4453-B49C-2DA01765B6E0", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREHEARTS", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "", + "", + "", + "C4B57E43-F123-4CE5-8A17-6CB9F0409CF5", + "Flare - NFT1", + "BFI Southbank, Screen NFT1", + "BFI Southbank, Screen NFT1", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ], + [ + "5DFFA28E-7D0C-43A0-AE9C-DE945B355D57", + "P", + "BFI Flare Festival", + "LLGFF", + "madfab_26Mar26", + "Madfabulous", + "Madfabulous", + "Thursday 26 March 2026 15:05", + "15:05", + "26", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "E", + "326", + "Hearts, Celyn Jones, UK,Callum Scott Howells, Ruby Stokes, Rupert Everett", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=7B44D775-21F3-4807-B208-6BAAB54E9773&BOparam::WScontent::loadArticle::context_id=5DFFA28E-7D0C-43A0-AE9C-DE945B355D57", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREHEARTS", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "", + "", + "", + "C4B57E43-F123-4CE5-8A17-6CB9F0409CF5", + "Flare - NFT1", + "BFI Southbank, Screen NFT1", + "BFI Southbank, Screen NFT1", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£10.00", + "£10.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ] + ] +} \ No newline at end of file diff --git a/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-maspalomas-flare26-2026-02-23 b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-maspalomas-flare26-2026-02-23 new file mode 100644 index 0000000..fc7c41c --- /dev/null +++ b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-maspalomas-flare26-2026-02-23 @@ -0,0 +1,209 @@ +{ + "html": "\nBuy tickets for Maspalomas | BFI Flare: London LGBTQIA+ Film Festival 2026\n\n\n\n\n\n\n\n\n\n\n\n \n\n \n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n\n\n\t\n\t\n\t\n\t\n\t\n\t\n
\n
\n \n \n \n
\n\n\n
\n \n \n \n
\n
\n
\n\n \n Order for\n Customer\n\n
\n
\n
\n \n
\n \n
\n \n Your basket is empty\n \n
\n \n
\n\n \n
\n\n \n \n\n\n \n
\n
\n \n\n\n
\n
\n\n \n
\n
\n Order for\n Customer\n \n
\n
\n\n \n
\n
    \n \n
\n
\n
\n\n
\n
\"BFI \"BFI \n
\n\n
\n\n \n \n
\n\n
\n \n
\n\t
\n\t\t\n\n\t
\n
\n\n\n
\n
\n\n \n
\n\n\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n
    \n
  • \n Search films and events\n \n
  • \n
  • \n Search dates\n from\n
    \n
    \n
  • \n
  • \n to\n
    \n
    \n
  • \n
  • \n \n
  • \n
\n \n
\n
\n\n \n\n
\n\n \n \n\n
\n \n
\n
\n
\n\n
\n\n\n
\n

Maspalomas

\n\n

This portrait of elder queer desire highlights the importance of reconciling all parts of ourselves.

\n
\n\n\n

Screening dates and booking

\n\n
\n

Book your festival tickets a week early when you become a BFI Member.\n

\n
\n\n\n
\n
-Thursday 19 March 2026 15:20
BFI Southbank, Screen NFT3
Maspalomas
-Saturday 21 March 2026 15:15
BFI Southbank, Screen NFT2
Maspalomas
\n
\n\n\n
\n
\n
\n\n\n

Credits

\n\n
\n
    \n\t
  • \n\t

    Directors

    \n\n\t

    Aitor Arregi, Jose Mari Goenaga

    \n\t
  • \n\t
  • \n\t

    Screenwriter

    \n\n\t

    Jose Mari Goenaga

    \n\t
  • \n\t
  • \n\t

    With

    \n\n\t

    José Ramón Soroiz, Nagore Aranburu, Kandido Uranga

    \n\t
  • \n\t
  • \n\t

    Spain 2025. 115min

    \n\t
  • \n\t
  • \n\t

    Courtesy of

    \n\n\t

    Film Factory

    \n\t
  • \n\t
  • \n\t

    Language

    \n\n\t

    Basque

    \n\n\t

    With English subtitles

    \n\t
  • \n
\n
\n\n\n

Introduction

\n\n
\n

Vicente is a recently single, out and proud septuagenarian living it up in Gran Canaria. But after suffering a stroke, he’s suddenly back in the closet, in a care home, reunited with the daughter he left when he came out, and faced with his failings as parent and person. Brilliantly exploring elder solidarity, this is a life-affirming look at how it’s never too late to improve ourselves.

\n\n

Diana Cipriano

\n\n

Content advice

\n\n

Contains scenes of nudity and sex.

\n
\n\n\n

How to book

\n\n
\n

BFI Flare tickets start from £10, with concessions available for many screenings and discounts for BFI Members. Booking information and ticket prices.

\n\n

If you’re aged 16 to 25, sign up for free to BFI 25 and Under for a chance to get £6 tickets to all screenings and events (subject to availability).

\n\n
\n

Missed out?

\n\n

More tickets may become available for these screenings before and during the festival. Find out about extra ticket releases and standby queues.

\n
\n
\n\n\n
\n

Our programmers recommend...

\n\n
\n
\n
\n
\"\"\n
\n\n
\n

Westler

\n\n

Originally screened as part of the first Gays’ Own Pictures in 1986, Westler is a striking depiction of a gay relationship during the Cold War.

\n
\nRead more about Westler\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Perro Perro

\n\n

Argentinian filmmaker Marco Berger presents a boldly absurdist fairy tale.

\n
\nRead more about Perro Perro\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Strange River

\n\n

Jaume Claret Muxart’s poetic debut feature is a sensitive and lyrical coming-of-age drama.

\n
\nRead more about Strange River\n\n
\n
\n
\n
\n
\n\n
\n \n
\n \n\n\n\n
\n
\n
 
\n
\n\n
\n\n \n
\n \n
\n \n
\n \n
\n
\n

Bodies

\n\n

Stories of sex, identity and transformation.

\nFind out more\n
\n
\n\n
\n \n
\n
\n
\n

March 2026

\n
\n\n
\n
MON
\n\n
TUE
\n\n
WED
\n\n
THU
\n\n
FRI
\n\n
SAT
\n\n
SUN
\n\n
16
\n\n
17
\n18 19 20 21 22 23 24 25 26 27 28 29\n
\n
\n\n
\n \n
\n  \n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

BFI Membership

\n\n

Become a BFI Member from £39 to enjoy priority festival booking as well as other great benefits all year round.

\nJoin today\n
\n
\n\n
\n \n
\n \n
\n
\n

About the festival

\n\n

A quick guide to the festival.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

Screenings and events with access provision

\n\n

Making BFI Flare: London LGBTQIA+ Film Festival as welcoming, inclusive and accessible as possible for everyone.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

25 and Under

\n\n

£6 cinema tickets for 16 to 25 year olds.

\nSign up\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

2026 festival brochure

\n\n

Download our digital festival brochure (PDF) for the 2026 edition of the festival.

\nDownload brochure\n
\n
\n\n
\n \n
\n \n
\n
\n

Festival pass

\n\n

See 10 films for less.

\nFind out more\n
\n
\n\n
\n \n
\n
\n \n \n \n \n\n

\n Add a promo code

\n
    \n \n
  • \n \n
  • \n \n
  • \n
    \n \n \n \n \n
    \n
  • \n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n\n
\n
\n\n
\n
\n
\n
\n\n
\n
\n
\n

British Film Institute

\n\n

We are a cultural charity, a National Lottery funding distributor, and the UK’s lead organisation for film and the moving image.

\n\n\n\n\n
\n\n
\n

Supported by

\n\n
\n
\n
\"Funded\n
\n\n
\"Culture\n
\n\n
\"BFI\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n
\n
\n
©2025 British Film Institute. All rights reserved.
\n\n
Registered charity 287780
\n\n
Registered office 21 Stephen St, London W1T 1LN
\n
\n
\n
\n
\n\n
\n
\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n
\n ", + "searchResults": [ + [ + "1C8290C3-7390-414E-970E-760918A85867", + "P", + "BFI Flare Festival", + "LLGFF", + "masp_19Mar26", + "Maspalomas", + "Maspalomas", + "Thursday 19 March 2026 15:20", + "15:20", + "19", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "G", + "66", + "José Ramón Soroiz, Nagore Aranburu, Kandido Uranga,Subtitles,Bodies, Aitor Arregi, Jose Mari Goenaga, Spain", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=EF8A5518-F213-4FF0-86B5-8DE363857B69&BOparam::WScontent::loadArticle::context_id=1C8290C3-7390-414E-970E-760918A85867", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREBODIES", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "United Kingdom", + "", + "", + "C14E3C2A-68EC-4B8B-B4DA-E00E79BD3822", + "Flare NFT3", + "BFI Southbank, Screen NFT3", + "BFI Southbank, Screen NFT3", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£10.00", + "£10.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ], + [ + "A5CFA2CE-4C1A-44C7-94FA-CF00F24D40A8", + "P", + "BFI Flare Festival", + "LLGFF", + "masp_21Mar26", + "Maspalomas", + "Maspalomas", + "Saturday 21 March 2026 15:15", + "15:15", + "21", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "G", + "66", + "Subtitles,Bodies, Aitor Arregi, Jose Mari Goenaga, Spain,José Ramón Soroiz, Nagore Aranburu, Kandido Uranga", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=EF8A5518-F213-4FF0-86B5-8DE363857B69&BOparam::WScontent::loadArticle::context_id=A5CFA2CE-4C1A-44C7-94FA-CF00F24D40A8", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREBODIES", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "", + "", + "", + "527ADADE-4BF3-4A03-BADB-12000B5C7BD6", + "Flare NFT2", + "BFI Southbank, Screen NFT2", + "BFI Southbank, Screen NFT2", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ] + ] +} \ No newline at end of file diff --git a/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-mickey-and-richard-flare26-2026-02-23 b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-mickey-and-richard-flare26-2026-02-23 new file mode 100644 index 0000000..cf13472 --- /dev/null +++ b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-mickey-and-richard-flare26-2026-02-23 @@ -0,0 +1,209 @@ +{ + "html": "\nBuy tickets for Mickey & Richard | BFI Flare: London LGBTQIA+ Film Festival 2026\n\n\n\n\n\n\n\n\n\n\n\n \n\n \n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n\n\n\t\n\t\n\t\n\t\n\t\n\t\n
\n
\n \n \n \n
\n\n\n
\n \n \n \n
\n
\n
\n\n \n Order for\n Customer\n\n
\n
\n
\n \n
\n \n
\n \n Your basket is empty\n \n
\n \n
\n\n \n
\n\n \n \n\n\n \n
\n
\n \n\n\n
\n
\n\n \n
\n
\n Order for\n Customer\n \n
\n
\n\n \n
\n
    \n \n
\n
\n
\n\n
\n
\"BFI \"BFI \n
\n\n
\n\n \n \n
\n\n
\n \n
\n\t
\n\t\t\n\n\t
\n
\n\n\n
\n
\n\n \n
\n\n\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n
    \n
  • \n Search films and events\n \n
  • \n
  • \n Search dates\n from\n
    \n
    \n
  • \n
  • \n to\n
    \n
    \n
  • \n
  • \n \n
  • \n
\n \n
\n
\n\n \n\n
\n\n \n \n\n
\n \n
\n
\n
\n\n
\n\n\n
\n

Mickey & Richard

\n\n

A frank portrait of Richard Bernstein, aka 1980s porn star Mickey Squires.

\n
\n\n\n

Screening dates and booking

\n\n
\n

Book your festival tickets a week early when you become a BFI Member.\n

\n
\n\n\n
\n
-Thursday 19 March 2026 21:00
BFI Southbank, Screen NFT2
Mickey & Richard
-Friday 20 March 2026 21:00
BFI Southbank, Screen NFT4
Mickey & Richard
\n
\n\n\n
\n
\n
\n\n\n

Credits

\n\n
\n
    \n\t
  • \n\t

    Directors

    \n\n\t

    Ryan A. White, A.P. Pickle

    \n\t
  • \n\t
  • \n\t

    With

    \n\n\t

    Richard Bernstein

    \n\t
  • \n\t
  • \n\t

    USA 2026. 70min

    \n\t
  • \n\t
  • \n\t

    Courtesy of

    \n\n\t

    Wohler Films LLC

    \n\t
  • \n\t
  • \n\t

    Language

    \n\n\t

    English

    \n\t
  • \n\t
  • Certificate\n\t

    Festival 18

    \n\t
  • \n
\n
\n\n\n

Introduction

\n\n
\n

This documentary explores the complexities of life in the adult film industry and how the boundary between Richard’s reality and Mickey’s fantasy continues to loom large years after leaving the spotlight. Through candid narration, complemented by a treasure trove of archival erotic material, it offers a revealing, nuanced look at the person behind the persona.

\n\n

Darren Jones

\n\n

Content advice

\n\n

Contains scenes of nudity and sex.

\n\n

Contains themes of drug use.

\n
\n\n\n

How to book

\n\n
\n

BFI Flare tickets start from £10, with concessions available for many screenings and discounts for BFI Members. Booking information and ticket prices.

\n\n

If you’re aged 16 to 25, sign up for free to BFI 25 and Under for a chance to get £6 tickets to all screenings and events (subject to availability).

\n\n
\n

Missed out?

\n\n

More tickets may become available for these screenings before and during the festival. Find out about extra ticket releases and standby queues.

\n
\n
\n\n\n
\n

Our programmers recommend...

\n\n
\n
\n
\n
\"\"\n
\n\n
\n

The Last Guest of the Holloway Motel

\n\n

In this impressive feature debut, a former British football star reflects on his past and the family he abandoned to hide his true identity.

\n
\nRead more about The Last Guest of the Holloway Motel\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Hunky Jesus

\n\n

Hail Marys! A front-row seat awaits at the annual Easter pageant to find San Francisco’s hottest holy figures, enshrining LGBTQIA+ rights to boot.

\n
\nRead more about Hunky Jesus\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Edges of Belonging

\n\n

From queer immigrants striving to find their place in the world to a solitary farmer’s quiet existence and a young man’s erotic fixation, this programme explores lives on the margins, and the ways people forge bonds, find intimacy and meaningful connections, and a place to belong.

\n
\nRead more about Edges of Belonging\n\n
\n
\n
\n
\n
\n\n
\n \n
\n \n\n\n\n
\n
\n
 
\n
\n\n
\n\n \n
\n \n
\n \n
\n \n
\n
\n

Bodies

\n\n

Stories of sex, identity and transformation.

\nFind out more\n
\n
\n\n
\n \n
\n
\n
\n

March 2026

\n
\n\n
\n
MON
\n\n
TUE
\n\n
WED
\n\n
THU
\n\n
FRI
\n\n
SAT
\n\n
SUN
\n\n
16
\n\n
17
\n18 19 20 21 22 23 24 25 26 27 28 29\n
\n
\n\n
\n \n
\n  \n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

BFI Membership

\n\n

Become a BFI Member from £39 to enjoy priority festival booking as well as other great benefits all year round.

\nJoin today\n
\n
\n\n
\n \n
\n \n
\n
\n

About the festival

\n\n

A quick guide to the festival.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

Screenings and events with access provision

\n\n

Making BFI Flare: London LGBTQIA+ Film Festival as welcoming, inclusive and accessible as possible for everyone.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

25 and Under

\n\n

£6 cinema tickets for 16 to 25 year olds.

\nSign up\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

2026 festival brochure

\n\n

Download our digital festival brochure (PDF) for the 2026 edition of the festival.

\nDownload brochure\n
\n
\n\n
\n \n
\n \n
\n
\n

Festival pass

\n\n

See 10 films for less.

\nFind out more\n
\n
\n\n
\n \n
\n
\n \n \n \n \n\n

\n Add a promo code

\n
    \n \n
  • \n \n
  • \n \n
  • \n
    \n \n \n \n \n
    \n
  • \n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n\n
\n
\n\n
\n
\n
\n
\n\n
\n
\n
\n

British Film Institute

\n\n

We are a cultural charity, a National Lottery funding distributor, and the UK’s lead organisation for film and the moving image.

\n\n\n\n\n
\n\n
\n

Supported by

\n\n
\n
\n
\"Funded\n
\n\n
\"Culture\n
\n\n
\"BFI\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n
\n
\n
©2025 British Film Institute. All rights reserved.
\n\n
Registered charity 287780
\n\n
Registered office 21 Stephen St, London W1T 1LN
\n
\n
\n
\n
\n\n
\n
\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n
\n ", + "searchResults": [ + [ + "76E4969B-A307-4A96-9BD6-B97DA399049E", + "P", + "BFI Flare Festival", + "LLGFF", + "mick_19Mar26", + "Mickey & Richard", + "Mickey & Richard", + "Thursday 19 March 2026 21:00", + "21:00", + "19", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "G", + "70", + "Richard Bernstein,Bodies, Ryan A. White, A.P. Pickle, USA", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=F87ED040-00EB-4D01-AB45-5717E011AF75&BOparam::WScontent::loadArticle::context_id=76E4969B-A307-4A96-9BD6-B97DA399049E", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREBODIES", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "", + "", + "", + "527ADADE-4BF3-4A03-BADB-12000B5C7BD6", + "Flare NFT2", + "BFI Southbank, Screen NFT2", + "BFI Southbank, Screen NFT2", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ], + [ + "8198ECDF-3C8C-42F8-8D7D-7D1C71D4D2CD", + "P", + "BFI Flare Festival", + "LLGFF", + "mick_20Mar26", + "Mickey & Richard", + "Mickey & Richard", + "Friday 20 March 2026 21:00", + "21:00", + "20", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "G", + "22", + "Richard Bernstein,Bodies, Ryan A. White, A.P. Pickle, USA", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=F87ED040-00EB-4D01-AB45-5717E011AF75&BOparam::WScontent::loadArticle::context_id=8198ECDF-3C8C-42F8-8D7D-7D1C71D4D2CD", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREBODIES", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "United Kingdom", + "", + "", + "A76FC31F-05EE-4F50-9AC1-C73800A414DA", + "Flare NFT4", + "BFI Southbank, Screen NFT4", + "BFI Southbank, Screen NFT4", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ] + ] +} \ No newline at end of file diff --git a/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-montreal-my-beautiful-flare26-2026-02-23 b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-montreal-my-beautiful-flare26-2026-02-23 new file mode 100644 index 0000000..9909133 --- /dev/null +++ b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-montreal-my-beautiful-flare26-2026-02-23 @@ -0,0 +1,209 @@ +{ + "html": "\nBuy tickets for Montreal, My Beautiful | BFI Flare: London LGBTQIA+ Film Festival 2026\n\n\n\n\n\n\n\n\n\n\n\n \n\n \n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n\n\n\t\n\t\n\t\n\t\n\t\n\t\n
\n
\n \n \n \n
\n\n\n
\n \n \n \n
\n
\n
\n\n \n Order for\n Customer\n\n
\n
\n
\n \n
\n \n
\n \n Your basket is empty\n \n
\n \n
\n\n \n
\n\n \n \n\n\n \n
\n
\n \n\n\n
\n
\n\n \n
\n
\n Order for\n Customer\n \n
\n
\n\n \n
\n
    \n \n
\n
\n
\n\n
\n
\"BFI \"BFI \n
\n\n
\n\n \n \n
\n\n
\n \n
\n\t
\n\t\t\n\n\t
\n
\n\n\n
\n
\n\n \n
\n\n\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n
    \n
  • \n Search films and events\n \n
  • \n
  • \n Search dates\n from\n
    \n
    \n
  • \n
  • \n to\n
    \n
    \n
  • \n
  • \n \n
  • \n
\n \n
\n
\n\n \n\n
\n\n \n \n\n
\n \n
\n
\n
\n\n
\n\n\n
\n

Montreal, My Beautiful

\n\n

Montréal, ma belle

\n\n

Joan Chen stuns in this powerful story of a Chinese immigrant in her 50s exploring her hidden lesbian desires for the first time.

\n
\n\n\n

Screening dates and booking

\n\n
\n

Book your festival tickets a week early when you become a BFI Member.\n

\n
\n\n\n
\n
-Tuesday 24 March 2026 20:35
BFI Southbank, Screen NFT1
Montreal, My Beautiful
-Thursday 26 March 2026 12:10
BFI Southbank, Screen NFT1
Montreal, My Beautiful
\n
\n\n\n
\n
\n
\n\n\n

Credits

\n\n
\n
    \n\t
  • \n\t

    Director-screenwriter

    \n\n\t

    Xiaodan He

    \n\t
  • \n\t
  • \n\t

    With

    \n\n\t

    Joan Chen, John Xu, Charlotte Aubin

    \n\t
  • \n\t
  • \n\t

    Canada 2025. 117min

    \n\t
  • \n\t
  • \n\t

    Courtesy of

    \n\n\t

    Filmoption International

    \n\t
  • \n\t
  • \n\t

    Languages

    \n\n\t

    French, Mandarin Chinese

    \n\n\t

    With English subtitles

    \n\t
  • \n
\n
\n\n\n

Introduction

\n\n
\n

Feng Xia lives a life of dutiful servitude to her husband, children and community of Chinese ex-pats. When she finally decides to put herself first, and explore the sexuality that she has long concealed, she meets the free-spirited Camille. But will Feng Xia’s self-actualisation mean that she must sacrifice the ‘perfect’ life that she’s spent so long building?

\n\n

Grace Barber-Plentie

\n\n

Content advice

\n\n

Contains scenes of domestic violence or abuse, nudity, and sex.

\n
\n\n\n

How to book

\n\n
\n

BFI Flare tickets start from £10, with concessions available for many screenings and discounts for BFI Members. Booking information and ticket prices.

\n\n

If you’re aged 16 to 25, sign up for free to BFI 25 and Under for a chance to get £6 tickets to all screenings and events (subject to availability).

\n\n
\n

Missed out?

\n\n

More tickets may become available for these screenings before and during the festival. Find out about extra ticket releases and standby queues.

\n
\n
\n\n\n
\n

Our programmers recommend...

\n\n
\n
\n
\n
\"\"\n
\n\n
\n

Whisperings of the Moon

\n\n

Lai Yuqing’s debut feature is a vivid portrait of an actor returning to Cambodia following a bereavement and reconnecting with her ex-lover.

\n
\nRead more about Whisperings of the Moon\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Washed Up

\n\n

This charming, Cornwall-set drama finds a struggling artist falling in love with a mythical selkie.

\n
\nRead more about Washed Up\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Barbara Forever

\n\n

This portrait of trailblazing experimental filmmaker Barbara Hammer is a striking account of how personal art can become political strength.

\n
\nRead more about Barbara Forever\n\n
\n
\n
\n
\n
\n\n
\n \n
\n \n\n\n\n
\n
\n
 
\n
\n\n
\n\n \n
\n \n
\n \n
\n \n
\n
\n

Hearts

\n\n

Films about love, romance and friendship.

\nFind out more\n
\n
\n\n
\n \n
\n
\n
\n

March 2026

\n
\n\n
\n
MON
\n\n
TUE
\n\n
WED
\n\n
THU
\n\n
FRI
\n\n
SAT
\n\n
SUN
\n\n
16
\n\n
17
\n18 19 20 21 22 23 24 25 26 27 28 29\n
\n
\n\n
\n \n
\n  \n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

BFI Membership

\n\n

Become a BFI Member from £39 to enjoy priority festival booking as well as other great benefits all year round.

\nJoin today\n
\n
\n\n
\n \n
\n \n
\n
\n

About the festival

\n\n

A quick guide to the festival.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

Screenings and events with access provision

\n\n

Making BFI Flare: London LGBTQIA+ Film Festival as welcoming, inclusive and accessible as possible for everyone.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

25 and Under

\n\n

£6 cinema tickets for 16 to 25 year olds.

\nSign up\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

2026 festival brochure

\n\n

Download our digital festival brochure (PDF) for the 2026 edition of the festival.

\nDownload brochure\n
\n
\n\n
\n \n
\n \n
\n
\n

Festival pass

\n\n

See 10 films for less.

\nFind out more\n
\n
\n\n
\n \n
\n
\n \n \n \n \n\n

\n Add a promo code

\n
    \n \n
  • \n \n
  • \n \n
  • \n
    \n \n \n \n \n
    \n
  • \n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n\n
\n
\n\n
\n
\n
\n
\n\n
\n
\n
\n

British Film Institute

\n\n

We are a cultural charity, a National Lottery funding distributor, and the UK’s lead organisation for film and the moving image.

\n\n\n\n\n
\n\n
\n

Supported by

\n\n
\n
\n
\"Funded\n
\n\n
\"Culture\n
\n\n
\"BFI\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n
\n
\n
©2025 British Film Institute. All rights reserved.
\n\n
Registered charity 287780
\n\n
Registered office 21 Stephen St, London W1T 1LN
\n
\n
\n
\n
\n\n
\n
\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n
\n ", + "searchResults": [ + [ + "80215847-18E2-4311-8498-795437883586", + "P", + "BFI Flare Festival", + "LLGFF", + "mont_24Mar26", + "Montreal, My Beautiful", + "Montreal, My Beautiful", + "Tuesday 24 March 2026 20:35", + "20:35", + "24", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "E", + "336", + "Joan Chen, John Xu, Charlotte Aubin,Subtitles,Hearts, Xiaodan He, Canada", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=6F3E04FC-9F43-4320-808F-ABD397615B5F&BOparam::WScontent::loadArticle::context_id=80215847-18E2-4311-8498-795437883586", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREHEARTS", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "", + "", + "", + "C4B57E43-F123-4CE5-8A17-6CB9F0409CF5", + "Flare - NFT1", + "BFI Southbank, Screen NFT1", + "BFI Southbank, Screen NFT1", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ], + [ + "AF5115F1-C467-476B-8D48-8B40E1A40812", + "P", + "BFI Flare Festival", + "LLGFF", + "mont_26Mar26", + "Montreal, My Beautiful", + "Montreal, My Beautiful", + "Thursday 26 March 2026 12:10", + "12:10", + "26", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "E", + "325", + "Subtitles,Hearts, Xiaodan He, Canada,Joan Chen, John Xu, Charlotte Aubin", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=6F3E04FC-9F43-4320-808F-ABD397615B5F&BOparam::WScontent::loadArticle::context_id=AF5115F1-C467-476B-8D48-8B40E1A40812", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREHEARTS", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "", + "", + "", + "C4B57E43-F123-4CE5-8A17-6CB9F0409CF5", + "Flare - NFT1", + "BFI Southbank, Screen NFT1", + "BFI Southbank, Screen NFT1", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£10.00", + "£10.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ] + ] +} \ No newline at end of file diff --git a/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-mysterious-skin-flare26-2026-02-23 b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-mysterious-skin-flare26-2026-02-23 new file mode 100644 index 0000000..8515378 --- /dev/null +++ b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-mysterious-skin-flare26-2026-02-23 @@ -0,0 +1,107 @@ +{ + "html": "\nBuy tickets for Mysterious Skin | BFI Flare: London LGBTQIA+ Film Festival 2026\n\n\n\n\n\n\n\n\n\n\n\n \n\n \n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n\n\n\t\n\t\n\t\n\t\n\t\n\t\n
\n
\n \n \n \n
\n\n\n
\n \n \n \n
\n
\n
\n\n \n Order for\n Customer\n\n
\n
\n
\n \n
\n \n
\n \n Your basket is empty\n \n
\n \n
\n\n \n
\n\n \n \n\n\n \n
\n
\n \n\n\n
\n
\n\n \n
\n
\n Order for\n Customer\n \n
\n
\n\n \n
\n
    \n \n
\n
\n
\n\n
\n
\"BFI \"BFI \n
\n\n
\n\n \n \n
\n\n
\n \n
\n\t
\n\t\t\n\n\t
\n
\n\n\n
\n
\n\n \n
\n\n\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n
    \n
  • \n Search films and events\n \n
  • \n
  • \n Search dates\n from\n
    \n
    \n
  • \n
  • \n to\n
    \n
    \n
  • \n
  • \n \n
  • \n
\n \n
\n
\n\n \n\n
\n\n \n \n\n
\n \n
\n
\n
\n\n
\n\n\n
\n

Mysterious Skin

\n\n

Gregg Araki’s riveting 2004 drama has lost none of its raw energy, power or ability to shock.

\n
\n\n\n

Screening dates and booking

\n\n
\n

Book your festival tickets a week early when you become a BFI Member.\n

\n
\n\n\n
\n
-Wednesday 25 March 2026 15:20
BFI Southbank, Screen NFT1
Mysterious Skin
\n
\n\n\n
\"\"\n
\n\n\n

Credits

\n\n
\n
    \n\t
  • \n\t

    Director-screenwriter

    \n\n\t

    Gregg Araki

    \n\t
  • \n\t
  • \n\t

    With

    \n\n\t

    Brady Corbet, Joseph Gordon-Levitt, Michelle Trachtenberg

    \n\t
  • \n\t
  • \n\t

    USA-Netherlands 2004. 105min

    \n\t
  • \n\t
  • \n\t

    Courtesy of

    \n\n\t

    mk2 Films

    \n\t
  • \n\t
  • \n\t

    Language

    \n\n\t

    English

    \n\t
  • \n\t
  • Certificate\n\t

    BBFC 18

    \n\t
  • \n
\n
\n\n\n

Introduction

\n\n
\n

A step away from Araki’s usual provocative and camp-leaning sensibilities, Mysterious Skin is a dreamlike reflection on the aftermath of child sexual abuse, featuring bravura performances by Joseph Gordon-Levitt, Brady Corbet and the late Michelle Trachtenberg. While not always an easy watch, the film avoids sensationalising assault, resulting in a mature and nuanced portrait of survivors.

\n\n

Grace Barber-Plentie

\n\n

Gregg Araki’s contribution to new queer cinema spanned the 1990s, with groundbreaking films including The Living End and The Doom Generation. But it was Mysterious Skin that broke with his signature nihilistic style and brought his work to a wider audience, consolidating his reputation as a great filmmaker. Mysterious Skin is a work of power and delicacy, honesty and mystery. The film never resorts to moralising or judging; it maintains an ambivalence about its characters and its subject, yet it grips us with its skilful storytelling.

\n\n

Brian Robinson, BFI Flare Programmer (2000-2024)

\n
\n\n\n
\n

Digitally restored by the Academy Film Archive and UCLA Film & Television Archive in conjunction with Sundance Institute in 4K.

\n
\n\n\n

Content advice

\n\n

Contains scenes of drug use, graphic violence or injury, harm towards children, sex, and sexual violence.

\n\n

Contains flashing images.

\n
\n\n\n

How to book

\n\n
\n

BFI Flare tickets start from £10, with concessions available for many screenings and discounts for BFI Members. Booking information and ticket prices.

\n\n

If you’re aged 16 to 25, sign up for free to BFI 25 and Under for a chance to get £6 tickets to all screenings and events (subject to availability).

\n\n
\n

Missed out?

\n\n

More tickets may become available for these screenings before and during the festival. Find out about extra ticket releases and standby queues.

\n
\n
\n\n\n
\n

Our programmers recommend...

\n\n
\n
\n
\n
\"\"\n
\n\n
\n

Pink Narcissus

\n\n

This landmark experimental queer art film, presenting the erotically charged dreamscape of a young hustler, is a celebration of the male body.

\n
\nRead more about Pink Narcissus\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

The Serpent’s Skin

\n\n

Lesbian goths and vampiric trade abound in this punk, trans-led queer horror.

\n
\nRead more about The Serpent’s Skin\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Lunar Sway

\n\n

In this offbeat comedy, a bi guy in a desert town receives a surprise visit from his con-artist birth mother, with chaos ensuing.

\n
\nRead more about Lunar Sway\n\n
\n
\n
\n
\n\n
\n \n
\n \n\n\n\n
\n
\n
 
\n
\n\n
\n\n \n
\n \n
\n \n
\n \n
\n
\n

Treasures

\n\n

Queer classics from across the decades.

\nFind out more\n
\n
\n\n
\n \n
\n
\n
\n

March 2026

\n
\n\n
\n
MON
\n\n
TUE
\n\n
WED
\n\n
THU
\n\n
FRI
\n\n
SAT
\n\n
SUN
\n\n
16
\n\n
17
\n18 19 20 21 22 23 24 25 26 27 28 29\n
\n
\n\n
\n \n
\n  \n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

BFI Membership

\n\n

Become a BFI Member from £39 to enjoy priority festival booking as well as other great benefits all year round.

\nJoin today\n
\n
\n\n
\n \n
\n \n
\n
\n

About the festival

\n\n

A quick guide to the festival.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

Screenings and events with access provision

\n\n

Making BFI Flare: London LGBTQIA+ Film Festival as welcoming, inclusive and accessible as possible for everyone.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

25 and Under

\n\n

£6 cinema tickets for 16 to 25 year olds.

\nSign up\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

2026 festival brochure

\n\n

Download our digital festival brochure (PDF) for the 2026 edition of the festival.

\nDownload brochure\n
\n
\n\n
\n \n
\n \n
\n
\n

Festival pass

\n\n

See 10 films for less.

\nFind out more\n
\n
\n\n
\n \n
\n
\n \n \n \n \n\n

\n Add a promo code

\n
    \n \n
  • \n \n
  • \n \n
  • \n
    \n \n \n \n \n
    \n
  • \n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n\n
\n
\n\n
\n
\n
\n
\n\n
\n
\n
\n

British Film Institute

\n\n

We are a cultural charity, a National Lottery funding distributor, and the UK’s lead organisation for film and the moving image.

\n\n\n\n\n
\n\n
\n

Supported by

\n\n
\n
\n
\"Funded\n
\n\n
\"Culture\n
\n\n
\"BFI\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n
\n
\n
©2025 British Film Institute. All rights reserved.
\n\n
Registered charity 287780
\n\n
Registered office 21 Stephen St, London W1T 1LN
\n
\n
\n
\n
\n\n
\n
\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n
\n ", + "searchResults": [ + [ + "33956D54-0690-4B89-A672-2D1AD2059304", + "P", + "BFI Flare Festival", + "LLGFF", + "myst_25Mar26", + "Mysterious Skin", + "Mysterious Skin", + "Wednesday 25 March 2026 15:20", + "15:20", + "25", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "E", + "331", + "Treasures, Gregg Araki, USA-Netherlands,Brady Corbet, Joseph Gordon-Levitt, Michelle Trachtenberg", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=2192D8E8-FA0A-40C5-A59C-AA7CD9724D47&BOparam::WScontent::loadArticle::context_id=33956D54-0690-4B89-A672-2D1AD2059304", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLARETREASURES", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "", + "", + "", + "C4B57E43-F123-4CE5-8A17-6CB9F0409CF5", + "Flare - NFT1", + "BFI Southbank, Screen NFT1", + "BFI Southbank, Screen NFT1", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£10.00", + "£10.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ] + ] +} \ No newline at end of file diff --git a/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-on-the-sea-flare26-2026-02-23 b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-on-the-sea-flare26-2026-02-23 new file mode 100644 index 0000000..0ce4cea --- /dev/null +++ b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-on-the-sea-flare26-2026-02-23 @@ -0,0 +1,209 @@ +{ + "html": "\nBuy tickets for On the Sea | BFI Flare: London LGBTQIA+ Film Festival 2026\n\n\n\n\n\n\n\n\n\n\n\n \n\n \n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n\n\n\t\n\t\n\t\n\t\n\t\n\t\n
\n
\n \n \n \n
\n\n\n
\n \n \n \n
\n
\n
\n\n \n Order for\n Customer\n\n
\n
\n
\n \n
\n \n
\n \n Your basket is empty\n \n
\n \n
\n\n \n
\n\n \n \n\n\n \n
\n
\n \n\n\n
\n
\n\n \n
\n
\n Order for\n Customer\n \n
\n
\n\n \n
\n
    \n \n
\n
\n
\n\n
\n
\"BFI \"BFI \n
\n\n
\n\n \n \n
\n\n
\n \n
\n\t
\n\t\t\n\n\t
\n
\n\n\n
\n
\n\n \n
\n\n\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n
    \n
  • \n Search films and events\n \n
  • \n
  • \n Search dates\n from\n
    \n
    \n
  • \n
  • \n to\n
    \n
    \n
  • \n
  • \n \n
  • \n
\n \n
\n
\n\n \n\n
\n\n \n \n\n
\n \n
\n
\n
\n\n
\n\n\n
\n

On the Sea

\n\n

A moving tale of the powerful attraction between a local hand raker, who works on the mussel beds of North Wales, and an itinerant deckhand.

\n
\n\n\n

Screening dates and booking

\n\n
\n

Book your festival tickets a week early when you become a BFI Member.\n

\n
\n\n\n
\n
-Monday 23 March 2026 20:20
BFI Southbank, Screen NFT1
On the Sea
-Wednesday 25 March 2026 15:20
BFI Southbank, Screen NFT2
On the Sea
\n
\n\n\n
\n
\n
\n\n\n

Credits

\n\n
\n
    \n\t
  • \n\t

    Director-screenwriter

    \n\n\t

    Helen Walsh

    \n\t
  • \n\t
  • \n\t

    With

    \n\n\t

    Barry Ward, Lorne MacFadyen, Liz White

    \n\t
  • \n\t
  • \n\t

    UK 2025. 111min

    \n\t
  • \n\t
  • \n\t

    Courtesy of

    \n\n\t

    The Yellow Affair

    \n\t
  • \n\t
  • \n\t

    Language

    \n\n\t

    English

    \n\t
  • \n
\n
\n\n\n

Introduction

\n\n
\n

Married to his childhood sweetheart, Jack finds himself drawn to the charismatic Daniel, sparking an affair that shakes their remote fishing community. Against a brooding coastal backdrop, Helen Walsh’s elegantly crafted drama explores masculinity, identity and desire, telling a quietly powerful story of repression and the courage to confront one’s true self.

\n\n

Darren Jones

\n\n

Content advice

\n\n

Contains scenes of animal slaughter.

\n
\n\n\n

How to book

\n\n
\n

BFI Flare tickets start from £10, with concessions available for many screenings and discounts for BFI Members. Booking information and ticket prices.

\n\n

If you’re aged 16 to 25, sign up for free to BFI 25 and Under for a chance to get £6 tickets to all screenings and events (subject to availability).

\n\n
\n

Missed out?

\n\n

More tickets may become available for these screenings before and during the festival. Find out about extra ticket releases and standby queues.

\n
\n
\n\n\n
\n

Our programmers recommend...

\n\n
\n
\n
\n
\"\"\n
\n\n
\n

Madfabulous

\n\n

Celyn Jones’ quirky period drama is based on the life of Henry Cyril Paget, the dancing Marquess of Anglesey, who stuck his nose up at societal norms.

\n
\nRead more about Madfabulous\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Another Man

\n\n

Marc’s dissatisfaction with his settled existence sees him unexpectedly attracted to a new neighbour, in this delicate exploration of thirtysomething life.

\n
\nRead more about Another Man\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Edges of Belonging

\n\n

From queer immigrants striving to find their place in the world to a solitary farmer’s quiet existence and a young man’s erotic fixation, this programme explores lives on the margins, and the ways people forge bonds, find intimacy and meaningful connections, and a place to belong.

\n
\nRead more about Edges of Belonging\n\n
\n
\n
\n
\n
\n\n
\n \n
\n \n\n\n\n
\n
\n
 
\n
\n\n
\n\n \n
\n \n
\n \n
\n \n
\n
\n

Hearts

\n\n

Films about love, romance and friendship.

\nFind out more\n
\n
\n\n
\n \n
\n
\n
\n

March 2026

\n
\n\n
\n
MON
\n\n
TUE
\n\n
WED
\n\n
THU
\n\n
FRI
\n\n
SAT
\n\n
SUN
\n\n
16
\n\n
17
\n18 19 20 21 22 23 24 25 26 27 28 29\n
\n
\n\n
\n \n
\n  \n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

BFI Membership

\n\n

Become a BFI Member from £39 to enjoy priority festival booking as well as other great benefits all year round.

\nJoin today\n
\n
\n\n
\n \n
\n \n
\n
\n

About the festival

\n\n

A quick guide to the festival.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

Screenings and events with access provision

\n\n

Making BFI Flare: London LGBTQIA+ Film Festival as welcoming, inclusive and accessible as possible for everyone.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

25 and Under

\n\n

£6 cinema tickets for 16 to 25 year olds.

\nSign up\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

2026 festival brochure

\n\n

Download our digital festival brochure (PDF) for the 2026 edition of the festival.

\nDownload brochure\n
\n
\n\n
\n \n
\n \n
\n
\n

Festival pass

\n\n

See 10 films for less.

\nFind out more\n
\n
\n\n
\n \n
\n
\n \n \n \n \n\n

\n Add a promo code

\n
    \n \n
  • \n \n
  • \n \n
  • \n
    \n \n \n \n \n
    \n
  • \n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n\n
\n
\n\n
\n
\n
\n
\n\n
\n
\n
\n

British Film Institute

\n\n

We are a cultural charity, a National Lottery funding distributor, and the UK’s lead organisation for film and the moving image.

\n\n\n\n\n
\n\n
\n

Supported by

\n\n
\n
\n
\"Funded\n
\n\n
\"Culture\n
\n\n
\"BFI\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n
\n
\n
©2025 British Film Institute. All rights reserved.
\n\n
Registered charity 287780
\n\n
Registered office 21 Stephen St, London W1T 1LN
\n
\n
\n
\n
\n\n
\n
\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n
\n ", + "searchResults": [ + [ + "4946B479-1AA4-440A-B3F6-1E8A9EED8A8C", + "P", + "BFI Flare Festival", + "LLGFF", + "onthe_23Mar26", + "On the Sea", + "On the Sea", + "Monday 23 March 2026 20:20", + "20:20", + "23", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "G", + "303", + "Barry Ward, Lorne MacFadyen, Liz White,Hearts, Helen Walsh, UK", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=964AAC33-F6A4-4E0E-B894-31BE8977A222&BOparam::WScontent::loadArticle::context_id=4946B479-1AA4-440A-B3F6-1E8A9EED8A8C", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREHEARTS", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "", + "", + "", + "C4B57E43-F123-4CE5-8A17-6CB9F0409CF5", + "Flare - NFT1", + "BFI Southbank, Screen NFT1", + "BFI Southbank, Screen NFT1", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ], + [ + "FFA450A1-1881-4E2C-A0EE-AB2E21D73A03", + "P", + "BFI Flare Festival", + "LLGFF", + "onthe_25Mar26", + "On the Sea", + "On the Sea", + "Wednesday 25 March 2026 15:20", + "15:20", + "25", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "G", + "67", + "Barry Ward, Lorne MacFadyen, Liz White,Hearts, Helen Walsh, UK", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=964AAC33-F6A4-4E0E-B894-31BE8977A222&BOparam::WScontent::loadArticle::context_id=FFA450A1-1881-4E2C-A0EE-AB2E21D73A03", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREHEARTS", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "", + "", + "", + "527ADADE-4BF3-4A03-BADB-12000B5C7BD6", + "Flare NFT2", + "BFI Southbank, Screen NFT2", + "BFI Southbank, Screen NFT2", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£10.00", + "£10.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ] + ] +} \ No newline at end of file diff --git a/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-out-laws-flare26-2026-02-23 b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-out-laws-flare26-2026-02-23 new file mode 100644 index 0000000..9a6293a --- /dev/null +++ b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-out-laws-flare26-2026-02-23 @@ -0,0 +1,209 @@ +{ + "html": "\nBuy tickets for Out Laws | BFI Flare: London LGBTQIA+ Film Festival 2026\n\n\n\n\n\n\n\n\n\n\n\n \n\n \n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n\n\n\t\n\t\n\t\n\t\n\t\n\t\n
\n
\n \n \n \n
\n\n\n
\n \n \n \n
\n
\n
\n\n \n Order for\n Customer\n\n
\n
\n
\n \n
\n \n
\n \n Your basket is empty\n \n
\n \n
\n\n \n
\n\n \n \n\n\n \n
\n
\n \n\n\n
\n
\n\n \n
\n
\n Order for\n Customer\n \n
\n
\n\n \n
\n
    \n \n
\n
\n
\n\n
\n
\"BFI \"BFI \n
\n\n
\n\n \n \n
\n\n
\n \n
\n\t
\n\t\t\n\n\t
\n
\n\n\n
\n
\n\n \n
\n\n\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n
    \n
  • \n Search films and events\n \n
  • \n
  • \n Search dates\n from\n
    \n
    \n
  • \n
  • \n to\n
    \n
    \n
  • \n
  • \n \n
  • \n
\n \n
\n
\n\n \n\n
\n\n \n \n\n
\n \n
\n
\n
\n\n
\n\n\n
\n

Out Laws

\n\n

Lexi Powner and James Lewis’ strident film chronicles the battle of one gay Namibian man to stand up for the rights of same-sex couples.

\n
\n\n\n

Screening dates and booking

\n\n
\n

Book your festival tickets a week early when you become a BFI Member.\n

\n
\n\n\n
\n
-Monday 23 March 2026 17:50
BFI Southbank, Screen NFT1
Out Laws
-Saturday 28 March 2026 10:30
BFI Southbank, Screen NFT1
Out Laws
\n
\n\n\n
\n
\n
\n\n\n

Credits

\n\n
\n
    \n\t
  • \n\t

    Directors

    \n\n\t

    Lexi Powner, James Lewis

    \n\t
  • \n\t
  • \n\t

    Screenwriter

    \n\n\t

    James Lewis

    \n\t
  • \n\t
  • \n\t

    With

    \n\n\t

    Friedel Dausab, Rosanna Flamer-Caldera, Raven Gill

    \n\t
  • \n\t
  • \n\t

    UK-Nambia 2025. 79min

    \n\t
  • \n\t
  • \n\t

    Courtesy of

    \n\n\t

    The Good Side

    \n\t
  • \n\t
  • \n\t

    Language

    \n\n\t

    English

    \n\t
  • \n
\n\n
\n

Access screenings

\n\n
\n

Monday 23 March 17:50\n
\nClosed Captions (CC) via WatchWord smart glasses
\nAudio Description

\n\n

Saturday 28 March 10:30\n
\nDescriptive Subtitles
\nAudio Description

\n\n

Find out about booking tickets for access screenings\n

\n
\n
\n
\n\n\n

Introduction

\n\n
\n

In June 2022, Friedel Dausab filed a lawsuit against his government, aiming to protect many other citizens like himself, who suffer under the yolk of anti-LGBTQIA+ laws. His journey takes him all the way to England and traces the history of homophobia in the Global South to Tudor-era laws and present-day US evangelism.

\n\n

Wema Mumma

\n\n

Content advice

\n\n

Contains homophobic, racist, and transphobic attitudes and language.

\n
\n\n\n

How to book

\n\n
\n

BFI Flare tickets start from £10, with concessions available for many screenings and discounts for BFI Members. Booking information and ticket prices.

\n\n

If you’re aged 16 to 25, sign up for free to BFI 25 and Under for a chance to get £6 tickets to all screenings and events (subject to availability).

\n\n
\n

Missed out?

\n\n

More tickets may become available for these screenings before and during the festival. Find out about extra ticket releases and standby queues.

\n
\n
\n\n\n
\n

Our programmers recommend...

\n\n
\n
\n
\n
\"\"\n
\n\n
\n

TO DANCE IS TO RESIST

\n\n

Two Ukrainian dancers seek life and artistic freedom following Russia’s invasion of their country.

\n
\nRead more about TO DANCE IS TO RESIST\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

This Is Home

\n\n

In this programme of shorts films by Indian directors, queer people find support, community and acceptance – sometimes in the unlikeliest of places.

\n
\nRead more about This Is Home\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

10s Across the Borders

\n\n

Sze-Wei Chan’s soulful documentary takes a deep dive into Southeast Asian ballroom culture.

\n
\nRead more about 10s Across the Borders\n\n
\n
\n
\n
\n
\n\n
\n \n
\n \n\n\n\n
\n
\n
 
\n
\n\n
\n\n \n
\n \n
\n \n
\n \n
\n
\n

Minds

\n\n

Reflections on art, politics and community.

\nFind out more\n
\n
\n\n
\n \n
\n
\n
\n

March 2026

\n
\n\n
\n
MON
\n\n
TUE
\n\n
WED
\n\n
THU
\n\n
FRI
\n\n
SAT
\n\n
SUN
\n\n
16
\n\n
17
\n18 19 20 21 22 23 24 25 26 27 28 29\n
\n
\n\n
\n \n
\n  \n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

BFI Membership

\n\n

Become a BFI Member from £39 to enjoy priority festival booking as well as other great benefits all year round.

\nJoin today\n
\n
\n\n
\n \n
\n \n
\n
\n

About the festival

\n\n

A quick guide to the festival.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

Screenings and events with access provision

\n\n

Making BFI Flare: London LGBTQIA+ Film Festival as welcoming, inclusive and accessible as possible for everyone.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

25 and Under

\n\n

£6 cinema tickets for 16 to 25 year olds.

\nSign up\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

2026 festival brochure

\n\n

Download our digital festival brochure (PDF) for the 2026 edition of the festival.

\nDownload brochure\n
\n
\n\n
\n \n
\n \n
\n
\n

Festival pass

\n\n

See 10 films for less.

\nFind out more\n
\n
\n\n
\n \n
\n
\n \n \n \n \n\n

\n Add a promo code

\n
    \n \n
  • \n \n
  • \n \n
  • \n
    \n \n \n \n \n
    \n
  • \n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n\n
\n
\n\n
\n
\n
\n
\n\n
\n
\n
\n

British Film Institute

\n\n

We are a cultural charity, a National Lottery funding distributor, and the UK’s lead organisation for film and the moving image.

\n\n\n\n\n
\n\n
\n

Supported by

\n\n
\n
\n
\"Funded\n
\n\n
\"Culture\n
\n\n
\"BFI\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n
\n
\n
©2025 British Film Institute. All rights reserved.
\n\n
Registered charity 287780
\n\n
Registered office 21 Stephen St, London W1T 1LN
\n
\n
\n
\n
\n\n
\n
\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n
\n ", + "searchResults": [ + [ + "B911E9AE-E853-467D-A0DE-9DBAECDC66BE", + "P", + "BFI Flare Festival", + "LLGFF", + "outl_23Mar26", + "Out Laws", + "Out Laws", + "Monday 23 March 2026 17:50", + "17:50", + "23", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "G", + "291", + "Friedel Dausab, Rosanna Flamer-Caldera, Raven Gill,Minds, Lexi Powner, James Lewis, UK-Nambia,Closed Captions (CC),AD audio description", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=A0FB600C-5AE1-4807-87BC-8C8B0A12864A&BOparam::WScontent::loadArticle::context_id=B911E9AE-E853-467D-A0DE-9DBAECDC66BE", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREMINDS", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "", + "", + "", + "C4B57E43-F123-4CE5-8A17-6CB9F0409CF5", + "Flare - NFT1", + "BFI Southbank, Screen NFT1", + "BFI Southbank, Screen NFT1", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ], + [ + "1416496F-333F-4F3C-8142-568F25DC4956", + "P", + "BFI Flare Festival", + "LLGFF", + "outl_28Mar26", + "Out Laws", + "Out Laws", + "Saturday 28 March 2026 10:30", + "10:30", + "28", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "E", + "353", + "DS descriptive subtitles,Minds, Lexi Powner, James Lewis, UK-Nambia,Friedel Dausab, Rosanna Flamer-Caldera, Raven Gill,AD audio description", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=A0FB600C-5AE1-4807-87BC-8C8B0A12864A&BOparam::WScontent::loadArticle::context_id=1416496F-333F-4F3C-8142-568F25DC4956", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREMINDS", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "", + "", + "", + "C4B57E43-F123-4CE5-8A17-6CB9F0409CF5", + "Flare - NFT1", + "BFI Southbank, Screen NFT1", + "BFI Southbank, Screen NFT1", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ] + ] +} \ No newline at end of file diff --git a/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-parting-glances-flare26-2026-02-23 b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-parting-glances-flare26-2026-02-23 new file mode 100644 index 0000000..49d39b7 --- /dev/null +++ b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-parting-glances-flare26-2026-02-23 @@ -0,0 +1,107 @@ +{ + "html": "\nBuy tickets for Parting Glances | BFI Flare: London LGBTQIA+ Film Festival 2026\n\n\n\n\n\n\n\n\n\n\n\n \n\n \n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n\n\n\t\n\t\n\t\n\t\n\t\n\t\n
\n
\n \n \n \n
\n\n\n
\n \n \n \n
\n
\n
\n\n \n Order for\n Customer\n\n
\n
\n
\n \n
\n \n
\n \n Your basket is empty\n \n
\n \n
\n\n \n
\n\n \n \n\n\n \n
\n
\n \n\n\n
\n
\n\n \n
\n
\n Order for\n Customer\n \n
\n
\n\n \n
\n
    \n \n
\n
\n
\n\n
\n
\"BFI \"BFI \n
\n\n
\n\n \n \n
\n\n
\n \n
\n\t
\n\t\t\n\n\t
\n
\n\n\n
\n
\n\n \n
\n\n\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n
    \n
  • \n Search films and events\n \n
  • \n
  • \n Search dates\n from\n
    \n
    \n
  • \n
  • \n to\n
    \n
    \n
  • \n
  • \n \n
  • \n
\n \n
\n
\n\n \n\n
\n\n \n \n\n
\n \n
\n
\n
\n\n
\n\n\n
\n

Parting Glances

\n\n

A 35mm restoration of Bill Sherwood’s bittersweet comedy-drama, set against the backdrop of the HIV/AIDS crisis in 1980s New York.

\n
\n\n\n

Screening dates and booking

\n\n
\n

Book your festival tickets a week early when you become a BFI Member.\n

\n
\n\n\n
\n
-Saturday 21 March 2026 11:00
BFI Southbank, Screen NFT1
Parting Glances
\n
\n\n\n
\"\"\n
\n\n\n

Credits

\n\n
\n
    \n\t
  • \n\t

    Director-screenwriter

    \n\n\t

    Bill Sherwood

    \n\t
  • \n\t
  • \n\t

    With

    \n\n\t

    Steve Buscemi, John Bolger, Richard Ganoung

    \n\t
  • \n\t
  • \n\t

    USA 1986. 90min

    \n\t
  • \n\t
  • \n\t

    Courtesy of

    \n\n\t

    First Run Features

    \n\t
  • \n\t
  • \n\t

    Language

    \n\n\t

    English

    \n\t
  • \n\t
  • Certificate\n\t

    BBFC 15

    \n\t
  • \n
\n
\n\n\n

Introduction

\n\n
\n

A seminal work of New Queer Cinema, Parting Glances was one of the first features to deal with the AIDS crisis. Set over the course of 24 hours, the film follows Michael as he negotiates his relationship with his current boyfriend, Robert, and his former lover, Nick, an HIV-positive musician played by Steve Buscemi in a breakthrough role.

\n
\n\n\n
\n

Restored by the UCLA Film & Television Archive as part of the Outfest UCLA Legacy Project. Restoration funding provided by the Andrew J. Kuehn Jr. Foundation with additional support provided by members of Outfest.

\n
\n\n\n

How to book

\n\n
\n

BFI Flare tickets start from £10, with concessions available for many screenings and discounts for BFI Members. Booking information and ticket prices.

\n\n

If you’re aged 16 to 25, sign up for free to BFI 25 and Under for a chance to get £6 tickets to all screenings and events (subject to availability).

\n\n
\n

Missed out?

\n\n

More tickets may become available for these screenings before and during the festival. Find out about extra ticket releases and standby queues.

\n
\n
\n\n\n
\n

Our programmers recommend...

\n\n
\n
\n
\n
\"\"\n
\n\n
\n

Reel Queer History: Preserving LGBTQIA+ Cinema

\n\n

Film archivist Todd Wiener joins us to discuss LGBTQIA+ film restoration and preservation.

\n
\nRead more about Reel Queer History: Preserving LGBTQIA+ Cinema\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Westler

\n\n

Originally screened as part of the first Gays’ Own Pictures in 1986, Westler is a striking depiction of a gay relationship during the Cold War.

\n
\nRead more about Westler\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Mysterious Skin

\n\n

Gregg Araki’s riveting 2004 drama has lost none of its raw energy, power or ability to shock.

\n
\nRead more about Mysterious Skin\n\n
\n
\n
\n
\n
\n\n
\n \n
\n \n\n\n\n
\n
\n
 
\n
\n\n
\n\n \n
\n \n
\n \n
\n \n
\n
\n

Treasures

\n\n

Queer classics from across the decades.

\nFind out more\n
\n
\n\n
\n \n
\n
\n
\n

March 2026

\n
\n\n
\n
MON
\n\n
TUE
\n\n
WED
\n\n
THU
\n\n
FRI
\n\n
SAT
\n\n
SUN
\n\n
16
\n\n
17
\n18 19 20 21 22 23 24 25 26 27 28 29\n
\n
\n\n
\n \n
\n  \n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

BFI Membership

\n\n

Become a BFI Member from £39 to enjoy priority festival booking as well as other great benefits all year round.

\nJoin today\n
\n
\n\n
\n \n
\n \n
\n
\n

About the festival

\n\n

A quick guide to the festival.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

Screenings and events with access provision

\n\n

Making BFI Flare: London LGBTQIA+ Film Festival as welcoming, inclusive and accessible as possible for everyone.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

25 and Under

\n\n

£6 cinema tickets for 16 to 25 year olds.

\nSign up\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

2026 festival brochure

\n\n

Download our digital festival brochure (PDF) for the 2026 edition of the festival.

\nDownload brochure\n
\n
\n\n
\n \n
\n \n
\n
\n

Festival pass

\n\n

See 10 films for less.

\nFind out more\n
\n
\n\n
\n \n
\n
\n \n \n \n \n\n

\n Add a promo code

\n
    \n \n
  • \n \n
  • \n \n
  • \n
    \n \n \n \n \n
    \n
  • \n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n\n
\n
\n\n
\n
\n
\n
\n\n
\n
\n
\n

British Film Institute

\n\n

We are a cultural charity, a National Lottery funding distributor, and the UK’s lead organisation for film and the moving image.

\n\n\n\n\n
\n\n
\n

Supported by

\n\n
\n
\n
\"Funded\n
\n\n
\"Culture\n
\n\n
\"BFI\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n
\n
\n
©2025 British Film Institute. All rights reserved.
\n\n
Registered charity 287780
\n\n
Registered office 21 Stephen St, London W1T 1LN
\n
\n
\n
\n
\n\n
\n
\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n
\n ", + "searchResults": [ + [ + "B9327F3D-1122-4945-9773-59F80DEDF06C", + "P", + "BFI Flare Festival", + "LLGFF", + "part_21Mar26", + "Parting Glances", + "Parting Glances", + "Saturday 21 March 2026 11:00", + "11:00", + "21", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "E", + "350", + "Treasures, Bill Sherwood, USA,Steve Buscemi, John Bolger, Richard Ganoung", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=DF311B61-4EAA-4855-A0A0-7DBE98856C7E&BOparam::WScontent::loadArticle::context_id=B9327F3D-1122-4945-9773-59F80DEDF06C", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLARETREASURES", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "", + "", + "", + "C4B57E43-F123-4CE5-8A17-6CB9F0409CF5", + "Flare - NFT1", + "BFI Southbank, Screen NFT1", + "BFI Southbank, Screen NFT1", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ] + ] +} \ No newline at end of file diff --git a/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-perro-perro-flare26-2026-02-23 b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-perro-perro-flare26-2026-02-23 new file mode 100644 index 0000000..9593f21 --- /dev/null +++ b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-perro-perro-flare26-2026-02-23 @@ -0,0 +1,209 @@ +{ + "html": "\nBuy tickets for Perro Perro | BFI Flare: London LGBTQIA+ Film Festival 2026\n\n\n\n\n\n\n\n\n\n\n\n \n\n \n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n\n\n\t\n\t\n\t\n\t\n\t\n\t\n
\n
\n \n \n \n
\n\n\n
\n \n \n \n
\n
\n
\n\n \n Order for\n Customer\n\n
\n
\n
\n \n
\n \n
\n \n Your basket is empty\n \n
\n \n
\n\n \n
\n\n \n \n\n\n \n
\n
\n \n\n\n
\n
\n\n \n
\n
\n Order for\n Customer\n \n
\n
\n\n \n
\n
    \n \n
\n
\n
\n\n
\n
\"BFI \"BFI \n
\n\n
\n\n \n \n
\n\n
\n \n
\n\t
\n\t\t\n\n\t
\n
\n\n\n
\n
\n\n \n
\n\n\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n
    \n
  • \n Search films and events\n \n
  • \n
  • \n Search dates\n from\n
    \n
    \n
  • \n
  • \n to\n
    \n
    \n
  • \n
  • \n \n
  • \n
\n \n
\n
\n\n \n\n
\n\n \n \n\n
\n \n
\n
\n
\n\n
\n\n\n
\n

Perro Perro

\n\n

Argentinian filmmaker Marco Berger presents a boldly absurdist fairy tale.

\n
\n\n\n

Screening dates and booking

\n\n
\n

Book your festival tickets a week early when you become a BFI Member.\n

\n
\n\n\n
\n
-Friday 20 March 2026 18:00
BFI Southbank, Screen NFT1
Perro Perro
-Saturday 21 March 2026 13:15
BFI Southbank, Screen NFT3
Perro Perro
\n
\n\n\n
\"\"\n
\n\n\n

Credits

\n\n
\n
    \n\t
  • \n\t

    Director-screenwriter

    \n\n\t

    Marco Berger

    \n\t
  • \n\t
  • \n\t

    With

    \n\n\t

    Juan Ramos, Germán Flood

    \n\t
  • \n\t
  • \n\t

    Argentina 2025. 101min

    \n\t
  • \n\t
  • \n\t

    Courtesy of

    \n\n\t

    Wildstar Sales

    \n\t
  • \n\t
  • \n\t

    Language

    \n\n\t

    Spanish

    \n\n\t

    With English subtitles

    \n\t
  • \n
\n
\n\n\n

Introduction

\n\n
\n

While on vacation, Juan discovers a naked man who behaves like a stray dog. Fascinated, he brings him home, caring for him with food, baths and affection. As their bond grows, Juan’s girlfriend and friends become increasingly uneasy with the strange, obedient companion who pants, follows commands and sleeps at the foot of Juan’s bed.

\n\n

Darren Jones

\n\n

Content advice

\n\n

Contains scenes of nudity.

\n
\n\n\n

How to book

\n\n
\n

BFI Flare tickets start from £10, with concessions available for many screenings and discounts for BFI Members. Booking information and ticket prices.

\n\n

If you’re aged 16 to 25, sign up for free to BFI 25 and Under for a chance to get £6 tickets to all screenings and events (subject to availability).

\n\n
\n

Missed out?

\n\n

More tickets may become available for these screenings before and during the festival. Find out about extra ticket releases and standby queues.

\n
\n
\n\n\n
\n

Our programmers recommend...

\n\n
\n
\n
\n
\"\"\n
\n\n
\n

Mickey & Richard

\n\n

A frank portrait of Richard Bernstein, aka 1980s porn star Mickey Squires.

\n
\nRead more about Mickey & Richard\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Another Man

\n\n

Marc’s dissatisfaction with his settled existence sees him unexpectedly attracted to a new neighbour, in this delicate exploration of thirtysomething life.

\n
\nRead more about Another Man\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Drunken Noodles

\n\n

Lucio Castro’s third feature blends magical realist elements in this intimate character study.

\n
\nRead more about Drunken Noodles\n\n
\n
\n
\n
\n
\n\n
\n \n
\n \n\n\n\n
\n
\n
 
\n
\n\n
\n\n \n
\n \n
\n \n
\n \n
\n
\n

Bodies

\n\n

Stories of sex, identity and transformation.

\nFind out more\n
\n
\n\n
\n \n
\n
\n
\n

March 2026

\n
\n\n
\n
MON
\n\n
TUE
\n\n
WED
\n\n
THU
\n\n
FRI
\n\n
SAT
\n\n
SUN
\n\n
16
\n\n
17
\n18 19 20 21 22 23 24 25 26 27 28 29\n
\n
\n\n
\n \n
\n  \n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

BFI Membership

\n\n

Become a BFI Member from £39 to enjoy priority festival booking as well as other great benefits all year round.

\nJoin today\n
\n
\n\n
\n \n
\n \n
\n
\n

About the festival

\n\n

A quick guide to the festival.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

Screenings and events with access provision

\n\n

Making BFI Flare: London LGBTQIA+ Film Festival as welcoming, inclusive and accessible as possible for everyone.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

25 and Under

\n\n

£6 cinema tickets for 16 to 25 year olds.

\nSign up\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

2026 festival brochure

\n\n

Download our digital festival brochure (PDF) for the 2026 edition of the festival.

\nDownload brochure\n
\n
\n\n
\n \n
\n \n
\n
\n

Festival pass

\n\n

See 10 films for less.

\nFind out more\n
\n
\n\n
\n \n
\n
\n \n \n \n \n\n

\n Add a promo code

\n
    \n \n
  • \n \n
  • \n \n
  • \n
    \n \n \n \n \n
    \n
  • \n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n\n
\n
\n\n
\n
\n
\n
\n\n
\n
\n
\n

British Film Institute

\n\n

We are a cultural charity, a National Lottery funding distributor, and the UK’s lead organisation for film and the moving image.

\n\n\n\n\n
\n\n
\n

Supported by

\n\n
\n
\n
\"Funded\n
\n\n
\"Culture\n
\n\n
\"BFI\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n
\n
\n
©2025 British Film Institute. All rights reserved.
\n\n
Registered charity 287780
\n\n
Registered office 21 Stephen St, London W1T 1LN
\n
\n
\n
\n
\n\n
\n
\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n
\n ", + "searchResults": [ + [ + "5942B806-CED3-4459-9FBF-9C82D8A0E0E2", + "P", + "BFI Flare Festival", + "LLGFF", + "perr_20Mar26", + "Perro Perro", + "Perro Perro", + "Friday 20 March 2026 18:00", + "18:00", + "20", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "E", + "339", + "Subtitles,Juan Ramos, Germán Flood,Bodies, Marco Berger, Argentina", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=42B0A2EF-B8D8-44BC-9F15-F31F48ED8EDC&BOparam::WScontent::loadArticle::context_id=5942B806-CED3-4459-9FBF-9C82D8A0E0E2", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREBODIES", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "", + "", + "", + "C4B57E43-F123-4CE5-8A17-6CB9F0409CF5", + "Flare - NFT1", + "BFI Southbank, Screen NFT1", + "BFI Southbank, Screen NFT1", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ], + [ + "B5F1BCEA-D7BD-4FF6-A1FF-6A0695F9500D", + "P", + "BFI Flare Festival", + "LLGFF", + "perr_21Mar26", + "Perro Perro", + "Perro Perro", + "Saturday 21 March 2026 13:15", + "13:15", + "21", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "G", + "52", + "Bodies, Marco Berger, Argentina,Subtitles,Juan Ramos, Germán Flood", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=42B0A2EF-B8D8-44BC-9F15-F31F48ED8EDC&BOparam::WScontent::loadArticle::context_id=B5F1BCEA-D7BD-4FF6-A1FF-6A0695F9500D", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREBODIES", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "United Kingdom", + "", + "", + "C14E3C2A-68EC-4B8B-B4DA-E00E79BD3822", + "Flare NFT3", + "BFI Southbank, Screen NFT3", + "BFI Southbank, Screen NFT3", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ] + ] +} \ No newline at end of file diff --git a/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-pillion-flare26-2026-02-23 b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-pillion-flare26-2026-02-23 new file mode 100644 index 0000000..e21e93e --- /dev/null +++ b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-pillion-flare26-2026-02-23 @@ -0,0 +1,107 @@ +{ + "html": "\nBuy tickets for Pillion | BFI Flare: London LGBTQIA+ Film Festival 2026\n\n\n\n\n\n\n\n\n\n\n\n \n\n \n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n\n\n\t\n\t\n\t\n\t\n\t\n\t\n
\n
\n \n \n \n
\n\n\n
\n \n \n \n
\n
\n
\n\n \n Order for\n Customer\n\n
\n
\n
\n \n
\n \n
\n \n Your basket is empty\n \n
\n \n
\n\n \n
\n\n \n \n\n\n \n
\n
\n \n\n\n
\n
\n\n \n
\n
\n Order for\n Customer\n \n
\n
\n\n \n
\n
    \n \n
\n
\n
\n\n
\n
\"BFI \"BFI \n
\n\n
\n\n \n \n
\n\n
\n \n
\n\t
\n\t\t\n\n\t
\n
\n\n\n
\n
\n\n \n
\n\n\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n
    \n
  • \n Search films and events\n \n
  • \n
  • \n Search dates\n from\n
    \n
    \n
  • \n
  • \n to\n
    \n
    \n
  • \n
  • \n \n
  • \n
\n \n
\n
\n\n \n\n
\n\n \n \n\n
\n \n
\n
\n
\n\n
\n\n\n
\n

Pillion

\n\n

A shy young man finds his place in the world as a submissive to a handsome biker, in Harry Lighton’s charming, sexy, tender and frequently hilarious debut.

\n
\n\n\n

Screening dates and booking

\n\n
\n

Book your festival tickets a week early when you become a BFI Member.\n

\n
\n\n\n
\n
-Sunday 29 March 2026 13:00
BFI Southbank, Screen NFT3
Pillion
\n
\n\n\n
\"\"\n
\n\n\n

Credits

\n\n
\n
    \n\t
  • \n\t

    Director-screenwriter

    \n\n\t

    Harry Lighton

    \n\t
  • \n\t
  • \n\t

    With

    \n\n\t

    Harry Melling, Alexander Skarsgård

    \n\t
  • \n\t
  • \n\t

    UK 2025. 106min

    \n\t
  • \n\t
  • \n\t

    Courtesy of

    \n\n\t

    Picturehouse Entertainment

    \n\t
  • \n\t
  • \n\t

    Language

    \n\n\t

    English

    \n\t
  • \n\t
  • Certificate\n\t

    BBFC 18

    \n\t
  • \n
\n\n
\n

Access screenings

\n\n
\n

Sunday 29 March 13:00\n
\nDescriptive Subtitles
\nAudio Description

\n\n

Find out about booking tickets for access screenings\n

\n
\n
\n
\n\n\n

Introduction

\n\n
\n

Colin is a quiet, unassuming man with supportive parents, whose world is rocked when he enters a dom-sub relationship with towering, attractive biker Ray. Navigating his new role, he learns about its pleasures and pains, including those that come with love. In the process, he learns his own boundaries. Sensitively directed, with captivating performances, this is a moving and surprisingly funny film that you will gladly submit to.

\n\n

Diana Cipriano

\n\n

Content advice

\n\n

Contains scenes of nudity and sex.

\n
\n\n\n

How to book

\n\n
\n

BFI Flare tickets start from £10, with concessions available for many screenings and discounts for BFI Members. Booking information and ticket prices.

\n\n

If you’re aged 16 to 25, sign up for free to BFI 25 and Under for a chance to get £6 tickets to all screenings and events (subject to availability).

\n\n
\n

Missed out?

\n\n

More tickets may become available for these screenings before and during the festival. Find out about extra ticket releases and standby queues.

\n
\n
\n\n\n
\n

Our programmers recommend...

\n\n
\n
\n
\n
\"\"\n
\n\n
\n

Leather Boys!

\n\n

An illustrated talk exploring BDSM and the gay leather scene on film.

\n
\nRead more about Leather Boys!\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Dreamers

\n\n

In Joy Gharoro-Akpojotor’s impressive feature debut, Nigerian immigrants Isio and Farah dare to imagine a vibrant future outside of their confinement at a British immigration removal centre.

\n
\nRead more about Dreamers\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Fragments of Us

\n\n

A collection of UK shorts exploring desire, trauma and identity. Through moments of connection, courage and honesty, they illuminate the struggles and triumphs that shape our most vulnerable selves.

\n
\nRead more about Fragments of Us\n\n
\n
\n
\n
\n
\n\n
\n \n
\n \n\n\n\n
\n
\n
 
\n
\n\n
\n\n \n
\n \n
\n \n
\n
\n
\n

March 2026

\n
\n\n
\n
MON
\n\n
TUE
\n\n
WED
\n\n
THU
\n\n
FRI
\n\n
SAT
\n\n
SUN
\n\n
16
\n\n
17
\n18 19 20 21 22 23 24 25 26 27 28 29\n
\n
\n\n
\n \n
\n  \n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

BFI Membership

\n\n

Become a BFI Member from £39 to enjoy priority festival booking as well as other great benefits all year round.

\nJoin today\n
\n
\n\n
\n \n
\n \n
\n
\n

About the festival

\n\n

A quick guide to the festival.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

Screenings and events with access provision

\n\n

Making BFI Flare: London LGBTQIA+ Film Festival as welcoming, inclusive and accessible as possible for everyone.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

25 and Under

\n\n

£6 cinema tickets for 16 to 25 year olds.

\nSign up\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

2026 festival brochure

\n\n

Download our digital festival brochure (PDF) for the 2026 edition of the festival.

\nDownload brochure\n
\n
\n\n
\n \n
\n \n
\n
\n

Festival pass

\n\n

See 10 films for less.

\nFind out more\n
\n
\n\n
\n \n
\n
\n \n \n \n \n\n

\n Add a promo code

\n
    \n \n
  • \n \n
  • \n \n
  • \n
    \n \n \n \n \n
    \n
  • \n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n\n
\n
\n\n
\n
\n
\n
\n\n
\n
\n
\n

British Film Institute

\n\n

We are a cultural charity, a National Lottery funding distributor, and the UK’s lead organisation for film and the moving image.

\n\n\n\n\n
\n\n
\n

Supported by

\n\n
\n
\n
\"Funded\n
\n\n
\"Culture\n
\n\n
\"BFI\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n
\n
\n
©2025 British Film Institute. All rights reserved.
\n\n
Registered charity 287780
\n\n
Registered office 21 Stephen St, London W1T 1LN
\n
\n
\n
\n
\n\n
\n
\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n
\n ", + "searchResults": [ + [ + "A84B3E1A-C415-4562-BE90-C06BF6295909", + "P", + "BFI Flare Festival", + "LLGFF", + "pilli_29Mar26", + "Pillion", + "Pillion", + "Sunday 29 March 2026 13:00", + "13:00", + "29", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "E", + "76", + "Best of Year, Harry Lighton, UK,Harry Melling, Alexander Skarsgård,DS descriptive subtitles,AD audio description", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=933CF840-2110-418C-A5FF-DCC7BC61362E&BOparam::WScontent::loadArticle::context_id=A84B3E1A-C415-4562-BE90-C06BF6295909", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREBESTOFYEAR", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "United Kingdom", + "", + "", + "C14E3C2A-68EC-4B8B-B4DA-E00E79BD3822", + "Flare NFT3", + "BFI Southbank, Screen NFT3", + "BFI Southbank, Screen NFT3", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ] + ] +} \ No newline at end of file diff --git a/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-pink-narcissus-flare26-2026-02-23 b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-pink-narcissus-flare26-2026-02-23 new file mode 100644 index 0000000..d0235d9 --- /dev/null +++ b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-pink-narcissus-flare26-2026-02-23 @@ -0,0 +1,107 @@ +{ + "html": "\nBuy tickets for Pink Narcissus | BFI Flare: London LGBTQIA+ Film Festival 2026\n\n\n\n\n\n\n\n\n\n\n\n \n\n \n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n\n\n\t\n\t\n\t\n\t\n\t\n\t\n
\n
\n \n \n \n
\n\n\n
\n \n \n \n
\n
\n
\n\n \n Order for\n Customer\n\n
\n
\n
\n \n
\n \n
\n \n Your basket is empty\n \n
\n \n
\n\n \n
\n\n \n \n\n\n \n
\n
\n \n\n\n
\n
\n\n \n
\n
\n Order for\n Customer\n \n
\n
\n\n \n
\n
    \n \n
\n
\n
\n\n
\n
\"BFI \"BFI \n
\n\n
\n\n \n \n
\n\n
\n \n
\n\t
\n\t\t\n\n\t
\n
\n\n\n
\n
\n\n \n
\n\n\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n
    \n
  • \n Search films and events\n \n
  • \n
  • \n Search dates\n from\n
    \n
    \n
  • \n
  • \n to\n
    \n
    \n
  • \n
  • \n \n
  • \n
\n \n
\n
\n\n \n\n
\n\n \n \n\n
\n \n
\n
\n
\n\n
\n\n\n
\n

Pink Narcissus

\n\n

This landmark experimental queer art film, presenting the erotically charged dreamscape of a young hustler, is a celebration of the male body.

\n
\n\n\n

Screening dates and booking

\n\n\n\n
\n

Book your festival tickets a week early when you become a BFI Member.\n

\n
\n\n\n
\n
-Thursday 19 March 2026 15:20
BFI Southbank, Screen NFT1
Pink Narcissus
\n
\n\n\n
\"\"\n
\n\n\n

Credits

\n\n
\n
    \n\t
  • \n\t

    Director-screenwriter

    \n\n\t

    James Bidgood

    \n\t
  • \n\t
  • \n\t

    With

    \n\n\t

    Bobby Kendall, Don Brooks, Charles Ludlam

    \n\t
  • \n\t
  • \n\t

    USA 1971. 71min

    \n\t
  • \n\t
  • \n\t

    Courtesy of

    \n\n\t

    BFI Distribution

    \n\t
  • \n\t
  • \n\t

    Language

    \n\n\t

    Dialogue-free

    \n\t
  • \n\t
  • Certificate\n\t

    BBFC 18

    \n\t
  • \n
\n
\n\n\n

Introduction

\n\n
\n

While awaiting visits from clients, a young hustler lounges in his lurid apartment, daydreaming. Narcissism and lust reign supreme in his fantasies, as he paints himself as protagonist, surrounded by leather-clad bikers, male belly dancers and other erotic visions. Once shrouded in mystery, this canonical work of queer cinema is presented here in an awe-inspiring 4K restoration.

\n\n

Diana Cipriano

\n
\n\n\n
\n

Restored by the UCLA Film & Television Archive from a 35mm internegative, 35mm print and 35mm track negative. Funding provided by Snapdragon Capital Partners. Laboratory services by Roundabout Entertainment, Inc., Audio Mechanics. Special thanks to Frameline, Mark Grabowski, Marcus Hu, Michael Lumpkin, Strand Releasing and James Woolley.

\n
\n\n\n

Content advice

\n\n

Contains scenes of nudity and sex.

\n
\n\n\n

How to book

\n\n
\n

BFI Flare tickets start from £10, with concessions available for many screenings and discounts for BFI Members. Booking information and ticket prices.

\n\n

If you’re aged 16 to 25, sign up for free to BFI 25 and Under for a chance to get £6 tickets to all screenings and events (subject to availability).

\n\n
\n

Missed out?

\n\n

More tickets may become available for these screenings before and during the festival. Find out about extra ticket releases and standby queues.

\n
\n
\n\n\n

Around the UK

\n\n
\n

Find our partner venues for screenings of Pink Narcissus around the UK.

\n\n\n
\n\n
\n \n
\n \n\n\n\n
\n
\n
 
\n
\n\n
\n\n \n
\n \n
\n \n
\n \n
\n
\n

Treasures

\n\n

Queer classics from across the decades.

\nFind out more\n
\n
\n\n
\n \n
\n
\n
\n

March 2026

\n
\n\n
\n
MON
\n\n
TUE
\n\n
WED
\n\n
THU
\n\n
FRI
\n\n
SAT
\n\n
SUN
\n\n
16
\n\n
17
\n18 19 20 21 22 23 24 25 26 27 28 29\n
\n
\n\n
\n \n
\n  \n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

BFI Membership

\n\n

Become a BFI Member from £39 to enjoy priority festival booking as well as other great benefits all year round.

\nJoin today\n
\n
\n\n
\n \n
\n \n
\n
\n

About the festival

\n\n

A quick guide to the festival.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

Screenings and events with access provision

\n\n

Making BFI Flare: London LGBTQIA+ Film Festival as welcoming, inclusive and accessible as possible for everyone.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

25 and Under

\n\n

£6 cinema tickets for 16 to 25 year olds.

\nSign up\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

2026 festival brochure

\n\n

Download our digital festival brochure (PDF) for the 2026 edition of the festival.

\nDownload brochure\n
\n
\n\n
\n \n
\n \n
\n
\n

Festival pass

\n\n

See 10 films for less.

\nFind out more\n
\n
\n\n
\n \n
\n
\n \n \n \n \n\n

\n Add a promo code

\n
    \n \n
  • \n \n
  • \n \n
  • \n
    \n \n \n \n \n
    \n
  • \n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n\n
\n
\n\n
\n
\n
\n
\n\n
\n
\n
\n

British Film Institute

\n\n

We are a cultural charity, a National Lottery funding distributor, and the UK’s lead organisation for film and the moving image.

\n\n\n\n\n
\n\n
\n

Supported by

\n\n
\n
\n
\"Funded\n
\n\n
\"Culture\n
\n\n
\"BFI\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n
\n
\n
©2025 British Film Institute. All rights reserved.
\n\n
Registered charity 287780
\n\n
Registered office 21 Stephen St, London W1T 1LN
\n
\n
\n
\n
\n\n
\n
\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n
\n ", + "searchResults": [ + [ + "65A4CA3C-7FFC-48A9-948E-0B43E79C8321", + "P", + "BFI Flare Festival", + "LLGFF", + "pink_19Mar26", + "Pink Narcissus", + "Pink Narcissus", + "Thursday 19 March 2026 15:20", + "15:20", + "19", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "E", + "312", + "Treasures, James Bidgood, USA,Bobby Kendall, Don Brooks, Charles Ludlam", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=29427ADF-436E-4B00-8E9C-BA7C577E0861&BOparam::WScontent::loadArticle::context_id=65A4CA3C-7FFC-48A9-948E-0B43E79C8321", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLARETREASURES", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "", + "", + "", + "C4B57E43-F123-4CE5-8A17-6CB9F0409CF5", + "Flare - NFT1", + "BFI Southbank, Screen NFT1", + "BFI Southbank, Screen NFT1", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£10.00", + "£10.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ] + ] +} \ No newline at end of file diff --git a/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-queen-of-coal-flare26-2026-02-23 b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-queen-of-coal-flare26-2026-02-23 new file mode 100644 index 0000000..da205d6 --- /dev/null +++ b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-queen-of-coal-flare26-2026-02-23 @@ -0,0 +1,209 @@ +{ + "html": "\nBuy tickets for Queen of Coal | BFI Flare: London LGBTQIA+ Film Festival 2026\n\n\n\n\n\n\n\n\n\n\n\n \n\n \n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n\n\n\t\n\t\n\t\n\t\n\t\n\t\n
\n
\n \n \n \n
\n\n\n
\n \n \n \n
\n
\n
\n\n \n Order for\n Customer\n\n
\n
\n
\n \n
\n \n
\n \n Your basket is empty\n \n
\n \n
\n\n \n
\n\n \n \n\n\n \n
\n
\n \n\n\n
\n
\n\n \n
\n
\n Order for\n Customer\n \n
\n
\n\n \n
\n
    \n \n
\n
\n
\n\n
\n
\"BFI \"BFI \n
\n\n
\n\n \n \n
\n\n
\n \n
\n\t
\n\t\t\n\n\t
\n
\n\n\n
\n
\n\n \n
\n\n\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n
    \n
  • \n Search films and events\n \n
  • \n
  • \n Search dates\n from\n
    \n
    \n
  • \n
  • \n to\n
    \n
    \n
  • \n
  • \n \n
  • \n
\n \n
\n
\n\n \n\n
\n\n \n \n\n
\n \n
\n
\n
\n\n
\n\n\n
\n

Queen of Coal

\n\n

Miss Carbón

\n\n

In this defiant portrait of self-determination, a woman yearns to work in a male-dominated world.

\n
\n\n\n

Screening dates and booking

\n\n
\n

Book your festival tickets a week early when you become a BFI Member.\n

\n
\n\n\n
\n
-Tuesday 24 March 2026 18:00
BFI Southbank, Screen NFT1
Queen of Coal
-Thursday 26 March 2026 15:40
BFI Southbank, Screen NFT2
Queen of Coal
\n
\n\n\n
\n
\n
\n\n\n

Credits

\n\n
\n
    \n\t
  • \n\t

    Director

    \n\n\t

    Agustina Macri

    \n\t
  • \n\t
  • \n\t

    Screenwriters

    \n\n\t

    Erika Halvorsen, Mara Pescio

    \n\t
  • \n\t
  • \n\t

    With

    \n\n\t

    Lux Pascal, Laura Grandinetti, Romina Escobar

    \n\t
  • \n\t
  • \n\t

    Argentina-Spain 2025. 93min

    \n\t
  • \n\t
  • \n\t

    Courtesy of

    \n\n\t

    Fandango Sales

    \n\t
  • \n\t
  • \n\t

    Language

    \n\n\t

    Spanish

    \n\n\t

    With English subtitles

    \n\t
  • \n
\n
\n\n\n

Introduction

\n\n
\n

In the 2010s, Carlita Antonella Rodríguez takes up a role long forbidden to women in the superstitious environment of Patagonia. Lux Pascal, in her debut feature film role, boldly portrays Carlita’s fight for recognition and respect, as she navigates prejudice, family bonds and economic survival. It’s a boldly moving testament to courage, visibility and the right to belong.

\n\n

Jaye Hudson

\n
\n\n\n
\n

Supported by the Interbank LGBT+ Forum members: Bank of America, BNP Paribas, DTCC, Evercore, Factset, Lloyds Bank, Mastercard, Rothschild & Co and State Street.

\n
\n\n\n

Content advice

\n\n

Contains scenes of nudity and sex.

\n\n

Contains homophobic and transphobic attitudes and language.

\n
\n\n\n

How to book

\n\n
\n

BFI Flare tickets start from £10, with concessions available for many screenings and discounts for BFI Members. Booking information and ticket prices.

\n\n

If you’re aged 16 to 25, sign up for free to BFI 25 and Under for a chance to get £6 tickets to all screenings and events (subject to availability).

\n\n
\n

Missed out?

\n\n

More tickets may become available for these screenings before and during the festival. Find out about extra ticket releases and standby queues.

\n
\n
\n\n\n
\n

Our programmers recommend...

\n\n
\n
\n
\n
\"\"\n
\n\n
\n

I Am Going to Miss You

\n\n

A T4T couple move in together and are forced to face their differences in this indie romantic drama featuring an all-trans cast.

\n
\nRead more about I Am Going to Miss You\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

She Got Claws!

\n\n

Trans Femmes fight back with curses, crime, cults and cunning monstrosity in this seductive selection of high-femme shorts. Dolls, its late-stage capitalism embrace your inner creature!

\n
\nRead more about She Got Claws!\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

A Sweetness from Nowhere

\n\n

Ester Bergsmark ruminates on trans violence and healing, in this evocative and personal film.

\n
\nRead more about A Sweetness from Nowhere\n\n
\n
\n
\n
\n\n
\n \n
\n \n\n\n\n
\n
\n
 
\n
\n\n
\n\n \n
\n \n
\n \n
\n \n
\n
\n

Bodies

\n\n

Stories of sex, identity and transformation.

\nFind out more\n
\n
\n\n
\n \n
\n
\n
\n

March 2026

\n
\n\n
\n
MON
\n\n
TUE
\n\n
WED
\n\n
THU
\n\n
FRI
\n\n
SAT
\n\n
SUN
\n\n
16
\n\n
17
\n18 19 20 21 22 23 24 25 26 27 28 29\n
\n
\n\n
\n \n
\n  \n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

BFI Membership

\n\n

Become a BFI Member from £39 to enjoy priority festival booking as well as other great benefits all year round.

\nJoin today\n
\n
\n\n
\n \n
\n \n
\n
\n

About the festival

\n\n

A quick guide to the festival.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

Screenings and events with access provision

\n\n

Making BFI Flare: London LGBTQIA+ Film Festival as welcoming, inclusive and accessible as possible for everyone.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

25 and Under

\n\n

£6 cinema tickets for 16 to 25 year olds.

\nSign up\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

2026 festival brochure

\n\n

Download our digital festival brochure (PDF) for the 2026 edition of the festival.

\nDownload brochure\n
\n
\n\n
\n \n
\n \n
\n
\n

Festival pass

\n\n

See 10 films for less.

\nFind out more\n
\n
\n\n
\n \n
\n
\n \n \n \n \n\n

\n Add a promo code

\n
    \n \n
  • \n \n
  • \n \n
  • \n
    \n \n \n \n \n
    \n
  • \n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n\n
\n
\n\n
\n
\n
\n
\n\n
\n
\n
\n

British Film Institute

\n\n

We are a cultural charity, a National Lottery funding distributor, and the UK’s lead organisation for film and the moving image.

\n\n\n\n\n
\n\n
\n

Supported by

\n\n
\n
\n
\"Funded\n
\n\n
\"Culture\n
\n\n
\"BFI\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n
\n
\n
©2025 British Film Institute. All rights reserved.
\n\n
Registered charity 287780
\n\n
Registered office 21 Stephen St, London W1T 1LN
\n
\n
\n
\n
\n\n
\n
\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n
\n ", + "searchResults": [ + [ + "91950D19-E19A-45A3-8581-3F256656D730", + "P", + "BFI Flare Festival", + "LLGFF", + "quee_24Mar26", + "Queen of Coal", + "Queen of Coal", + "Tuesday 24 March 2026 18:00", + "18:00", + "24", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "G", + "224", + "Lux Pascal, Laura Grandinetti, Romina Escobar,Bodies, Agustina Macri, Argentina-Spain,Subtitles", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=E9F9C540-2732-4790-93E4-4522B711FC0E&BOparam::WScontent::loadArticle::context_id=91950D19-E19A-45A3-8581-3F256656D730", + "", + "", + "", + "", + "", + "", + "", + "", + "Supported by the Interbank LGBT+ Forum members", + "FLAREBODIES", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "", + "", + "", + "C4B57E43-F123-4CE5-8A17-6CB9F0409CF5", + "Flare - NFT1", + "BFI Southbank, Screen NFT1", + "BFI Southbank, Screen NFT1", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ], + [ + "3598B768-8094-44FE-BC24-FA79E475253A", + "P", + "BFI Flare Festival", + "LLGFF", + "quee_26Mar26", + "Queen of Coal", + "Queen of Coal", + "Thursday 26 March 2026 15:40", + "15:40", + "26", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "G", + "72", + "Lux Pascal, Laura Grandinetti, Romina Escobar,Bodies, Agustina Macri, Argentina-Spain,Subtitles", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=E9F9C540-2732-4790-93E4-4522B711FC0E&BOparam::WScontent::loadArticle::context_id=3598B768-8094-44FE-BC24-FA79E475253A", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREBODIES", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "", + "", + "", + "527ADADE-4BF3-4A03-BADB-12000B5C7BD6", + "Flare NFT2", + "BFI Southbank, Screen NFT2", + "BFI Southbank, Screen NFT2", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£10.00", + "£10.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ] + ] +} \ No newline at end of file diff --git a/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-satisfaction-flare26-2026-02-23 b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-satisfaction-flare26-2026-02-23 new file mode 100644 index 0000000..3cc6d3d --- /dev/null +++ b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-satisfaction-flare26-2026-02-23 @@ -0,0 +1,209 @@ +{ + "html": "\nBuy tickets for Satisfaction | BFI Flare: London LGBTQIA+ Film Festival 2026\n\n\n\n\n\n\n\n\n\n\n\n \n\n \n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n\n\n\t\n\t\n\t\n\t\n\t\n\t\n
\n
\n \n \n \n
\n\n\n
\n \n \n \n
\n
\n
\n\n \n Order for\n Customer\n\n
\n
\n
\n \n
\n \n
\n \n Your basket is empty\n \n
\n \n
\n\n \n
\n\n \n \n\n\n \n
\n
\n \n\n\n
\n
\n\n \n
\n
\n Order for\n Customer\n \n
\n
\n\n \n
\n
    \n \n
\n
\n
\n\n
\n
\"BFI \"BFI \n
\n\n
\n\n \n \n
\n\n
\n \n
\n\t
\n\t\t\n\n\t
\n
\n\n\n
\n
\n\n \n
\n\n\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n
    \n
  • \n Search films and events\n \n
  • \n
  • \n Search dates\n from\n
    \n
    \n
  • \n
  • \n to\n
    \n
    \n
  • \n
  • \n \n
  • \n
\n \n
\n
\n\n \n\n
\n\n \n \n\n
\n \n
\n
\n
\n\n
\n\n\n
\n

Satisfaction

\n\n

Alex Burunova movingly explores the complex relationship between two British composers.

\n
\n\n\n

Screening dates and booking

\n\n
\n

Book your festival tickets a week early when you become a BFI Member.\n

\n
\n\n\n
\n
-Sunday 22 March 2026 20:50
BFI Southbank, Screen NFT1
Satisfaction
-Monday 23 March 2026 15:10
BFI Southbank, Screen NFT1
Satisfaction
\n
\n\n\n
\n
\n
\n\n\n

Credits

\n\n
\n
    \n\t
  • \n\t

    Director-screenwriter

    \n\n\t

    Alex Burunova

    \n\t
  • \n\t
  • \n\t

    With

    \n\n\t

    Emma Laird, Fionn Whitehead, Zar Amir Ebrahimi

    \n\t
  • \n\t
  • \n\t

    USA-Italy-Greece-Ukraine 2025. 97min

    \n\t
  • \n\t
  • \n\t

    Courtesy of

    \n\n\t

    alief

    \n\t
  • \n\t
  • \n\t

    Languages

    \n\n\t

    English, Greek

    \n\n\t

    With English subtitles

    \n\t
  • \n\t
  • Certificate\n\t

    BBFC 18

    \n\t
  • \n
\n
\n\n\n

Introduction

\n\n
\n

Emma Laird impresses as Lola, a gifted composer who encounters Fionn Whitehead’s charming Philip at a party. Their bond is immediate and electric, carrying them to the beautiful Greek islands. It’s there that Lola connects with Elena, an intriguing woman she meets at a nudist beach, which forces Lola to confront her buried past and unspoken feelings.

\n\n

Wema Mumma

\n\n

Content advice

\n\n

Contains scenes of sexual violence.

\n
\n\n\n

How to book

\n\n
\n

BFI Flare tickets start from £10, with concessions available for many screenings and discounts for BFI Members. Booking information and ticket prices.

\n\n

If you’re aged 16 to 25, sign up for free to BFI 25 and Under for a chance to get £6 tickets to all screenings and events (subject to availability).

\n\n
\n

Missed out?

\n\n

More tickets may become available for these screenings before and during the festival. Find out about extra ticket releases and standby queues.

\n
\n
\n\n\n
\n

Our programmers recommend...

\n\n
\n
\n
\n
\"\"\n
\n\n
\n

Til the World Stops Turning

\n\n

A celebration of some of this year’s best LGBTQIA+ short films from the UK and Ireland.

\n
\nRead more about Til the World Stops Turning\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Montreal, My Beautiful

\n\n

Joan Chen stuns in this powerful story of a Chinese immigrant in her 50s exploring her hidden lesbian desires for the first time.

\n
\nRead more about Montreal, My Beautiful\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Washed Up

\n\n

This charming, Cornwall-set drama finds a struggling artist falling in love with a mythical selkie.

\n
\nRead more about Washed Up\n\n
\n
\n
\n
\n
\n\n
\n \n
\n \n\n\n\n
\n
\n
 
\n
\n\n
\n\n \n
\n \n
\n \n
\n \n
\n
\n

Hearts

\n\n

Films about love, romance and friendship.

\nFind out more\n
\n
\n\n
\n \n
\n
\n
\n

March 2026

\n
\n\n
\n
MON
\n\n
TUE
\n\n
WED
\n\n
THU
\n\n
FRI
\n\n
SAT
\n\n
SUN
\n\n
16
\n\n
17
\n18 19 20 21 22 23 24 25 26 27 28 29\n
\n
\n\n
\n \n
\n
 
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

BFI Membership

\n\n

Become a BFI Member from £39 to enjoy priority festival booking as well as other great benefits all year round.

\nJoin today\n
\n
\n\n
\n \n
\n \n
\n
\n

About the festival

\n\n

A quick guide to the festival.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

Screenings and events with access provision

\n\n

Making BFI Flare: London LGBTQIA+ Film Festival as welcoming, inclusive and accessible as possible for everyone.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

25 and Under

\n\n

£6 cinema tickets for 16 to 25 year olds.

\nSign up\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

2026 festival brochure

\n\n

Download our digital festival brochure (PDF) for the 2026 edition of the festival.

\nDownload brochure\n
\n
\n\n
\n \n
\n \n
\n
\n

Festival pass

\n\n

See 10 films for less.

\nFind out more\n
\n
\n\n
\n \n
\n
\n \n \n \n \n\n

\n Add a promo code

\n
    \n \n
  • \n \n
  • \n \n
  • \n
    \n \n \n \n \n
    \n
  • \n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n\n
\n
\n\n
\n
\n
\n
\n\n
\n
\n
\n

British Film Institute

\n\n

We are a cultural charity, a National Lottery funding distributor, and the UK’s lead organisation for film and the moving image.

\n\n\n\n\n
\n\n
\n

Supported by

\n\n
\n
\n
\"Funded\n
\n\n
\"Culture\n
\n\n
\"BFI\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n
\n
\n
©2025 British Film Institute. All rights reserved.
\n\n
Registered charity 287780
\n\n
Registered office 21 Stephen St, London W1T 1LN
\n
\n
\n
\n
\n\n
\n
\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n
\n ", + "searchResults": [ + [ + "E71EE056-2849-4120-A59F-98F7C89A385A", + "P", + "BFI Flare Festival", + "LLGFF", + "satis_22Mar26", + "Satisfaction", + "Satisfaction", + "Sunday 22 March 2026 20:50", + "20:50", + "22", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "E", + "349", + "Hearts, Alex Burunova, USA-Italy-Greece-Ukraine,Emma Laird, Fionn Whitehead, Zar Amir Ebrahimi", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=DD8AF599-AC20-41A5-88C0-4B0AFCCEE56D&BOparam::WScontent::loadArticle::context_id=E71EE056-2849-4120-A59F-98F7C89A385A", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREHEARTS", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "", + "", + "", + "C4B57E43-F123-4CE5-8A17-6CB9F0409CF5", + "Flare - NFT1", + "BFI Southbank, Screen NFT1", + "BFI Southbank, Screen NFT1", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ], + [ + "B1A3A5DA-DCA8-46FC-A658-6F6983CC49B6", + "P", + "BFI Flare Festival", + "LLGFF", + "satis_23Mar26", + "Satisfaction", + "Satisfaction", + "Monday 23 March 2026 15:10", + "15:10", + "23", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "E", + "329", + "Hearts, Alex Burunova, USA-Italy-Greece-Ukraine,Emma Laird, Fionn Whitehead, Zar Amir Ebrahimi", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=DD8AF599-AC20-41A5-88C0-4B0AFCCEE56D&BOparam::WScontent::loadArticle::context_id=B1A3A5DA-DCA8-46FC-A658-6F6983CC49B6", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREHEARTS", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "", + "", + "", + "C4B57E43-F123-4CE5-8A17-6CB9F0409CF5", + "Flare - NFT1", + "BFI Southbank, Screen NFT1", + "BFI Southbank, Screen NFT1", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£10.00", + "£10.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ] + ] +} \ No newline at end of file diff --git a/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-serpents-skin-flare26-2026-02-23 b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-serpents-skin-flare26-2026-02-23 new file mode 100644 index 0000000..c047de4 --- /dev/null +++ b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-serpents-skin-flare26-2026-02-23 @@ -0,0 +1,209 @@ +{ + "html": "\nBuy tickets for The Serpent’s Skin | BFI Flare: London LGBTQIA+ Film Festival 2026\n\n\n\n\n\n\n\n\n\n\n\n \n\n \n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n\n\n\t\n\t\n\t\n\t\n\t\n\t\n
\n
\n \n \n \n
\n\n\n
\n \n \n \n
\n
\n
\n\n \n Order for\n Customer\n\n
\n
\n
\n \n
\n \n
\n \n Your basket is empty\n \n
\n \n
\n\n \n
\n\n \n \n\n\n \n
\n
\n \n\n\n
\n
\n\n \n
\n
\n Order for\n Customer\n \n
\n
\n\n \n
\n
    \n \n
\n
\n
\n\n
\n
\"BFI \"BFI \n
\n\n
\n\n \n \n
\n\n
\n \n
\n\t
\n\t\t\n\n\t
\n
\n\n\n
\n
\n\n \n
\n\n\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n
    \n
  • \n Search films and events\n \n
  • \n
  • \n Search dates\n from\n
    \n
    \n
  • \n
  • \n to\n
    \n
    \n
  • \n
  • \n \n
  • \n
\n \n
\n
\n\n \n\n
\n\n \n \n\n
\n \n
\n
\n
\n\n
\n\n\n
\n

The Serpent’s Skin

\n\n

Lesbian goths and vampiric trade abound in this punk, trans-led queer horror.

\n
\n\n\n

Screening dates and booking

\n\n
\n

Book your festival tickets a week early when you become a BFI Member.\n

\n
\n\n\n
\n
-Saturday 21 March 2026 18:10
BFI Southbank, Screen NFT2
The Serpent’s Skin
-Sunday 22 March 2026 18:30
BFI Southbank, Screen NFT4
The Serpent’s Skin
\n
\n\n\n
\"\"\n
\n\n\n

Credits

\n\n
\n
    \n\t
  • \n\t

    Director

    \n\n\t

    Alice Maio Mackay

    \n\t
  • \n\t
  • \n\t

    Screenwriters

    \n\n\t

    Alice Maio Mackay, Benjamin Pahl Robinson

    \n\t
  • \n\t
  • \n\t

    With

    \n\n\t

    Alexandra McVicker, Avalon Fast, Jordan Dulieu

    \n\t
  • \n\t
  • \n\t

    Australia 2025. 83min

    \n\t
  • \n\t
  • \n\t

    Courtesy of

    \n\n\t

    Dark Star Pictures

    \n\t
  • \n\t
  • \n\t

    Language

    \n\n

    English

    \n\t
  • \n
\n\n
\n

Access screenings

\n\n
\n\n

Saturday 21 March 18:10\n
\nClosed Captions (CC) via WatchWord smart glasses

\n\n

Sunday 22 March 18:30\n
\nClosed Captions (CC) via WatchWord smart glasses

\n\n

Find out about booking tickets for access screenings\n

\n
\n
\n
\n\n\n

Introduction

\n\n
\n

Fleeing a hostile hometown, trans teen Anna encounters goth tattoo artist Gen and their goth-adjacent found family. Through them, Anna discovers lesbianism and the real horror behind queer stick-n-poke tattoos, demons and the underworld. Camp, spells and sharp one-liners abound in this teen-genre love letter.

\n\n

Jaye Hudson

\n\n

Content advice

\n\n

Contains scenes of self-harm and sex.

\n
\n\n\n

How to book

\n\n
\n

BFI Flare tickets start from £10, with concessions available for many screenings and discounts for BFI Members. Booking information and ticket prices.

\n\n

If you’re aged 16 to 25, sign up for free to BFI 25 and Under for a chance to get £6 tickets to all screenings and events (subject to availability).

\n\n
\n

Missed out?

\n\n

More tickets may become available for these screenings before and during the festival. Find out about extra ticket releases and standby queues.

\n
\n
\n\n\n
\n

Our programmers recommend...

\n\n
\n
\n
\n
\"\"\n
\n\n
\n

Castration Movie Chapter iii. Junior Ghosts—Premorphic Drift; a fragmentary passage

\n\n

In this bold new chapter of Louise Weard’s trans epic, a heterosexual couple are upended by an abrupt transition.

\n
\nRead more about Castration Movie Chapter iii. Junior Ghosts—Premorphic Drift; a fragmentary passage\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Don’t Come Out

\n\n

In Victoria Linares Villegas’ gory and gloriously fun film, a queer medical student grapples with her sexuality as deadly forces pursue her.

\n
\nRead more about Don’t Come Out\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

What Will I Become?

\n\n

A vital memorial spotlighting the all-too-silent vulnerabilities of trans masculine youth.

\n
\nRead more about What Will I Become?\n\n
\n
\n
\n
\n
\n\n
\n \n
\n \n\n\n\n
\n
\n
 
\n
\n\n
\n\n \n
\n \n
\n \n
\n \n
\n
\n

Bodies

\n\n

Stories of sex, identity and transformation.

\nFind out more\n
\n
\n\n
\n \n
\n
\n
\n

March 2026

\n
\n\n
\n
MON
\n\n
TUE
\n\n
WED
\n\n
THU
\n\n
FRI
\n\n
SAT
\n\n
SUN
\n\n
16
\n\n
17
\n18 19 20 21 22 23 24 25 26 27 28 29\n
\n
\n\n
\n \n
\n  \n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

BFI Membership

\n\n

Become a BFI Member from £39 to enjoy priority festival booking as well as other great benefits all year round.

\nJoin today\n
\n
\n\n
\n \n
\n \n
\n
\n

About the festival

\n\n

A quick guide to the festival.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

Screenings and events with access provision

\n\n

Making BFI Flare: London LGBTQIA+ Film Festival as welcoming, inclusive and accessible as possible for everyone.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

25 and Under

\n\n

£6 cinema tickets for 16 to 25 year olds.

\nSign up\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

2026 festival brochure

\n\n

Download our digital festival brochure (PDF) for the 2026 edition of the festival.

\nDownload brochure\n
\n
\n\n
\n \n
\n \n
\n
\n

Festival pass

\n\n

See 10 films for less.

\nFind out more\n
\n
\n\n
\n \n
\n
\n \n \n \n \n\n

\n Add a promo code

\n
    \n \n
  • \n \n
  • \n \n
  • \n
    \n \n \n \n \n
    \n
  • \n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n\n
\n
\n\n
\n
\n
\n
\n\n
\n
\n
\n

British Film Institute

\n\n

We are a cultural charity, a National Lottery funding distributor, and the UK’s lead organisation for film and the moving image.

\n\n\n\n\n
\n\n
\n

Supported by

\n\n
\n
\n
\"Funded\n
\n\n
\"Culture\n
\n\n
\"BFI\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n
\n
\n
©2025 British Film Institute. All rights reserved.
\n\n
Registered charity 287780
\n\n
Registered office 21 Stephen St, London W1T 1LN
\n
\n
\n
\n
\n\n
\n
\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n
\n ", + "searchResults": [ + [ + "3EDE7C58-2BCE-4090-B95E-1A12520FFD1F", + "P", + "BFI Flare Festival", + "LLGFF", + "serp_21Mar26", + "The Serpent’s Skin", + "The Serpent’s Skin", + "Saturday 21 March 2026 18:10", + "18:10", + "21", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "G", + "70", + "Alexandra McVicker, Avalon Fast, Jordan Dulieu,Bodies, Alice Maio Mackay, Australia,Closed Captions (CC)", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=C2C016BA-6BB4-475B-A7D4-4B3206EFBA0F&BOparam::WScontent::loadArticle::context_id=3EDE7C58-2BCE-4090-B95E-1A12520FFD1F", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREBODIES", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "", + "", + "", + "527ADADE-4BF3-4A03-BADB-12000B5C7BD6", + "Flare NFT2", + "BFI Southbank, Screen NFT2", + "BFI Southbank, Screen NFT2", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ], + [ + "8C503C09-F854-4790-9440-7DE3ECA9F72D", + "P", + "BFI Flare Festival", + "LLGFF", + "serp_22Mar26", + "The Serpent’s Skin", + "The Serpent’s Skin", + "Sunday 22 March 2026 18:30", + "18:30", + "22", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "E", + "28", + "Alexandra McVicker, Avalon Fast, Jordan Dulieu,Closed Captions (CC),Bodies, Alice Maio Mackay, Australia", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=C2C016BA-6BB4-475B-A7D4-4B3206EFBA0F&BOparam::WScontent::loadArticle::context_id=8C503C09-F854-4790-9440-7DE3ECA9F72D", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREBODIES", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "United Kingdom", + "", + "", + "A76FC31F-05EE-4F50-9AC1-C73800A414DA", + "Flare NFT4", + "BFI Southbank, Screen NFT4", + "BFI Southbank, Screen NFT4", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ] + ] +} \ No newline at end of file diff --git a/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-she-got-claws-flare26-2026-02-23 b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-she-got-claws-flare26-2026-02-23 new file mode 100644 index 0000000..ce4e1dd --- /dev/null +++ b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-she-got-claws-flare26-2026-02-23 @@ -0,0 +1,209 @@ +{ + "html": "\nBuy tickets for She Got Claws! | BFI Flare: London LGBTQIA+ Film Festival 2026\n\n\n\n\n\n\n\n\n\n\n\n \n\n \n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n\n\n\t\n\t\n\t\n\t\n\t\n\t\n
\n
\n \n \n \n
\n\n\n
\n \n \n \n
\n
\n
\n\n \n Order for\n Customer\n\n
\n
\n
\n \n
\n \n
\n \n Your basket is empty\n \n
\n \n
\n\n \n
\n\n \n \n\n\n \n
\n
\n \n\n\n
\n
\n\n \n
\n
\n Order for\n Customer\n \n
\n
\n\n \n
\n
    \n \n
\n
\n
\n\n
\n
\"BFI \"BFI \n
\n\n
\n\n \n \n
\n\n
\n \n
\n\t
\n\t\t\n\n\t
\n
\n\n\n
\n
\n\n \n
\n\n\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n
    \n
  • \n Search films and events\n \n
  • \n
  • \n Search dates\n from\n
    \n
    \n
  • \n
  • \n to\n
    \n
    \n
  • \n
  • \n \n
  • \n
\n \n
\n
\n\n \n\n
\n\n \n \n\n
\n \n
\n
\n
\n\n
\n\n\n
\n

She Got Claws!

\n\n

Trans Femmes fight back with curses, crime, cults and cunning monstrosity in this seductive selection of high-femme shorts. Dolls, its late-stage capitalism embrace your inner creature!

\n
\n\n\n

Screening dates and booking

\n\n
\n

Book your festival tickets a week early when you become a BFI Member.\n

\n
\n\n\n
\n
-Friday 20 March 2026 18:10
BFI Southbank, Screen NFT3
She Got Claws!
-Saturday 28 March 2026 20:45
BFI Southbank, Screen NFT2
She Got Claws!
\n
\n\n\n

Credits

\n\n
\n
    \n\t
  • \n\t

    Total running time

    \n\n\t

    88min

    \n\t
  • \n\t
  • \n\t

    Programmed by

    \n\n\t

    Jaye Hudson

    \n\t
  • \n\t
  • Age rating\n\t

    18+

    \n\t
  • \n\t
  • \n\t

    Content advice

    \n\n\t

    This short film programme contains flashing images, themes of suicide, scenes of domestic violence or abuse and graphic violence or injury, and homophobic and transphobic attitudes and language.

    \n\t
  • \n
\n
\n\n\n
\n

ATTAGIRL!

\n\n\n
\"\"\n
\n\n\n
\n
    \n\t
  • \n\t

    Director

    \n\n\t

    Klimovski

    \n\t
  • \n\t
  • \n\t

    USA 2025. 9min

    \n\t
  • \n\t
  • \n\t

    Language

    \n\n\t

    English

    \n\t
  • \n
\n
\n\n\n
\n

Pose star Leyna Bloom goes on vengeful, high-heeled rampage through Brooklyn, featuring cameos by Amanda Lepore and Violet Chachki.

\n
\n
\n\n\n
\n

Fishy

\n\n\n
\"\"\n
\n\n\n
\n
    \n\t
  • \n\t

    Director

    \n\n\t

    Milo Richards

    \n\t
  • \n\t
  • \n\t

    USA 2025. 17min

    \n\t
  • \n\t
  • \n\t

    Language

    \n\n\t

    English

    \n\t
  • \n
\n
\n\n\n
\n

A trans drag queen contends with being a fish and growing scales, in this thought-provoking short, featuring Nicole Paige Brooks.

\n
\n
\n\n\n
\n

Original Sin

\n\n\n
\"\"\n
\n\n\n
\n
    \n\t
  • \n\t

    Director

    \n\n\t

    Amrou Al-Kadhi

    \n\t
  • \n\t
  • \n\t

    UK 2025. 14min

    \n\t
  • \n\t
  • \n\t

    Languages

    \n\n\t

    English, Arabic
    \n\tWith English subtitles

    \n\t
  • \n\t
  • \n\t

    Content advice

    \n\n\t

    Contains scenes of domestic violence or abuse and graphic violence or injury.
    \n\tContains themes of suicide.
    \n\tContains homophobic and transphobic attitudes and language.
    \n\tContains flashing images.

    \n\t
  • \n\t
  • Certificate\n\t

    BBFC 18

    \n\t
  • \n
\n
\n\n\n
\n

The curse of intergenerational trauma stands between a muslim drag queen and her mother.

\n
\n
\n\n\n
\n

Rainbow Girls

\n\n\n
\"\"\n
\n\n\n
\n
    \n\t
  • \n\t

    Director

    \n\n\t

    Nana Duffuor

    \n\t
  • \n\t
  • \n\t

    USA 2025. 16min

    \n\t
  • \n\t
  • \n\t

    Language

    \n\n\t

    English

    \n\t
  • \n
\n
\n\n\n
\n

Three high-fashion Black trans women turn robbers, targeting gentrified San Francisco’s most exclusive luxury brands.

\n
\n
\n\n\n
\n

DOLLS

\n\n\n
\"\"\n
\n\n\n
\n
    \n\t
  • \n\t

    Director

    \n\n\t

    Geena Rocero

    \n\t
  • \n\t
  • \n\t

    USA 2025. 19min

    \n\t
  • \n\t
  • \n\t

    Language

    \n\n\t

    English

    \n\t
  • \n\t
  • \n\t

    Content advice

    \n\n\t

    Contains scenes of graphic violence or injury.

    \n\t
  • \n
\n
\n\n\n
\n

A trans girl investigates a cult of dolls in this genre short produced by Lilly Wachowski.

\n
\n
\n\n\n
\n

The Dysphoria

\n\n\n
\"\"\n
\n\n\n
\n
    \n\t
  • \n\t

    Director

    \n\n\t

    Kylie Aoibheann

    \n\t
  • \n\t
  • \n\t

    Australia 2025. 13min

    \n\t
  • \n\t
  • \n\t

    Language

    \n\n\t

    English

    \n\t
  • \n\t
  • \n\t

    Content advice

    \n\n\t

    Contains scenes of graphic violence or injury.
    \n\tContains transphobic attitudes and language.

    \n\t
  • \n
\n
\n\n\n
\n

A trans woman turns to a satanic ritual to get a vagina, but unwittingly invites a demonic presence into her home.

\n
\n
\n\n\n

How to book

\n\n
\n

BFI Flare tickets start from £10, with concessions available for many screenings and discounts for BFI Members. Booking information and ticket prices.

\n\n

If you’re aged 16 to 25, sign up for free to BFI 25 and Under for a chance to get £6 tickets to all screenings and events (subject to availability).

\n\n
\n

Missed out?

\n\n

More tickets may become available for these screenings before and during the festival. Find out about extra ticket releases and standby queues.

\n
\n
\n\n\n
\n

Our programmers recommend...

\n\n
\n
\n
\n
\"\"\n
\n\n
\n

Queen of Coal

\n\n

In this defiant portrait of self-determination, a woman yearns to work in a male-dominated world.

\n
\nRead more about Queen of Coal\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Castration Movie Chapter iii. Junior Ghosts—Premorphic Drift; a fragmentary passage

\n\n

In this bold new chapter of Louise Weard’s trans epic, a heterosexual couple are upended by an abrupt transition.

\n
\nRead more about Castration Movie Chapter iii. Junior Ghosts—Premorphic Drift; a fragmentary passage\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

A Sweetness from Nowhere

\n\n

Ester Bergsmark ruminates on trans violence and healing, in this evocative and personal film.

\n
\nRead more about A Sweetness from Nowhere\n\n
\n
\n
\n
\n
\n\n
\n \n
\n \n\n\n\n
\n
\n
 
\n
\n\n
\n\n \n
\n \n
\n \n
\n \n
\n
\n

Shorts

\n\n

Small but perfectly formed.

\nFind out more\n
\n
\n\n
\n \n
\n
\n
\n

March 2026

\n
\n\n
\n
MON
\n\n
TUE
\n\n
WED
\n\n
THU
\n\n
FRI
\n\n
SAT
\n\n
SUN
\n\n
16
\n\n
17
\n18 19 20 21 22 23 24 25 26 27 28 29\n
\n
\n\n
\n \n
\n  \n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

BFI Membership

\n\n

Become a BFI Member from £39 to enjoy priority festival booking as well as other great benefits all year round.

\nJoin today\n
\n
\n\n
\n \n
\n \n
\n
\n

About the festival

\n\n

A quick guide to the festival.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

Screenings and events with access provision

\n\n

Making BFI Flare: London LGBTQIA+ Film Festival as welcoming, inclusive and accessible as possible for everyone.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

25 and Under

\n\n

£6 cinema tickets for 16 to 25 year olds.

\nSign up\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

2026 festival brochure

\n\n

Download our digital festival brochure (PDF) for the 2026 edition of the festival.

\nDownload brochure\n
\n
\n\n
\n \n
\n \n
\n
\n

Festival pass

\n\n

See 10 films for less.

\nFind out more\n
\n
\n\n
\n \n
\n
\n \n \n \n \n\n

\n Add a promo code

\n
    \n \n
  • \n \n
  • \n \n
  • \n
    \n \n \n \n \n
    \n
  • \n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n\n
\n
\n\n
\n
\n
\n
\n\n
\n
\n
\n

British Film Institute

\n\n

We are a cultural charity, a National Lottery funding distributor, and the UK’s lead organisation for film and the moving image.

\n\n\n\n\n
\n\n
\n

Supported by

\n\n
\n
\n
\"Funded\n
\n\n
\"Culture\n
\n\n
\"BFI\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n
\n
\n
©2025 British Film Institute. All rights reserved.
\n\n
Registered charity 287780
\n\n
Registered office 21 Stephen St, London W1T 1LN
\n
\n
\n
\n
\n\n
\n
\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n
", + "searchResults": [ + [ + "FA64AEB3-09A7-408D-8984-76F6608CF9E6", + "P", + "BFI Flare Festival", + "LLGFF", + "sheg_20Mar26", + "She Got Claws!", + "She Got Claws!", + "Friday 20 March 2026 18:10", + "18:10", + "20", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "G", + "29", + "ATTAGIRL!,The Dysphoria,Bodies, Nana Duffuor, USA,Rainbow Girls, DOLLS,Fishy, Original Sin,Bodies, Klimovski, USA,Bodies, Kylie Aoibheann, Australia,Bodies, Milo Richards, USA,Bodies, Geena Rocero, USA,Bodies, Amrou Al-Kadhi, UK", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=D38A62E0-7E82-4551-B2FA-B66FACC77732&BOparam::WScontent::loadArticle::context_id=FA64AEB3-09A7-408D-8984-76F6608CF9E6", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREBODIES", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "United Kingdom", + "", + "", + "C14E3C2A-68EC-4B8B-B4DA-E00E79BD3822", + "Flare NFT3", + "BFI Southbank, Screen NFT3", + "BFI Southbank, Screen NFT3", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ], + [ + "51FD0443-A908-4AEB-8063-E7ED669A5E71", + "P", + "BFI Flare Festival", + "LLGFF", + "sheg_28Mar26", + "She Got Claws!", + "She Got Claws!", + "Saturday 28 March 2026 20:45", + "20:45", + "28", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "G", + "77", + "Bodies, Klimovski, USA,Bodies, Milo Richards, USA,Original Sin, The Dysphoria,Fishy,Bodies, Kylie Aoibheann, Australia,Rainbow Girls, DOLLS,Bodies, Geena Rocero, USA,Bodies, Amrou Al-Kadhi, UK,ATTAGIRL!,Bodies, Nana Duffuor, USA", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=D38A62E0-7E82-4551-B2FA-B66FACC77732&BOparam::WScontent::loadArticle::context_id=51FD0443-A908-4AEB-8063-E7ED669A5E71", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREBODIES", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "", + "", + "", + "527ADADE-4BF3-4A03-BADB-12000B5C7BD6", + "Flare NFT2", + "BFI Southbank, Screen NFT2", + "BFI Southbank, Screen NFT2", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ] + ] +} \ No newline at end of file diff --git a/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-skiff-flare26-2026-02-23 b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-skiff-flare26-2026-02-23 new file mode 100644 index 0000000..602e14c --- /dev/null +++ b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-skiff-flare26-2026-02-23 @@ -0,0 +1,209 @@ +{ + "html": "\nBuy tickets for Skiff | BFI Flare: London LGBTQIA+ Film Festival 2026\n\n\n\n\n\n\n\n\n\n\n\n \n\n \n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n\n\n\t\n\t\n\t\n\t\n\t\n\t\n
\n
\n \n \n \n
\n\n\n
\n \n \n \n
\n
\n
\n\n \n Order for\n Customer\n\n
\n
\n
\n \n
\n \n
\n \n Your basket is empty\n \n
\n \n
\n\n \n
\n\n \n \n\n\n \n
\n
\n \n\n\n
\n
\n\n \n
\n
\n Order for\n Customer\n \n
\n
\n\n \n
\n
    \n \n
\n
\n
\n\n
\n
\"BFI \"BFI \n
\n\n
\n\n \n \n
\n\n
\n \n
\n\t
\n\t\t\n\n\t
\n
\n\n\n
\n
\n\n \n
\n\n\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n
    \n
  • \n Search films and events\n \n
  • \n
  • \n Search dates\n from\n
    \n
    \n
  • \n
  • \n to\n
    \n
    \n
  • \n
  • \n \n
  • \n
\n \n
\n
\n\n \n\n
\n\n \n \n\n
\n \n
\n
\n
\n\n
\n\n\n
\n

Skiff

\n\n

A young rower struggles to balance family life, self-expression and taboo crushes.

\n
\n\n\n

Screening dates and booking

\n\n
\n

Book your festival tickets a week early when you become a BFI Member.\n

\n
\n\n\n
\n
-Sunday 22 March 2026 14:45
BFI Southbank, Screen NFT3
Skiff
-Monday 23 March 2026 18:20
BFI Southbank, Screen NFT4
Skiff
\n
\n\n\n
\n
\n
\n\n\n

Credits

\n\n
\n
    \n\t
  • \n\t

    Director

    \n\n\t

    Cecilia Verheyden

    \n\t
  • \n\t
  • \n\t

    Screenwriters

    \n\n\t

    Cecilia Verheyden, Vincent Vanneste

    \n\t
  • \n\t
  • \n\t

    With

    \n\n\t

    Femke Vanhove, Lina Miftah, Wout Vleugels

    \n\t
  • \n\t
  • \n\t

    Belgium-Netherlands-Sweden 2025. 106min

    \n\t
  • \n\t
  • \n\t

    Courtesy of

    \n\n\t

    Outplay Films

    \n\t
  • \n\t
  • \n\t

    Languages

    \n\n\t

    Flemish, French, English

    \n\n\t

    With English subtitles

    \n\t
  • \n
\n
\n\n\n

Introduction

\n\n
\n

Adolescence is proving a challenge for Malou – whether it’s their parents’ divorce, gender identity or bullying by peers. But more trouble lies ahead when Malou’s infatuation with their brother’s girlfriend becomes all too clear.

\n\n

Wema Mumma

\n\n

Content advice

\n\n

Contains transphobic attitudes and language.

\n
\n\n\n

Screening with

\n\n\n
\n

Theo

\n\n\n
\"\"\n
\n\n\n
\n
    \n\t
  • \n\t

    Directors

    \n\n\t

    Monica Palazzo, Jo Galvv

    \n\t
  • \n\t
  • \n\t

    Brazil 2026. 15min

    \n\t
  • \n\t
  • \n\t

    Language

    \n\n\t

    Portuguese

    \n\t
  • \n\t
  • \n\t

    With English subtitles

    \n\t
  • \n
\n
\n\n\n

Theo is determined to be allowed to play football, no matter the boundaries.

\n\n

Content advice

\n\n

Contains sexist attitudes and language.

\n
\n\n\n

How to book

\n\n
\n

BFI Flare tickets start from £10, with concessions available for many screenings and discounts for BFI Members. Booking information and ticket prices.

\n\n

If you’re aged 16 to 25, sign up for free to BFI 25 and Under for a chance to get £6 tickets to all screenings and events (subject to availability).

\n\n
\n

Missed out?

\n\n

More tickets may become available for these screenings before and during the festival. Find out about extra ticket releases and standby queues.

\n
\n
\n\n\n
\n

Our programmers recommend...

\n\n
\n
\n
\n
\"\"\n
\n\n
\n

Julian

\n\n

Executive produced by Lukas Dhont, Cato Kusters’ feature debut is a stirring depiction of a Belgian couple’s fight for marriage equality.

\n
\nRead more about Julian\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Jone, Sometimes

\n\n

First love and looming parental mortality indelibly shape one young woman’s summer of festivities.

\n
\nRead more about Jone, Sometimes\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Big Girls Don’t Cry

\n\n

Paloma Schneideman’s accomplished debut is an engrossing portrait of a teenage girl navigating her burgeoning desires in early 2000s New Zealand.

\n
\nRead more about Big Girls Don’t Cry\n\n
\n
\n
\n
\n
\n\n
\n \n
\n \n\n\n\n
\n
\n
 
\n
\n\n
\n\n \n
\n \n
\n \n
\n \n
\n
\n

Hearts

\n\n

Films about love, romance and friendship.

\nFind out more\n
\n
\n\n
\n \n
\n
\n
\n

March 2026

\n
\n\n
\n
MON
\n\n
TUE
\n\n
WED
\n\n
THU
\n\n
FRI
\n\n
SAT
\n\n
SUN
\n\n
16
\n\n
17
\n18 19 20 21 22 23 24 25 26 27 28 29\n
\n
\n\n
\n \n
\n  \n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

BFI Membership

\n\n

Become a BFI Member from £39 to enjoy priority festival booking as well as other great benefits all year round.

\nJoin today\n
\n
\n\n
\n \n
\n \n
\n
\n

About the festival

\n\n

A quick guide to the festival.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

Screenings and events with access provision

\n\n

Making BFI Flare: London LGBTQIA+ Film Festival as welcoming, inclusive and accessible as possible for everyone.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

25 and Under

\n\n

£6 cinema tickets for 16 to 25 year olds.

\nSign up\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

2026 festival brochure

\n\n

Download our digital festival brochure (PDF) for the 2026 edition of the festival.

\nDownload brochure\n
\n
\n\n
\n \n
\n \n
\n
\n

Festival pass

\n\n

See 10 films for less.

\nFind out more\n
\n
\n\n
\n \n
\n
\n \n \n \n \n\n

\n Add a promo code

\n
    \n \n
  • \n \n
  • \n \n
  • \n
    \n \n \n \n \n
    \n
  • \n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n\n
\n
\n\n
\n
\n
\n
\n\n
\n
\n
\n

British Film Institute

\n\n

We are a cultural charity, a National Lottery funding distributor, and the UK’s lead organisation for film and the moving image.

\n\n\n\n\n
\n\n
\n

Supported by

\n\n
\n
\n
\"Funded\n
\n\n
\"Culture\n
\n\n
\"BFI\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n
\n
\n
©2025 British Film Institute. All rights reserved.
\n\n
Registered charity 287780
\n\n
Registered office 21 Stephen St, London W1T 1LN
\n
\n
\n
\n
\n\n
\n
\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n
\n ", + "searchResults": [ + [ + "2FCBD2B9-2103-4954-94BC-F04D272BE3B3", + "P", + "BFI Flare Festival", + "LLGFF", + "skiff_22Mar26", + "Skiff", + "Skiff", + "Sunday 22 March 2026 14:45", + "14:45", + "22", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "G", + "55", + "Subtitles,Hearts, Cecilia Verheyden, Belgium-Netherlands-Sweden,Theo, Monica Palazzo, Jo Galvv, Brazil,Femke Vanhove, Lina Miftah, Wout Vleugels", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=F2A0A189-66C1-44BB-8111-4C3BCC1F7300&BOparam::WScontent::loadArticle::context_id=2FCBD2B9-2103-4954-94BC-F04D272BE3B3", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREHEARTS", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "United Kingdom", + "", + "", + "C14E3C2A-68EC-4B8B-B4DA-E00E79BD3822", + "Flare NFT3", + "BFI Southbank, Screen NFT3", + "BFI Southbank, Screen NFT3", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ], + [ + "1AA7431B-4BC9-4678-A8D5-BCE7DEB6724D", + "P", + "BFI Flare Festival", + "LLGFF", + "skiff_23Mar26", + "Skiff", + "Skiff", + "Monday 23 March 2026 18:20", + "18:20", + "23", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "E", + "28", + "Femke Vanhove, Lina Miftah, Wout Vleugels,Subtitles,Theo, Monica Palazzo, Jo Galvv, Brazil,Hearts, Cecilia Verheyden, Belgium-Netherlands-Sweden", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=F2A0A189-66C1-44BB-8111-4C3BCC1F7300&BOparam::WScontent::loadArticle::context_id=1AA7431B-4BC9-4678-A8D5-BCE7DEB6724D", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREHEARTS", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "United Kingdom", + "", + "", + "A76FC31F-05EE-4F50-9AC1-C73800A414DA", + "Flare NFT4", + "BFI Southbank, Screen NFT4", + "BFI Southbank, Screen NFT4", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ] + ] +} \ No newline at end of file diff --git a/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-strange-river-flare26-2026-02-23 b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-strange-river-flare26-2026-02-23 new file mode 100644 index 0000000..f515dcd --- /dev/null +++ b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-strange-river-flare26-2026-02-23 @@ -0,0 +1,209 @@ +{ + "html": "\nBuy tickets for Strange River | BFI Flare: London LGBTQIA+ Film Festival 2026\n\n\n\n\n\n\n\n\n\n\n\n \n\n \n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n\n\n\t\n\t\n\t\n\t\n\t\n\t\n
\n
\n \n \n \n
\n\n\n
\n \n \n \n
\n
\n
\n\n \n Order for\n Customer\n\n
\n
\n
\n \n
\n \n
\n \n Your basket is empty\n \n
\n \n
\n\n \n
\n\n \n \n\n\n \n
\n
\n \n\n\n
\n
\n\n \n
\n
\n Order for\n Customer\n \n
\n
\n\n \n
\n
    \n \n
\n
\n
\n\n
\n
\"BFI \"BFI \n
\n\n
\n\n \n \n
\n\n
\n \n
\n\t
\n\t\t\n\n\t
\n
\n\n\n
\n
\n\n \n
\n\n\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n
    \n
  • \n Search films and events\n \n
  • \n
  • \n Search dates\n from\n
    \n
    \n
  • \n
  • \n to\n
    \n
    \n
  • \n
  • \n \n
  • \n
\n \n
\n
\n\n \n\n
\n\n \n \n\n
\n \n
\n
\n
\n\n
\n\n\n
\n

Strange River

\n\n

Estrany Riu

\n\n

Jaume Claret Muxart’s poetic debut feature is a sensitive and lyrical coming-of-age drama.

\n
\n\n\n

Screening dates and booking

\n\n
\n

Book your festival tickets a week early when you become a BFI Member.\n

\n
\n\n\n
\n
-Sunday 22 March 2026 17:45
BFI Southbank, Screen NFT3
Strange River
-Monday 23 March 2026 14:45
BFI Southbank, Screen NFT2
Strange River
\n
\n\n\n
\n
\n
\n\n\n

Credits

\n\n
\n
    \n\t
  • \n\t

    Director

    \n\n\t

    Jaume Claret Muxart

    \n\t
  • \n\t
  • \n\t

    Screenwriters

    \n\n\t

    Jaume Claret Muxart, Meritxell Colell

    \n\t
  • \n\t
  • \n\t

    With

    \n\n\t

    Jan Monter, Nausicaa Bonnín, Francesco Wenz

    \n\t
  • \n\t
  • \n\t

    Spain-Germany 2025. 105min

    \n\t
  • \n\t
  • \n\t

    Courtesy of

    \n\n\t

    Films Boutique

    \n\t
  • \n\t
  • \n\t

    Languages

    \n\n\t

    Catalan, German, English

    \n\n\t

    With English subtitles

    \n\t
  • \n
\n
\n\n\n

Introduction

\n\n
\n

Beautifully shot on 16mm, this elegant film chronicles a teenage boy’s journey of emancipation, as he accompanies his family on a cycling trip along the Danube. Sixteen-year-old Dídac’s encounter with a mysterious German boy stirs unexpected emotions in him. But his mother’s own journey of self-rediscovery offers a subtle and affecting parallel, in this sensitive and articulate film.

\n\n

Darren Jones

\n
\n\n\n

How to book

\n\n
\n

BFI Flare tickets start from £10, with concessions available for many screenings and discounts for BFI Members. Booking information and ticket prices.

\n\n

If you’re aged 16 to 25, sign up for free to BFI 25 and Under for a chance to get £6 tickets to all screenings and events (subject to availability).

\n\n
\n

Missed out?

\n\n

More tickets may become available for these screenings before and during the festival. Find out about extra ticket releases and standby queues.

\n
\n
\n\n\n
\n

Our programmers recommend...

\n\n
\n
\n
\n
\"\"\n
\n\n
\n

On the Sea

\n\n

A moving tale of the powerful attraction between a local hand raker, who works on the mussel beds of North Wales, and an itinerant deckhand.

\n
\nRead more about On the Sea\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Jaripeo

\n\n

Efraín Mojica and Rebecca Zweig’s captivating, dreamlike documentary journeys into the world of Mexican rodeos.

\n
\nRead more about Jaripeo\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Fragments of Us

\n\n

A collection of UK shorts exploring desire, trauma and identity. Through moments of connection, courage and honesty, they illuminate the struggles and triumphs that shape our most vulnerable selves.

\n
\nRead more about Fragments of Us\n\n
\n
\n
\n
\n
\n\n
\n \n
\n \n\n\n\n
\n
\n
 
\n
\n\n
\n\n \n
\n \n
\n \n
\n \n
\n
\n

Hearts

\n\n

Films about love, romance and friendship.

\nFind out more\n
\n
\n\n
\n \n
\n
\n
\n

March 2026

\n
\n\n
\n
MON
\n\n
TUE
\n\n
WED
\n\n
THU
\n\n
FRI
\n\n
SAT
\n\n
SUN
\n\n
16
\n\n
17
\n18 19 20 21 22 23 24 25 26 27 28 29\n
\n
\n\n
\n \n
\n  \n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

BFI Membership

\n\n

Become a BFI Member from £39 to enjoy priority festival booking as well as other great benefits all year round.

\nJoin today\n
\n
\n\n
\n \n
\n \n
\n
\n

About the festival

\n\n

A quick guide to the festival.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

Screenings and events with access provision

\n\n

Making BFI Flare: London LGBTQIA+ Film Festival as welcoming, inclusive and accessible as possible for everyone.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

25 and Under

\n\n

£6 cinema tickets for 16 to 25 year olds.

\nSign up\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

2026 festival brochure

\n\n

Download our digital festival brochure (PDF) for the 2026 edition of the festival.

\nDownload brochure\n
\n
\n\n
\n \n
\n \n
\n
\n

Festival pass

\n\n

See 10 films for less.

\nFind out more\n
\n
\n\n
\n \n
\n
\n \n \n \n \n\n

\n Add a promo code

\n
    \n \n
  • \n \n
  • \n \n
  • \n
    \n \n \n \n \n
    \n
  • \n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n\n
\n
\n\n
\n
\n
\n
\n\n
\n
\n
\n

British Film Institute

\n\n

We are a cultural charity, a National Lottery funding distributor, and the UK’s lead organisation for film and the moving image.

\n\n\n\n\n
\n\n
\n

Supported by

\n\n
\n
\n
\"Funded\n
\n\n
\"Culture\n
\n\n
\"BFI\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n
\n
\n
©2025 British Film Institute. All rights reserved.
\n\n
Registered charity 287780
\n\n
Registered office 21 Stephen St, London W1T 1LN
\n
\n
\n
\n
\n\n
\n
\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n
\n ", + "searchResults": [ + [ + "881F9569-397E-426D-841E-BB5622D5BD45", + "P", + "BFI Flare Festival", + "LLGFF", + "stran_22Mar26", + "Strange River", + "Strange River", + "Sunday 22 March 2026 17:45", + "17:45", + "22", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "G", + "48", + "Subtitles,Hearts, Jaume Claret Muxart, Spain-Germany,Jan Monter, Nausicaa Bonnín, Francesco Wenz", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=99F84E2D-7C14-4ABE-BEFD-FF858898988D&BOparam::WScontent::loadArticle::context_id=881F9569-397E-426D-841E-BB5622D5BD45", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREHEARTS", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "United Kingdom", + "", + "", + "C14E3C2A-68EC-4B8B-B4DA-E00E79BD3822", + "Flare NFT3", + "BFI Southbank, Screen NFT3", + "BFI Southbank, Screen NFT3", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ], + [ + "FBF131B3-E90A-42F6-9375-D1ED26FFCEA2", + "P", + "BFI Flare Festival", + "LLGFF", + "strang_23Mar26", + "Strange River", + "Strange River", + "Monday 23 March 2026 14:45", + "14:45", + "23", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "G", + "71", + "Hearts, Jaume Claret Muxart, Spain-Germany,Jan Monter, Nausicaa Bonnín, Francesco Wenz,Subtitles", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=99F84E2D-7C14-4ABE-BEFD-FF858898988D&BOparam::WScontent::loadArticle::context_id=FBF131B3-E90A-42F6-9375-D1ED26FFCEA2", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREHEARTS", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "", + "", + "", + "527ADADE-4BF3-4A03-BADB-12000B5C7BD6", + "Flare NFT2", + "BFI Southbank, Screen NFT2", + "BFI Southbank, Screen NFT2", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£10.00", + "£10.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ] + ] +} \ No newline at end of file diff --git a/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-sweetness-from-nowhere-flare26-2026-02-23 b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-sweetness-from-nowhere-flare26-2026-02-23 new file mode 100644 index 0000000..9bd0d27 --- /dev/null +++ b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-sweetness-from-nowhere-flare26-2026-02-23 @@ -0,0 +1,209 @@ +{ + "html": "\nBuy tickets for A Sweetness from Nowhere | BFI Flare: London LGBTQIA+ Film Festival 2026\n\n\n\n\n\n\n\n\n\n\n\n \n\n \n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n\n\n\t\n\t\n\t\n\t\n\t\n\t\n
\n
\n \n \n \n
\n\n\n
\n \n \n \n
\n
\n
\n\n \n Order for\n Customer\n\n
\n
\n
\n \n
\n \n
\n \n Your basket is empty\n \n
\n \n
\n\n \n
\n\n \n \n\n\n \n
\n
\n \n\n\n
\n
\n\n \n
\n
\n Order for\n Customer\n \n
\n
\n\n \n
\n
    \n \n
\n
\n
\n\n
\n
\"BFI \"BFI \n
\n\n
\n\n \n \n
\n\n
\n \n
\n\t
\n\t\t\n\n\t
\n
\n\n\n
\n
\n\n \n
\n\n\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n
    \n
  • \n Search films and events\n \n
  • \n
  • \n Search dates\n from\n
    \n
    \n
  • \n
  • \n to\n
    \n
    \n
  • \n
  • \n \n
  • \n
\n \n
\n
\n\n \n\n
\n\n \n \n\n
\n \n
\n
\n
\n\n
\n\n\n
\n

A Sweetness from Nowhere

\n\n

Ester Bergsmark ruminates on trans violence and healing, in this evocative and personal film.

\n
\n\n\n

Screening dates and booking

\n\n
\n

Book your festival tickets a week early when you become a BFI Member.\n

\n
\n\n\n
\n
-Saturday 21 March 2026 20:35
BFI Southbank, Screen NFT3
A Sweetness from Nowhere
-Sunday 22 March 2026 13:10
BFI Southbank, Screen NFT2
A Sweetness from Nowhere
\n
\n\n\n
\"\"\n
\n\n\n

Credits

\n\n
\n
    \n\t
  • \n\t

    Director-screenwriter

    \n\n\t

    Ester Bergsmark

    \n\t
  • \n\t
  • \n\t

    Sweden 2026. 90min

    \n\t
  • \n\t
  • \n\t

    Courtesy of

    \n\n\t

    Outplay Films

    \n\t
  • \n\t
  • \n\t

    Languages

    \n\n\t

    Swedish, English

    \n\n\t

    With English subtitles

    \n\t
  • \n
\n
\n\n\n

Introduction

\n\n
\n

Bergsmark interrogates their response to a transphobic slur hurled at them following their move to Berlin. Exploring the root of violence and its nature, this is a powerful meditation on the trans experience and a treatise on how to move forward from fear.

\n\n

Jaye Hudson

\n\n

Content advice

\n\n

Contains themes of self harm.

\n\n

Contains transphobic attitudes and language.

\n
\n\n\n

Screening with

\n\n\n
\n

On Queer Aging and Endings

\n\n\n
\"\"\n
\n\n\n
\n
    \n\t
  • \n\t

    Director

    \n\n\t

    Christian Schulz-Quach

    \n\t
  • \n\t
  • \n\t

    Canada-Norway-UK-Sweden 2025. 19min

    \n\t
  • \n\t
  • \n\t

    Languages

    \n\n\t

    English, Norwegian

    \n\t
  • \n\t
  • \n\t

    With English subtitles

    \n\t
  • \n
\n
\n\n\n

Norwegian Trans elder Esben Esther Pirelli Benestad contemplates her life and mortality in this intimate documentary.

\n
\n\n\n

How to book

\n\n
\n

BFI Flare tickets start from £10, with concessions available for many screenings and discounts for BFI Members. Booking information and ticket prices.

\n\n

If you’re aged 16 to 25, sign up for free to BFI 25 and Under for a chance to get £6 tickets to all screenings and events (subject to availability).

\n\n
\n

Missed out?

\n\n

More tickets may become available for these screenings before and during the festival. Find out about extra ticket releases and standby queues.

\n
\n
\n\n\n
\n

Our programmers recommend...

\n\n
\n
\n
\n
\"\"\n
\n\n
\n

Queen of Coal

\n\n

In this defiant portrait of self-determination, a woman yearns to work in a male-dominated world.

\n
\nRead more about Queen of Coal\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Castration Movie Chapter iii. Junior Ghosts—Premorphic Drift; a fragmentary passage

\n\n

In this bold new chapter of Louise Weard’s trans epic, a heterosexual couple are upended by an abrupt transition.

\n
\nRead more about Castration Movie Chapter iii. Junior Ghosts—Premorphic Drift; a fragmentary passage\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Treat Me Like Your Mother

\n\n

Based on the book Trans* Histories from Beirut’s Forgotten Past, this kaleidoscopic documentary is a contemplative journey through the lives of five Lebanese women.

\n
\nRead more about Treat Me Like Your Mother\n\n
\n
\n
\n
\n
\n\n
\n \n
\n \n\n\n\n
\n
\n
 
\n
\n\n
\n\n \n
\n \n
\n \n
\n \n
\n
\n

Bodies

\n\n

Stories of sex, identity and transformation.

\nFind out more\n
\n
\n\n
\n \n
\n
\n
\n

March 2026

\n
\n\n
\n
MON
\n\n
TUE
\n\n
WED
\n\n
THU
\n\n
FRI
\n\n
SAT
\n\n
SUN
\n\n
16
\n\n
17
\n18 19 20 21 22 23 24 25 26 27 28 29\n
\n
\n\n
\n \n
\n  \n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

BFI Membership

\n\n

Become a BFI Member from £39 to enjoy priority festival booking as well as other great benefits all year round.

\nJoin today\n
\n
\n\n
\n \n
\n \n
\n
\n

About the festival

\n\n

A quick guide to the festival.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

Screenings and events with access provision

\n\n

Making BFI Flare: London LGBTQIA+ Film Festival as welcoming, inclusive and accessible as possible for everyone.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

25 and Under

\n\n

£6 cinema tickets for 16 to 25 year olds.

\nSign up\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

2026 festival brochure

\n\n

Download our digital festival brochure (PDF) for the 2026 edition of the festival.

\nDownload brochure\n
\n
\n\n
\n \n
\n \n
\n
\n

Festival pass

\n\n

See 10 films for less.

\nFind out more\n
\n
\n\n
\n \n
\n
\n \n \n \n \n\n

\n Add a promo code

\n
    \n \n
  • \n \n
  • \n \n
  • \n
    \n \n \n \n \n
    \n
  • \n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n\n
\n
\n\n
\n
\n
\n
\n\n
\n
\n
\n

British Film Institute

\n\n

We are a cultural charity, a National Lottery funding distributor, and the UK’s lead organisation for film and the moving image.

\n\n\n\n\n
\n\n
\n

Supported by

\n\n
\n
\n
\"Funded\n
\n\n
\"Culture\n
\n\n
\"BFI\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n
\n
\n
©2025 British Film Institute. All rights reserved.
\n\n
Registered charity 287780
\n\n
Registered office 21 Stephen St, London W1T 1LN
\n
\n
\n
\n
\n\n
\n
\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n
\n ", + "searchResults": [ + [ + "3144ED95-0DE4-4DB6-9115-985F2E8888BD", + "P", + "BFI Flare Festival", + "LLGFF", + "swee_21Mar26", + "A Sweetness from Nowhere", + "A Sweetness from Nowhere", + "Saturday 21 March 2026 20:35", + "20:35", + "21", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "G", + "49", + "Bodies, Ester Bergsmark, Sweden,Subtitles,On Queer Aging and Endings, Christian Schulz-Quach, Canada-Norway-UK-Sweden", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=53903B7E-BA4C-4FFE-91E3-144A07CF80DC&BOparam::WScontent::loadArticle::context_id=3144ED95-0DE4-4DB6-9115-985F2E8888BD", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREBODIES", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "United Kingdom", + "", + "", + "C14E3C2A-68EC-4B8B-B4DA-E00E79BD3822", + "Flare NFT3", + "BFI Southbank, Screen NFT3", + "BFI Southbank, Screen NFT3", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ], + [ + "F613656C-BF0E-479D-B93A-E63B05F12FBE", + "P", + "BFI Flare Festival", + "LLGFF", + "swee_22Mar26", + "A Sweetness from Nowhere", + "A Sweetness from Nowhere", + "Sunday 22 March 2026 13:10", + "13:10", + "22", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "G", + "67", + "On Queer Aging and Endings, Christian Schulz-Quach, Canada-Norway-UK-Sweden,Bodies, Ester Bergsmark, Sweden,Subtitles", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=53903B7E-BA4C-4FFE-91E3-144A07CF80DC&BOparam::WScontent::loadArticle::context_id=F613656C-BF0E-479D-B93A-E63B05F12FBE", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREBODIES", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "", + "", + "", + "527ADADE-4BF3-4A03-BADB-12000B5C7BD6", + "Flare NFT2", + "BFI Southbank, Screen NFT2", + "BFI Southbank, Screen NFT2", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ] + ] +} \ No newline at end of file diff --git a/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-this-is-home-flare26-2026-02-23 b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-this-is-home-flare26-2026-02-23 new file mode 100644 index 0000000..78b1980 --- /dev/null +++ b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-this-is-home-flare26-2026-02-23 @@ -0,0 +1,209 @@ +{ + "html": "\nBuy tickets for This Is Home | BFI Flare: London LGBTQIA+ Film Festival 2026\n\n\n\n\n\n\n\n\n\n\n\n \n\n \n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n\n\n\t\n\t\n\t\n\t\n\t\n\t\n
\n
\n \n \n \n
\n\n\n
\n \n \n \n
\n
\n
\n\n \n Order for\n Customer\n\n
\n
\n
\n \n
\n \n
\n \n Your basket is empty\n \n
\n \n
\n\n \n
\n\n \n \n\n\n \n
\n
\n \n\n\n
\n
\n\n \n
\n
\n Order for\n Customer\n \n
\n
\n\n \n
\n
    \n \n
\n
\n
\n\n
\n
\"BFI \"BFI \n
\n\n
\n\n \n \n
\n\n
\n \n
\n\t
\n\t\t\n\n\t
\n
\n\n\n
\n
\n\n \n
\n\n\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n
    \n
  • \n Search films and events\n \n
  • \n
  • \n Search dates\n from\n
    \n
    \n
  • \n
  • \n to\n
    \n
    \n
  • \n
  • \n \n
  • \n
\n \n
\n
\n\n \n\n
\n\n \n \n\n
\n \n
\n
\n
\n\n
\n\n\n
\n

This Is Home

\n\n

In this programme of shorts films by Indian directors, queer people find support, community and acceptance – sometimes in the unlikeliest of places.

\n
\n\n\n

Screening dates and booking

\n\n
\n

Book your festival tickets a week early when you become a BFI Member.\n

\n
\n\n\n
\n
-Thursday 19 March 2026 15:50
BFI Southbank, Screen NFT2
This Is Home
-Saturday 21 March 2026 18:20
BFI Southbank, Screen NFT4
This Is Home
\n
\n\n\n

Credits

\n\n
\n
    \n\t
  • \n\t

    Total running time

    \n\n\t

    93min

    \n\t
  • \n\t
  • \n\t

    Programmed by

    \n\n\t

    Grace Barber-Plentie

    \n\t
  • \n\t
  • \n\t

    Content advice

    \n\n\t

    This short film programme contains flashing images, and homophobic and transphobic attitudes and language.

    \n\t
  • \n
\n
\n\n\n
\n

Pakka

\n\n\n
\"\"\n
\n\n\n
\n
    \n\t
  • \n\t

    Director

    \n\n\t

    Iniyavan Elumalai

    \n\t
  • \n\t
  • \n\t

    Netherlands 2025. 18min

    \n\t
  • \n\t
  • \n\t

    Languages

    \n\n\t

    English, Dutch and Tamil
    \n\tWith English subtitles

    \n\t
  • \n\t
  • \n\t

    Content advice

    \n\n\t

    Contains flashing images.

    \n\t
  • \n
\n
\n\n\n
\n

A group of gay Indian friends living in Holland spend a final night together before one of them returns home.

\n
\n
\n\n\n
\n

Body of Our Own

\n\n\n
\"\"\n
\n\n\n
\n
    \n\t
  • \n\t

    Directors

    \n\n\t

    Rahemur Rahman, Lily Vetch

    \n\t
  • \n\t
  • \n\t

    UK 2026. 25min

    \n\t
  • \n\t
  • \n\t

    Languages

    \n\n\t

    Bengali, Hindi
    \n\tWith English subtitles

    \n\t
  • \n\t
  • \n\t

    Content advice

    \n\n\t

    Contains homophobic and transphobic attitudes and language.
    \n\tContains flashing images.

    \n\t
  • \n
\n
\n\n\n
\n

Filmed over the course of six years, this documentary shows the resilience and sisterhood of three Hijra women.

\n
\n
\n\n\n
\n

A Letter for Tomorrow

\n\n\n
\"\"\n
\n\n\n
\n
    \n\t
  • \n\t

    Director

    \n\n\t

    Mahesh Menon

    \n\t
  • \n\t
  • \n\t

    India 2025. 23min

    \n\t
  • \n\t
  • \n\t

    Languages

    \n\n\t

    Malayalam, English, Hindi
    \n\tWith English subtitles

    \n\t
  • \n
\n
\n\n\n
\n

In a multi-generational matriarchal household, a woman embraces her authentic lesbian identity after her divorce.

\n
\n
\n\n\n
\n

Hills Don’t Dance Alone

\n\n\n
\"\"\n
\n\n\n
\n
    \n\t
  • \n\t

    Director

    \n\n\t

    Shubham Negi

    \n\t
  • \n\t
  • \n\t

    India 2025. 24min

    \n\t
  • \n\t
  • \n\t

    Languages

    \n\n\t

    Hindi, Pahari
    \n\tWith English subtitles

    \n\t
  • \n\t
  • \n\t

    Content advice

    \n\n\t

    Contains homophobic attitudes and language.

    \n\t
  • \n
\n
\n\n\n
\n

Sachin finds an surprising ally when is bullied for wanting to wear female clothing during a dance performance.

\n
\n
\n\n\n

How to book

\n\n
\n

BFI Flare tickets start from £10, with concessions available for many screenings and discounts for BFI Members. Booking information and ticket prices.

\n\n

If you’re aged 16 to 25, sign up for free to BFI 25 and Under for a chance to get £6 tickets to all screenings and events (subject to availability).

\n\n
\n

Missed out?

\n\n

More tickets may become available for these screenings before and during the festival. Find out about extra ticket releases and standby queues.

\n
\n
\n\n\n
\n

Our programmers recommend...

\n\n
\n
\n
\n
\"\"\n
\n\n
\n

(When the Rainbow Is Enuf)

\n\n

A joyful twist on Ntozake Shange’s 1976 play, this programme celebrates queer Black girlhood across the spectrum: playful, romantic, chaotic and unapologetically free.

\n
\nRead more about (When the Rainbow Is Enuf)\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Whisperings of the Moon

\n\n

Lai Yuqing’s debut feature is a vivid portrait of an actor returning to Cambodia following a bereavement and reconnecting with her ex-lover.

\n
\nRead more about Whisperings of the Moon\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Immodest Acts

\n\n

The sacred meets the profane in this collection of shorts that explore the intersections and, more often, the collisions of faith, identity, religion and queer desire.

\n
\nRead more about Immodest Acts\n\n
\n
\n
\n
\n
\n\n
\n \n
\n \n\n\n\n
\n
\n
 
\n
\n\n
\n\n \n
\n \n
\n \n
\n \n
\n
\n

Shorts

\n\n

Small but perfectly formed.

\nFind out more\n
\n
\n\n
\n \n
\n
\n
\n

March 2026

\n
\n\n
\n
MON
\n\n
TUE
\n\n
WED
\n\n
THU
\n\n
FRI
\n\n
SAT
\n\n
SUN
\n\n
16
\n\n
17
\n18 19 20 21 22 23 24 25 26 27 28 29\n
\n
\n\n
\n \n
\n  \n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

BFI Membership

\n\n

Become a BFI Member from £39 to enjoy priority festival booking as well as other great benefits all year round.

\nJoin today\n
\n
\n\n
\n \n
\n \n
\n
\n

About the festival

\n\n

A quick guide to the festival.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

Screenings and events with access provision

\n\n

Making BFI Flare: London LGBTQIA+ Film Festival as welcoming, inclusive and accessible as possible for everyone.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

25 and Under

\n\n

£6 cinema tickets for 16 to 25 year olds.

\nSign up\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

2026 festival brochure

\n\n

Download our digital festival brochure (PDF) for the 2026 edition of the festival.

\nDownload brochure\n
\n
\n\n
\n \n
\n \n
\n
\n

Festival pass

\n\n

See 10 films for less.

\nFind out more\n
\n
\n\n
\n \n
\n
\n \n \n \n \n\n

\n Add a promo code

\n
    \n \n
  • \n \n
  • \n \n
  • \n
    \n \n \n \n \n
    \n
  • \n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n\n
\n
\n\n
\n
\n
\n
\n\n
\n
\n
\n

British Film Institute

\n\n

We are a cultural charity, a National Lottery funding distributor, and the UK’s lead organisation for film and the moving image.

\n\n\n\n\n
\n\n
\n

Supported by

\n\n
\n
\n
\"Funded\n
\n\n
\"Culture\n
\n\n
\"BFI\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n
\n
\n
©2025 British Film Institute. All rights reserved.
\n\n
Registered charity 287780
\n\n
Registered office 21 Stephen St, London W1T 1LN
\n
\n
\n
\n
\n\n
\n
\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n
\n ", + "searchResults": [ + [ + "5B37A71B-59F1-4CDA-A13B-48DC13780013", + "P", + "BFI Flare Festival", + "LLGFF", + "thisis_19Mar26", + "This Is Home", + "This Is Home", + "Thursday 19 March 2026 15:50", + "15:50", + "19", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "G", + "55", + "A Letter for Tomorrow,Hearts, Mahesh Menon, India,Hills Don’t Dance Alone,Hearts, Iniyavan Elumalai, Netherlands,Pakka,Body of Our Own,Hearts, Shubham Negi, India,Hearts, Rahemur Rahman, Lily Vetch, UK", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=E81FB098-524F-4438-8257-838120BC68BC&BOparam::WScontent::loadArticle::context_id=5B37A71B-59F1-4CDA-A13B-48DC13780013", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREHEARTS", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "", + "", + "", + "527ADADE-4BF3-4A03-BADB-12000B5C7BD6", + "Flare NFT2", + "BFI Southbank, Screen NFT2", + "BFI Southbank, Screen NFT2", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£10.00", + "£10.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ], + [ + "C6E0C772-EC1E-4F37-96A9-097A2279C163", + "P", + "BFI Flare Festival", + "LLGFF", + "thisis_21Mar26", + "This Is Home", + "This Is Home", + "Saturday 21 March 2026 18:20", + "18:20", + "21", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "G", + "18", + "Hearts, Shubham Negi, India,Hearts, Iniyavan Elumalai, Netherlands,A Letter for Tomorrow,Hearts, Rahemur Rahman, Lily Vetch, UK,Hills Don’t Dance Alone,Body of Our Own,Pakka,Hearts, Mahesh Menon, India", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=E81FB098-524F-4438-8257-838120BC68BC&BOparam::WScontent::loadArticle::context_id=C6E0C772-EC1E-4F37-96A9-097A2279C163", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREHEARTS", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "United Kingdom", + "", + "", + "A76FC31F-05EE-4F50-9AC1-C73800A414DA", + "Flare NFT4", + "BFI Southbank, Screen NFT4", + "BFI Southbank, Screen NFT4", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ] + ] +} \ No newline at end of file diff --git a/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-til-the-world-stops-turning-flare26-2026-02-23 b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-til-the-world-stops-turning-flare26-2026-02-23 new file mode 100644 index 0000000..f68764a --- /dev/null +++ b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-til-the-world-stops-turning-flare26-2026-02-23 @@ -0,0 +1,310 @@ +{ + "html": "\nBuy tickets for Til the World Stops Turning | BFI Flare: London LGBTQIA+ Film Festival 2026\n\n\n\n\n\n\n\n\n\n\n\n \n\n \n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n\n\n\t\n\t\n\t\n\t\n\t\n\t\n
\n
\n \n \n \n
\n\n\n
\n \n \n \n
\n
\n
\n\n \n Order for\n Customer\n\n
\n
\n
\n \n
\n \n
\n \n Your basket is empty\n \n
\n \n
\n\n \n
\n\n \n \n\n\n \n
\n
\n \n\n\n
\n
\n\n \n
\n
\n Order for\n Customer\n \n
\n
\n\n \n
\n
    \n \n
\n
\n
\n\n
\n
\"BFI \"BFI \n
\n\n
\n\n \n \n
\n\n
\n \n
\n\t
\n\t\t\n\n\t
\n
\n\n\n
\n
\n\n \n
\n\n\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n
    \n
  • \n Search films and events\n \n
  • \n
  • \n Search dates\n from\n
    \n
    \n
  • \n
  • \n to\n
    \n
    \n
  • \n
  • \n \n
  • \n
\n \n
\n
\n\n \n\n
\n\n \n \n\n
\n \n
\n
\n
\n\n
\n\n\n
\n

Til the World Stops Turning

\n\n

A celebration of some of this year’s best LGBTQIA+ short films from the UK and Ireland.

\n
\n\n\n

Screening dates and booking

\n\n
\n

Book your festival tickets a week early when you become a BFI Member.\n

\n
\n\n\n
\n
-Saturday 21 March 2026 13:25
BFI Southbank, Screen NFT1
Til the World Stops Turning
-Friday 27 March 2026 16:00
BFI Southbank, Screen NFT4
Til the World Stops Turning
-Friday 27 March 2026 18:15
BFI Southbank, Screen NFT4
Til the World Stops Turning
\n
\n\n\n

Credits

\n\n
\n
    \n\t
  • \n\t

    Total running time

    \n\n\t

    90min

    \n\t
  • \n\t
  • \n\t

    Programmed by

    \n\n\t

    Grace Barber-Plentie

    \n\t
  • \n\t
  • Age rating\n\t

    18+

    \n\t
  • \n\t
  • \n\t

    Content advice

    \n\n\t

    This short film programme contains flashing images, and transphobic attitudes and language.

    \n\t
  • \n
\n\n
\n

Access screenings

\n\n
\n

Saturday 21 March 13:25\n
\nDescriptive Subtitles

\n\n

Friday 27 March 16:00\n
\nDescriptive Subtitles
\nRelaxed screening

\n\n

Friday 27 March 18:15\n
\nDescriptive Subtitles

\n\n

Find out about booking tickets for access screenings\n

\n
\n
\n
\n\n\n
\n

Doug + Me

\n\n\n
\"\"\n
\n\n\n
\n
    \n\t
  • \n\t

    Director

    \n\n\t

    Cecile Fountain-Jardim

    \n\t
  • \n\t
  • \n\t

    UK-USA 2026. 6min

    \n\t
  • \n\t
  • \n\t

    Language

    \n\n\t

    English

    \n\t
  • \n\t
  • \n\t

    Content advice

    \n\n\t

    Contains flashing images.

    \n\t
  • \n
\n
\n\n\n
\n

Cecile Fountain-Jardim explores the life of the uncle that she never got to meet.

\n
\n
\n\n\n
\n

No Adams Allowed

\n\n\n
\"\"\n
\n\n\n
\n
    \n\t
  • \n\t

    Director

    \n\n\t

    Gemma Burnand

    \n\t
  • \n\t
  • \n\t

    UK 2025. 13min

    \n\t
  • \n\t
  • \n\t

    Language

    \n\n\t

    English

    \n\t
  • \n
\n
\n\n\n
\n

A couple find themselves in hot water when they kidnap a client who owes them money.

\n
\n
\n\n\n
\n

Uncanny Waters

\n\n\n
\"\"\n
\n\n\n
\n
    \n\t
  • \n\t

    Directors

    \n\n\t

    Ray Malone, Steve Melia

    \n\t
  • \n\t
  • \n\t

    UK 2025. 10min

    \n\t
  • \n\t
  • \n\t

    Language

    \n\n\t

    English

    \n\t
  • \n\t
  • \n\t

    Content advice

    \n\n\t

    Contains transphobic attitudes and language.

    \n\t
  • \n
\n
\n\n\n
\n

A record of a radical art project by Deptford’s Heads Bodies Legs Collective.

\n
\n
\n\n\n
\n

I Hate Helen

\n\n\n
\"\"\n
\n\n\n
\n
    \n\t
  • \n\t

    Director

    \n\n\t

    Katie Lambert

    \n\t
  • \n\t
  • \n\t

    UK 2025. 7min

    \n\t
  • \n\t
  • \n\t

    Language

    \n\n\t

    English

    \n\t
  • \n
\n
\n\n\n
\n

Priya loves to hate her schoolmate Helen. Or does she...?

\n
\n
\n\n\n
\n

Grand Dandy (For Ezra)

\n\n\n
\"\"\n
\n\n\n
\n
    \n\t
  • \n\t

    Directors

    \n\n\t

    The Campbells

    \n\t
  • \n\t
  • \n\t

    UK-USA 2024. 4min

    \n\t
  • \n\t
  • \n\t

    Language

    \n\n\t

    English

    \n\t
  • \n
\n
\n\n\n
\n

A stop-motion animation in which a grandparent tries to explain their gender identity to their newborn grandchild.

\n
\n
\n\n\n
\n

Reconnection

\n\n\n
\"\"\n
\n\n\n
\n
    \n\t
  • \n\t

    Director

    \n\n\t

    Amy Helena

    \n\t
  • \n\t
  • \n\t

    UK 2025. 11min

    \n\t
  • \n\t
  • \n\t

    Language

    \n\n\t

    English, BSL

    \n\t
  • \n
\n
\n\n\n
\n

Over the course of an evening, a splintered Deaf couple gradually edge towards reconciliation.

\n
\n
\n\n\n
\n

You Can Call Me Lou

\n\n\n
\"\"\n
\n\n\n
\n
    \n\t
  • \n\t

    Director

    \n\n\t

    Georgia Zeta Gkoka

    \n\t
  • \n\t
  • \n\t

    UK 2025. 13min

    \n\t
  • \n\t
  • \n\t

    Language

    \n\n\t

    English

    \n\t
  • \n\t
  • \n\t

    Content advice

    \n\n\t

    Contains transphobic attitudes and language.

    \n\t
  • \n
\n
\n\n\n
\n

Travel back to the 1980s and 1990s club scene through this portrait of trans dancer Louise.

\n
\n
\n\n\n
\n

Queer & Confused

\n\n\n
\"\"\n
\n\n\n
\n
    \n\t
  • \n\t

    Director

    \n\n\t

    Zoe Black

    \n\t
  • \n\t
  • \n\t

    UK 2025. 9min

    \n\t
  • \n\t
  • \n\t

    Language

    \n\n\t

    English

    \n\t
  • \n
\n
\n\n\n
\n

A night out with bestie Dolly leaves Charlie on the verge of a revelation about their gender identity.

\n
\n
\n\n\n
\n

Never Never Never

\n\n\n
\"\"\n
\n\n\n
\n
    \n\t
  • \n\t

    Director

    \n\n\t

    John Sheedy

    \n\t
  • \n\t
  • \n\t

    UK-Australia 2025. 19min

    \n\t
  • \n\t
  • \n\t

    Languages

    \n\n\t

    English, Welsh
    \n\tWith English subtitles

    \n\t
  • \n\t
  • Certificate\n\t

    BBFC 15

    \n\t
  • \n
\n
\n\n\n
\n

A heartwarming love story, set in a Welsh fishing village, about a Shirley Bassey impersonator and a fisherman.

\n
\n
\n\n\n

How to book

\n\n
\n

BFI Flare tickets start from £10, with concessions available for many screenings and discounts for BFI Members. Booking information and ticket prices.

\n\n

If you’re aged 16 to 25, sign up for free to BFI 25 and Under for a chance to get £6 tickets to all screenings and events (subject to availability).

\n\n
\n

Missed out?

\n\n

More tickets may become available for these screenings before and during the festival. Find out about extra ticket releases and standby queues.

\n
\n
\n\n\n
\n

Our programmers recommend...

\n\n
\n
\n
\n
\"\"\n
\n\n
\n

Washed Up

\n\n

This charming, Cornwall-set drama finds a struggling artist falling in love with a mythical selkie.

\n
\nRead more about Washed Up\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Madfabulous

\n\n

Celyn Jones’ quirky period drama is based on the life of Henry Cyril Paget, the dancing Marquess of Anglesey, who stuck his nose up at societal norms.

\n
\nRead more about Madfabulous\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

On the Sea

\n\n

A moving tale of the powerful attraction between a local hand raker, who works on the mussel beds of North Wales, and an itinerant deckhand.

\n
\nRead more about On the Sea\n\n
\n
\n
\n
\n
\n\n
\n \n
\n \n\n\n\n
\n
\n
 
\n
\n\n
\n\n \n
\n \n
\n \n
\n \n
\n
\n

Shorts

\n\n

Small but perfectly formed.

\nFind out more\n
\n
\n\n
\n \n
\n
\n
\n

March 2026

\n
\n\n
\n
MON
\n\n
TUE
\n\n
WED
\n\n
THU
\n\n
FRI
\n\n
SAT
\n\n
SUN
\n\n
16
\n\n
17
\n18 19 20 21 22 23 24 25 26 27 28 29\n
\n
\n\n
\n \n
\n  \n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

BFI Membership

\n\n

Become a BFI Member from £39 to enjoy priority festival booking as well as other great benefits all year round.

\nJoin today\n
\n
\n\n
\n \n
\n \n
\n
\n

About the festival

\n\n

A quick guide to the festival.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

Screenings and events with access provision

\n\n

Making BFI Flare: London LGBTQIA+ Film Festival as welcoming, inclusive and accessible as possible for everyone.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

25 and Under

\n\n

£6 cinema tickets for 16 to 25 year olds.

\nSign up\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

2026 festival brochure

\n\n

Download our digital festival brochure (PDF) for the 2026 edition of the festival.

\nDownload brochure\n
\n
\n\n
\n \n
\n \n
\n
\n

Festival pass

\n\n

See 10 films for less.

\nFind out more\n
\n
\n\n
\n \n
\n
\n \n \n \n \n\n

\n Add a promo code

\n
    \n \n
  • \n \n
  • \n \n
  • \n
    \n \n \n \n \n
    \n
  • \n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n\n
\n
\n\n
\n
\n
\n
\n\n
\n
\n
\n

British Film Institute

\n\n

We are a cultural charity, a National Lottery funding distributor, and the UK’s lead organisation for film and the moving image.

\n\n\n\n\n
\n\n
\n

Supported by

\n\n
\n
\n
\"Funded\n
\n\n
\"Culture\n
\n\n
\"BFI\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n
\n
\n
©2025 British Film Institute. All rights reserved.
\n\n
Registered charity 287780
\n\n
Registered office 21 Stephen St, London W1T 1LN
\n
\n
\n
\n
\n\n
\n
\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n
\n ", + "searchResults": [ + [ + "26F14D22-2BD5-46FF-B88B-5B89106506AF", + "P", + "BFI Flare Festival", + "LLGFF", + "tilthe_21Mar26", + "Til the World Stops Turning", + "Til the World Stops Turning", + "Saturday 21 March 2026 13:25", + "13:25", + "21", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "G", + "305", + "Never Never Never, Queer & Confused, You Can Call Me Lou, Reconnection,Grand Dandy (For Ezra), The Campbells, UK-USA,I Hate Helen, Georgia Zeta Gkoka, UK,Uncanny Waters, Zoe Black, UK,No Adams Allowed, John Sheedy, UK-Australia,Hearts, Gemma Burnand, Amy Helena, UK,DS descriptive subtitles,Doug + Me, Katie Lambert, UK,Hearts, Ray Malone, Steve Melia, UK,Hearts, Cecile Fountain-Jardim, UK-USA", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=DB3CCC71-9A8D-4A96-9244-4D28DAA77D18&BOparam::WScontent::loadArticle::context_id=26F14D22-2BD5-46FF-B88B-5B89106506AF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREHEARTS", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "", + "", + "", + "C4B57E43-F123-4CE5-8A17-6CB9F0409CF5", + "Flare - NFT1", + "BFI Southbank, Screen NFT1", + "BFI Southbank, Screen NFT1", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ], + [ + "5DF6E2FA-0E42-4A27-8E60-BE53430E79AE", + "P", + "BFI Flare Festival", + "LLGFF", + "tilthe_1_27Mar26", + "Til the World Stops Turning", + "Til the World Stops Turning", + "Friday 27 March 2026 16:00", + "16:00", + "27", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "G", + "14", + "No Adams Allowed, John Sheedy, UK-Australia,Grand Dandy (For Ezra), The Campbells, UK-USA,Relaxed,Never Never Never, Queer & Confused, You Can Call Me Lou, Reconnection,Doug + Me, Katie Lambert, UK,DS descriptive subtitles,Uncanny Waters, Zoe Black, UK,Hearts, Cecile Fountain-Jardim, UK-USA,I Hate Helen, Georgia Zeta Gkoka, UK,Hearts, Amy Helena, UK, Gemma Burnand, Ray Malone, Steve Melia", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=DB3CCC71-9A8D-4A96-9244-4D28DAA77D18&BOparam::WScontent::loadArticle::context_id=5DF6E2FA-0E42-4A27-8E60-BE53430E79AE", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREHEARTS", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1" + ], + "", + "", + "", + "", + "", + "", + "", + "CC14D511-4D26-4B51-9327-BABE4A8EA546", + "Flare NFT4 General Admission", + "BFI Southbank, Screen NFT4", + "BFI Southbank, Screen NFT4", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£6.00", + "£6.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ], + [ + "9B33E240-7DD8-4B40-BF49-A6F53F8AFFD1", + "P", + "BFI Flare Festival", + "LLGFF", + "tilthe_27Mar26", + "Til the World Stops Turning", + "Til the World Stops Turning", + "Friday 27 March 2026 18:15", + "18:15", + "27", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "G", + "22", + "Hearts, Ray Malone, Steve Melia, UK,Hearts, Cecile Fountain-Jardim, UK-USA,DS descriptive subtitles,No Adams Allowed, John Sheedy, UK-Australia,Grand Dandy (For Ezra), The Campbells, UK-USA,Never Never Never, Queer & Confused, You Can Call Me Lou, Reconnection,Uncanny Waters, Zoe Black, UK,I Hate Helen, Georgia Zeta Gkoka, UK,Hearts, Amy Helena, Gemma Burnand, UK,Doug + Me, Katie Lambert, UK", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=DB3CCC71-9A8D-4A96-9244-4D28DAA77D18&BOparam::WScontent::loadArticle::context_id=9B33E240-7DD8-4B40-BF49-A6F53F8AFFD1", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREHEARTS", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "United Kingdom", + "", + "", + "A76FC31F-05EE-4F50-9AC1-C73800A414DA", + "Flare NFT4", + "BFI Southbank, Screen NFT4", + "BFI Southbank, Screen NFT4", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ] + ] +} \ No newline at end of file diff --git a/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-to-dance-is-to-resist-flare26-2026-02-23 b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-to-dance-is-to-resist-flare26-2026-02-23 new file mode 100644 index 0000000..06bdc5e --- /dev/null +++ b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-to-dance-is-to-resist-flare26-2026-02-23 @@ -0,0 +1,209 @@ +{ + "html": "\nBuy tickets for TO DANCE IS TO RESIST | BFI Flare: London LGBTQIA+ Film Festival 2026\n\n\n\n\n\n\n\n\n\n\n\n \n\n \n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n\n\n\t\n\t\n\t\n\t\n\t\n\t\n
\n
\n \n \n \n
\n\n\n
\n \n \n \n
\n
\n
\n\n \n Order for\n Customer\n\n
\n
\n
\n \n
\n \n
\n \n Your basket is empty\n \n
\n \n
\n\n \n
\n\n \n \n\n\n \n
\n
\n \n\n\n
\n
\n\n \n
\n
\n Order for\n Customer\n \n
\n
\n\n \n
\n
    \n \n
\n
\n
\n\n
\n
\"BFI \"BFI \n
\n\n
\n\n \n \n
\n\n
\n \n
\n\t
\n\t\t\n\n\t
\n
\n\n\n
\n
\n\n \n
\n\n\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n
    \n
  • \n Search films and events\n \n
  • \n
  • \n Search dates\n from\n
    \n
    \n
  • \n
  • \n to\n
    \n
    \n
  • \n
  • \n \n
  • \n
\n \n
\n
\n\n \n\n
\n\n \n \n\n
\n \n
\n
\n
\n\n
\n\n\n
\n

TO DANCE IS TO RESIST

\n\n

Two Ukrainian dancers seek life and artistic freedom following Russia’s invasion of their country.

\n
\n\n\n

Screening dates and booking

\n\n
\n

Book your festival tickets a week early when you become a BFI Member.\n

\n
\n\n\n
\n
-Thursday 26 March 2026 20:30
BFI Southbank, Screen NFT3
TO DANCE IS TO RESIST
-Saturday 28 March 2026 18:15
BFI Southbank, Screen NFT2
TO DANCE IS TO RESIST
\n
\n\n\n
\n
\n
\n\n\n

Credits

\n\n
\n
    \n\t
  • \n\t

    Director

    \n\n\t

    Julian Lautenbacher

    \n\t
  • \n\t
  • \n\t

    Screenwriters

    \n\n\t

    Julian Lautenbacher, Nadiia Khatymlianska, Sasha Ongley

    \n\t
  • \n\t
  • \n\t

    With

    \n\n\t

    Jay, Vol’demar Kabus

    \n\t
  • \n\t
  • \n\t

    Ukraine-Germany 2026. 90min

    \n\t
  • \n\t
  • \n\t

    Courtesy of

    \n\n\t

    PM Film Production

    \n\t
  • \n\t
  • \n\t

    Languages

    \n\n\t

    Ukrainian, English

    \n\n\t

    With English subtitles

    \n\t
  • \n
\n
\n\n\n

Introduction

\n\n
\n

Jay and Vol’demar, dancers in Kyiv’s underground queer scene, find joy in their art and their community. Julian Lautenbacher has followed the pair since 2022 and Russia’s full-scale invasion of Ukraine. In his incisive, artful film, he questions how it is possible to maintain everyday life when your country is under siege, and how one can live proudly and queerly when your relationship is not legally recognised.

\n\n

Grace Barber-Plentie

\n\n

Content advice

\n\n

Contains flashing images.

\n
\n\n\n

How to book

\n\n
\n

BFI Flare tickets start from £10, with concessions available for many screenings and discounts for BFI Members. Booking information and ticket prices.

\n\n

If you’re aged 16 to 25, sign up for free to BFI 25 and Under for a chance to get £6 tickets to all screenings and events (subject to availability).

\n\n
\n

Missed out?

\n\n

More tickets may become available for these screenings before and during the festival. Find out about extra ticket releases and standby queues.

\n
\n
\n\n\n
\n

Our programmers recommend...

\n\n
\n
\n
\n
\"\"\n
\n\n
\n

Heavenly Havens

\n\n

Carving out spaces to thrive and survive, this programme is a paean to the nightlife that seduces and sustains us, and the creation of places we can truly call home. Contains strobe effects/flashing lights.

\n
\nRead more about Heavenly Havens\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Out Laws

\n\n

Lexi Powner and James Lewis’ strident film chronicles the battle of one gay Namibian man to stand up for the rights of same-sex couples.

\n
\nRead more about Out Laws\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Uchronia: Parallel histories of queer revolt

\n\n

This bold, daring cinematic essay explores revolutionary politics, queer history and art.

\n
\nRead more about Uchronia: Parallel histories of queer revolt\n\n
\n
\n
\n
\n
\n\n
\n \n
\n \n\n\n\n
\n
\n
 
\n
\n\n
\n\n \n
\n \n
\n \n
\n \n
\n
\n

Minds

\n\n

Reflections on art, politics and community.

\nFind out more\n
\n
\n\n
\n \n
\n
\n
\n

March 2026

\n
\n\n
\n
MON
\n\n
TUE
\n\n
WED
\n\n
THU
\n\n
FRI
\n\n
SAT
\n\n
SUN
\n\n
16
\n\n
17
\n18 19 20 21 22 23 24 25 26 27 28 29\n
\n
\n\n
\n \n
\n  \n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

BFI Membership

\n\n

Become a BFI Member from £39 to enjoy priority festival booking as well as other great benefits all year round.

\nJoin today\n
\n
\n\n
\n \n
\n \n
\n
\n

About the festival

\n\n

A quick guide to the festival.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

Screenings and events with access provision

\n\n

Making BFI Flare: London LGBTQIA+ Film Festival as welcoming, inclusive and accessible as possible for everyone.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

25 and Under

\n\n

£6 cinema tickets for 16 to 25 year olds.

\nSign up\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

2026 festival brochure

\n\n

Download our digital festival brochure (PDF) for the 2026 edition of the festival.

\nDownload brochure\n
\n
\n\n
\n \n
\n \n
\n
\n

Festival pass

\n\n

See 10 films for less.

\nFind out more\n
\n
\n\n
\n \n
\n
\n \n \n \n \n\n

\n Add a promo code

\n
    \n \n
  • \n \n
  • \n \n
  • \n
    \n \n \n \n \n
    \n
  • \n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n\n
\n
\n\n
\n
\n
\n
\n\n
\n
\n
\n

British Film Institute

\n\n

We are a cultural charity, a National Lottery funding distributor, and the UK’s lead organisation for film and the moving image.

\n\n\n\n\n
\n\n
\n

Supported by

\n\n
\n
\n
\"Funded\n
\n\n
\"Culture\n
\n\n
\"BFI\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n
\n
\n
©2025 British Film Institute. All rights reserved.
\n\n
Registered charity 287780
\n\n
Registered office 21 Stephen St, London W1T 1LN
\n
\n
\n
\n
\n\n
\n
\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n
\n ", + "searchResults": [ + [ + "3B567D31-2D1D-4279-A8E4-B633C55F84FD", + "P", + "BFI Flare Festival", + "LLGFF", + "todan_26Mar26", + "TO DANCE IS TO RESIST", + "TO DANCE IS TO RESIST", + "Thursday 26 March 2026 20:30", + "20:30", + "26", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "G", + "43", + "Minds, Julian Lautenbacher, Ukraine-Germany,Subtitles,Jay, Vol’demar Kabus", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=870ED95A-A6F9-457E-8E5E-E02A1CDC08DF&BOparam::WScontent::loadArticle::context_id=3B567D31-2D1D-4279-A8E4-B633C55F84FD", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREMINDS", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "United Kingdom", + "", + "", + "C14E3C2A-68EC-4B8B-B4DA-E00E79BD3822", + "Flare NFT3", + "BFI Southbank, Screen NFT3", + "BFI Southbank, Screen NFT3", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ], + [ + "B8F90BC2-5527-4B14-8B6C-D6B205A0B0A6", + "P", + "BFI Flare Festival", + "LLGFF", + "toda_28Mar26", + "TO DANCE IS TO RESIST", + "TO DANCE IS TO RESIST", + "Saturday 28 March 2026 18:15", + "18:15", + "28", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "G", + "56", + "Minds, Julian Lautenbacher, Ukraine-Germany,Jay, Vol’demar Kabus,Subtitles", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=870ED95A-A6F9-457E-8E5E-E02A1CDC08DF&BOparam::WScontent::loadArticle::context_id=B8F90BC2-5527-4B14-8B6C-D6B205A0B0A6", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREMINDS", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "", + "", + "", + "527ADADE-4BF3-4A03-BADB-12000B5C7BD6", + "Flare NFT2", + "BFI Southbank, Screen NFT2", + "BFI Southbank, Screen NFT2", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ] + ] +} \ No newline at end of file diff --git a/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-treat-me-like-your-mother-flare26-2026-02-23 b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-treat-me-like-your-mother-flare26-2026-02-23 new file mode 100644 index 0000000..60e6a1d --- /dev/null +++ b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-treat-me-like-your-mother-flare26-2026-02-23 @@ -0,0 +1,209 @@ +{ + "html": "\nBuy tickets for Treat Me Like Your Mother | BFI Flare: London LGBTQIA+ Film Festival 2026\n\n\n\n\n\n\n\n\n\n\n\n \n\n \n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n\n\n\t\n\t\n\t\n\t\n\t\n\t\n
\n
\n \n \n \n
\n\n\n
\n \n \n \n
\n
\n
\n\n \n Order for\n Customer\n\n
\n
\n
\n \n
\n \n
\n \n Your basket is empty\n \n
\n \n
\n\n \n
\n\n \n \n\n\n \n
\n
\n \n\n\n
\n
\n\n \n
\n
\n Order for\n Customer\n \n
\n
\n\n \n
\n
    \n \n
\n
\n
\n\n
\n
\"BFI \"BFI \n
\n\n
\n\n \n \n
\n\n
\n \n
\n\t
\n\t\t\n\n\t
\n
\n\n\n
\n
\n\n \n
\n\n\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n
    \n
  • \n Search films and events\n \n
  • \n
  • \n Search dates\n from\n
    \n
    \n
  • \n
  • \n to\n
    \n
    \n
  • \n
  • \n \n
  • \n
\n \n
\n
\n\n \n\n
\n\n \n \n\n
\n \n
\n
\n
\n\n
\n\n\n
\n

Treat Me Like Your Mother

\n\n

Based on the book Trans* Histories from Beirut’s Forgotten Past, this kaleidoscopic documentary is a contemplative journey through the lives of five Lebanese women.

\n
\n\n\n

Screening dates and booking

\n\n
\n

Book your festival tickets a week early when you become a BFI Member.\n

\n
\n\n\n
\n
-Friday 27 March 2026 18:30
BFI Southbank, Screen NFT3
Treat Me Like Your Mother
-Saturday 28 March 2026 18:25
BFI Southbank, Screen NFT4
Treat Me Like Your Mother
\n
\n\n\n
\n
\n
\n\n\n

Credits

\n\n
\n
    \n\t
  • \n\t

    Director-screenwriter

    \n\n\t

    Mohamad Abdouni

    \n\t
  • \n\t
  • \n\t

    Lebanon 2025. 75min

    \n\t
  • \n\t
  • \n\t

    Courtesy of

    \n\n\t

    Cold Cuts

    \n\t
  • \n\t
  • \n\t

    Language

    \n\n\t

    Arabic

    \n\n\t

    With English subtitles

    \n\t
  • \n
\n
\n\n\n

Introduction

\n\n
\n

Mohamad Abdouni’s meditative film reminisces on childhood, motherhood and coming of age during the turbulence of war, alongside the underground world of nightclubs and illicit sex. Weaving rare archival images from the 1980s to the 2000s with contemporary testimonies by transgender and intersex community elders, aka ‘aunties’, it’s an exceptional glimpse into Lebanon’s trans history.

\n\n

Zorian Clayton

\n\n

Content advice

\n\n

Contains scenes of transphobia.

\n
\n\n\n

How to book

\n\n
\n

BFI Flare tickets start from £10, with concessions available for many screenings and discounts for BFI Members. Booking information and ticket prices.

\n\n

If you’re aged 16 to 25, sign up for free to BFI 25 and Under for a chance to get £6 tickets to all screenings and events (subject to availability).

\n\n
\n

Missed out?

\n\n

More tickets may become available for these screenings before and during the festival. Find out about extra ticket releases and standby queues.

\n
\n
\n\n\n
\n

Our programmers recommend...

\n\n
\n
\n
\n
\"\"\n
\n\n
\n

Woubi Chéri

\n\n

Africa’s first transgender film made a splash in the 1990s, collecting Best Documentary awards at festivals around the world.

\n
\nRead more about Woubi Chéri\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

I Am Going to Miss You

\n\n

A T4T couple move in together and are forced to face their differences in this indie romantic drama featuring an all-trans cast.

\n
\nRead more about I Am Going to Miss You\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

All These Liberations

\n\n

Stories of hope and determination against the odds, by and about queer people, from the Middle East, North Africa and Turkey.

\n
\nRead more about All These Liberations\n\n
\n
\n
\n
\n
\n\n
\n \n
\n \n\n\n\n
\n
\n
 
\n
\n\n
\n\n \n
\n \n
\n \n
\n \n
\n
\n

Bodies

\n\n

Stories of sex, identity and transformation.

\nFind out more\n
\n
\n\n
\n \n
\n
\n
\n

March 2026

\n
\n\n
\n
MON
\n\n
TUE
\n\n
WED
\n\n
THU
\n\n
FRI
\n\n
SAT
\n\n
SUN
\n\n
16
\n\n
17
\n18 19 20 21 22 23 24 25 26 27 28 29\n
\n
\n\n
\n \n
\n  \n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

BFI Membership

\n\n

Become a BFI Member from £39 to enjoy priority festival booking as well as other great benefits all year round.

\nJoin today\n
\n
\n\n
\n \n
\n \n
\n
\n

About the festival

\n\n

A quick guide to the festival.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

Screenings and events with access provision

\n\n

Making BFI Flare: London LGBTQIA+ Film Festival as welcoming, inclusive and accessible as possible for everyone.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

25 and Under

\n\n

£6 cinema tickets for 16 to 25 year olds.

\nSign up\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

2026 festival brochure

\n\n

Download our digital festival brochure (PDF) for the 2026 edition of the festival.

\nDownload brochure\n
\n
\n\n
\n \n
\n \n
\n
\n

Festival pass

\n\n

See 10 films for less.

\nFind out more\n
\n
\n\n
\n \n
\n
\n \n \n \n \n\n

\n Add a promo code

\n
    \n \n
  • \n \n
  • \n \n
  • \n
    \n \n \n \n \n
    \n
  • \n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n\n
\n
\n\n
\n
\n
\n
\n\n
\n
\n
\n

British Film Institute

\n\n

We are a cultural charity, a National Lottery funding distributor, and the UK’s lead organisation for film and the moving image.

\n\n\n\n\n
\n\n
\n

Supported by

\n\n
\n
\n
\"Funded\n
\n\n
\"Culture\n
\n\n
\"BFI\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n
\n
\n
©2025 British Film Institute. All rights reserved.
\n\n
Registered charity 287780
\n\n
Registered office 21 Stephen St, London W1T 1LN
\n
\n
\n
\n
\n\n
\n
\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n
\n ", + "searchResults": [ + [ + "5AE3C69A-9E3F-4A56-96F2-10D26930E82E", + "P", + "BFI Flare Festival", + "LLGFF", + "trea_27Mar26", + "Treat Me Like Your Mother", + "Treat Me Like Your Mother", + "Friday 27 March 2026 18:30", + "18:30", + "27", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "G", + "55", + "Subtitles,Bodies, Mohamad Abdouni, Lebanon", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=4827B86D-F2C2-47DE-85D8-F60B26688ED9&BOparam::WScontent::loadArticle::context_id=5AE3C69A-9E3F-4A56-96F2-10D26930E82E", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREBODIES", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "United Kingdom", + "", + "", + "C14E3C2A-68EC-4B8B-B4DA-E00E79BD3822", + "Flare NFT3", + "BFI Southbank, Screen NFT3", + "BFI Southbank, Screen NFT3", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ], + [ + "93B02BBC-03A4-4339-936B-49EEEE7432BA", + "P", + "BFI Flare Festival", + "LLGFF", + "trea_28Mar26", + "Treat Me Like Your Mother", + "Treat Me Like Your Mother", + "Saturday 28 March 2026 18:25", + "18:25", + "28", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "G", + "25", + "Subtitles,Bodies, Mohamad Abdouni, Lebanon", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=4827B86D-F2C2-47DE-85D8-F60B26688ED9&BOparam::WScontent::loadArticle::context_id=93B02BBC-03A4-4339-936B-49EEEE7432BA", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREBODIES", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "United Kingdom", + "", + "", + "A76FC31F-05EE-4F50-9AC1-C73800A414DA", + "Flare NFT4", + "BFI Southbank, Screen NFT4", + "BFI Southbank, Screen NFT4", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ] + ] +} \ No newline at end of file diff --git a/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-uchronia-flare26-2026-02-23 b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-uchronia-flare26-2026-02-23 new file mode 100644 index 0000000..1a07202 --- /dev/null +++ b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-uchronia-flare26-2026-02-23 @@ -0,0 +1,209 @@ +{ + "html": "\nBuy tickets for Uchronia: Parallel histories of queer revolt | BFI Flare: London LGBTQIA+ Film Festival 2026\n\n\n\n\n\n\n\n\n\n\n\n \n\n \n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n\n\n\t\n\t\n\t\n\t\n\t\n\t\n
\n
\n \n \n \n
\n\n\n
\n \n \n \n
\n
\n
\n\n \n Order for\n Customer\n\n
\n
\n
\n \n
\n \n
\n \n Your basket is empty\n \n
\n \n
\n\n \n
\n\n \n \n\n\n \n
\n
\n \n\n\n
\n
\n\n \n
\n
\n Order for\n Customer\n \n
\n
\n\n \n
\n
    \n \n
\n
\n
\n\n
\n
\"BFI \"BFI \n
\n\n
\n\n \n \n
\n\n
\n \n
\n\t
\n\t\t\n\n\t
\n
\n\n\n
\n
\n\n \n
\n\n\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n
    \n
  • \n Search films and events\n \n
  • \n
  • \n Search dates\n from\n
    \n
    \n
  • \n
  • \n to\n
    \n
    \n
  • \n
  • \n \n
  • \n
\n \n
\n
\n\n \n\n
\n\n \n \n\n
\n \n
\n
\n
\n\n
\n\n\n
\n

Uchronia: Parallel histories of queer revolt

\n\n

This bold, daring cinematic essay explores revolutionary politics, queer history and art.

\n
\n\n\n

Screening dates and booking

\n\n
\n

Book your festival tickets a week early when you become a BFI Member.\n

\n
\n\n\n
\n
-Friday 20 March 2026 20:50
BFI Southbank, Screen NFT2
Uchronia: Parallel histories of queer revolt
-Saturday 21 March 2026 15:55
BFI Southbank, Screen NFT4
Uchronia: Parallel histories of queer revolt
\n
\n\n\n
\n
\n
\n\n\n

Credits

\n\n
\n
    \n\t
  • \n\t

    Director

    \n\n\t

    Fil Ieropoulos

    \n\t
  • \n\t
  • \n\t

    Screenwriter

    \n\n\t

    Foivos Douses

    \n\t
  • \n\t
  • \n\t

    With

    \n\n\t

    Kristof, Marlo Mortimer, Eve Libertine

    \n\t
  • \n\t
  • \n\t

    Greece-Netherlands 2026. 97min

    \n\t
  • \n\t
  • \n\t

    Courtesy of

    \n\n\t

    FYTA Films

    \n\t
  • \n\t
  • \n\t

    Languages

    \n\n\t

    English, French, German, Italian, Russian, Arabic, Greek

    \n\n\t

    With English subtitles

    \n\t
  • \n
\n
\n\n\n

Introduction

\n\n
\n

Arthur Rimbaud’s surrealist visions materialise in this experimental film, which is inspired by his most famous poem, A Season in Hell. Intellectual debates in a dystopian society sit alongside re-enacted performances of iconic queer figures from history. Uchronia is uncompromising in its scrutiny of transgressive movements, both past and present.

\n\n

Wema Mumma

\n\n

Content advice

\n\n

Contains flashing images.

\n
\n\n\n

How to book

\n\n
\n

BFI Flare tickets start from £10, with concessions available for many screenings and discounts for BFI Members. Booking information and ticket prices.

\n\n

If you’re aged 16 to 25, sign up for free to BFI 25 and Under for a chance to get £6 tickets to all screenings and events (subject to availability).

\n\n
\n

Missed out?

\n\n

More tickets may become available for these screenings before and during the festival. Find out about extra ticket releases and standby queues.

\n
\n
\n\n\n
\n

Our programmers recommend...

\n\n
\n
\n
\n
\"\"\n
\n\n
\n

All These Liberations

\n\n

Stories of hope and determination against the odds, by and about queer people, from the Middle East, North Africa and Turkey.

\n
\nRead more about All These Liberations\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

What Will I Become?

\n\n

A vital memorial spotlighting the all-too-silent vulnerabilities of trans masculine youth.

\n
\nRead more about What Will I Become?\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Heavenly Havens

\n\n

Carving out spaces to thrive and survive, this programme is a paean to the nightlife that seduces and sustains us, and the creation of places we can truly call home. Contains strobe effects/flashing lights.

\n
\nRead more about Heavenly Havens\n\n
\n
\n
\n
\n
\n\n
\n \n
\n \n\n\n\n
\n
\n
 
\n
\n\n
\n\n \n
\n \n
\n \n
\n \n
\n
\n

Minds

\n\n

Reflections on art, politics and community.

\nFind out more\n
\n
\n\n
\n \n
\n
\n
\n

March 2026

\n
\n\n
\n
MON
\n\n
TUE
\n\n
WED
\n\n
THU
\n\n
FRI
\n\n
SAT
\n\n
SUN
\n\n
16
\n\n
17
\n18 19 20 21 22 23 24 25 26 27 28 29\n
\n
\n\n
\n \n
\n  \n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

BFI Membership

\n\n

Become a BFI Member from £39 to enjoy priority festival booking as well as other great benefits all year round.

\nJoin today\n
\n
\n\n
\n \n
\n \n
\n
\n

About the festival

\n\n

A quick guide to the festival.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

Screenings and events with access provision

\n\n

Making BFI Flare: London LGBTQIA+ Film Festival as welcoming, inclusive and accessible as possible for everyone.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

25 and Under

\n\n

£6 cinema tickets for 16 to 25 year olds.

\nSign up\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

2026 festival brochure

\n\n

Download our digital festival brochure (PDF) for the 2026 edition of the festival.

\nDownload brochure\n
\n
\n\n
\n \n
\n \n
\n
\n

Festival pass

\n\n

See 10 films for less.

\nFind out more\n
\n
\n\n
\n \n
\n
\n \n \n \n \n\n

\n Add a promo code

\n
    \n \n
  • \n \n
  • \n \n
  • \n
    \n \n \n \n \n
    \n
  • \n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n\n
\n
\n\n
\n
\n
\n
\n\n
\n
\n
\n

British Film Institute

\n\n

We are a cultural charity, a National Lottery funding distributor, and the UK’s lead organisation for film and the moving image.

\n\n\n\n\n
\n\n
\n

Supported by

\n\n
\n
\n
\"Funded\n
\n\n
\"Culture\n
\n\n
\"BFI\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n
\n
\n
©2025 British Film Institute. All rights reserved.
\n\n
Registered charity 287780
\n\n
Registered office 21 Stephen St, London W1T 1LN
\n
\n
\n
\n
\n\n
\n
\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n
\n ", + "searchResults": [ + [ + "D95B8803-FF5A-4852-9E14-4503F20A4C40", + "P", + "BFI Flare Festival", + "LLGFF", + "uchro_20Mar26", + "Uchronia: Parallel histories of queer revolt", + "Uchronia: Parallel histories of queer revolt", + "Friday 20 March 2026 20:50", + "20:50", + "20", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "G", + "68", + "Subtitles,Kristof, Marlo Mortimer, Eve Libertine,Minds, Fil Ieropoulos, Greece-Netherlands", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=514CB287-0CA7-43AC-AE0D-261F20F4AD5F&BOparam::WScontent::loadArticle::context_id=D95B8803-FF5A-4852-9E14-4503F20A4C40", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREMINDS", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "", + "", + "", + "527ADADE-4BF3-4A03-BADB-12000B5C7BD6", + "Flare NFT2", + "BFI Southbank, Screen NFT2", + "BFI Southbank, Screen NFT2", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ], + [ + "DB9EEB67-AB8D-44FE-9494-FC417267A291", + "P", + "BFI Flare Festival", + "LLGFF", + "uchron_21Mar26", + "Uchronia: Parallel histories of queer revolt", + "Uchronia: Parallel histories of queer revolt", + "Saturday 21 March 2026 15:55", + "15:55", + "21", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "E", + "27", + "Minds, Fil Ieropoulos, Greece-Netherlands,Subtitles,Kristof, Marlo Mortimer, Eve Libertine", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=514CB287-0CA7-43AC-AE0D-261F20F4AD5F&BOparam::WScontent::loadArticle::context_id=DB9EEB67-AB8D-44FE-9494-FC417267A291", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREMINDS", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "United Kingdom", + "", + "", + "A76FC31F-05EE-4F50-9AC1-C73800A414DA", + "Flare NFT4", + "BFI Southbank, Screen NFT4", + "BFI Southbank, Screen NFT4", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ] + ] +} \ No newline at end of file diff --git a/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-warla-flare26-2026-02-23 b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-warla-flare26-2026-02-23 new file mode 100644 index 0000000..f2e4aa9 --- /dev/null +++ b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-warla-flare26-2026-02-23 @@ -0,0 +1,209 @@ +{ + "html": "\nBuy tickets for Warla | BFI Flare: London LGBTQIA+ Film Festival 2026\n\n\n\n\n\n\n\n\n\n\n\n \n\n \n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n\n\n\t\n\t\n\t\n\t\n\t\n\t\n
\n
\n \n \n \n
\n\n\n
\n \n \n \n
\n
\n
\n\n \n Order for\n Customer\n\n
\n
\n
\n \n
\n \n
\n \n Your basket is empty\n \n
\n \n
\n\n \n
\n\n \n \n\n\n \n
\n
\n \n\n\n
\n
\n\n \n
\n
\n Order for\n Customer\n \n
\n
\n\n \n
\n
    \n \n
\n
\n
\n\n
\n
\"BFI \"BFI \n
\n\n
\n\n \n \n
\n\n
\n \n
\n\t
\n\t\t\n\n\t
\n
\n\n\n
\n
\n\n \n
\n\n\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n
    \n
  • \n Search films and events\n \n
  • \n
  • \n Search dates\n from\n
    \n
    \n
  • \n
  • \n to\n
    \n
    \n
  • \n
  • \n \n
  • \n
\n \n
\n
\n\n \n\n
\n\n \n \n\n
\n \n
\n
\n
\n\n
\n\n\n
\n

Warla

\n\n

In Kevin Alambra’s provocative drama, a group of vigilante Filipino trans women kidnap foreign businessmen to fund gender-affirming surgeries.

\n
\n\n\n

Screening dates and booking

\n\n
\n

Book your festival tickets a week early when you become a BFI Member.\n

\n
\n\n\n
\n
-Thursday 19 March 2026 20:15
BFI Southbank, Screen NFT3
Warla
-Friday 20 March 2026 16:00
BFI Southbank, Screen NFT2
Warla
\n
\n\n\n
\n
\n
\n\n\n

Credits

\n\n
\n
    \n\t
  • \n\t

    Director

    \n\n\t

    Kevin Alambra

    \n\t
  • \n\t
  • \n\t

    Screenwriter

    \n\n\t

    Arah Jell Badayos

    \n\t
  • \n\t
  • \n\t

    With

    \n\n\t

    Jervi Wrightson, Lance Reblando, Serena Magiliw

    \n\t
  • \n\t
  • \n\t

    Philippines 2025. 83min

    \n\t
  • \n\t
  • \n\t

    Courtesy of

    \n\n\t

    Southern Lantern Studios

    \n\t
  • \n\t
  • \n\t

    Languages

    \n\n\t

    Filipino, English, Japanese

    \n\n\t

    With English subtitles

    \n\t
  • \n
\n
\n\n\n

Introduction

\n\n
\n

Kitkat flees her family to join Joice, the leader of a community of transgender women who commit crimes to fund their surgeries. Kitkat even contemplates surgery while seeking healing and belonging with her chosen family. Loosely based on true stories, Warla features a cast of non-professional actors who draw on their own lives.

\n\n

Jaye Hudson

\n\n

Content advice

\n\n

Contains scenes of graphic violence or injury and transphobic violence.

\n\n

Contains transphobic attitudes and language.

\n
\n\n\n

How to book

\n\n
\n

BFI Flare tickets start from £10, with concessions available for many screenings and discounts for BFI Members. Booking information and ticket prices.

\n\n

If you’re aged 16 to 25, sign up for free to BFI 25 and Under for a chance to get £6 tickets to all screenings and events (subject to availability).

\n\n
\n

Missed out?

\n\n

More tickets may become available for these screenings before and during the festival. Find out about extra ticket releases and standby queues.

\n
\n
\n\n\n
\n

Our programmers recommend...

\n\n
\n
\n
\n
\"\"\n
\n\n
\n

She Got Claws!

\n\n

Trans Femmes fight back with curses, crime, cults and cunning monstrosity in this seductive selection of high-femme shorts. Dolls, its late-stage capitalism embrace your inner creature!

\n
\nRead more about She Got Claws!\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

10s Across the Borders

\n\n

Sze-Wei Chan’s soulful documentary takes a deep dive into Southeast Asian ballroom culture.

\n
\nRead more about 10s Across the Borders\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Uchronia: Parallel histories of queer revolt

\n\n

This bold, daring cinematic essay explores revolutionary politics, queer history and art.

\n
\nRead more about Uchronia: Parallel histories of queer revolt\n\n
\n
\n
\n
\n
\n\n
\n \n
\n \n\n\n\n
\n
\n
 
\n
\n\n
\n\n \n
\n \n
\n \n
\n \n
\n
\n

Bodies

\n\n

Stories of sex, identity and transformation.

\nFind out more\n
\n
\n\n
\n \n
\n
\n
\n

March 2026

\n
\n\n
\n
MON
\n\n
TUE
\n\n
WED
\n\n
THU
\n\n
FRI
\n\n
SAT
\n\n
SUN
\n\n
16
\n\n
17
\n18 19 20 21 22 23 24 25 26 27 28 29\n
\n
\n\n
\n \n
\n  \n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

BFI Membership

\n\n

Become a BFI Member from £39 to enjoy priority festival booking as well as other great benefits all year round.

\nJoin today\n
\n
\n\n
\n \n
\n \n
\n
\n

About the festival

\n\n

A quick guide to the festival.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

Screenings and events with access provision

\n\n

Making BFI Flare: London LGBTQIA+ Film Festival as welcoming, inclusive and accessible as possible for everyone.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

25 and Under

\n\n

£6 cinema tickets for 16 to 25 year olds.

\nSign up\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

2026 festival brochure

\n\n

Download our digital festival brochure (PDF) for the 2026 edition of the festival.

\nDownload brochure\n
\n
\n\n
\n \n
\n \n
\n
\n

Festival pass

\n\n

See 10 films for less.

\nFind out more\n
\n
\n\n
\n \n
\n
\n \n \n \n \n\n

\n Add a promo code

\n
    \n \n
  • \n \n
  • \n \n
  • \n
    \n \n \n \n \n
    \n
  • \n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n\n
\n
\n\n
\n
\n
\n
\n\n
\n
\n
\n

British Film Institute

\n\n

We are a cultural charity, a National Lottery funding distributor, and the UK’s lead organisation for film and the moving image.

\n\n\n\n\n
\n\n
\n

Supported by

\n\n
\n
\n
\"Funded\n
\n\n
\"Culture\n
\n\n
\"BFI\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n
\n
\n
©2025 British Film Institute. All rights reserved.
\n\n
Registered charity 287780
\n\n
Registered office 21 Stephen St, London W1T 1LN
\n
\n
\n
\n
\n\n
\n
\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n
\n ", + "searchResults": [ + [ + "2EC7C88F-8AD7-4FC0-9F2A-87BA09093D98", + "P", + "BFI Flare Festival", + "LLGFF", + "warl_19Mar26", + "Warla", + "Warla", + "Thursday 19 March 2026 20:15", + "20:15", + "19", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "G", + "51", + "Subtitles,Bodies, Kevin Alambra, Philippines,Jervi Wrightson, Lance Reblando, Serena Magiliw", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=E46BFA5B-3473-40F8-928B-3ADBC2BAFBBF&BOparam::WScontent::loadArticle::context_id=2EC7C88F-8AD7-4FC0-9F2A-87BA09093D98", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREBODIES", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "United Kingdom", + "", + "", + "C14E3C2A-68EC-4B8B-B4DA-E00E79BD3822", + "Flare NFT3", + "BFI Southbank, Screen NFT3", + "BFI Southbank, Screen NFT3", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ], + [ + "5CC837F1-FB0C-44A1-BA1F-22D9162A39BB", + "P", + "BFI Flare Festival", + "LLGFF", + "warl_20Mar26", + "Warla", + "Warla", + "Friday 20 March 2026 16:00", + "16:00", + "20", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "G", + "56", + "Bodies, Kevin Alambra, Philippines,Jervi Wrightson, Lance Reblando, Serena Magiliw,Subtitles", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=E46BFA5B-3473-40F8-928B-3ADBC2BAFBBF&BOparam::WScontent::loadArticle::context_id=5CC837F1-FB0C-44A1-BA1F-22D9162A39BB", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREBODIES", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "", + "", + "", + "527ADADE-4BF3-4A03-BADB-12000B5C7BD6", + "Flare NFT2", + "BFI Southbank, Screen NFT2", + "BFI Southbank, Screen NFT2", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£10.00", + "£10.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ] + ] +} \ No newline at end of file diff --git a/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-washed-up-flare26-2026-02-23 b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-washed-up-flare26-2026-02-23 new file mode 100644 index 0000000..2e25ea3 --- /dev/null +++ b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-washed-up-flare26-2026-02-23 @@ -0,0 +1,209 @@ +{ + "html": "\nBuy tickets for Washed Up | BFI Flare: London LGBTQIA+ Film Festival 2026\n\n\n\n\n\n\n\n\n\n\n\n \n\n \n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n\n\n\t\n\t\n\t\n\t\n\t\n\t\n
\n
\n \n \n \n
\n\n\n
\n \n \n \n
\n
\n
\n\n \n Order for\n Customer\n\n
\n
\n
\n \n
\n \n
\n \n Your basket is empty\n \n
\n \n
\n\n \n
\n\n \n \n\n\n \n
\n
\n \n\n\n
\n
\n\n \n
\n
\n Order for\n Customer\n \n
\n
\n\n \n
\n
    \n \n
\n
\n
\n\n
\n
\"BFI \"BFI \n
\n\n
\n\n \n \n
\n\n
\n \n
\n\t
\n\t\t\n\n\t
\n
\n\n\n
\n
\n\n \n
\n\n\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n
    \n
  • \n Search films and events\n \n
  • \n
  • \n Search dates\n from\n
    \n
    \n
  • \n
  • \n to\n
    \n
    \n
  • \n
  • \n \n
  • \n
\n \n
\n
\n\n \n\n
\n\n \n \n\n
\n \n
\n
\n
\n\n
\n\n\n
\n

Washed Up

\n\n

This charming, Cornwall-set drama finds a struggling artist falling in love with a mythical selkie.

\n
\n\n\n

Screening dates and booking

\n\n
\n

Book your festival tickets a week early when you become a BFI Member.\n

\n
\n\n\n
\n
-Wednesday 25 March 2026 20:50
BFI Southbank, Screen NFT1
Washed Up
-Saturday 28 March 2026 12:45
BFI Southbank, Screen NFT2
Washed Up
\n
\n\n\n
\n
\n
\n\n\n

Credits

\n\n
\n
    \n\t
  • \n\t

    Director

    \n\n\t

    Isabel Daly

    \n\t
  • \n\t
  • \n\t

    Screenwriters

    \n\n\t

    Issy Brett, Carys Glynne, Isabel Daly

    \n\t
  • \n\t
  • \n\t

    With

    \n\n\t

    Anna Ivankovic, Carys Glynne, Anna Liddell

    \n\t
  • \n\t
  • \n\t

    UK 2025. 85min

    \n\t
  • \n\t
  • \n\t

    Courtesy of

    \n\n\t

    Maximalist Productions

    \n\t
  • \n\t
  • \n\t

    Languages

    \n\n\t

    English, Cornish

    \n\n\t

    With English subtitles

    \n\t
  • \n
\n
\n\n\n

Introduction

\n\n
\n

Morwenna is scraping by, searching for artistic inspiration, battling heartbreak and trying to fend off tourists seeking to buy her grandfather’s house. When she meets the nomadic Inga, her life is transformed. But how can a girl and a selkie make a relationship work? Drawing inspiration from romcoms and folklore, Washed Up is a guaranteed crowd-pleaser.

\n\n

Grace Barber-Plentie

\n
\n\n\n

How to book

\n\n
\n

BFI Flare tickets start from £10, with concessions available for many screenings and discounts for BFI Members. Booking information and ticket prices.

\n\n

If you’re aged 16 to 25, sign up for free to BFI 25 and Under for a chance to get £6 tickets to all screenings and events (subject to availability).

\n\n
\n

Missed out?

\n\n

More tickets may become available for these screenings before and during the festival. Find out about extra ticket releases and standby queues.

\n
\n
\n\n\n
\n

Our programmers recommend...

\n\n
\n
\n
\n
\"\"\n
\n\n
\n

Til the World Stops Turning

\n\n

A celebration of some of this year’s best LGBTQIA+ short films from the UK and Ireland.

\n
\nRead more about Til the World Stops Turning\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Lunar Sway

\n\n

In this offbeat comedy, a bi guy in a desert town receives a surprise visit from his con-artist birth mother, with chaos ensuing.

\n
\nRead more about Lunar Sway\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Can’t Go Over It

\n\n

Two queer best friends are forced to confront the gradual dissolution of their friendship when they go on an annual hiking trip.

\n
\nRead more about Can’t Go Over It\n\n
\n
\n
\n
\n
\n\n
\n \n
\n \n\n\n\n
\n
\n
 
\n
\n\n
\n\n \n
\n \n
\n \n
\n \n
\n
\n

Hearts

\n\n

Films about love, romance and friendship.

\nFind out more\n
\n
\n\n
\n \n
\n
\n
\n

March 2026

\n
\n\n
\n
MON
\n\n
TUE
\n\n
WED
\n\n
THU
\n\n
FRI
\n\n
SAT
\n\n
SUN
\n\n
16
\n\n
17
\n18 19 20 21 22 23 24 25 26 27 28 29\n
\n
\n\n
\n \n
\n  \n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

BFI Membership

\n\n

Become a BFI Member from £39 to enjoy priority festival booking as well as other great benefits all year round.

\nJoin today\n
\n
\n\n
\n \n
\n \n
\n
\n

About the festival

\n\n

A quick guide to the festival.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

Screenings and events with access provision

\n\n

Making BFI Flare: London LGBTQIA+ Film Festival as welcoming, inclusive and accessible as possible for everyone.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

25 and Under

\n\n

£6 cinema tickets for 16 to 25 year olds.

\nSign up\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

2026 festival brochure

\n\n

Download our digital festival brochure (PDF) for the 2026 edition of the festival.

\nDownload brochure\n
\n
\n\n
\n \n
\n \n
\n
\n

Festival pass

\n\n

See 10 films for less.

\nFind out more\n
\n
\n\n
\n \n
\n
\n \n \n \n \n\n

\n Add a promo code

\n
    \n \n
  • \n \n
  • \n \n
  • \n
    \n \n \n \n \n
    \n
  • \n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n\n
\n
\n\n
\n
\n
\n
\n\n
\n
\n
\n

British Film Institute

\n\n

We are a cultural charity, a National Lottery funding distributor, and the UK’s lead organisation for film and the moving image.

\n\n\n\n\n
\n\n
\n

Supported by

\n\n
\n
\n
\"Funded\n
\n\n
\"Culture\n
\n\n
\"BFI\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n
\n
\n
©2025 British Film Institute. All rights reserved.
\n\n
Registered charity 287780
\n\n
Registered office 21 Stephen St, London W1T 1LN
\n
\n
\n
\n
\n\n
\n
\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n
\n ", + "searchResults": [ + [ + "7B5E095E-8A8F-4B3C-B739-14D3BDF14A2A", + "P", + "BFI Flare Festival", + "LLGFF", + "wash_25Mar26", + "Washed Up", + "Washed Up", + "Wednesday 25 March 2026 20:50", + "20:50", + "25", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "E", + "323", + "Hearts, Isabel Daly, UK,Anna Ivankovic, Carys Glynne, Anna Liddell", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=B46D032E-C1A7-437B-BDE8-248BED22D0A6&BOparam::WScontent::loadArticle::context_id=7B5E095E-8A8F-4B3C-B739-14D3BDF14A2A", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREHEARTS", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "", + "", + "", + "C4B57E43-F123-4CE5-8A17-6CB9F0409CF5", + "Flare - NFT1", + "BFI Southbank, Screen NFT1", + "BFI Southbank, Screen NFT1", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ], + [ + "78FC82CC-2BC6-410C-85E2-40B9C66E977E", + "P", + "BFI Flare Festival", + "LLGFF", + "wash_28Mar26", + "Washed Up", + "Washed Up", + "Saturday 28 March 2026 12:45", + "12:45", + "28", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "G", + "68", + "Hearts, Isabel Daly, UK,Anna Ivankovic, Carys Glynne, Anna Liddell", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=B46D032E-C1A7-437B-BDE8-248BED22D0A6&BOparam::WScontent::loadArticle::context_id=78FC82CC-2BC6-410C-85E2-40B9C66E977E", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREHEARTS", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "", + "", + "", + "527ADADE-4BF3-4A03-BADB-12000B5C7BD6", + "Flare NFT2", + "BFI Southbank, Screen NFT2", + "BFI Southbank, Screen NFT2", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ] + ] +} \ No newline at end of file diff --git a/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-watermelon-woman-flare26-2026-02-23 b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-watermelon-woman-flare26-2026-02-23 new file mode 100644 index 0000000..9bf004d --- /dev/null +++ b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-watermelon-woman-flare26-2026-02-23 @@ -0,0 +1,107 @@ +{ + "html": "\nBuy tickets for The Watermelon Woman | BFI Flare: London LGBTQIA+ Film Festival 2026\n\n\n\n\n\n\n\n\n\n\n\n \n\n \n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n\n\n\t\n\t\n\t\n\t\n\t\n\t\n
\n
\n \n \n \n
\n\n\n
\n \n \n \n
\n
\n
\n\n \n Order for\n Customer\n\n
\n
\n
\n \n
\n \n
\n \n Your basket is empty\n \n
\n \n
\n\n \n
\n\n \n \n\n\n \n
\n
\n \n\n\n
\n
\n\n \n
\n
\n Order for\n Customer\n \n
\n
\n\n \n
\n
    \n \n
\n
\n
\n\n
\n
\"BFI \"BFI \n
\n\n
\n\n \n \n
\n\n
\n \n
\n\t
\n\t\t\n\n\t
\n
\n\n\n
\n
\n\n \n
\n\n\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n
    \n
  • \n Search films and events\n \n
  • \n
  • \n Search dates\n from\n
    \n
    \n
  • \n
  • \n to\n
    \n
    \n
  • \n
  • \n \n
  • \n
\n \n
\n
\n\n \n\n
\n\n \n \n\n
\n \n
\n
\n
\n\n
\n\n\n
\n

The Watermelon Woman

\n\n

The first feature directed by an African-American lesbian, Cheryl Dunye’s film is as funny, thought-provoking and original as it was 30 years ago.

\n
\n\n\n

Screening dates and booking

\n\n
\n

Book your festival tickets a week early when you become a BFI Member.\n

\n
\n\n\n
\n
-Friday 20 March 2026 12:55
BFI Southbank, Screen NFT1
The Watermelon Woman
\n
\n\n\n
\"\"\n
\n\n\n

Credits

\n\n
\n
    \n\t
  • \n\t

    Director-screenwriter

    \n\n\t

    Cheryl Dunye

    \n\t
  • \n\t
  • \n\t

    With

    \n\n\t

    Cheryl Dunye, Guinevere Turner, Valarie Walker

    \n\t
  • \n\t
  • \n\t

    USA 1996. 83min

    \n\t
  • \n\t
  • \n\t

    Courtesy of

    \n\n\t

    The Film Collaborative

    \n\t
  • \n\t
  • \n\t

    Language

    \n\n\t

    English

    \n\t
  • \n\t
  • Certificate\n\t

    BBFC 15

    \n\t
  • \n
\n
\n\n\n

Introduction

\n\n
\n

Video store clerk and budding filmmaker Cheryl discovers a 1930s-era Black actress named ‘The Watermelon Woman’ and decides to find out more about her. Cannily blending fiction and documentary, the film follows Cheryl’s journey of investigation and self-discovery. In addition to directing, Dunye writes and stars in this landmark achievement in queer filmmaking.

\n\n

Grace Barber-Plentie

\n\n

Preserved by the UCLA Film & Television Archive. Preservation funded by 13th Gen, Outfest, The Andrew J. Kuehn Jr. Foundation, TIFF, First Run Features and Yves Averous.

\n
\n\n\n

Screening with

\n\n\n
\n

Greetings from Africa

\n\n\n
\n
    \n\t
  • \n\t

    Director

    \n\n\t

    Cheryl Dunye

    \n\t
  • \n\t
  • \n\t

    USA 1996. 10min

    \n\t
  • \n\t
  • \n\t

    Language

    \n\n\t

    English

    \n\t
  • \n
\n
\n\n\n

Restored by the UCLA Film & Television Archive in conjunction with the Sundance Institute. Funding provided the UCLA Film & Television Archive and the Sundance Institute.

\n
\n\n\n

How to book

\n\n
\n

BFI Flare tickets start from £10, with concessions available for many screenings and discounts for BFI Members. Booking information and ticket prices.

\n\n

If you’re aged 16 to 25, sign up for free to BFI 25 and Under for a chance to get £6 tickets to all screenings and events (subject to availability).

\n\n
\n

Missed out?

\n\n

More tickets may become available for these screenings before and during the festival. Find out about extra ticket releases and standby queues.

\n
\n
\n\n\n
\n

Our programmers recommend...

\n\n
\n
\n
\n
\"\"\n
\n\n
\n

The Makers: Cheryl Dunye

\n\n

The acclaimed Black lesbian filmmaker discusses her body of work on the 30th anniversary of her groundbreaking feature debut.

\n
\nRead more about The Makers: Cheryl Dunye\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Barbara Forever

\n\n

This portrait of trailblazing experimental filmmaker Barbara Hammer is a striking account of how personal art can become political strength.

\n
\nRead more about Barbara Forever\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

(When the Rainbow Is Enuf)

\n\n

A joyful twist on Ntozake Shange’s 1976 play, this programme celebrates queer Black girlhood across the spectrum: playful, romantic, chaotic and unapologetically free.

\n
\nRead more about (When the Rainbow Is Enuf)\n\n
\n
\n
\n
\n
\n\n
\n \n
\n \n\n\n\n
\n
\n
 
\n
\n\n
\n\n \n
\n \n
\n \n
\n \n
\n
\n

Treasures

\n\n

Queer classics from across the decades.

\nFind out more\n
\n
\n\n
\n \n
\n
\n
\n

March 2026

\n
\n\n
\n
MON
\n\n
TUE
\n\n
WED
\n\n
THU
\n\n
FRI
\n\n
SAT
\n\n
SUN
\n\n
16
\n\n
17
\n18 19 20 21 22 23 24 25 26 27 28 29\n
\n
\n\n
\n \n
\n  \n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

BFI Membership

\n\n

Become a BFI Member from £39 to enjoy priority festival booking as well as other great benefits all year round.

\nJoin today\n
\n
\n\n
\n \n
\n \n
\n
\n

About the festival

\n\n

A quick guide to the festival.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

Screenings and events with access provision

\n\n

Making BFI Flare: London LGBTQIA+ Film Festival as welcoming, inclusive and accessible as possible for everyone.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

25 and Under

\n\n

£6 cinema tickets for 16 to 25 year olds.

\nSign up\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

2026 festival brochure

\n\n

Download our digital festival brochure (PDF) for the 2026 edition of the festival.

\nDownload brochure\n
\n
\n\n
\n \n
\n \n
\n
\n

Festival pass

\n\n

See 10 films for less.

\nFind out more\n
\n
\n\n
\n \n
\n
\n \n \n \n \n\n

\n Add a promo code

\n
    \n \n
  • \n \n
  • \n \n
  • \n
    \n \n \n \n \n
    \n
  • \n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n\n
\n
\n\n
\n
\n
\n
\n\n
\n
\n
\n

British Film Institute

\n\n

We are a cultural charity, a National Lottery funding distributor, and the UK’s lead organisation for film and the moving image.

\n\n\n\n\n
\n\n
\n

Supported by

\n\n
\n
\n
\"Funded\n
\n\n
\"Culture\n
\n\n
\"BFI\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n
\n
\n
©2025 British Film Institute. All rights reserved.
\n\n
Registered charity 287780
\n\n
Registered office 21 Stephen St, London W1T 1LN
\n
\n
\n
\n
\n\n
\n
\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n
\n ", + "searchResults": [ + [ + "51D0C786-D3ED-45DC-A2FB-9DE511B1307C", + "P", + "BFI Flare Festival", + "LLGFF", + "wate_20Mar26", + "The Watermelon Woman", + "The Watermelon Woman", + "Friday 20 March 2026 12:55", + "12:55", + "20", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "E", + "287", + "Cheryl Dunye, Guinevere Turner, Valarie Walker,Treasures, Cheryl Dunye, USA", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=126F8AE6-4C39-4A20-8BCD-E4B2A3B2CA9B&BOparam::WScontent::loadArticle::context_id=51D0C786-D3ED-45DC-A2FB-9DE511B1307C", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLARETREASURES", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "", + "", + "", + "C4B57E43-F123-4CE5-8A17-6CB9F0409CF5", + "Flare - NFT1", + "BFI Southbank, Screen NFT1", + "BFI Southbank, Screen NFT1", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£10.00", + "£10.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ] + ] +} \ No newline at end of file diff --git a/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-we-are-pat-flare26-2026-02-23 b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-we-are-pat-flare26-2026-02-23 new file mode 100644 index 0000000..41da998 --- /dev/null +++ b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-we-are-pat-flare26-2026-02-23 @@ -0,0 +1,209 @@ +{ + "html": "\nBuy tickets for We Are Pat | BFI Flare: London LGBTQIA+ Film Festival 2026\n\n\n\n\n\n\n\n\n\n\n\n \n\n \n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n\n\n\t\n\t\n\t\n\t\n\t\n\t\n
\n
\n \n \n \n
\n\n\n
\n \n \n \n
\n
\n
\n\n \n Order for\n Customer\n\n
\n
\n
\n \n
\n \n
\n \n Your basket is empty\n \n
\n \n
\n\n \n
\n\n \n \n\n\n \n
\n
\n \n\n\n
\n
\n\n \n
\n
\n Order for\n Customer\n \n
\n
\n\n \n
\n
    \n \n
\n
\n
\n\n
\n
\"BFI \"BFI \n
\n\n
\n\n \n \n
\n\n
\n \n
\n\t
\n\t\t\n\n\t
\n
\n\n\n
\n
\n\n \n
\n\n\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n
    \n
  • \n Search films and events\n \n
  • \n
  • \n Search dates\n from\n
    \n
    \n
  • \n
  • \n to\n
    \n
    \n
  • \n
  • \n \n
  • \n
\n \n
\n
\n\n \n\n
\n\n \n \n\n
\n \n
\n
\n
\n\n
\n\n\n
\n

We Are Pat

\n\n

Examining an androgynous character on Saturday Night Live, this uproarious, thoughtful film invites trans comedians to recreate and reclaim Pat.

\n
\n\n\n

Screening dates and booking

\n\n
\n

Book your festival tickets a week early when you become a BFI Member.\n

\n
\n\n\n
\n
-Thursday 26 March 2026 21:00
BFI Southbank, Screen NFT2
We Are Pat
-Saturday 28 March 2026 13:50
BFI Southbank, Screen NFT4
We Are Pat
\n
\n\n\n
\"\"\n
\n\n\n

Credits

\n\n
\n
    \n\t
  • \n\t

    Director

    \n\n\t

    Rowan Haber

    \n\t
  • \n\t
  • \n\t

    Screenwriters

    \n\n\t

    Hannah Buck, Rowan Haber

    \n\t
  • \n\t
  • \n\t

    With

    \n\n\t

    Julia Sweeney, Kevin Nealon, Molly Kearney

    \n\t
  • \n\t
  • \n\t

    USA 2025. 88min

    \n\t
  • \n\t
  • \n\t

    Courtesy of

    \n\n\t

    The Film Collaborative

    \n\t
  • \n\t
  • \n\t

    Language

    \n\n\t

    English

    \n\t
  • \n
\n\n
\n

Access screenings

\n\n
\n

Thursday 26 March 21:00\n
\nClosed Captions (CC) via WatchWord smart glasses

\n\n

Saturday 28 March 13:50\n
\nDescriptive Subtitles

\n\n

Find out about booking tickets for access screenings\n

\n
\n
\n
\n\n\n

Introduction

\n\n
\n

Julia Sweeney’s Pat was a TV megastar in the 1990s. Gamely confronting how Pat has not aged well, director Rowan Haber regards the character as an ‘oddly comforting’ beacon in the desert of non-binary representation during their childhood. Contemplating cancel culture, histories of drag and misogyny on screen, We Are Pat is also a riotous illumination of a new era in trans comedy.

\n\n

Zorian Clayton

\n\n

Content advice

\n\n

Contains scenes of ableism.

\n\n

Contains homophobic attitudes and language.

\n
\n\n\n

How to book

\n\n
\n

BFI Flare tickets start from £10, with concessions available for many screenings and discounts for BFI Members. Booking information and ticket prices.

\n\n

If you’re aged 16 to 25, sign up for free to BFI 25 and Under for a chance to get £6 tickets to all screenings and events (subject to availability).

\n\n
\n

Missed out?

\n\n

More tickets may become available for these screenings before and during the festival. Find out about extra ticket releases and standby queues.

\n
\n
\n\n\n
\n

Our programmers recommend...

\n\n
\n
\n
\n
\"\"\n
\n\n
\n

Having the Last Laugh

\n\n

When life gives you lemons, laughter is a tonic. Here are trans tales of levity, liberation and looking for love, featuring fundraising sexcapades, gender-flipping frolics and bodily autonomy in abundance.

\n
\nRead more about Having the Last Laugh\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Queen of Coal

\n\n

In this defiant portrait of self-determination, a woman yearns to work in a male-dominated world.

\n
\nRead more about Queen of Coal\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Castration Movie Chapter iii. Junior Ghosts—Premorphic Drift; a fragmentary passage

\n\n

In this bold new chapter of Louise Weard’s trans epic, a heterosexual couple are upended by an abrupt transition.

\n
\nRead more about Castration Movie Chapter iii. Junior Ghosts—Premorphic Drift; a fragmentary passage\n\n
\n
\n
\n
\n
\n\n
\n \n
\n \n\n\n\n
\n
\n
 
\n
\n\n
\n\n \n
\n \n
\n \n
\n \n
\n
\n

Bodies

\n\n

Stories of sex, identity and transformation.

\nFind out more\n
\n
\n\n
\n \n
\n
\n
\n

March 2026

\n
\n\n
\n
MON
\n\n
TUE
\n\n
WED
\n\n
THU
\n\n
FRI
\n\n
SAT
\n\n
SUN
\n\n
16
\n\n
17
\n18 19 20 21 22 23 24 25 26 27 28 29\n
\n
\n\n
\n \n
\n  \n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

BFI Membership

\n\n

Become a BFI Member from £39 to enjoy priority festival booking as well as other great benefits all year round.

\nJoin today\n
\n
\n\n
\n \n
\n \n
\n
\n

About the festival

\n\n

A quick guide to the festival.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

Screenings and events with access provision

\n\n

Making BFI Flare: London LGBTQIA+ Film Festival as welcoming, inclusive and accessible as possible for everyone.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

25 and Under

\n\n

£6 cinema tickets for 16 to 25 year olds.

\nSign up\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

2026 festival brochure

\n\n

Download our digital festival brochure (PDF) for the 2026 edition of the festival.

\nDownload brochure\n
\n
\n\n
\n \n
\n \n
\n
\n

Festival pass

\n\n

See 10 films for less.

\nFind out more\n
\n
\n\n
\n \n
\n
\n \n \n \n \n\n

\n Add a promo code

\n
    \n \n
  • \n \n
  • \n \n
  • \n
    \n \n \n \n \n
    \n
  • \n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n\n
\n
\n\n
\n
\n
\n
\n\n
\n
\n
\n

British Film Institute

\n\n

We are a cultural charity, a National Lottery funding distributor, and the UK’s lead organisation for film and the moving image.

\n\n\n\n\n
\n\n
\n

Supported by

\n\n
\n
\n
\"Funded\n
\n\n
\"Culture\n
\n\n
\"BFI\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n
\n
\n
©2025 British Film Institute. All rights reserved.
\n\n
Registered charity 287780
\n\n
Registered office 21 Stephen St, London W1T 1LN
\n
\n
\n
\n
\n\n
\n
\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n
\n ", + "searchResults": [ + [ + "8A34104B-D816-4FA7-9D72-75CBA55EE2DE", + "P", + "BFI Flare Festival", + "LLGFF", + "wear_26Mar26", + "We Are Pat", + "We Are Pat", + "Thursday 26 March 2026 21:00", + "21:00", + "26", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "G", + "74", + "Closed Captions (CC),Julia Sweeney, Kevin Nealon, Molly Kearney,Bodies, Rowan Haber, USA", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=AC17C59F-CA3B-4726-83BB-77F93E6B9E06&BOparam::WScontent::loadArticle::context_id=8A34104B-D816-4FA7-9D72-75CBA55EE2DE", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREBODIES", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "", + "", + "", + "527ADADE-4BF3-4A03-BADB-12000B5C7BD6", + "Flare NFT2", + "BFI Southbank, Screen NFT2", + "BFI Southbank, Screen NFT2", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ], + [ + "1D79E4D8-DD8A-4D8A-805F-2258237B983C", + "P", + "BFI Flare Festival", + "LLGFF", + "wear_28Mar26", + "We Are Pat", + "We Are Pat", + "Saturday 28 March 2026 13:50", + "13:50", + "28", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "E", + "26", + "Bodies, Rowan Haber, USA,Julia Sweeney, Kevin Nealon, Molly Kearney,DS descriptive subtitles", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=AC17C59F-CA3B-4726-83BB-77F93E6B9E06&BOparam::WScontent::loadArticle::context_id=1D79E4D8-DD8A-4D8A-805F-2258237B983C", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREBODIES", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "United Kingdom", + "", + "", + "A76FC31F-05EE-4F50-9AC1-C73800A414DA", + "Flare NFT4", + "BFI Southbank, Screen NFT4", + "BFI Southbank, Screen NFT4", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ] + ] +} \ No newline at end of file diff --git a/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-westler-flare26-2026-02-23 b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-westler-flare26-2026-02-23 new file mode 100644 index 0000000..629d91f --- /dev/null +++ b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-westler-flare26-2026-02-23 @@ -0,0 +1,107 @@ +{ + "html": "\nBuy tickets for Westler | BFI Flare: London LGBTQIA+ Film Festival 2026\n\n\n\n\n\n\n\n\n\n\n\n \n\n \n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n\n\n\t\n\t\n\t\n\t\n\t\n\t\n
\n
\n \n \n \n
\n\n\n
\n \n \n \n
\n
\n
\n\n \n Order for\n Customer\n\n
\n
\n
\n \n
\n \n
\n \n Your basket is empty\n \n
\n \n
\n\n \n
\n\n \n \n\n\n \n
\n
\n \n\n\n
\n
\n\n \n
\n
\n Order for\n Customer\n \n
\n
\n\n \n
\n
    \n \n
\n
\n
\n\n
\n
\"BFI \"BFI \n
\n\n
\n\n \n \n
\n\n
\n \n
\n\t
\n\t\t\n\n\t
\n
\n\n\n
\n
\n\n \n
\n\n\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n
    \n
  • \n Search films and events\n \n
  • \n
  • \n Search dates\n from\n
    \n
    \n
  • \n
  • \n to\n
    \n
    \n
  • \n
  • \n \n
  • \n
\n \n
\n
\n\n \n\n
\n\n \n \n\n
\n \n
\n
\n
\n\n
\n\n\n
\n

Westler

\n\n

Originally screened as part of the first Gays’ Own Pictures in 1986, Westler is a striking depiction of a gay relationship during the Cold War.

\n
\n\n\n

Screening dates and booking

\n\n
\n

Book your festival tickets a week early when you become a BFI Member.\n

\n
\n\n\n
\n
-Friday 27 March 2026 13:25
BFI Southbank, Screen NFT3
Westler
\n
\n\n\n
\"\"\n
\n\n\n

Credits

\n\n
\n
    \n\t
  • \n\t

    Director

    \n\n\t

    Wieland Speck

    \n\t
  • \n\t
  • \n\t

    Screenwriters

    \n\n\t

    Wieland Speck, Egbert Hörmann

    \n\t
  • \n\t
  • \n\t

    With

    \n\n\t

    Rainer Strecker, Sigurd Rachman, Andy Lucas

    \n\t
  • \n\t
  • \n\t

    Germany 1985. 96min

    \n\t
  • \n\t
  • \n\t

    Courtesy of

    \n\n\t

    Salzgeber

    \n\t
  • \n\t
  • \n\t

    Language

    \n\n\t

    German

    \n\n\t

    With English subtitles

    \n\t
  • \n\t
  • Certificate\n\t

    BBFC 15

    \n\t
  • \n
\n
\n\n\n

Introduction

\n\n
\n

Although Thomas and Felix are in love, there’s a problem: they live on different sides of the Berlin Wall. While they try to see each other as much as they can, they are all too frequently thwarted by the East German authorities. Partly filmed using hidden cameras, Westler is a vital depiction of life in 1980s Berlin, made by those who lived during it.

\n\n

Grace Barber-Plentie

\n
\n\n\n

How to book

\n\n
\n

BFI Flare tickets start from £10, with concessions available for many screenings and discounts for BFI Members. Booking information and ticket prices.

\n\n

If you’re aged 16 to 25, sign up for free to BFI 25 and Under for a chance to get £6 tickets to all screenings and events (subject to availability).

\n\n
\n

Missed out?

\n\n

More tickets may become available for these screenings before and during the festival. Find out about extra ticket releases and standby queues.

\n
\n
\n\n\n
\n

Our programmers recommend...

\n\n
\n
\n
\n
\"\"\n
\n\n
\n

I Am My Own Woman

\n\n

German trans icon Charlotte Von Mahlsdorf tells her own, semi-fictional story in this 1993 doc-drama classic.

\n
\nRead more about I Am My Own Woman\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Strange River

\n\n

Jaume Claret Muxart’s poetic debut feature is a sensitive and lyrical coming-of-age drama.

\n
\nRead more about Strange River\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

The Watermelon Woman

\n\n

The first feature directed by an African-American lesbian, Cheryl Dunye’s film is as funny, thought-provoking and original as it was 30 years ago.

\n
\nRead more about The Watermelon Woman\n\n
\n
\n
\n
\n
\n\n
\n \n
\n \n\n\n\n
\n
\n
 
\n
\n\n
\n\n \n
\n \n
\n \n
\n \n
\n
\n

Treasures

\n\n

Queer classics from across the decades.

\nFind out more\n
\n
\n\n
\n \n
\n
\n
\n

March 2026

\n
\n\n
\n
MON
\n\n
TUE
\n\n
WED
\n\n
THU
\n\n
FRI
\n\n
SAT
\n\n
SUN
\n\n
16
\n\n
17
\n18 19 20 21 22 23 24 25 26 27 28 29\n
\n
\n\n
\n \n
\n  \n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

BFI Membership

\n\n

Become a BFI Member from £39 to enjoy priority festival booking as well as other great benefits all year round.

\nJoin today\n
\n
\n\n
\n \n
\n \n
\n
\n

About the festival

\n\n

A quick guide to the festival.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

Screenings and events with access provision

\n\n

Making BFI Flare: London LGBTQIA+ Film Festival as welcoming, inclusive and accessible as possible for everyone.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

25 and Under

\n\n

£6 cinema tickets for 16 to 25 year olds.

\nSign up\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

2026 festival brochure

\n\n

Download our digital festival brochure (PDF) for the 2026 edition of the festival.

\nDownload brochure\n
\n
\n\n
\n \n
\n \n
\n
\n

Festival pass

\n\n

See 10 films for less.

\nFind out more\n
\n
\n\n
\n \n
\n
\n \n \n \n \n\n

\n Add a promo code

\n
    \n \n
  • \n \n
  • \n \n
  • \n
    \n \n \n \n \n
    \n
  • \n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n\n
\n
\n\n
\n
\n
\n
\n\n
\n
\n
\n

British Film Institute

\n\n

We are a cultural charity, a National Lottery funding distributor, and the UK’s lead organisation for film and the moving image.

\n\n\n\n\n
\n\n
\n

Supported by

\n\n
\n
\n
\"Funded\n
\n\n
\"Culture\n
\n\n
\"BFI\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n
\n
\n
©2025 British Film Institute. All rights reserved.
\n\n
Registered charity 287780
\n\n
Registered office 21 Stephen St, London W1T 1LN
\n
\n
\n
\n
\n\n
\n
\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n
\n ", + "searchResults": [ + [ + "BA369106-79A7-4BCE-AE8E-0961E4DFFE04", + "P", + "BFI Flare Festival", + "LLGFF", + "west_27Mar26", + "Westler", + "Westler", + "Friday 27 March 2026 13:25", + "13:25", + "27", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "G", + "56", + "Treasures, Wieland Speck, Germany,Rainer Strecker, Sigurd Rachman, Andy Lucas,Subtitles", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=C5B24D57-9568-4A83-AFB6-DBE41C3D218E&BOparam::WScontent::loadArticle::context_id=BA369106-79A7-4BCE-AE8E-0961E4DFFE04", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLARETREASURES", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "United Kingdom", + "", + "", + "C14E3C2A-68EC-4B8B-B4DA-E00E79BD3822", + "Flare NFT3", + "BFI Southbank, Screen NFT3", + "BFI Southbank, Screen NFT3", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£10.00", + "£10.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ] + ] +} \ No newline at end of file diff --git a/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-what-will-i-become-flare26-2026-02-23 b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-what-will-i-become-flare26-2026-02-23 new file mode 100644 index 0000000..548507e --- /dev/null +++ b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-what-will-i-become-flare26-2026-02-23 @@ -0,0 +1,209 @@ +{ + "html": "\nBuy tickets for What Will I Become? | BFI Flare: London LGBTQIA+ Film Festival 2026\n\n\n\n\n\n\n\n\n\n\n\n \n\n \n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n\n\n\t\n\t\n\t\n\t\n\t\n\t\n
\n
\n \n \n \n
\n\n\n
\n \n \n \n
\n
\n
\n\n \n Order for\n Customer\n\n
\n
\n
\n \n
\n \n
\n \n Your basket is empty\n \n
\n \n
\n\n \n
\n\n \n \n\n\n \n
\n
\n \n\n\n
\n
\n\n \n
\n
\n Order for\n Customer\n \n
\n
\n\n \n
\n
    \n \n
\n
\n
\n\n
\n
\"BFI \"BFI \n
\n\n
\n\n \n \n
\n\n
\n \n
\n\t
\n\t\t\n\n\t
\n
\n\n\n
\n
\n\n \n
\n\n\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n
    \n
  • \n Search films and events\n \n
  • \n
  • \n Search dates\n from\n
    \n
    \n
  • \n
  • \n to\n
    \n
    \n
  • \n
  • \n \n
  • \n
\n \n
\n
\n\n \n\n
\n\n \n \n\n
\n \n
\n
\n
\n\n
\n\n\n
\n

What Will I Become?

\n\n

A vital memorial spotlighting the all-too-silent vulnerabilities of trans masculine youth.

\n
\n\n\n

Screening dates and booking

\n\n
\n

Book your festival tickets a week early when you become a BFI Member.\n

\n
\n\n\n
\n
-Tuesday 24 March 2026 20:45
BFI Southbank, Screen NFT3
What Will I Become?
-Wednesday 25 March 2026 18:25
BFI Southbank, Screen NFT4
What Will I Become?
\n
\n\n\n
\"\"\n
\n\n\n

Credits

\n\n
\n
    \n\t
  • \n\t

    Directors

    \n\n\t

    Lexie Bean, Logan Rozos

    \n\t
  • \n\t
  • \n\t

    Screenwriters

    \n\n\t

    Lexie Bean, Logan Rozos, Miles Château Hill

    \n\t
  • \n\t
  • \n\t

    USA 2026. 87min

    \n\t
  • \n\t
  • \n\t

    Courtesy of

    \n\n\t

    Deep Dive Films

    \n\t
  • \n\t
  • \n\t

    Language

    \n\n\t

    English

    \n\t
  • \n
\n\n
\n

Access screenings

\n\n
\n

Tuesday 24 March 20:45\n
\nDescriptive Subtitles

\n\n

Wednesday 25 March 18:25\n
\nDescriptive Subtitles

\n\n

Find out about booking tickets for access screenings\n

\n
\n
\n
\n\n\n

Introduction

\n\n
\n

Kyler Prescott and Blake Brockington were just two high-profile examples of approximately 50% of trans boys in the USA who did not survive a suicide attempt. This film highlights the importance of combating prejudice and prioritising prevention among trans youth.

\n\n

Zorian Clayton

\n\n

Content advice

\n\n

Contains scenes of domestic violence or abuse.

\n\n

Contains themes of suicide.

\n\n

Contains transphobic attitudes and language.

\n
\n\n\n

Screening with

\n\n\n
\n

Gigi

\n\n\n
\"\"\n
\n\n\n
\n
    \n\t
  • \n\t

    Director

    \n\n\t

    Cynthia Calvi

    \n\t
  • \n\t
  • \n\t

    France 2024. 14min

    \n\t
  • \n\t
  • \n\t

    Language

    \n\n\t

    French

    \n\t
  • \n\t
  • \n\t

    With English subtitles

    \n\t
  • \n
\n
\n\n\n

Gigi talks about her trans youth journey, from tormented mermaid to fulfilled women, in this tender animated short.

\n\n

Content advice

\n\n

Contains transphobic attitudes and language.

\n
\n\n\n

How to book

\n\n
\n

BFI Flare tickets start from £10, with concessions available for many screenings and discounts for BFI Members. Booking information and ticket prices.

\n\n

If you’re aged 16 to 25, sign up for free to BFI 25 and Under for a chance to get £6 tickets to all screenings and events (subject to availability).

\n\n
\n

Missed out?

\n\n

More tickets may become available for these screenings before and during the festival. Find out about extra ticket releases and standby queues.

\n
\n
\n\n\n
\n

Our programmers recommend...

\n\n
\n
\n
\n
\"\"\n
\n\n
\n

A Sweetness from Nowhere

\n\n

Ester Bergsmark ruminates on trans violence and healing, in this evocative and personal film.

\n
\nRead more about A Sweetness from Nowhere\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Warla

\n\n

In Kevin Alambra’s provocative drama, a group of vigilante Filipino trans women kidnap foreign businessmen to fund gender-affirming surgeries.

\n
\nRead more about Warla\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Woubi Chéri

\n\n

Africa’s first transgender film made a splash in the 1990s, collecting Best Documentary awards at festivals around the world.

\n
\nRead more about Woubi Chéri\n\n
\n
\n
\n
\n
\n\n
\n \n
\n \n\n\n\n
\n
\n
 
\n
\n\n
\n\n \n
\n \n
\n \n
\n \n
\n
\n

Minds

\n\n

Reflections on art, politics and community.

\nFind out more\n
\n
\n\n
\n \n
\n
\n
\n

March 2026

\n
\n\n
\n
MON
\n\n
TUE
\n\n
WED
\n\n
THU
\n\n
FRI
\n\n
SAT
\n\n
SUN
\n\n
16
\n\n
17
\n18 19 20 21 22 23 24 25 26 27 28 29\n
\n
\n\n
\n \n
\n  \n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

BFI Membership

\n\n

Become a BFI Member from £39 to enjoy priority festival booking as well as other great benefits all year round.

\nJoin today\n
\n
\n\n
\n \n
\n \n
\n
\n

About the festival

\n\n

A quick guide to the festival.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

Screenings and events with access provision

\n\n

Making BFI Flare: London LGBTQIA+ Film Festival as welcoming, inclusive and accessible as possible for everyone.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

25 and Under

\n\n

£6 cinema tickets for 16 to 25 year olds.

\nSign up\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

2026 festival brochure

\n\n

Download our digital festival brochure (PDF) for the 2026 edition of the festival.

\nDownload brochure\n
\n
\n\n
\n \n
\n \n
\n
\n

Festival pass

\n\n

See 10 films for less.

\nFind out more\n
\n
\n\n
\n \n
\n
\n \n \n \n \n\n

\n Add a promo code

\n
    \n \n
  • \n \n
  • \n \n
  • \n
    \n \n \n \n \n
    \n
  • \n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n\n
\n
\n\n
\n
\n
\n
\n\n
\n
\n
\n

British Film Institute

\n\n

We are a cultural charity, a National Lottery funding distributor, and the UK’s lead organisation for film and the moving image.

\n\n\n\n\n
\n\n
\n

Supported by

\n\n
\n
\n
\"Funded\n
\n\n
\"Culture\n
\n\n
\"BFI\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n
\n
\n
©2025 British Film Institute. All rights reserved.
\n\n
Registered charity 287780
\n\n
Registered office 21 Stephen St, London W1T 1LN
\n
\n
\n
\n
\n\n
\n
\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n
\n ", + "searchResults": [ + [ + "05689428-FA6F-4C93-AC73-79A847F6837B", + "P", + "BFI Flare Festival", + "LLGFF", + "what_24Mar26", + "What Will I Become?", + "What Will I Become?", + "Tuesday 24 March 2026 20:45", + "20:45", + "24", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "G", + "53", + "DS descriptive subtitles,Minds, Lexie Bean, Logan Rozos, USA,Gigi, Cynthia Calvi, France", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=C06ECB4A-1CDF-4FBE-A3E9-3982A3298DF7&BOparam::WScontent::loadArticle::context_id=05689428-FA6F-4C93-AC73-79A847F6837B", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREMINDS", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "United Kingdom", + "", + "", + "C14E3C2A-68EC-4B8B-B4DA-E00E79BD3822", + "Flare NFT3", + "BFI Southbank, Screen NFT3", + "BFI Southbank, Screen NFT3", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ], + [ + "9AD3A822-7346-4A94-AEA9-32ECB8155AA0", + "P", + "BFI Flare Festival", + "LLGFF", + "whatw_25Mar26", + "What Will I Become?", + "What Will I Become?", + "Wednesday 25 March 2026 18:25", + "18:25", + "25", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "E", + "26", + "Minds, Lexie Bean, Logan Rozos, USA,Gigi, Cynthia Calvi, France,DS descriptive subtitles", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=C06ECB4A-1CDF-4FBE-A3E9-3982A3298DF7&BOparam::WScontent::loadArticle::context_id=9AD3A822-7346-4A94-AEA9-32ECB8155AA0", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREMINDS", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "United Kingdom", + "", + "", + "A76FC31F-05EE-4F50-9AC1-C73800A414DA", + "Flare NFT4", + "BFI Southbank, Screen NFT4", + "BFI Southbank, Screen NFT4", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ] + ] +} \ No newline at end of file diff --git a/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-when-the-rainbow-is-enuf-flare26-2026-02-23 b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-when-the-rainbow-is-enuf-flare26-2026-02-23 new file mode 100644 index 0000000..7c5457e --- /dev/null +++ b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-when-the-rainbow-is-enuf-flare26-2026-02-23 @@ -0,0 +1,209 @@ +{ + "html": "\nBuy tickets for (When the Rainbow Is Enuf) | BFI Flare: London LGBTQIA+ Film Festival 2026\n\n\n\n\n\n\n\n\n\n\n\n \n\n \n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n\n\n\t\n\t\n\t\n\t\n\t\n\t\n
\n
\n \n \n \n
\n\n\n
\n \n \n \n
\n
\n
\n\n \n Order for\n Customer\n\n
\n
\n
\n \n
\n \n
\n \n Your basket is empty\n \n
\n \n
\n\n \n
\n\n \n \n\n\n \n
\n
\n \n\n\n
\n
\n\n \n
\n
\n Order for\n Customer\n \n
\n
\n\n \n
\n
    \n \n
\n
\n
\n\n
\n
\"BFI \"BFI \n
\n\n
\n\n \n \n
\n\n
\n \n
\n\t
\n\t\t\n\n\t
\n
\n\n\n
\n
\n\n \n
\n\n\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n
    \n
  • \n Search films and events\n \n
  • \n
  • \n Search dates\n from\n
    \n
    \n
  • \n
  • \n to\n
    \n
    \n
  • \n
  • \n \n
  • \n
\n \n
\n
\n\n \n\n
\n\n \n \n\n
\n \n
\n
\n
\n\n
\n\n\n
\n

(When the Rainbow Is Enuf)

\n\n

A joyful twist on Ntozake Shange’s 1976 play, this programme celebrates queer Black girlhood across the spectrum: playful, romantic, chaotic and unapologetically free.

\n
\n\n\n

Screening dates and booking

\n\n
\n

Book your festival tickets a week early when you become a BFI Member.\n

\n
\n\n\n
\n
-Sunday 22 March 2026 20:45
BFI Southbank, Screen NFT4
(When the Rainbow Is Enuf)
-Saturday 28 March 2026 15:25
BFI Southbank, Screen NFT1
(When the Rainbow Is Enuf)
\n
\n\n\n

Credits

\n\n
\n
    \n\t
  • \n\t

    Total running time

    \n\n\t

    95min

    \n\t
  • \n\t
  • \n\t

    Programmed by

    \n\n\t

    Wema Mumma

    \n\t
  • \n
\n
\n\n\n
\n

Kanekalon

\n\n\n
\"\"\n
\n\n\n
\n
    \n\t
  • \n\t

    Director

    \n\n\t

    Sara J Asprilla

    \n\t
  • \n\t
  • \n\t

    Colombia 2025. 13min

    \n\t
  • \n\t
  • \n\t

    Language

    \n\n\t

    Spanish
    \n\tWith English subtitles

    \n\t
  • \n
\n
\n\n\n
\n

Teyo, a young trans girl in Quibdó, Colombia, wanders around her hometown on her last day before school.

\n
\n
\n\n\n
\n

Newbies

\n\n\n
\"\"\n
\n\n\n
\n
    \n\t
  • \n\t

    Director

    \n\n\t

    Kimiko Matsuda-Lawrence, Megan Trufant Tillman

    \n\t
  • \n\t
  • \n\t

    USA 2025. 17min

    \n\t
  • \n\t
  • \n\t

    Language

    \n\n\t

    English

    \n\t
  • \n
\n
\n\n\n
\n

This lyrical short finds two teenage New Yorkers navigating their fears and desires as they move through the city in a dreamlike haze.

\n
\n
\n\n\n
\n

Notice Me

\n\n\n
\"\"\n
\n\n\n
\n
    \n\t
  • \n\t

    Director

    \n\n\t

    Amy Leonard

    \n\t
  • \n\t
  • \n\t

    UK 2026. 19min

    \n\t
  • \n\t
  • \n\t

    Language

    \n\n\t

    English

    \n\t
  • \n
\n
\n\n\n
\n

After getting fired from her radio show, Em moves to East London and instantly develops a crush on AJ, her hot neighbour.

\n
\n
\n\n\n
\n

Seek No Favour

\n\n\n
\"\"\n
\n\n\n
\n
    \n\t
  • \n\t

    Director

    \n\n\t

    Elle Clay, Leilah Weinraub

    \n\t
  • \n\t
  • \n\t

    USA 2025. 14min

    \n\t
  • \n\t
  • \n\t

    Language

    \n\n\t

    English

    \n\t
  • \n
\n
\n\n\n
\n

Anxious millennial by day, local vigilante by night, Monroe Malone’s nemesis is Big Baby and his weave-snatching cartel.

\n
\n
\n\n\n
\n

The Fling

\n\n\n
\"\"\n
\n\n\n
\n
    \n\t
  • \n\t

    Director

    \n\n\t

    Jemma Cotter

    \n\t
  • \n\t
  • \n\t

    Australia 2024. 4min

    \n\t
  • \n\t
  • \n\t

    Language

    \n\n\t

    Dialogue-free

    \n\t
  • \n
\n
\n\n\n
\n

In this stop-motion romantic horror, two bisexual aliens are on the hunt for love. Will their unsuspecting dates sate their appetite?

\n
\n
\n\n\n
\n

Fish & Chips

\n\n\n
\"\"\n
\n\n\n
\n
    \n\t
  • \n\t

    Director

    \n\n\t

    Macadie Amoroso

    \n\t
  • \n\t
  • \n\t

    UK 2026. 13min

    \n\t
  • \n\t
  • \n\t

    Language

    \n\n\t

    English

    \n\t
  • \n
\n
\n\n\n
\n

On Fab and Cassie’s anniversary night, an innocent dinner choice sparks a heated debate over whose Black card should be revoked.

\n
\n
\n\n\n
\n

You and Me Makes Three

\n\n\n
\"\"\n
\n\n\n
\n
    \n\t
  • \n\t

    Director

    \n\n\t

    Emmalie El Fadli

    \n\t
  • \n\t
  • \n\t

    UK 2025. 19min

    \n\t
  • \n\t
  • \n\t

    Language

    \n\n\t

    English

    \n\t
  • \n
\n
\n\n\n
\n

Married couple Amara and Alannah try for a baby – a chaotic journey involving cautionary tales, sperm deliveries and ejaculating toys.

\n
\n
\n\n\n

How to book

\n\n
\n

BFI Flare tickets start from £10, with concessions available for many screenings and discounts for BFI Members. Booking information and ticket prices.

\n\n

If you’re aged 16 to 25, sign up for free to BFI 25 and Under for a chance to get £6 tickets to all screenings and events (subject to availability).

\n\n
\n

Missed out?

\n\n

More tickets may become available for these screenings before and during the festival. Find out about extra ticket releases and standby queues.

\n
\n
\n\n\n
\n

Our programmers recommend...

\n\n
\n
\n
\n
\"\"\n
\n\n
\n

The Watermelon Woman

\n\n

The first feature directed by an African-American lesbian, Cheryl Dunye’s film is as funny, thought-provoking and original as it was 30 years ago.

\n
\nRead more about The Watermelon Woman\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Black Burns Fast

\n\n

In Sandulela Asanda’s warm-hearted directorial debut, the arrival of new girl at nerdy Luthando’s prestigious South African boarding school prompts her sexual awakening.

\n
\nRead more about Black Burns Fast\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Dreamers

\n\n

In Joy Gharoro-Akpojotor’s impressive feature debut, Nigerian immigrants Isio and Farah dare to imagine a vibrant future outside of their confinement at a British immigration removal centre.

\n
\nRead more about Dreamers\n\n
\n
\n
\n
\n
\n\n
\n \n
\n \n\n\n\n
\n
\n
 
\n
\n\n
\n\n \n
\n \n
\n \n
\n \n
\n
\n

Shorts

\n\n

Small but perfectly formed.

\nFind out more\n
\n
\n\n
\n \n
\n
\n
\n

March 2026

\n
\n\n
\n
MON
\n\n
TUE
\n\n
WED
\n\n
THU
\n\n
FRI
\n\n
SAT
\n\n
SUN
\n\n
16
\n\n
17
\n18 19 20 21 22 23 24 25 26 27 28 29\n
\n
\n\n
\n \n
\n  \n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

BFI Membership

\n\n

Become a BFI Member from £39 to enjoy priority festival booking as well as other great benefits all year round.

\nJoin today\n
\n
\n\n
\n \n
\n \n
\n
\n

About the festival

\n\n

A quick guide to the festival.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

Screenings and events with access provision

\n\n

Making BFI Flare: London LGBTQIA+ Film Festival as welcoming, inclusive and accessible as possible for everyone.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

25 and Under

\n\n

£6 cinema tickets for 16 to 25 year olds.

\nSign up\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

2026 festival brochure

\n\n

Download our digital festival brochure (PDF) for the 2026 edition of the festival.

\nDownload brochure\n
\n
\n\n
\n \n
\n \n
\n
\n

Festival pass

\n\n

See 10 films for less.

\nFind out more\n
\n
\n\n
\n \n
\n
\n \n \n \n \n\n

\n Add a promo code

\n
    \n \n
  • \n \n
  • \n \n
  • \n
    \n \n \n \n \n
    \n
  • \n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n\n
\n
\n\n
\n
\n
\n
\n\n
\n
\n
\n

British Film Institute

\n\n

We are a cultural charity, a National Lottery funding distributor, and the UK’s lead organisation for film and the moving image.

\n\n\n\n\n
\n\n
\n

Supported by

\n\n
\n
\n
\"Funded\n
\n\n
\"Culture\n
\n\n
\"BFI\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n
\n
\n
©2025 British Film Institute. All rights reserved.
\n\n
Registered charity 287780
\n\n
Registered office 21 Stephen St, London W1T 1LN
\n
\n
\n
\n
\n\n
\n
\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n
\n ", + "searchResults": [ + [ + "24C4BEB9-5905-4ECE-ABBF-12BE3471E362", + "P", + "BFI Flare Festival", + "LLGFF", + "forcol_22Mar26", + "(When the Rainbow Is Enuf)", + "(When the Rainbow Is Enuf)", + "Sunday 22 March 2026 20:45", + "20:45", + "22", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "G", + "24", + "Hearts, Elle Clay, Leilah Weinraub, USA,Hearts, Jemma Cotter, Australia,Hearts, Kimiko Matsuda-Lawrence, Megan Trufant Tillman, USA,Hearts, Sara J Asprilla, Colombia,Hearts, Emmalie El Fadli, UK,The Fling, Fish & Chips, You and Me Makes Three,Hearts, Macadie Amoroso, UK,Kanekalon, Newbies, Notice Me, Seek No Favour,Hearts, Amy Leonard, UK", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=E10E3ABB-81ED-440E-9731-1F2BC98E7B9E&BOparam::WScontent::loadArticle::context_id=24C4BEB9-5905-4ECE-ABBF-12BE3471E362", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREHEARTS", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "United Kingdom", + "", + "", + "A76FC31F-05EE-4F50-9AC1-C73800A414DA", + "Flare NFT4", + "BFI Southbank, Screen NFT4", + "BFI Southbank, Screen NFT4", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ], + [ + "D16345E2-8082-48DE-A503-D2BBAE71EEF3", + "P", + "BFI Flare Festival", + "LLGFF", + "forcol_28Mar26", + "(When the Rainbow Is Enuf)", + "(When the Rainbow Is Enuf)", + "Saturday 28 March 2026 15:25", + "15:25", + "28", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "G", + "311", + "Hearts, Elle Clay, Leilah Weinraub, USA,Hearts, Emmalie El Fadli, UK,Hearts, Jemma Cotter, Australia,The Fling, Fish & Chips, You and Me Makes Three,Hearts, Macadie Amoroso, UK,Kanekalon, Newbies, Notice Me, Seek No Favour,Hearts, Kimiko Matsuda-Lawrence, Megan Trufant Tillman, USA,Hearts, Sara J Asprilla, Colombia,Hearts, Amy Leonard, UK", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=E10E3ABB-81ED-440E-9731-1F2BC98E7B9E&BOparam::WScontent::loadArticle::context_id=D16345E2-8082-48DE-A503-D2BBAE71EEF3", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREHEARTS", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "", + "", + "", + "C4B57E43-F123-4CE5-8A17-6CB9F0409CF5", + "Flare - NFT1", + "BFI Southbank, Screen NFT1", + "BFI Southbank, Screen NFT1", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ] + ] +} \ No newline at end of file diff --git a/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-whisperings-of-the-moon-flare26-2026-02-23 b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-whisperings-of-the-moon-flare26-2026-02-23 new file mode 100644 index 0000000..fd25db7 --- /dev/null +++ b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-whisperings-of-the-moon-flare26-2026-02-23 @@ -0,0 +1,209 @@ +{ + "html": "\nBuy tickets for Whisperings of the Moon | BFI Flare: London LGBTQIA+ Film Festival 2026\n\n\n\n\n\n\n\n\n\n\n\n \n\n \n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n\n\n\t\n\t\n\t\n\t\n\t\n\t\n
\n
\n \n \n \n
\n\n\n
\n \n \n \n
\n
\n
\n\n \n Order for\n Customer\n\n
\n
\n
\n \n
\n \n
\n \n Your basket is empty\n \n
\n \n
\n\n \n
\n\n \n \n\n\n \n
\n
\n \n\n\n
\n
\n\n \n
\n
\n Order for\n Customer\n \n
\n
\n\n \n
\n
    \n \n
\n
\n
\n\n
\n
\"BFI \"BFI \n
\n\n
\n\n \n \n
\n\n
\n \n
\n\t
\n\t\t\n\n\t
\n
\n\n\n
\n
\n\n \n
\n\n\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n
    \n
  • \n Search films and events\n \n
  • \n
  • \n Search dates\n from\n
    \n
    \n
  • \n
  • \n to\n
    \n
    \n
  • \n
  • \n \n
  • \n
\n \n
\n
\n\n \n\n
\n\n \n \n\n
\n \n
\n
\n
\n\n
\n\n\n
\n

Whisperings of the Moon

\n\n

Chao Xi Di Yu

\n\n

Lai Yuqing’s debut feature is a vivid portrait of an actor returning to Cambodia following a bereavement and reconnecting with her ex-lover.

\n
\n\n\n

Screening dates and booking

\n\n
\n

Book your festival tickets a week early when you become a BFI Member.\n

\n
\n\n\n
\n
-Wednesday 25 March 2026 21:00
BFI Southbank, Screen NFT2
Whisperings of the Moon
-Thursday 26 March 2026 15:30
BFI Southbank, Screen NFT3
Whisperings of the Moon
\n
\n\n\n
\n
\n
\n\n\n

Credits

\n\n
\n
    \n\t
  • \n\t

    Director

    \n\n\t

    Lai Yuqing

    \n\t
  • \n\t
  • \n\t

    Screenwriters

    \n\n\t

    Lai Yuqing, Xinyi Cao, Jatla Siddartha

    \n\t
  • \n\t
  • \n\t

    With

    \n\n\t

    Sopheanith Thong, Deka Nine, Monita Keo

    \n\t
  • \n\t
  • \n\t

    Hong Kong (S.A.R of China)-India-Cambodia 2025. 85min

    \n\t
  • \n\t
  • \n\t

    Courtesy of

    \n\n\t

    Inwave Films

    \n\t
  • \n\t
  • \n\t

    Languages

    \n\n\t

    Khmer, English

    \n\n\t

    With English subtitles

    \n\t
  • \n
\n
\n\n\n

Introduction

\n\n
\n

Nisay and Thida know that their rekindled relationship may not last. But in the safe haven of an artistic community in Phnom Penh, perhaps they can delay the inevitable. Yuqing tragically died in 2025, and we present this film as a tribute to an incredibly talented filmmaker who brought a fresh new voice to queer cinema.

\n\n

Grace Barber-Plentie

\n\n

Content advice

\n\n

Contains scenes of sex.

\n\n

Contains flashing images.

\n
\n\n\n

How to book

\n\n
\n

BFI Flare tickets start from £10, with concessions available for many screenings and discounts for BFI Members. Booking information and ticket prices.

\n\n

If you’re aged 16 to 25, sign up for free to BFI 25 and Under for a chance to get £6 tickets to all screenings and events (subject to availability).

\n\n
\n

Missed out?

\n\n

More tickets may become available for these screenings before and during the festival. Find out about extra ticket releases and standby queues.

\n
\n
\n\n\n
\n

Our programmers recommend...

\n\n
\n
\n
\n
\"\"\n
\n\n
\n

Uchronia: Parallel histories of queer revolt

\n\n

This bold, daring cinematic essay explores revolutionary politics, queer history and art.

\n
\nRead more about Uchronia: Parallel histories of queer revolt\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Satisfaction

\n\n

Alex Burunova movingly explores the complex relationship between two British composers.

\n
\nRead more about Satisfaction\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

The Deepest Space in Us

\n\n

In this touching, introspective drama, an aromantic asexual woman seeks an honest connection with other people.

\n
\nRead more about The Deepest Space in Us\n\n
\n
\n
\n
\n
\n\n
\n \n
\n \n\n\n\n
\n
\n
 
\n
\n\n
\n\n \n
\n \n
\n \n
\n \n
\n
\n

Minds

\n\n

Reflections on art, politics and community.

\nFind out more\n
\n
\n\n
\n \n
\n
\n
\n

March 2026

\n
\n\n
\n
MON
\n\n
TUE
\n\n
WED
\n\n
THU
\n\n
FRI
\n\n
SAT
\n\n
SUN
\n\n
16
\n\n
17
\n18 19 20 21 22 23 24 25 26 27 28 29\n
\n
\n\n
\n \n
\n  \n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

BFI Membership

\n\n

Become a BFI Member from £39 to enjoy priority festival booking as well as other great benefits all year round.

\nJoin today\n
\n
\n\n
\n \n
\n \n
\n
\n

About the festival

\n\n

A quick guide to the festival.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

Screenings and events with access provision

\n\n

Making BFI Flare: London LGBTQIA+ Film Festival as welcoming, inclusive and accessible as possible for everyone.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

25 and Under

\n\n

£6 cinema tickets for 16 to 25 year olds.

\nSign up\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

2026 festival brochure

\n\n

Download our digital festival brochure (PDF) for the 2026 edition of the festival.

\nDownload brochure\n
\n
\n\n
\n \n
\n \n
\n
\n

Festival pass

\n\n

See 10 films for less.

\nFind out more\n
\n
\n\n
\n \n
\n
\n \n \n \n \n\n

\n Add a promo code

\n
    \n \n
  • \n \n
  • \n \n
  • \n
    \n \n \n \n \n
    \n
  • \n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n\n
\n
\n\n
\n
\n
\n
\n\n
\n
\n
\n

British Film Institute

\n\n

We are a cultural charity, a National Lottery funding distributor, and the UK’s lead organisation for film and the moving image.

\n\n\n\n\n
\n\n
\n

Supported by

\n\n
\n
\n
\"Funded\n
\n\n
\"Culture\n
\n\n
\"BFI\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n
\n
\n
©2025 British Film Institute. All rights reserved.
\n\n
Registered charity 287780
\n\n
Registered office 21 Stephen St, London W1T 1LN
\n
\n
\n
\n
\n\n
\n
\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n
\n ", + "searchResults": [ + [ + "DC4F4D5F-2AE0-48F1-BE31-3C2FA69B388C", + "P", + "BFI Flare Festival", + "LLGFF", + "whisp_25Mar26", + "Whisperings of the Moon", + "Whisperings of the Moon", + "Wednesday 25 March 2026 21:00", + "21:00", + "25", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "G", + "70", + "Minds, Lai Yuqing, Hong Kong (S.A.R of China)-India-Cambodia,Sopheanith Thong, Deka Nine, Monita Keo,Subtitles", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=60D7D2BC-4DC2-4602-8040-90F400337343&BOparam::WScontent::loadArticle::context_id=DC4F4D5F-2AE0-48F1-BE31-3C2FA69B388C", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREMINDS", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "", + "", + "", + "527ADADE-4BF3-4A03-BADB-12000B5C7BD6", + "Flare NFT2", + "BFI Southbank, Screen NFT2", + "BFI Southbank, Screen NFT2", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£12.00", + "£14.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ], + [ + "3E68B08C-51FF-4844-BF66-9BE22373E7A2", + "P", + "BFI Flare Festival", + "LLGFF", + "whisp_26Mar26", + "Whisperings of the Moon", + "Whisperings of the Moon", + "Thursday 26 March 2026 15:30", + "15:30", + "26", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "G", + "62", + "Subtitles,Minds, Lai Yuqing, Hong Kong (S.A.R of China)-India-Cambodia,Sopheanith Thong, Deka Nine, Monita Keo", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=60D7D2BC-4DC2-4602-8040-90F400337343&BOparam::WScontent::loadArticle::context_id=3E68B08C-51FF-4844-BF66-9BE22373E7A2", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLAREMINDS", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "United Kingdom", + "", + "", + "C14E3C2A-68EC-4B8B-B4DA-E00E79BD3822", + "Flare NFT3", + "BFI Southbank, Screen NFT3", + "BFI Southbank, Screen NFT3", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£10.00", + "£10.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ] + ] +} \ No newline at end of file diff --git a/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-woubi-cheri-flare26-2026-02-23 b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-woubi-cheri-flare26-2026-02-23 new file mode 100644 index 0000000..aad613e --- /dev/null +++ b/sources/bfi.org.uk-bfi-festivals/tests/__manual-recordings__/bfi.org.uk-bfi-festivals-woubi-cheri-flare26-2026-02-23 @@ -0,0 +1,107 @@ +{ + "html": "\nBuy tickets for Woubi Chéri | BFI Flare: London LGBTQIA+ Film Festival 2026\n\n\n\n\n\n\n\n\n\n\n\n \n\n \n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n\n\n\t\n\t\n\t\n\t\n\t\n\t\n
\n
\n \n \n \n
\n\n\n
\n \n \n \n
\n
\n
\n\n \n Order for\n Customer\n\n
\n
\n
\n \n
\n \n
\n \n Your basket is empty\n \n
\n \n
\n\n \n
\n\n \n \n\n\n \n
\n
\n \n\n\n
\n
\n\n \n
\n
\n Order for\n Customer\n \n
\n
\n\n \n
\n
    \n \n
\n
\n
\n\n
\n
\"BFI \"BFI \n
\n\n
\n\n \n \n
\n\n
\n \n
\n\t
\n\t\t\n\n\t
\n
\n\n\n
\n
\n\n \n
\n\n\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n
    \n
  • \n Search films and events\n \n
  • \n
  • \n Search dates\n from\n
    \n
    \n
  • \n
  • \n to\n
    \n
    \n
  • \n
  • \n \n
  • \n
\n \n
\n
\n\n \n\n
\n\n \n \n\n
\n \n
\n
\n
\n\n
\n\n\n
\n

Woubi Chéri

\n\n

Africa’s first transgender film made a splash in the 1990s, collecting Best Documentary awards at festivals around the world.

\n
\n\n\n

Screening dates and booking

\n\n
\n

Book your festival tickets a week early when you become a BFI Member.\n

\n
\n\n\n
\n
-Tuesday 24 March 2026 14:50
BFI Southbank, Screen NFT3
Woubi Cheri
\n
\n\n\n
\n
\n
\n\n\n

Credits

\n\n
\n
    \n\t
  • \n\t

    Directors

    \n\n\t

    Laurent Bocahut, Phillip Brooks

    \n\t
  • \n\t
  • \n\t

    Ivory Coast-France 1998. 62min

    \n\t
  • \n\t
  • \n\t

    Courtesy of

    \n\n\t

    California Newsreel

    \n\t
  • \n\t
  • \n\t

    Language

    \n\n\t

    French

    \n\n\t

    With English subtitles

    \n\t
  • \n
\n\n
\n

Access screenings

\n\n
\n

Tuesday 24 March 14:50\n
\nDescriptive Subtitles

\n\n

Find out about booking tickets for access screenings\n

\n
\n
\n
\n\n\n

Introduction

\n\n
\n

This intimate and playful documentary gives a rare insight into the lives of transgender Ivorians in Abidjan in the 1990s, featuring a charming crew of friends: the gorgeous Barbara, President of the Ivory Coast Trans Association; Vincent, a Burkinabe immigrant who finds companionship in an elderly neighbour; and the defiant Laurent, chasing dreams of opening a pastry shop.

\n\n

Wema Mumma

\n
\n\n\n

Screening with

\n\n\n
\n

Forbidden Fruit

\n\n\n
\n
    \n\t
  • \n\t

    Director

    \n\n\t

    Sue Maluwa-Bruce

    \n\t
  • \n\t
  • \n\t

    Zimbabwe-Germany 2000. 30min

    \n\t
  • \n\t
  • \n\t

    Language(s)

    \n\n\t

    TBC

    \n\t
  • \n
\n
\n\n\n

The 2001 winner of the Berlinale Teddy Award, this bold film was the first representation of African lesbian desire on screen. Sue Maluwa Bruce’s docu-fiction is an imaginative cinematic piece that came out of Zimbabwe at the height of queer censorship. The filmmaker narrates the tale of Nongoma and Tsitsi, two residents of a rural village whose love endures against impossible odds.

\n\n

Wema Mumma

\n\n

Additional information

\n\n

Please note that both Forbidden Fruit and Woubi Chéri are not restored and we will be screening both films from digital scans of the available materials. Although these materials are not optimal, we believe their value as documents of the history of LGBTQIA+ filmmaking makes for essential viewing and we hope you can enjoy this screening of otherwise rare films.

\n
\n\n\n

How to book

\n\n
\n

BFI Flare tickets start from £10, with concessions available for many screenings and discounts for BFI Members. Booking information and ticket prices.

\n\n

If you’re aged 16 to 25, sign up for free to BFI 25 and Under for a chance to get £6 tickets to all screenings and events (subject to availability).

\n\n
\n

Missed out?

\n\n

More tickets may become available for these screenings before and during the festival. Find out about extra ticket releases and standby queues.

\n
\n
\n\n\n
\n

Our programmers recommend...

\n\n
\n
\n
\n
\"\"\n
\n\n
\n

Pink Narcissus

\n\n

This landmark experimental queer art film, presenting the erotically charged dreamscape of a young hustler, is a celebration of the male body.

\n
\nRead more about Pink Narcissus\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

Impure Nuns

\n\n

This transgressive 1950s treasure, previously unseen outside of Japan, chronicles an affair between two nuns at a boarding school.

\n
\nRead more about Impure Nuns\n\n
\n
\n\n\n
\n
\n
\"\"\n
\n\n
\n

The Watermelon Woman

\n\n

The first feature directed by an African-American lesbian, Cheryl Dunye’s film is as funny, thought-provoking and original as it was 30 years ago.

\n
\nRead more about The Watermelon Woman\n\n
\n
\n
\n
\n
\n\n
\n \n
\n \n\n\n\n
\n
\n
 
\n
\n\n
\n\n \n
\n \n
\n \n
\n \n
\n
\n

Treasures

\n\n

Queer classics from across the decades.

\nFind out more\n
\n
\n\n
\n \n
\n
\n
\n

March 2026

\n
\n\n
\n
MON
\n\n
TUE
\n\n
WED
\n\n
THU
\n\n
FRI
\n\n
SAT
\n\n
SUN
\n\n
16
\n\n
17
\n18 19 20 21 22 23 24 25 26 27 28 29\n
\n
\n\n
\n \n
\n  \n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

BFI Membership

\n\n

Become a BFI Member from £39 to enjoy priority festival booking as well as other great benefits all year round.

\nJoin today\n
\n
\n\n
\n \n
\n \n
\n
\n

About the festival

\n\n

A quick guide to the festival.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

Screenings and events with access provision

\n\n

Making BFI Flare: London LGBTQIA+ Film Festival as welcoming, inclusive and accessible as possible for everyone.

\nFind out more\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

25 and Under

\n\n

£6 cinema tickets for 16 to 25 year olds.

\nSign up\n
\n
\n\n
\n \n
\n \n
\n
\"\"\n
\n\n
\n

2026 festival brochure

\n\n

Download our digital festival brochure (PDF) for the 2026 edition of the festival.

\nDownload brochure\n
\n
\n\n
\n \n
\n \n
\n
\n

Festival pass

\n\n

See 10 films for less.

\nFind out more\n
\n
\n\n
\n \n
\n
\n \n \n \n \n\n

\n Add a promo code

\n
    \n \n
  • \n \n
  • \n \n
  • \n
    \n \n \n \n \n
    \n
  • \n
\n
\n
\n \n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n\n
\n
\n\n
\n
\n
\n
\n\n
\n
\n
\n

British Film Institute

\n\n

We are a cultural charity, a National Lottery funding distributor, and the UK’s lead organisation for film and the moving image.

\n\n\n\n\n
\n\n
\n

Supported by

\n\n
\n
\n
\"Funded\n
\n\n
\"Culture\n
\n\n
\"BFI\n
\n
\n
\n
\n
\n
\n\n
\n
\n\n\n
\n
\n
©2025 British Film Institute. All rights reserved.
\n\n
Registered charity 287780
\n\n
Registered office 21 Stephen St, London W1T 1LN
\n
\n
\n
\n
\n\n
\n
\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n\n\n
\n ", + "searchResults": [ + [ + "255E6847-6521-4A8D-9BFF-56B07C5507D7", + "P", + "BFI Flare Festival", + "LLGFF", + "woub_24Mar26", + "Woubi Cheri", + "Woubi Cheri", + "Tuesday 24 March 2026 14:50", + "14:50", + "24", + "2", + "2026", + "", + "Thursday 26 February 2026 12:00", + "C", + "G", + "64", + "Subtitles,DS descriptive subtitles,Treasures, Laurent Bocahut, Phillip Brooks, Ivory Coast-France", + "default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=58107425-1572-4987-9F98-DCF590F01CAE&BOparam::WScontent::loadArticle::context_id=255E6847-6521-4A8D-9BFF-56B07C5507D7", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "FLARETREASURES", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + [], + [ + "1", + "2" + ], + "", + "", + "", + "", + "United Kingdom", + "", + "", + "C14E3C2A-68EC-4B8B-B4DA-E00E79BD3822", + "Flare NFT3", + "BFI Southbank, Screen NFT3", + "BFI Southbank, Screen NFT3", + "LLGFF", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "reserved", + "FLARE 2026", + "£10.00", + "£10.00", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "Public", + "", + "", + "" + ] + ] +} \ No newline at end of file diff --git a/sources/bfi.org.uk-bfi-festivals/tests/__snapshots__/index.test.js.snap b/sources/bfi.org.uk-bfi-festivals/tests/__snapshots__/index.test.js.snap new file mode 100644 index 0000000..b73a8ce --- /dev/null +++ b/sources/bfi.org.uk-bfi-festivals/tests/__snapshots__/index.test.js.snap @@ -0,0 +1,2752 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[`BFI Festivals BFI Southbank retrieve and find events 1`] = ` +[ + { + "category": "event", + "overview": { + "actors": [], + "categories": [], + "directors": [ + "Alexander Farah", + ], + "duration": 1080000, + "year": "2024", + }, + "performances": [ + { + "accessibility": { + "subtitled": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=4EFCA518-E418-4E81-9A43-7EAADEEEA13A&BOparam::WScontent::loadArticle::context_id=468F3542-12E5-4F07-BB40-629C1F171938", + "notes": "Part of the BFI Flare festival", + "screen": "1", + "status": {}, + "time": 1774020600000, + }, + { + "accessibility": { + "subtitled": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=4EFCA518-E418-4E81-9A43-7EAADEEEA13A&BOparam::WScontent::loadArticle::context_id=775C823B-DE4F-4CAB-9743-FFF6BE388113", + "notes": "Part of the BFI Flare festival", + "screen": "4", + "status": {}, + "time": 1774125000000, + }, + ], + "showingId": "bfi.org.uk-bfi-festivals-edges-of-belonging-flare26", + "title": "Edges of Belonging", + "url": "https://whatson.bfi.org.uk/flare/Online/default.asp?BOparam::WScontent::loadArticle::permalink=edges-of-belonging-flare26", + }, + { + "category": "event", + "overview": { + "actors": [ + "Teddy Oricci", + "XYZA Pinklady Mizrahi", + "Aurora Sun Labeija", + ], + "categories": [], + "directors": [ + "Sze-Wei Chan", + ], + "duration": 5940000, + "year": "2025", + }, + "performances": [ + { + "accessibility": { + "subtitled": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=E2BFF813-0DF9-45D8-AE58-4CDE22FA5A80&BOparam::WScontent::loadArticle::context_id=6365697B-4ABC-4925-B5A3-D1A07DFCE0AA", + "notes": "Part of the BFI Flare festival", + "screen": "2", + "status": {}, + "time": 1773944400000, + }, + { + "accessibility": { + "subtitled": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=E2BFF813-0DF9-45D8-AE58-4CDE22FA5A80&BOparam::WScontent::loadArticle::context_id=71D0D0E1-E769-4691-9EA5-C5E9479CF330", + "notes": "Part of the BFI Flare festival", + "screen": "4", + "status": {}, + "time": 1774032000000, + }, + ], + "showingId": "bfi.org.uk-bfi-festivals-10s-across-the-borders-flare26", + "title": "10s Across the Borders", + "url": "https://whatson.bfi.org.uk/flare/Online/default.asp?BOparam::WScontent::loadArticle::permalink=10s-across-the-borders-flare26", + }, + { + "category": "event", + "overview": { + "actors": [], + "categories": [], + "directors": [ + "Gaby Sahhar", + ], + "duration": 720000, + "year": "2025", + }, + "performances": [ + { + "accessibility": { + "subtitled": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=7459A8BF-429D-4362-B3E2-63865B0060BA&BOparam::WScontent::loadArticle::context_id=8EDEC8EE-29F3-48D8-96CF-F3B766BB61F2", + "notes": "Part of the BFI Flare festival", + "screen": "2", + "status": {}, + "time": 1774385700000, + }, + { + "accessibility": { + "subtitled": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=7459A8BF-429D-4362-B3E2-63865B0060BA&BOparam::WScontent::loadArticle::context_id=8A872884-2912-421C-97A4-77347D602871", + "notes": "Part of the BFI Flare festival", + "screen": "4", + "status": {}, + "time": 1774729200000, + }, + ], + "showingId": "bfi.org.uk-bfi-festivals-all-these-liberations-flare26", + "title": "All These Liberations", + "url": "https://whatson.bfi.org.uk/flare/Online/default.asp?BOparam::WScontent::loadArticle::permalink=all-these-liberations-flare26", + }, + { + "category": "event", + "overview": { + "actors": [ + "Nabila Mekkid", + "Tessa Bazin", + "Sarah Labhar", + ], + "categories": [], + "directors": [ + "Caroline Fournier", + ], + "duration": 6300000, + "year": "2025", + }, + "performances": [ + { + "accessibility": { + "subtitled": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=BCE403E8-5D92-4FA5-AB26-4AB93D7C569E&BOparam::WScontent::loadArticle::context_id=7E998B3F-7783-4455-89C3-C3D78A868311", + "notes": "Part of the BFI Flare festival", + "screen": "2", + "status": {}, + "time": 1774462500000, + }, + { + "accessibility": { + "subtitled": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=BCE403E8-5D92-4FA5-AB26-4AB93D7C569E&BOparam::WScontent::loadArticle::context_id=C6584CF8-171B-45DF-A6B3-5659FA453D37", + "notes": "Part of the BFI Flare festival", + "screen": "4", + "status": {}, + "time": 1774556700000, + }, + ], + "showingId": "bfi.org.uk-bfi-festivals-amantes-flare26", + "title": "Amantes", + "url": "https://whatson.bfi.org.uk/flare/Online/default.asp?BOparam::WScontent::loadArticle::permalink=amantes-flare26", + }, + { + "category": "event", + "overview": { + "actors": [ + "Lluís Marquès", + "Quim Àvila", + "Bruna Cusí", + ], + "categories": [], + "directors": [ + "David Moragas", + ], + "duration": 5460000, + "year": "2025", + }, + "performances": [ + { + "accessibility": { + "subtitled": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=0404A50B-AC2B-4A2F-98F1-F4B7897DD515&BOparam::WScontent::loadArticle::context_id=F0BED10F-BE9B-4EED-A324-E5975F936C51", + "notes": "Part of the BFI Flare festival", + "screen": "2", + "status": {}, + "time": 1774644600000, + }, + { + "accessibility": { + "subtitled": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=0404A50B-AC2B-4A2F-98F1-F4B7897DD515&BOparam::WScontent::loadArticle::context_id=D8AF5A11-8B7B-4E52-B7EF-68A19BAFC677", + "notes": "Part of the BFI Flare festival", + "screen": "4", + "status": {}, + "time": 1774714200000, + }, + ], + "showingId": "bfi.org.uk-bfi-festivals-another-man-flare26", + "title": "Another Man", + "url": "https://whatson.bfi.org.uk/flare/Online/default.asp?BOparam::WScontent::loadArticle::permalink=another-man-flare26", + }, + { + "category": "event", + "overview": { + "actors": [], + "categories": [], + "directors": [ + "Klimovski", + ], + "duration": 540000, + "year": "2025", + }, + "performances": [ + { + "accessibility": { + "subtitled": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=D38A62E0-7E82-4551-B2FA-B66FACC77732&BOparam::WScontent::loadArticle::context_id=FA64AEB3-09A7-408D-8984-76F6608CF9E6", + "notes": "Part of the BFI Flare festival", + "screen": "3", + "status": {}, + "time": 1774030200000, + }, + { + "accessibility": { + "subtitled": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=D38A62E0-7E82-4551-B2FA-B66FACC77732&BOparam::WScontent::loadArticle::context_id=51FD0443-A908-4AEB-8063-E7ED669A5E71", + "notes": "Part of the BFI Flare festival", + "screen": "2", + "status": {}, + "time": 1774730700000, + }, + ], + "showingId": "bfi.org.uk-bfi-festivals-she-got-claws-flare26", + "title": "She Got Claws!", + "url": "https://whatson.bfi.org.uk/flare/Online/default.asp?BOparam::WScontent::loadArticle::permalink=she-got-claws-flare26", + }, + { + "category": "event", + "overview": { + "actors": [ + "João Pedro Mariano", + "Ricardo Teodoro", + "Ana Flavia Cavalcanti", + ], + "categories": [], + "directors": [ + "Marcelo Caetano", + ], + "duration": 6420000, + "year": "2024", + }, + "performances": [ + { + "accessibility": { + "subtitled": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=9A841366-0C59-4CDF-9238-948FC4D93507&BOparam::WScontent::loadArticle::context_id=4C14B7C9-5F10-4B08-8717-6A0305E8E5CC", + "notes": "Part of the BFI Flare festival", + "screen": "3", + "status": {}, + "time": 1774802700000, + }, + ], + "showingId": "bfi.org.uk-bfi-festivals-baby-flare26", + "title": "Baby", + "url": "https://whatson.bfi.org.uk/flare/Online/default.asp?BOparam::WScontent::loadArticle::permalink=baby-flare26", + }, + { + "category": "event", + "overview": { + "actors": [ + "Barbara Hammer", + ], + "categories": [], + "directors": [ + "Brydie O’Connor", + ], + "duration": 6120000, + "year": "2026", + }, + "performances": [ + { + "accessibility": { + "hardOfHearing": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=1E9D0679-644B-46CF-9A5F-9482251073CE&BOparam::WScontent::loadArticle::context_id=2FF3CFCC-4878-46B7-807E-98EBD57E2ACF", + "notes": "Part of the BFI Flare festival", + "screen": "1", + "status": {}, + "time": 1774633800000, + }, + { + "accessibility": { + "hardOfHearing": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=1E9D0679-644B-46CF-9A5F-9482251073CE&BOparam::WScontent::loadArticle::context_id=8392E761-065C-43D9-8F96-10CA95E45226", + "notes": "Part of the BFI Flare festival", + "screen": "3", + "status": {}, + "time": 1774695600000, + }, + ], + "showingId": "bfi.org.uk-bfi-festivals-barbara-forever-flare26", + "title": "Barbara Forever", + "url": "https://whatson.bfi.org.uk/flare/Online/default.asp?BOparam::WScontent::loadArticle::permalink=barbara-forever-flare26", + }, + { + "category": "event", + "overview": { + "actors": [ + "Xara Kyriazi", + "Pamela Oikonomaki", + ], + "categories": [], + "directors": [], + "duration": 7920000, + "year": "2025", + }, + "performances": [ + { + "accessibility": { + "subtitled": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=8E45C3EB-4323-4F8B-916A-EBE4DB120175&BOparam::WScontent::loadArticle::context_id=EC584906-F008-4554-9B7C-58C51AF47D14", + "notes": "Part of the BFI Flare festival", + "screen": "2", + "status": {}, + "time": 1774374600000, + }, + { + "accessibility": { + "subtitled": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=8E45C3EB-4323-4F8B-916A-EBE4DB120175&BOparam::WScontent::loadArticle::context_id=A55C9EF9-B424-4078-8ABF-410A7889E9D8", + "notes": "Part of the BFI Flare festival", + "screen": "4", + "status": {}, + "time": 1774470000000, + }, + ], + "showingId": "bfi.org.uk-bfi-festivals-bearcave-flare26", + "title": "Bearcave", + "url": "https://whatson.bfi.org.uk/flare/Online/default.asp?BOparam::WScontent::loadArticle::permalink=bearcave-flare26", + }, + { + "category": "event", + "overview": { + "actors": [ + "Teishiro Minami", + ], + "categories": [], + "directors": [ + "Hiroaki Matsuoka", + ], + "duration": 6300000, + "year": "2025", + }, + "performances": [ + { + "accessibility": { + "subtitled": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=9AE98D22-1FA3-410C-84EF-B17E33AEEFEE&BOparam::WScontent::loadArticle::context_id=F52067EA-E64E-4E24-87ED-41CA47560674", + "notes": "Part of the BFI Flare festival", + "screen": "3", + "status": {}, + "time": 1774039200000, + }, + { + "accessibility": { + "subtitled": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=9AE98D22-1FA3-410C-84EF-B17E33AEEFEE&BOparam::WScontent::loadArticle::context_id=2D0E527F-4B28-49B4-80CC-7D68EE172B7A", + "notes": "Part of the BFI Flare festival", + "screen": "2", + "status": {}, + "time": 1774096200000, + }, + ], + "showingId": "bfi.org.uk-bfi-festivals-beyond-the-fire-flare26", + "title": "Beyond the Fire: The Life of Japan’s First Pride Parade Pioneer", + "url": "https://whatson.bfi.org.uk/flare/Online/default.asp?BOparam::WScontent::loadArticle::permalink=beyond-the-fire-flare26", + }, + { + "category": "event", + "overview": { + "actors": [ + "Ani Palmer", + "Rain Spencer", + "Noah Taylor", + ], + "categories": [], + "directors": [ + "Paloma Schneideman", + ], + "duration": 6000000, + "year": "2026", + }, + "performances": [ + { + "accessibility": {}, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=8B348468-4966-4518-825D-23AA954FD2D6&BOparam::WScontent::loadArticle::context_id=EAA94C92-A4A7-40C9-B61B-38E6EE9CB2F1", + "notes": "Part of the BFI Flare festival", + "screen": "1", + "status": {}, + "time": 1774558200000, + }, + { + "accessibility": {}, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=8B348468-4966-4518-825D-23AA954FD2D6&BOparam::WScontent::loadArticle::context_id=5F0280E2-6D3C-4934-9A17-552EB8F9CD8F", + "notes": "Part of the BFI Flare festival", + "screen": "3", + "status": {}, + "time": 1774713300000, + }, + ], + "showingId": "bfi.org.uk-bfi-festivals-big-girls-dont-cry-flare26", + "title": "Big Girls Don’t Cry", + "url": "https://whatson.bfi.org.uk/flare/Online/default.asp?BOparam::WScontent::loadArticle::permalink=big-girls-dont-cry-flare26", + }, + { + "category": "event", + "overview": { + "actors": [ + "Esihle Ndleleni", + "Muadi Ilung", + "Mila Smith", + "Khensani Khoza", + "Ntsimedi Gwangwa", + "Basetsana Motloung", + ], + "categories": [], + "directors": [ + "Sandulela Asanda", + ], + "duration": 5760000, + "year": "2025", + }, + "performances": [ + { + "accessibility": { + "subtitled": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=43AFDBC6-E1FE-4FBA-9E09-357F7D30011A&BOparam::WScontent::loadArticle::context_id=4A38ED8D-01EF-40CA-AEE0-7892B3870E0D", + "notes": "Part of the BFI Flare festival", + "screen": "1", + "status": {}, + "time": 1774720800000, + }, + { + "accessibility": { + "subtitled": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=43AFDBC6-E1FE-4FBA-9E09-357F7D30011A&BOparam::WScontent::loadArticle::context_id=45604C9D-6F4D-4AC6-9CB4-9379F7DB7EF7", + "notes": "Part of the BFI Flare festival", + "screen": "1", + "status": {}, + "time": 1774730400000, + }, + ], + "showingId": "bfi.org.uk-bfi-festivals-black-burns-fast-flare26", + "title": "Black Burns Fast", + "url": "https://whatson.bfi.org.uk/flare/Online/default.asp?BOparam::WScontent::loadArticle::permalink=black-burns-fast-flare26", + }, + { + "category": "event", + "overview": { + "actors": [], + "categories": [], + "directors": [ + "Iniyavan Elumalai", + ], + "duration": 1080000, + "year": "2025", + }, + "performances": [ + { + "accessibility": { + "subtitled": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=E81FB098-524F-4438-8257-838120BC68BC&BOparam::WScontent::loadArticle::context_id=5B37A71B-59F1-4CDA-A13B-48DC13780013", + "notes": "Part of the BFI Flare festival", + "screen": "2", + "status": {}, + "time": 1773935400000, + }, + { + "accessibility": { + "subtitled": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=E81FB098-524F-4438-8257-838120BC68BC&BOparam::WScontent::loadArticle::context_id=C6E0C772-EC1E-4F37-96A9-097A2279C163", + "notes": "Part of the BFI Flare festival", + "screen": "4", + "status": {}, + "time": 1774117200000, + }, + ], + "showingId": "bfi.org.uk-bfi-festivals-this-is-home-flare26", + "title": "This Is Home", + "url": "https://whatson.bfi.org.uk/flare/Online/default.asp?BOparam::WScontent::loadArticle::permalink=this-is-home-flare26", + }, + { + "category": "event", + "overview": { + "actors": [], + "categories": [], + "directors": [ + "Kaytie Nielsen", + ], + "duration": 300000, + "year": "2026", + }, + "performances": [ + { + "accessibility": { + "subtitled": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=90753754-9333-42B0-AAD9-801188DF9E66&BOparam::WScontent::loadArticle::context_id=5A54EEB3-ADE8-4897-98C2-841ADDE94D64", + "notes": "Part of the BFI Flare festival", + "screen": "3", + "status": {}, + "time": 1774090200000, + }, + ], + "showingId": "bfi.org.uk-bfi-festivals-heavenly-havens-flare26", + "title": "Heavenly Havens", + "url": "https://whatson.bfi.org.uk/flare/Online/default.asp?BOparam::WScontent::loadArticle::permalink=heavenly-havens-flare26", + }, + { + "category": "event", + "overview": { + "actors": [], + "categories": [], + "directors": [ + "Luís Hindman", + ], + "duration": 1080000, + "year": "2025", + }, + "performances": [ + { + "accessibility": { + "subtitled": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=F0B4F7D3-3CC9-4032-9AED-5C9FD8443D9C&BOparam::WScontent::loadArticle::context_id=726A3407-1B18-492A-BCF3-F2E3AC11806F", + "notes": "Part of the BFI Flare festival", + "screen": "1", + "status": {}, + "time": 1774442400000, + }, + { + "accessibility": { + "subtitled": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=F0B4F7D3-3CC9-4032-9AED-5C9FD8443D9C&BOparam::WScontent::loadArticle::context_id=6E90A687-2437-496C-BC1E-5AD39CA95EF2", + "notes": "Part of the BFI Flare festival", + "screen": "3", + "status": {}, + "time": 1774722900000, + }, + ], + "showingId": "bfi.org.uk-bfi-festivals-fragments-of-us-flare26", + "title": "Fragments of Us", + "url": "https://whatson.bfi.org.uk/flare/Online/default.asp?BOparam::WScontent::loadArticle::permalink=fragments-of-us-flare26", + }, + { + "category": "event", + "overview": { + "actors": [], + "categories": [], + "directors": [ + "Ricardo Ruales Eguiguren", + ], + "duration": 5100000, + "year": "2025", + }, + "performances": [ + { + "accessibility": { + "subtitled": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=76A891CC-ADAA-41F3-9904-2BF06CE350B4&BOparam::WScontent::loadArticle::context_id=3EB75F80-CEF5-4AD1-95D2-CFDAF875281A", + "notes": "Part of the BFI Flare festival", + "screen": "3", + "status": {}, + "time": 1774108200000, + }, + { + "accessibility": { + "relaxed": true, + "subtitled": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=76A891CC-ADAA-41F3-9904-2BF06CE350B4&BOparam::WScontent::loadArticle::context_id=4707CFAA-98C7-41B5-8E56-CA39FADA4A3D", + "notes": "Part of the BFI Flare festival", + "screen": "4", + "status": {}, + "time": 1774377000000, + }, + ], + "showingId": "bfi.org.uk-bfi-festivals-broken-r-flare26", + "title": "The Broken R", + "url": "https://whatson.bfi.org.uk/flare/Online/default.asp?BOparam::WScontent::loadArticle::permalink=broken-r-flare26", + }, + { + "category": "event", + "overview": { + "actors": [ + "Susannah Perkins", + "Taylor Trensch", + ], + "categories": [], + "directors": [ + "Ethan Fuirst", + ], + "duration": 4560000, + "year": "2025", + }, + "performances": [ + { + "accessibility": { + "hardOfHearing": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=04ED0584-91FC-4EDE-97BB-F186AD6B74A0&BOparam::WScontent::loadArticle::context_id=43089CE8-3A44-498C-BCC7-E5EADFAD2595", + "notes": "Part of the BFI Flare festival", + "screen": "1", + "status": {}, + "time": 1774194600000, + }, + { + "accessibility": { + "hardOfHearing": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=04ED0584-91FC-4EDE-97BB-F186AD6B74A0&BOparam::WScontent::loadArticle::context_id=DD1497B9-1771-4358-A363-A13E9D734BE2", + "notes": "Part of the BFI Flare festival", + "screen": "4", + "status": {}, + "time": 1774299600000, + }, + ], + "showingId": "bfi.org.uk-bfi-festivals-cant-go-over-it-flare26", + "title": "Can’t Go Over It", + "url": "https://whatson.bfi.org.uk/flare/Online/default.asp?BOparam::WScontent::loadArticle::permalink=cant-go-over-it-flare26", + }, + { + "category": "event", + "overview": { + "actors": [ + "Avalon Fast", + "Henri Gillespi", + "Louise Weard", + ], + "categories": [], + "directors": [ + "Louise Weard", + ], + "duration": 7560000, + "year": "2026", + }, + "performances": [ + { + "accessibility": { + "audioDescription": true, + "hardOfHearing": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=3C9876AC-513C-4920-8846-AC779053C56E&BOparam::WScontent::loadArticle::context_id=EC6A5C07-9981-4A64-89FC-59BAEA7C72F6", + "notes": "Part of the BFI Flare festival", + "screen": "3", + "status": {}, + "time": 1774211100000, + }, + { + "accessibility": { + "audioDescription": true, + "hardOfHearing": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=3C9876AC-513C-4920-8846-AC779053C56E&BOparam::WScontent::loadArticle::context_id=3F32FA09-C22D-4AB5-A696-E3940E3E7354", + "notes": "Part of the BFI Flare festival", + "screen": "2", + "status": {}, + "time": 1774287000000, + }, + ], + "showingId": "bfi.org.uk-bfi-festivals-castration-movie-chapter-iii-flare26", + "title": "Castration Movie Chapter iii. Junior Ghosts—Premorphic Drift; a fragmentary passage", + "url": "https://whatson.bfi.org.uk/flare/Online/default.asp?BOparam::WScontent::loadArticle::permalink=castration-movie-chapter-iii-flare26", + }, + { + "category": "event", + "overview": { + "actors": [ + "Juan Miguel Más", + "Noslen Sánchez", + "Roberto Díaz Gomar", + ], + "categories": [], + "directors": [ + "Fabian Suarez", + ], + "duration": 4920000, + "year": "2025", + }, + "performances": [ + { + "accessibility": { + "subtitled": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=CEB64026-EE12-4015-B9A5-67B7057FE15E&BOparam::WScontent::loadArticle::context_id=BC00A223-F304-4A9E-BFE7-EF5B1D0D274E", + "notes": "Part of the BFI Flare festival", + "screen": "2", + "status": {}, + "time": 1774635600000, + }, + { + "accessibility": { + "subtitled": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=CEB64026-EE12-4015-B9A5-67B7057FE15E&BOparam::WScontent::loadArticle::context_id=CBB75348-460E-4418-BCCC-9676DD3D6FB5", + "notes": "Part of the BFI Flare festival", + "screen": "3", + "status": {}, + "time": 1774731600000, + }, + ], + "showingId": "bfi.org.uk-bfi-festivals-cherri-flare26", + "title": "Cherri", + "url": "https://whatson.bfi.org.uk/flare/Online/default.asp?BOparam::WScontent::loadArticle::permalink=cherri-flare26", + }, + { + "category": "event", + "overview": { + "actors": [], + "categories": [], + "directors": [ + "Cande Lázaro", + ], + "duration": 1380000, + "year": "2025", + }, + "performances": [ + { + "accessibility": { + "subtitled": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=974FDE3A-7925-4FC8-9B73-C56ABBF36F2C&BOparam::WScontent::loadArticle::context_id=830097C3-809A-4C44-98D9-D400798BC7CF", + "notes": "Part of the BFI Flare festival", + "screen": "1", + "status": {}, + "time": 1774624800000, + }, + { + "accessibility": { + "subtitled": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=974FDE3A-7925-4FC8-9B73-C56ABBF36F2C&BOparam::WScontent::loadArticle::context_id=2648EAE0-6B7A-4096-894F-917634EB4045", + "notes": "Part of the BFI Flare festival", + "screen": "3", + "status": {}, + "time": 1774705200000, + }, + ], + "showingId": "bfi.org.uk-bfi-festivals-having-the-last-laugh-flare26", + "title": "Having the Last Laugh", + "url": "https://whatson.bfi.org.uk/flare/Online/default.asp?BOparam::WScontent::loadArticle::permalink=having-the-last-laugh-flare26", + }, + { + "category": "event", + "overview": { + "actors": [ + "Noá Bonoba", + "Tavinho Teixeira", + "Nataly Rocha", + ], + "categories": [], + "directors": [ + "Guto Parente", + ], + "duration": 5100000, + "year": "2025", + }, + "performances": [ + { + "accessibility": { + "subtitled": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=DFC26142-5205-4E22-8B7D-ED8D4711B077&BOparam::WScontent::loadArticle::context_id=F2585380-D168-4FEE-9D79-497606DA93CC", + "notes": "Part of the BFI Flare festival", + "screen": "3", + "status": {}, + "time": 1774471500000, + }, + { + "accessibility": { + "subtitled": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=DFC26142-5205-4E22-8B7D-ED8D4711B077&BOparam::WScontent::loadArticle::context_id=DBE112FE-E1A7-4351-841C-A876D7D3501A", + "notes": "Part of the BFI Flare festival", + "screen": "4", + "status": {}, + "time": 1774549200000, + }, + ], + "showingId": "bfi.org.uk-bfi-festivals-death-and-life-madalena-flare26", + "title": "Death and Life Madalena", + "url": "https://whatson.bfi.org.uk/flare/Online/default.asp?BOparam::WScontent::loadArticle::permalink=death-and-life-madalena-flare26", + }, + { + "category": "event", + "overview": { + "actors": [ + "Momoko Fukuchi", + "Kanichiro", + "Ryutaro Nakagawa", + ], + "categories": [], + "directors": [ + "Yasutomo Chikuma", + ], + "duration": 5880000, + "year": "2025", + }, + "performances": [ + { + "accessibility": { + "subtitled": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=58AFC203-04B4-4F0C-B50F-3A03B34266E2&BOparam::WScontent::loadArticle::context_id=199CB27D-0434-4DC3-806E-49DF9F915CF6", + "notes": "Part of the BFI Flare festival", + "screen": "2", + "status": {}, + "time": 1774548600000, + }, + { + "accessibility": { + "subtitled": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=58AFC203-04B4-4F0C-B50F-3A03B34266E2&BOparam::WScontent::loadArticle::context_id=22892C41-4B67-4C45-B46E-B3E1FB99769F", + "notes": "Part of the BFI Flare festival", + "screen": "4", + "status": {}, + "time": 1774644300000, + }, + ], + "showingId": "bfi.org.uk-bfi-festivals-deepest-space-in-us-flare26", + "title": "The Deepest Space in Us", + "url": "https://whatson.bfi.org.uk/flare/Online/default.asp?BOparam::WScontent::loadArticle::permalink=deepest-space-in-us-flare26", + }, + { + "category": "event", + "overview": { + "actors": [ + "Cecile van Welie", + "Gabriela Cortés", + "Camila Issa", + ], + "categories": [], + "directors": [ + "Victoria Linares Villegas", + ], + "duration": 6300000, + "year": "2026", + }, + "performances": [ + { + "accessibility": { + "subtitled": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=674A5602-CEC1-4880-AD39-FF97C5AEBFFB&BOparam::WScontent::loadArticle::context_id=6E6222D3-83C2-41A9-BA55-3DF8D3438020", + "notes": "Part of the BFI Flare festival", + "screen": "4", + "status": {}, + "time": 1773942600000, + }, + { + "accessibility": { + "subtitled": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=674A5602-CEC1-4880-AD39-FF97C5AEBFFB&BOparam::WScontent::loadArticle::context_id=BCC4891B-6B7E-414E-948A-45CABA1A1194", + "notes": "Part of the BFI Flare festival", + "screen": "1", + "status": {}, + "time": 1774039500000, + }, + ], + "showingId": "bfi.org.uk-bfi-festivals-dont-come-out-flare26", + "title": "Don’t Come Out", + "url": "https://whatson.bfi.org.uk/flare/Online/default.asp?BOparam::WScontent::loadArticle::permalink=dont-come-out-flare26", + }, + { + "category": "event", + "overview": { + "actors": [], + "categories": [], + "directors": [ + "Cecile Fountain-Jardim", + ], + "duration": 360000, + "year": "2026", + }, + "performances": [ + { + "accessibility": { + "hardOfHearing": true, + "subtitled": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=DB3CCC71-9A8D-4A96-9244-4D28DAA77D18&BOparam::WScontent::loadArticle::context_id=26F14D22-2BD5-46FF-B88B-5B89106506AF", + "notes": "Part of the BFI Flare festival", + "screen": "1", + "status": {}, + "time": 1774099500000, + }, + { + "accessibility": { + "hardOfHearing": true, + "relaxed": true, + "subtitled": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=DB3CCC71-9A8D-4A96-9244-4D28DAA77D18&BOparam::WScontent::loadArticle::context_id=5DF6E2FA-0E42-4A27-8E60-BE53430E79AE", + "notes": "Part of the BFI Flare festival", + "screen": "4", + "status": {}, + "time": 1774627200000, + }, + { + "accessibility": { + "hardOfHearing": true, + "subtitled": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=DB3CCC71-9A8D-4A96-9244-4D28DAA77D18&BOparam::WScontent::loadArticle::context_id=9B33E240-7DD8-4B40-BF49-A6F53F8AFFD1", + "notes": "Part of the BFI Flare festival", + "screen": "4", + "status": {}, + "time": 1774635300000, + }, + ], + "showingId": "bfi.org.uk-bfi-festivals-til-the-world-stops-turning-flare26", + "title": "Til the World Stops Turning", + "url": "https://whatson.bfi.org.uk/flare/Online/default.asp?BOparam::WScontent::loadArticle::permalink=til-the-world-stops-turning-flare26", + }, + { + "category": "event", + "overview": { + "actors": [ + "Ronkẹ Adékọluẹ́jọ́", + "Ann Akinjirin", + ], + "categories": [], + "directors": [ + "Joy Gharoro-Akpojotor", + ], + "duration": 4680000, + "year": "2025", + }, + "performances": [ + { + "accessibility": { + "hardOfHearing": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=DA69F89D-CA5E-48EB-8FF2-04E7C4713722&BOparam::WScontent::loadArticle::context_id=6AB238E2-39D9-4BAF-9AD5-3D740B96FB5E", + "notes": "Part of the BFI Flare festival", + "screen": "3", + "status": {}, + "time": 1774811700000, + }, + ], + "showingId": "bfi.org.uk-bfi-festivals-dreamers-flare26", + "title": "Dreamers", + "url": "https://whatson.bfi.org.uk/flare/Online/default.asp?BOparam::WScontent::loadArticle::permalink=dreamers-flare26", + }, + { + "category": "event", + "overview": { + "actors": [ + "Laith Khalifeh", + "Ezriel Kornel", + "Matthew Risch", + ], + "categories": [], + "directors": [ + "Lucio Castro", + ], + "duration": 4920000, + "year": "2025", + }, + "performances": [ + { + "accessibility": { + "subtitled": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=33DCEB33-31A8-40DB-B79F-76F2DF574F35&BOparam::WScontent::loadArticle::context_id=FCB5994B-74C2-49AE-A5B8-E77302C3BBFF", + "notes": "Part of the BFI Flare festival", + "screen": "2", + "status": {}, + "time": 1774213200000, + }, + { + "accessibility": { + "subtitled": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=33DCEB33-31A8-40DB-B79F-76F2DF574F35&BOparam::WScontent::loadArticle::context_id=5B168278-2129-4005-8D72-F4622E6999EF", + "notes": "Part of the BFI Flare festival", + "screen": "4", + "status": {}, + "time": 1774384800000, + }, + ], + "showingId": "bfi.org.uk-bfi-festivals-drunken-noodles-flare26", + "title": "Drunken Noodles", + "url": "https://whatson.bfi.org.uk/flare/Online/default.asp?BOparam::WScontent::loadArticle::permalink=drunken-noodles-flare26", + }, + { + "category": "event", + "overview": { + "actors": [], + "categories": [], + "directors": [ + "Sara J Asprilla", + ], + "duration": 780000, + "year": "2025", + }, + "performances": [ + { + "accessibility": { + "subtitled": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=E10E3ABB-81ED-440E-9731-1F2BC98E7B9E&BOparam::WScontent::loadArticle::context_id=24C4BEB9-5905-4ECE-ABBF-12BE3471E362", + "notes": "Part of the BFI Flare festival", + "screen": "4", + "status": {}, + "time": 1774212300000, + }, + { + "accessibility": { + "subtitled": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=E10E3ABB-81ED-440E-9731-1F2BC98E7B9E&BOparam::WScontent::loadArticle::context_id=D16345E2-8082-48DE-A503-D2BBAE71EEF3", + "notes": "Part of the BFI Flare festival", + "screen": "1", + "status": {}, + "time": 1774711500000, + }, + ], + "showingId": "bfi.org.uk-bfi-festivals-when-the-rainbow-is-enuf-flare26", + "title": "(When the Rainbow Is Enuf)", + "url": "https://whatson.bfi.org.uk/flare/Online/default.asp?BOparam::WScontent::loadArticle::permalink=when-the-rainbow-is-enuf-flare26", + }, + { + "category": "event", + "overview": { + "actors": [], + "categories": [], + "directors": [ + "Sue Maluwa-Bruce", + ], + "duration": 3720000, + "year": "1998", + }, + "performances": [ + { + "accessibility": { + "hardOfHearing": true, + "subtitled": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=58107425-1572-4987-9F98-DCF590F01CAE&BOparam::WScontent::loadArticle::context_id=255E6847-6521-4A8D-9BFF-56B07C5507D7", + "notes": "Part of the BFI Flare festival", + "screen": "3", + "status": {}, + "time": 1774363800000, + }, + ], + "showingId": "bfi.org.uk-bfi-festivals-woubi-cheri-flare26", + "title": "Woubi Cheri", + "url": "https://whatson.bfi.org.uk/flare/Online/default.asp?BOparam::WScontent::loadArticle::permalink=woubi-cheri-flare26", + }, + { + "category": "event", + "overview": { + "actors": [], + "categories": [], + "directors": [ + "Cynthia Calvi", + ], + "duration": 5220000, + "year": "2026", + }, + "performances": [ + { + "accessibility": { + "hardOfHearing": true, + "subtitled": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=C06ECB4A-1CDF-4FBE-A3E9-3982A3298DF7&BOparam::WScontent::loadArticle::context_id=05689428-FA6F-4C93-AC73-79A847F6837B", + "notes": "Part of the BFI Flare festival", + "screen": "3", + "status": {}, + "time": 1774385100000, + }, + { + "accessibility": { + "hardOfHearing": true, + "subtitled": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=C06ECB4A-1CDF-4FBE-A3E9-3982A3298DF7&BOparam::WScontent::loadArticle::context_id=9AD3A822-7346-4A94-AEA9-32ECB8155AA0", + "notes": "Part of the BFI Flare festival", + "screen": "4", + "status": {}, + "time": 1774463100000, + }, + ], + "showingId": "bfi.org.uk-bfi-festivals-what-will-i-become-flare26", + "title": "What Will I Become?", + "url": "https://whatson.bfi.org.uk/flare/Online/default.asp?BOparam::WScontent::loadArticle::permalink=what-will-i-become-flare26", + }, + { + "category": "event", + "overview": { + "actors": [ + "Cheryl Dunye", + "Guinevere Turner", + "Valarie Walker", + ], + "categories": [], + "directors": [ + "Cheryl Dunye", + ], + "duration": 4980000, + "year": "1996", + }, + "performances": [ + { + "accessibility": {}, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=126F8AE6-4C39-4A20-8BCD-E4B2A3B2CA9B&BOparam::WScontent::loadArticle::context_id=51D0C786-D3ED-45DC-A2FB-9DE511B1307C", + "notes": "Part of the BFI Flare festival", + "screen": "1", + "status": {}, + "time": 1774011300000, + }, + ], + "showingId": "bfi.org.uk-bfi-festivals-watermelon-woman-flare26", + "title": "The Watermelon Woman", + "url": "https://whatson.bfi.org.uk/flare/Online/default.asp?BOparam::WScontent::loadArticle::permalink=watermelon-woman-flare26", + }, + { + "category": "event", + "overview": { + "actors": [ + "George Takei", + "Sister Roma", + "Honey Mahogany", + "Sister Vish-Knew", + "Sister Bella Donna Summer", + ], + "categories": [], + "directors": [ + "Jennifer M. Kroot", + ], + "duration": 5100000, + "year": "2026", + }, + "performances": [ + { + "accessibility": { + "hardOfHearing": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=1EA8D93D-71A7-4083-B375-A3C5E428081A&BOparam::WScontent::loadArticle::context_id=DA239FAC-CEA9-498C-8050-609EDA3B7F85", + "notes": "Part of the BFI Flare festival", + "screen": "1", + "status": {}, + "time": 1773856800000, + }, + { + "accessibility": { + "hardOfHearing": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=1EA8D93D-71A7-4083-B375-A3C5E428081A&BOparam::WScontent::loadArticle::context_id=F6517D01-392A-482C-B999-6B7BE27789D8", + "notes": "Part of the BFI Flare festival", + "screen": "1", + "status": {}, + "time": 1773865800000, + }, + { + "accessibility": { + "hardOfHearing": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=1EA8D93D-71A7-4083-B375-A3C5E428081A&BOparam::WScontent::loadArticle::context_id=3B45AECA-1C7B-4E29-8BCD-524DC138F642", + "notes": "Part of the BFI Flare festival", + "screen": "1", + "status": {}, + "time": 1773924600000, + }, + ], + "showingId": "bfi.org.uk-bfi-festivals-hunky-jesus-flare26", + "title": "Hunky Jesus", + "url": "https://whatson.bfi.org.uk/flare/Online/default.asp?BOparam::WScontent::loadArticle::permalink=hunky-jesus-flare26", + }, + { + "category": "event", + "overview": { + "actors": [ + "Alice Marcone", + "Gabriel Lodi", + "Luca Scarpelli", + ], + "categories": [], + "directors": [ + "Daniel Ribeiro", + ], + "duration": 5220000, + "year": "2026", + }, + "performances": [ + { + "accessibility": { + "subtitled": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=2CDD28BC-F19A-4C42-A0F8-7AAB62F3CD88&BOparam::WScontent::loadArticle::context_id=ADB2BCA1-12A0-49FE-8DF5-5330323A56E5", + "notes": "Part of the BFI Flare festival", + "screen": "1", + "status": {}, + "time": 1774643400000, + }, + { + "accessibility": { + "subtitled": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=2CDD28BC-F19A-4C42-A0F8-7AAB62F3CD88&BOparam::WScontent::loadArticle::context_id=EC886C7F-E8D2-437F-969A-0B6131AC272B", + "notes": "Part of the BFI Flare festival", + "screen": "2", + "status": {}, + "time": 1774711200000, + }, + ], + "showingId": "bfi.org.uk-bfi-festivals-i-am-going-to-miss-you-flare26", + "title": "I Am Going to Miss You", + "url": "https://whatson.bfi.org.uk/flare/Online/default.asp?BOparam::WScontent::loadArticle::permalink=i-am-going-to-miss-you-flare26", + }, + { + "category": "event", + "overview": { + "actors": [ + "Charlotte von Mahlsdorf", + ], + "categories": [], + "directors": [ + "Rosa von Praunheim", + ], + "duration": 5460000, + "year": "1992", + }, + "performances": [ + { + "accessibility": { + "subtitled": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=241B8CBB-F053-41D4-BF92-776B357F2014&BOparam::WScontent::loadArticle::context_id=6CF1B7D7-6FB7-4ED1-9560-CBE970A062D4", + "notes": "Part of the BFI Flare festival", + "screen": "3", + "status": {}, + "time": 1774627200000, + }, + ], + "showingId": "bfi.org.uk-bfi-festivals-i-am-my-own-woman-flare26", + "title": "I Am My Own Woman", + "url": "https://whatson.bfi.org.uk/flare/Online/default.asp?BOparam::WScontent::loadArticle::permalink=i-am-my-own-woman-flare26", + }, + { + "category": "event", + "overview": { + "actors": [ + "Uzoamaka (Power) Aniunoh", + "Gbubemi Ejeye", + "Ozzy Agu", + ], + "categories": [], + "directors": [ + "Pamela Adie", + ], + "duration": 7020000, + "year": "2026", + }, + "performances": [ + { + "accessibility": { + "hardOfHearing": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=092D0200-35BA-4CEE-B528-0600A560BDA0&BOparam::WScontent::loadArticle::context_id=9B57D2CB-6B1E-4F05-8550-6B01C8E325E9", + "notes": "Part of the BFI Flare festival", + "screen": "2", + "status": {}, + "time": 1774298400000, + }, + { + "accessibility": { + "hardOfHearing": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=092D0200-35BA-4CEE-B528-0600A560BDA0&BOparam::WScontent::loadArticle::context_id=2B5D0A74-CDB6-4052-8975-A11B014935A2", + "notes": "Part of the BFI Flare festival", + "screen": "1", + "status": {}, + "time": 1774364400000, + }, + ], + "showingId": "bfi.org.uk-bfi-festivals-ife-the-sequel-flare26", + "title": "ife: (The Sequel)", + "url": "https://whatson.bfi.org.uk/flare/Online/default.asp?BOparam::WScontent::loadArticle::permalink=ife-the-sequel-flare26", + }, + { + "category": "event", + "overview": { + "actors": [ + "Miyuki Takakura", + "Mayumi Ôzora", + "Minoru Takada", + ], + "categories": [], + "directors": [ + "Michiyoshi Doi", + ], + "duration": 4620000, + "year": "1958", + }, + "performances": [ + { + "accessibility": { + "subtitled": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=6096D8F6-E480-4E48-96C2-054A2E37D630&BOparam::WScontent::loadArticle::context_id=FE1806AB-14FC-4932-8458-604E5F89CE6C", + "notes": "Part of the BFI Flare festival", + "screen": "1", + "status": {}, + "time": 1774177200000, + }, + ], + "showingId": "bfi.org.uk-bfi-festivals-impure-nuns-flare26", + "title": "Impure Nuns", + "url": "https://whatson.bfi.org.uk/flare/Online/default.asp?BOparam::WScontent::loadArticle::permalink=impure-nuns-flare26", + }, + { + "category": "event", + "overview": { + "actors": [], + "categories": [], + "directors": [], + "duration": 4260000, + "year": "2026", + }, + "performances": [ + { + "accessibility": { + "subtitled": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=74E771E1-0440-4B0C-84D0-A2AF440C391E&BOparam::WScontent::loadArticle::context_id=9331332F-8E89-431B-B986-A865CEC79F25", + "notes": "Part of the BFI Flare festival", + "screen": "1", + "status": {}, + "time": 1774118400000, + }, + { + "accessibility": { + "subtitled": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=74E771E1-0440-4B0C-84D0-A2AF440C391E&BOparam::WScontent::loadArticle::context_id=06FCD249-430F-4D7E-9CE0-9F91CB93E5A3", + "notes": "Part of the BFI Flare festival", + "screen": "4", + "status": {}, + "time": 1774197600000, + }, + ], + "showingId": "bfi.org.uk-bfi-festivals-jaripeo-flare26", + "title": "Jaripeo", + "url": "https://whatson.bfi.org.uk/flare/Online/default.asp?BOparam::WScontent::loadArticle::permalink=jaripeo-flare26", + }, + { + "category": "event", + "overview": { + "actors": [ + "Olaia Aguayo", + "Josean Bengoetxea", + "Ainhoa Artetxe", + ], + "categories": [], + "directors": [ + "Sara Fantova", + ], + "duration": 4800000, + "year": "2025", + }, + "performances": [ + { + "accessibility": { + "subtitled": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=26F0FBE8-670C-48CB-9DD1-5D657184B23B&BOparam::WScontent::loadArticle::context_id=8A867387-8D8B-4D82-864C-C6F2CBF26169", + "notes": "Part of the BFI Flare festival", + "screen": "3", + "status": {}, + "time": 1774116900000, + }, + { + "accessibility": { + "subtitled": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=26F0FBE8-670C-48CB-9DD1-5D657184B23B&BOparam::WScontent::loadArticle::context_id=02FA209E-A8D2-446D-89EC-2F1787DE7762", + "notes": "Part of the BFI Flare festival", + "screen": "3", + "status": {}, + "time": 1774182600000, + }, + ], + "showingId": "bfi.org.uk-bfi-festivals-jone-sometimes-flare26", + "title": "Jone, Sometimes", + "url": "https://whatson.bfi.org.uk/flare/Online/default.asp?BOparam::WScontent::loadArticle::permalink=jone-sometimes-flare26", + }, + { + "category": "event", + "overview": { + "actors": [ + "Nina Meurisse", + "Laurence Roothooft", + ], + "categories": [], + "directors": [ + "Cato Kusters", + ], + }, + "performances": [ + { + "accessibility": { + "subtitled": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=232B8191-5EFE-4D05-BD3C-C6A949190040&BOparam::WScontent::loadArticle::context_id=D0B0E340-0455-43EB-8BE7-B35F959CFCC9", + "notes": "Part of the BFI Flare festival", + "screen": "1", + "status": {}, + "time": 1773943200000, + }, + { + "accessibility": { + "subtitled": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=232B8191-5EFE-4D05-BD3C-C6A949190040&BOparam::WScontent::loadArticle::context_id=2458CA81-FC8F-4E49-AA44-A17F095BEA36", + "notes": "Part of the BFI Flare festival", + "screen": "2", + "status": {}, + "time": 1774030800000, + }, + ], + "showingId": "bfi.org.uk-bfi-festivals-julian-flare26", + "title": "Julian", + "url": "https://whatson.bfi.org.uk/flare/Online/default.asp?BOparam::WScontent::loadArticle::permalink=julian-flare26", + }, + { + "category": "event", + "overview": { + "actors": [ + "Bruce Pintos", + "Juan Wauters", + "Anabella Bacigalupo", + ], + "categories": [], + "directors": [ + "Sergio De León", + ], + "duration": 5460000, + "year": "2025", + }, + "performances": [ + { + "accessibility": { + "subtitled": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=67F4027D-9341-4DDA-8C6E-4A8F0843A83A&BOparam::WScontent::loadArticle::context_id=7A60B9B4-E5DD-4F6D-95EB-059F89289D23", + "notes": "Part of the BFI Flare festival", + "screen": "2", + "status": {}, + "time": 1774125600000, + }, + { + "accessibility": { + "subtitled": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=67F4027D-9341-4DDA-8C6E-4A8F0843A83A&BOparam::WScontent::loadArticle::context_id=E9655749-A1D3-4493-8D35-724C70B9E518", + "notes": "Part of the BFI Flare festival", + "screen": "4", + "status": {}, + "time": 1774188900000, + }, + ], + "showingId": "bfi.org.uk-bfi-festivals-keep-coming-back-flare26", + "title": "Keep Coming Back", + "url": "https://whatson.bfi.org.uk/flare/Online/default.asp?BOparam::WScontent::loadArticle::permalink=keep-coming-back-flare26", + }, + { + "category": "event", + "overview": { + "actors": [ + "D’Arcy Drollinger", + "Matthew Martin", + "Seton Brown", + ], + "categories": [], + "directors": [ + "D’Arcy Drollinger", + ], + "duration": 5700000, + "year": "2026", + }, + "performances": [ + { + "accessibility": { + "hardOfHearing": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=593C4477-E9FF-4C74-B41E-919E2DF333C8&BOparam::WScontent::loadArticle::context_id=564F10D5-CC5E-400B-B896-49CA1430F7A3", + "notes": "Part of the BFI Flare festival", + "screen": "1", + "status": {}, + "time": 1773952500000, + }, + { + "accessibility": { + "hardOfHearing": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=593C4477-E9FF-4C74-B41E-919E2DF333C8&BOparam::WScontent::loadArticle::context_id=29AD3330-DB03-4FC5-860B-3FDE8ADEF833", + "notes": "Part of the BFI Flare festival", + "screen": "4", + "status": {}, + "time": 1774100100000, + }, + ], + "showingId": "bfi.org.uk-bfi-festivals-lady-champagne-flare26", + "title": "Lady Champagne", + "url": "https://whatson.bfi.org.uk/flare/Online/default.asp?BOparam::WScontent::loadArticle::permalink=lady-champagne-flare26", + }, + { + "category": "event", + "overview": { + "actors": [], + "categories": [], + "directors": [], + "duration": 5520000, + "year": "2025", + }, + "performances": [ + { + "accessibility": { + "hardOfHearing": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=B33AB3F6-7A89-486C-899C-D012862C6882&BOparam::WScontent::loadArticle::context_id=5A068354-90AB-4941-9372-EB3EC28A0944", + "notes": "Part of the BFI Flare festival", + "screen": "1", + "status": {}, + "time": 1774203300000, + }, + { + "accessibility": { + "hardOfHearing": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=B33AB3F6-7A89-486C-899C-D012862C6882&BOparam::WScontent::loadArticle::context_id=719EC718-FAC6-4DCC-BC4D-9FF0BBEBCE67", + "notes": "Part of the BFI Flare festival", + "screen": "2", + "status": {}, + "time": 1774365600000, + }, + ], + "showingId": "bfi.org.uk-bfi-festivals-last-guest-of-the-holloway-motel-flare26", + "title": "The Last Guest of the Holloway Motel", + "url": "https://whatson.bfi.org.uk/flare/Online/default.asp?BOparam::WScontent::loadArticle::permalink=last-guest-of-the-holloway-motel-flare26", + }, + { + "category": "event", + "overview": { + "actors": [ + "Nadia Melliti", + "Park Ji-min", + "Amina Ben Mohamed", + ], + "categories": [], + "directors": [ + "Hafsia Herzi", + ], + "duration": 6420000, + "year": "2025", + }, + "performances": [ + { + "accessibility": { + "subtitled": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=99F8AE5E-8C61-4097-8440-1EC17489BE8D&BOparam::WScontent::loadArticle::context_id=4B1A49B2-8912-4BFC-A90C-B90611217AB3", + "notes": "Part of the BFI Flare festival", + "screen": "1", + "status": {}, + "time": 1774548000000, + }, + { + "accessibility": { + "subtitled": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=99F8AE5E-8C61-4097-8440-1EC17489BE8D&BOparam::WScontent::loadArticle::context_id=0ABECCF2-FDFC-4985-A8C0-B178EC7755ED", + "notes": "Part of the BFI Flare festival", + "screen": "2", + "status": {}, + "time": 1774625400000, + }, + ], + "showingId": "bfi.org.uk-bfi-festivals-little-sister-flare26", + "title": "The Little Sister", + "url": "https://whatson.bfi.org.uk/flare/Online/default.asp?BOparam::WScontent::loadArticle::permalink=little-sister-flare26", + }, + { + "category": "event", + "overview": { + "actors": [ + "Jara Sofija Ostan", + "Mina Švajger", + "Saša Tabaković", + "Nataša Burger", + "Staša Popović", + ], + "categories": [], + "directors": [ + "Urška Djukić", + ], + "duration": 5340000, + "year": "2025", + }, + "performances": [ + { + "accessibility": { + "hardOfHearing": true, + "subtitled": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=6ED4BAA2-72DA-49E5-BC70-001A4C6AF8EE&BOparam::WScontent::loadArticle::context_id=8F99D1A9-C65F-4963-A9AB-5BD9CD4F0250", + "notes": "Part of the BFI Flare festival", + "screen": "3", + "status": {}, + "time": 1774794600000, + }, + ], + "showingId": "bfi.org.uk-bfi-festivals-little-trouble-girls-flare26", + "title": "Little Trouble Girls", + "url": "https://whatson.bfi.org.uk/flare/Online/default.asp?BOparam::WScontent::loadArticle::permalink=little-trouble-girls-flare26", + }, + { + "category": "event", + "overview": { + "actors": [ + "Ella Rumpf", + "Monia Chokri", + "Noémie Lvovsky", + ], + "categories": [], + "directors": [ + "Alice Douard", + ], + "duration": 5820000, + "year": "2025", + }, + "performances": [ + { + "accessibility": { + "subtitled": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=ACD875CC-7D29-4757-A123-9DE117D1B0E8&BOparam::WScontent::loadArticle::context_id=6E78FC1D-FABB-4EBB-8693-3A0E60DFD2D0", + "notes": "Part of the BFI Flare festival", + "screen": "1", + "status": {}, + "time": 1774108800000, + }, + { + "accessibility": { + "subtitled": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=ACD875CC-7D29-4757-A123-9DE117D1B0E8&BOparam::WScontent::loadArticle::context_id=A430C46F-49D6-44DE-B0A2-F9BCF8110B25", + "notes": "Part of the BFI Flare festival", + "screen": "2", + "status": {}, + "time": 1774203600000, + }, + ], + "showingId": "bfi.org.uk-bfi-festivals-love-letters-flare26", + "title": "Love Letters", + "url": "https://whatson.bfi.org.uk/flare/Online/default.asp?BOparam::WScontent::loadArticle::permalink=love-letters-flare26", + }, + { + "category": "event", + "overview": { + "actors": [ + "Emma McDonald", + "Thishiwe Ziqubu", + "Martin Kluge", + ], + "categories": [], + "directors": [ + "Campbell X", + ], + "duration": 5700000, + "year": "2025", + }, + "performances": [ + { + "accessibility": {}, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=A5898BBD-F39A-441A-B8AB-DC3107FF1232&BOparam::WScontent::loadArticle::context_id=E74E3F47-2074-4A4A-86FF-5F77BDAFF714", + "notes": "Part of the BFI Flare festival", + "screen": "1", + "status": {}, + "time": 1774126500000, + }, + { + "accessibility": {}, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=A5898BBD-F39A-441A-B8AB-DC3107FF1232&BOparam::WScontent::loadArticle::context_id=73853341-A704-43D8-BFA5-8D2804A27D08", + "notes": "Part of the BFI Flare festival", + "screen": "3", + "status": {}, + "time": 1774173600000, + }, + ], + "showingId": "bfi.org.uk-bfi-festivals-low-rider-flare26", + "title": "Low Rider", + "url": "https://whatson.bfi.org.uk/flare/Online/default.asp?BOparam::WScontent::loadArticle::permalink=low-rider-flare26", + }, + { + "category": "event", + "overview": { + "actors": [ + "Noah Parker", + "Liza Weil", + "Douglas Smith", + ], + "categories": [], + "directors": [ + "Nick Butler", + ], + "duration": 5880000, + "year": "2026", + }, + "performances": [ + { + "accessibility": {}, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=5A646C3A-5B81-403F-BBD3-C1B397611492&BOparam::WScontent::loadArticle::context_id=84F10937-F9A1-46EC-8415-44331BA4C5B5", + "notes": "Part of the BFI Flare festival", + "screen": "1", + "status": {}, + "time": 1774185000000, + }, + { + "accessibility": {}, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=5A646C3A-5B81-403F-BBD3-C1B397611492&BOparam::WScontent::loadArticle::context_id=398D1145-928F-453B-A326-B12816BD0EE3", + "notes": "Part of the BFI Flare festival", + "screen": "3", + "status": {}, + "time": 1774297800000, + }, + { + "accessibility": { + "relaxed": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=5A646C3A-5B81-403F-BBD3-C1B397611492&BOparam::WScontent::loadArticle::context_id=9C5FEFE9-D0B3-4B58-86A7-B5BD66D08F1D", + "notes": "Part of the BFI Flare festival", + "screen": "4", + "status": {}, + "time": 1774454400000, + }, + ], + "showingId": "bfi.org.uk-bfi-festivals-lunar-sway-flare26", + "title": "Lunar Sway", + "url": "https://whatson.bfi.org.uk/flare/Online/default.asp?BOparam::WScontent::loadArticle::permalink=lunar-sway-flare26", + }, + { + "category": "event", + "overview": { + "actors": [ + "Callum Scott Howells", + "Ruby Stokes", + "Rupert Everett", + ], + "categories": [], + "directors": [ + "Celyn Jones", + ], + "duration": 6420000, + "year": "2025", + }, + "performances": [ + { + "accessibility": {}, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=7B44D775-21F3-4807-B208-6BAAB54E9773&BOparam::WScontent::loadArticle::context_id=EDDD4807-5F9E-4453-B49C-2DA01765B6E0", + "notes": "Part of the BFI Flare festival", + "screen": "1", + "status": {}, + "time": 1774461600000, + }, + { + "accessibility": {}, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=7B44D775-21F3-4807-B208-6BAAB54E9773&BOparam::WScontent::loadArticle::context_id=5DFFA28E-7D0C-43A0-AE9C-DE945B355D57", + "notes": "Part of the BFI Flare festival", + "screen": "1", + "status": {}, + "time": 1774537500000, + }, + ], + "showingId": "bfi.org.uk-bfi-festivals-madfabulous-flare26", + "title": "Madfabulous", + "url": "https://whatson.bfi.org.uk/flare/Online/default.asp?BOparam::WScontent::loadArticle::permalink=madfabulous-flare26", + }, + { + "category": "event", + "overview": { + "actors": [ + "José Ramón Soroiz", + "Nagore Aranburu", + "Kandido Uranga", + ], + "categories": [], + "directors": [], + "duration": 6900000, + "year": "2025", + }, + "performances": [ + { + "accessibility": { + "subtitled": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=EF8A5518-F213-4FF0-86B5-8DE363857B69&BOparam::WScontent::loadArticle::context_id=1C8290C3-7390-414E-970E-760918A85867", + "notes": "Part of the BFI Flare festival", + "screen": "3", + "status": {}, + "time": 1773933600000, + }, + { + "accessibility": { + "subtitled": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=EF8A5518-F213-4FF0-86B5-8DE363857B69&BOparam::WScontent::loadArticle::context_id=A5CFA2CE-4C1A-44C7-94FA-CF00F24D40A8", + "notes": "Part of the BFI Flare festival", + "screen": "2", + "status": {}, + "time": 1774106100000, + }, + ], + "showingId": "bfi.org.uk-bfi-festivals-maspalomas-flare26", + "title": "Maspalomas", + "url": "https://whatson.bfi.org.uk/flare/Online/default.asp?BOparam::WScontent::loadArticle::permalink=maspalomas-flare26", + }, + { + "category": "event", + "overview": { + "actors": [ + "Richard Bernstein", + ], + "categories": [], + "directors": [], + "duration": 4200000, + "year": "2026", + }, + "performances": [ + { + "accessibility": {}, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=F87ED040-00EB-4D01-AB45-5717E011AF75&BOparam::WScontent::loadArticle::context_id=76E4969B-A307-4A96-9BD6-B97DA399049E", + "notes": "Part of the BFI Flare festival", + "screen": "2", + "status": {}, + "time": 1773954000000, + }, + { + "accessibility": {}, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=F87ED040-00EB-4D01-AB45-5717E011AF75&BOparam::WScontent::loadArticle::context_id=8198ECDF-3C8C-42F8-8D7D-7D1C71D4D2CD", + "notes": "Part of the BFI Flare festival", + "screen": "4", + "status": {}, + "time": 1774040400000, + }, + ], + "showingId": "bfi.org.uk-bfi-festivals-mickey-and-richard-flare26", + "title": "Mickey & Richard", + "url": "https://whatson.bfi.org.uk/flare/Online/default.asp?BOparam::WScontent::loadArticle::permalink=mickey-and-richard-flare26", + }, + { + "category": "event", + "overview": { + "actors": [ + "Joan Chen", + "John Xu", + "Charlotte Aubin", + ], + "categories": [], + "directors": [ + "Xiaodan He", + ], + "duration": 7020000, + "year": "2025", + }, + "performances": [ + { + "accessibility": { + "subtitled": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=6F3E04FC-9F43-4320-808F-ABD397615B5F&BOparam::WScontent::loadArticle::context_id=80215847-18E2-4311-8498-795437883586", + "notes": "Part of the BFI Flare festival", + "screen": "1", + "status": {}, + "time": 1774384500000, + }, + { + "accessibility": { + "subtitled": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=6F3E04FC-9F43-4320-808F-ABD397615B5F&BOparam::WScontent::loadArticle::context_id=AF5115F1-C467-476B-8D48-8B40E1A40812", + "notes": "Part of the BFI Flare festival", + "screen": "1", + "status": {}, + "time": 1774527000000, + }, + ], + "showingId": "bfi.org.uk-bfi-festivals-montreal-my-beautiful-flare26", + "title": "Montreal, My Beautiful", + "url": "https://whatson.bfi.org.uk/flare/Online/default.asp?BOparam::WScontent::loadArticle::permalink=montreal-my-beautiful-flare26", + }, + { + "category": "event", + "overview": { + "actors": [ + "Brady Corbet", + "Joseph Gordon-Levitt", + "Michelle Trachtenberg", + ], + "categories": [], + "directors": [ + "Gregg Araki", + ], + "duration": 6300000, + "year": "2004", + }, + "performances": [ + { + "accessibility": {}, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=2192D8E8-FA0A-40C5-A59C-AA7CD9724D47&BOparam::WScontent::loadArticle::context_id=33956D54-0690-4B89-A672-2D1AD2059304", + "notes": "Part of the BFI Flare festival", + "screen": "1", + "status": {}, + "time": 1774452000000, + }, + ], + "showingId": "bfi.org.uk-bfi-festivals-mysterious-skin-flare26", + "title": "Mysterious Skin", + "url": "https://whatson.bfi.org.uk/flare/Online/default.asp?BOparam::WScontent::loadArticle::permalink=mysterious-skin-flare26", + }, + { + "category": "event", + "overview": { + "actors": [], + "categories": [], + "directors": [ + "Lyndon Henley Hanrahan", + ], + "duration": 840000, + "year": "2025", + }, + "performances": [ + { + "accessibility": { + "subtitled": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=C7889F8B-21CE-4943-9B83-663505250242&BOparam::WScontent::loadArticle::context_id=71A71647-8F83-4ACB-9218-9C83DB65D5DC", + "notes": "Part of the BFI Flare festival", + "screen": "2", + "status": {}, + "time": 1774195200000, + }, + { + "accessibility": { + "subtitled": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=C7889F8B-21CE-4943-9B83-663505250242&BOparam::WScontent::loadArticle::context_id=26EE128C-F7AF-44C8-9E2D-4491F930A86C", + "notes": "Part of the BFI Flare festival", + "screen": "3", + "status": {}, + "time": 1774645200000, + }, + ], + "showingId": "bfi.org.uk-bfi-festivals-immodest-acts-flare26", + "title": "Immodest Acts", + "url": "https://whatson.bfi.org.uk/flare/Online/default.asp?BOparam::WScontent::loadArticle::permalink=immodest-acts-flare26", + }, + { + "category": "event", + "overview": { + "actors": [], + "categories": [], + "directors": [ + "Ester Bergsmark", + ], + "duration": 5400000, + "year": "2026", + }, + "performances": [ + { + "accessibility": { + "subtitled": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=53903B7E-BA4C-4FFE-91E3-144A07CF80DC&BOparam::WScontent::loadArticle::context_id=3144ED95-0DE4-4DB6-9115-985F2E8888BD", + "notes": "Part of the BFI Flare festival", + "screen": "3", + "status": {}, + "time": 1774125300000, + }, + { + "accessibility": { + "subtitled": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=53903B7E-BA4C-4FFE-91E3-144A07CF80DC&BOparam::WScontent::loadArticle::context_id=F613656C-BF0E-479D-B93A-E63B05F12FBE", + "notes": "Part of the BFI Flare festival", + "screen": "2", + "status": {}, + "time": 1774185000000, + }, + ], + "showingId": "bfi.org.uk-bfi-festivals-sweetness-from-nowhere-flare26", + "title": "A Sweetness from Nowhere", + "url": "https://whatson.bfi.org.uk/flare/Online/default.asp?BOparam::WScontent::loadArticle::permalink=sweetness-from-nowhere-flare26", + }, + { + "category": "event", + "overview": { + "actors": [ + "Barry Ward", + "Lorne MacFadyen", + "Liz White", + ], + "categories": [], + "directors": [ + "Helen Walsh", + ], + "duration": 6660000, + "year": "2025", + }, + "performances": [ + { + "accessibility": {}, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=964AAC33-F6A4-4E0E-B894-31BE8977A222&BOparam::WScontent::loadArticle::context_id=4946B479-1AA4-440A-B3F6-1E8A9EED8A8C", + "notes": "Part of the BFI Flare festival", + "screen": "1", + "status": {}, + "time": 1774297200000, + }, + { + "accessibility": {}, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=964AAC33-F6A4-4E0E-B894-31BE8977A222&BOparam::WScontent::loadArticle::context_id=FFA450A1-1881-4E2C-A0EE-AB2E21D73A03", + "notes": "Part of the BFI Flare festival", + "screen": "2", + "status": {}, + "time": 1774452000000, + }, + ], + "showingId": "bfi.org.uk-bfi-festivals-on-the-sea-flare26", + "title": "On the Sea", + "url": "https://whatson.bfi.org.uk/flare/Online/default.asp?BOparam::WScontent::loadArticle::permalink=on-the-sea-flare26", + }, + { + "category": "event", + "overview": { + "actors": [ + "Friedel Dausab", + "Rosanna Flamer-Caldera", + "Raven Gill", + ], + "categories": [], + "directors": [], + "duration": 4740000, + "year": "2025", + }, + "performances": [ + { + "accessibility": { + "audioDescription": true, + "hardOfHearing": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=A0FB600C-5AE1-4807-87BC-8C8B0A12864A&BOparam::WScontent::loadArticle::context_id=B911E9AE-E853-467D-A0DE-9DBAECDC66BE", + "notes": "Part of the BFI Flare festival", + "screen": "1", + "status": {}, + "time": 1774288200000, + }, + { + "accessibility": { + "audioDescription": true, + "hardOfHearing": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=A0FB600C-5AE1-4807-87BC-8C8B0A12864A&BOparam::WScontent::loadArticle::context_id=1416496F-333F-4F3C-8142-568F25DC4956", + "notes": "Part of the BFI Flare festival", + "screen": "1", + "status": {}, + "time": 1774693800000, + }, + ], + "showingId": "bfi.org.uk-bfi-festivals-out-laws-flare26", + "title": "Out Laws", + "url": "https://whatson.bfi.org.uk/flare/Online/default.asp?BOparam::WScontent::loadArticle::permalink=out-laws-flare26", + }, + { + "category": "event", + "overview": { + "actors": [ + "Steve Buscemi", + "John Bolger", + "Richard Ganoung", + ], + "categories": [], + "directors": [ + "Bill Sherwood", + ], + "duration": 5400000, + "year": "1986", + }, + "performances": [ + { + "accessibility": {}, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=DF311B61-4EAA-4855-A0A0-7DBE98856C7E&BOparam::WScontent::loadArticle::context_id=B9327F3D-1122-4945-9773-59F80DEDF06C", + "notes": "Part of the BFI Flare festival", + "screen": "1", + "status": {}, + "time": 1774090800000, + }, + ], + "showingId": "bfi.org.uk-bfi-festivals-parting-glances-flare26", + "title": "Parting Glances", + "url": "https://whatson.bfi.org.uk/flare/Online/default.asp?BOparam::WScontent::loadArticle::permalink=parting-glances-flare26", + }, + { + "category": "event", + "overview": { + "actors": [ + "Juan Ramos", + "Germán Flood", + ], + "categories": [], + "directors": [ + "Marco Berger", + ], + "duration": 6060000, + "year": "2025", + }, + "performances": [ + { + "accessibility": { + "subtitled": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=42B0A2EF-B8D8-44BC-9F15-F31F48ED8EDC&BOparam::WScontent::loadArticle::context_id=5942B806-CED3-4459-9FBF-9C82D8A0E0E2", + "notes": "Part of the BFI Flare festival", + "screen": "1", + "status": {}, + "time": 1774029600000, + }, + { + "accessibility": { + "subtitled": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=42B0A2EF-B8D8-44BC-9F15-F31F48ED8EDC&BOparam::WScontent::loadArticle::context_id=B5F1BCEA-D7BD-4FF6-A1FF-6A0695F9500D", + "notes": "Part of the BFI Flare festival", + "screen": "3", + "status": {}, + "time": 1774098900000, + }, + ], + "showingId": "bfi.org.uk-bfi-festivals-perro-perro-flare26", + "title": "Perro Perro", + "url": "https://whatson.bfi.org.uk/flare/Online/default.asp?BOparam::WScontent::loadArticle::permalink=perro-perro-flare26", + }, + { + "category": "event", + "overview": { + "actors": [ + "Harry Melling", + "Alexander Skarsgård", + ], + "categories": [], + "directors": [ + "Harry Lighton", + ], + "duration": 6360000, + "year": "2025", + }, + "performances": [ + { + "accessibility": { + "audioDescription": true, + "hardOfHearing": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=933CF840-2110-418C-A5FF-DCC7BC61362E&BOparam::WScontent::loadArticle::context_id=A84B3E1A-C415-4562-BE90-C06BF6295909", + "notes": "Part of the BFI Flare festival", + "screen": "3", + "status": {}, + "time": 1774785600000, + }, + ], + "showingId": "bfi.org.uk-bfi-festivals-pillion-flare26", + "title": "Pillion", + "url": "https://whatson.bfi.org.uk/flare/Online/default.asp?BOparam::WScontent::loadArticle::permalink=pillion-flare26", + }, + { + "category": "event", + "overview": { + "actors": [ + "Bobby Kendall", + "Don Brooks", + "Charles Ludlam", + ], + "categories": [], + "directors": [ + "James Bidgood", + ], + "duration": 4260000, + "year": "1971", + }, + "performances": [ + { + "accessibility": {}, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=29427ADF-436E-4B00-8E9C-BA7C577E0861&BOparam::WScontent::loadArticle::context_id=65A4CA3C-7FFC-48A9-948E-0B43E79C8321", + "notes": "Part of the BFI Flare festival", + "screen": "1", + "status": {}, + "time": 1773933600000, + }, + ], + "showingId": "bfi.org.uk-bfi-festivals-pink-narcissus-flare26", + "title": "Pink Narcissus", + "url": "https://whatson.bfi.org.uk/flare/Online/default.asp?BOparam::WScontent::loadArticle::permalink=pink-narcissus-flare26", + }, + { + "category": "event", + "overview": { + "actors": [ + "Lux Pascal", + "Laura Grandinetti", + "Romina Escobar", + ], + "categories": [], + "directors": [ + "Agustina Macri", + ], + "duration": 5580000, + "year": "2025", + }, + "performances": [ + { + "accessibility": { + "subtitled": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=E9F9C540-2732-4790-93E4-4522B711FC0E&BOparam::WScontent::loadArticle::context_id=91950D19-E19A-45A3-8581-3F256656D730", + "notes": "Part of the BFI Flare festival", + "screen": "1", + "status": {}, + "time": 1774375200000, + }, + { + "accessibility": { + "subtitled": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=E9F9C540-2732-4790-93E4-4522B711FC0E&BOparam::WScontent::loadArticle::context_id=3598B768-8094-44FE-BC24-FA79E475253A", + "notes": "Part of the BFI Flare festival", + "screen": "2", + "status": {}, + "time": 1774539600000, + }, + ], + "showingId": "bfi.org.uk-bfi-festivals-queen-of-coal-flare26", + "title": "Queen of Coal", + "url": "https://whatson.bfi.org.uk/flare/Online/default.asp?BOparam::WScontent::loadArticle::permalink=queen-of-coal-flare26", + }, + { + "category": "event", + "overview": { + "actors": [ + "Emma Laird", + "Fionn Whitehead", + "Zar Amir Ebrahimi", + ], + "categories": [], + "directors": [ + "Alex Burunova", + ], + "duration": 5820000, + "year": "2025", + }, + "performances": [ + { + "accessibility": { + "subtitled": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=DD8AF599-AC20-41A5-88C0-4B0AFCCEE56D&BOparam::WScontent::loadArticle::context_id=E71EE056-2849-4120-A59F-98F7C89A385A", + "notes": "Part of the BFI Flare festival", + "screen": "1", + "status": {}, + "time": 1774212600000, + }, + { + "accessibility": { + "subtitled": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=DD8AF599-AC20-41A5-88C0-4B0AFCCEE56D&BOparam::WScontent::loadArticle::context_id=B1A3A5DA-DCA8-46FC-A658-6F6983CC49B6", + "notes": "Part of the BFI Flare festival", + "screen": "1", + "status": {}, + "time": 1774278600000, + }, + ], + "showingId": "bfi.org.uk-bfi-festivals-satisfaction-flare26", + "title": "Satisfaction", + "url": "https://whatson.bfi.org.uk/flare/Online/default.asp?BOparam::WScontent::loadArticle::permalink=satisfaction-flare26", + }, + { + "category": "event", + "overview": { + "actors": [ + "Alexandra McVicker", + "Avalon Fast", + "Jordan Dulieu", + ], + "categories": [], + "directors": [ + "Alice Maio Mackay", + ], + "duration": 4980000, + "year": "2025", + }, + "performances": [ + { + "accessibility": { + "hardOfHearing": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=C2C016BA-6BB4-475B-A7D4-4B3206EFBA0F&BOparam::WScontent::loadArticle::context_id=3EDE7C58-2BCE-4090-B95E-1A12520FFD1F", + "notes": "Part of the BFI Flare festival", + "screen": "2", + "status": {}, + "time": 1774116600000, + }, + { + "accessibility": { + "hardOfHearing": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=C2C016BA-6BB4-475B-A7D4-4B3206EFBA0F&BOparam::WScontent::loadArticle::context_id=8C503C09-F854-4790-9440-7DE3ECA9F72D", + "notes": "Part of the BFI Flare festival", + "screen": "4", + "status": {}, + "time": 1774204200000, + }, + ], + "showingId": "bfi.org.uk-bfi-festivals-serpents-skin-flare26", + "title": "The Serpent’s Skin", + "url": "https://whatson.bfi.org.uk/flare/Online/default.asp?BOparam::WScontent::loadArticle::permalink=serpents-skin-flare26", + }, + { + "category": "event", + "overview": { + "actors": [ + "Femke Vanhove", + "Lina Miftah", + "Wout Vleugels", + ], + "categories": [], + "directors": [ + "Cecilia Verheyden", + ], + "duration": 6360000, + "year": "2025", + }, + "performances": [ + { + "accessibility": { + "subtitled": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=F2A0A189-66C1-44BB-8111-4C3BCC1F7300&BOparam::WScontent::loadArticle::context_id=2FCBD2B9-2103-4954-94BC-F04D272BE3B3", + "notes": "Part of the BFI Flare festival", + "screen": "3", + "status": {}, + "time": 1774190700000, + }, + { + "accessibility": { + "subtitled": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=F2A0A189-66C1-44BB-8111-4C3BCC1F7300&BOparam::WScontent::loadArticle::context_id=1AA7431B-4BC9-4678-A8D5-BCE7DEB6724D", + "notes": "Part of the BFI Flare festival", + "screen": "4", + "status": {}, + "time": 1774290000000, + }, + ], + "showingId": "bfi.org.uk-bfi-festivals-skiff-flare26", + "title": "Skiff", + "url": "https://whatson.bfi.org.uk/flare/Online/default.asp?BOparam::WScontent::loadArticle::permalink=skiff-flare26", + }, + { + "category": "event", + "overview": { + "actors": [ + "Jan Monter", + "Nausicaa Bonnín", + "Francesco Wenz", + ], + "categories": [], + "directors": [ + "Jaume Claret Muxart", + ], + "duration": 6300000, + "year": "2025", + }, + "performances": [ + { + "accessibility": { + "subtitled": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=99F84E2D-7C14-4ABE-BEFD-FF858898988D&BOparam::WScontent::loadArticle::context_id=881F9569-397E-426D-841E-BB5622D5BD45", + "notes": "Part of the BFI Flare festival", + "screen": "3", + "status": {}, + "time": 1774201500000, + }, + { + "accessibility": { + "subtitled": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=99F84E2D-7C14-4ABE-BEFD-FF858898988D&BOparam::WScontent::loadArticle::context_id=FBF131B3-E90A-42F6-9375-D1ED26FFCEA2", + "notes": "Part of the BFI Flare festival", + "screen": "2", + "status": {}, + "time": 1774277100000, + }, + ], + "showingId": "bfi.org.uk-bfi-festivals-strange-river-flare26", + "title": "Strange River", + "url": "https://whatson.bfi.org.uk/flare/Online/default.asp?BOparam::WScontent::loadArticle::permalink=strange-river-flare26", + }, + { + "category": "event", + "overview": { + "actors": [ + "Jay", + "Vol’demar Kabus", + ], + "categories": [], + "directors": [ + "Julian Lautenbacher", + ], + "duration": 5400000, + "year": "2026", + }, + "performances": [ + { + "accessibility": { + "subtitled": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=870ED95A-A6F9-457E-8E5E-E02A1CDC08DF&BOparam::WScontent::loadArticle::context_id=3B567D31-2D1D-4279-A8E4-B633C55F84FD", + "notes": "Part of the BFI Flare festival", + "screen": "3", + "status": {}, + "time": 1774557000000, + }, + { + "accessibility": { + "subtitled": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=870ED95A-A6F9-457E-8E5E-E02A1CDC08DF&BOparam::WScontent::loadArticle::context_id=B8F90BC2-5527-4B14-8B6C-D6B205A0B0A6", + "notes": "Part of the BFI Flare festival", + "screen": "2", + "status": {}, + "time": 1774721700000, + }, + ], + "showingId": "bfi.org.uk-bfi-festivals-to-dance-is-to-resist-flare26", + "title": "TO DANCE IS TO RESIST", + "url": "https://whatson.bfi.org.uk/flare/Online/default.asp?BOparam::WScontent::loadArticle::permalink=to-dance-is-to-resist-flare26", + }, + { + "category": "event", + "overview": { + "actors": [], + "categories": [], + "directors": [ + "Mohamad Abdouni", + ], + "duration": 4500000, + "year": "2025", + }, + "performances": [ + { + "accessibility": { + "subtitled": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=4827B86D-F2C2-47DE-85D8-F60B26688ED9&BOparam::WScontent::loadArticle::context_id=5AE3C69A-9E3F-4A56-96F2-10D26930E82E", + "notes": "Part of the BFI Flare festival", + "screen": "3", + "status": {}, + "time": 1774636200000, + }, + { + "accessibility": { + "subtitled": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=4827B86D-F2C2-47DE-85D8-F60B26688ED9&BOparam::WScontent::loadArticle::context_id=93B02BBC-03A4-4339-936B-49EEEE7432BA", + "notes": "Part of the BFI Flare festival", + "screen": "4", + "status": {}, + "time": 1774722300000, + }, + ], + "showingId": "bfi.org.uk-bfi-festivals-treat-me-like-your-mother-flare26", + "title": "Treat Me Like Your Mother", + "url": "https://whatson.bfi.org.uk/flare/Online/default.asp?BOparam::WScontent::loadArticle::permalink=treat-me-like-your-mother-flare26", + }, + { + "category": "event", + "overview": { + "actors": [ + "Kristof", + "Marlo Mortimer", + "Eve Libertine", + ], + "categories": [], + "directors": [ + "Fil Ieropoulos", + ], + "duration": 5820000, + "year": "2026", + }, + "performances": [ + { + "accessibility": { + "subtitled": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=514CB287-0CA7-43AC-AE0D-261F20F4AD5F&BOparam::WScontent::loadArticle::context_id=D95B8803-FF5A-4852-9E14-4503F20A4C40", + "notes": "Part of the BFI Flare festival", + "screen": "2", + "status": {}, + "time": 1774039800000, + }, + { + "accessibility": { + "subtitled": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=514CB287-0CA7-43AC-AE0D-261F20F4AD5F&BOparam::WScontent::loadArticle::context_id=DB9EEB67-AB8D-44FE-9494-FC417267A291", + "notes": "Part of the BFI Flare festival", + "screen": "4", + "status": {}, + "time": 1774108500000, + }, + ], + "showingId": "bfi.org.uk-bfi-festivals-uchronia-flare26", + "title": "Uchronia: Parallel histories of queer revolt", + "url": "https://whatson.bfi.org.uk/flare/Online/default.asp?BOparam::WScontent::loadArticle::permalink=uchronia-flare26", + }, + { + "category": "event", + "overview": { + "actors": [ + "Jervi Wrightson", + "Lance Reblando", + "Serena Magiliw", + ], + "categories": [], + "directors": [ + "Kevin Alambra", + ], + "duration": 4980000, + "year": "2025", + }, + "performances": [ + { + "accessibility": { + "subtitled": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=E46BFA5B-3473-40F8-928B-3ADBC2BAFBBF&BOparam::WScontent::loadArticle::context_id=2EC7C88F-8AD7-4FC0-9F2A-87BA09093D98", + "notes": "Part of the BFI Flare festival", + "screen": "3", + "status": {}, + "time": 1773951300000, + }, + { + "accessibility": { + "subtitled": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=E46BFA5B-3473-40F8-928B-3ADBC2BAFBBF&BOparam::WScontent::loadArticle::context_id=5CC837F1-FB0C-44A1-BA1F-22D9162A39BB", + "notes": "Part of the BFI Flare festival", + "screen": "2", + "status": {}, + "time": 1774022400000, + }, + ], + "showingId": "bfi.org.uk-bfi-festivals-warla-flare26", + "title": "Warla", + "url": "https://whatson.bfi.org.uk/flare/Online/default.asp?BOparam::WScontent::loadArticle::permalink=warla-flare26", + }, + { + "category": "event", + "overview": { + "actors": [ + "Anna Ivankovic", + "Carys Glynne", + "Anna Liddell", + ], + "categories": [], + "directors": [ + "Isabel Daly", + ], + "duration": 5100000, + "year": "2025", + }, + "performances": [ + { + "accessibility": { + "subtitled": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=B46D032E-C1A7-437B-BDE8-248BED22D0A6&BOparam::WScontent::loadArticle::context_id=7B5E095E-8A8F-4B3C-B739-14D3BDF14A2A", + "notes": "Part of the BFI Flare festival", + "screen": "1", + "status": {}, + "time": 1774471800000, + }, + { + "accessibility": { + "subtitled": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=B46D032E-C1A7-437B-BDE8-248BED22D0A6&BOparam::WScontent::loadArticle::context_id=78FC82CC-2BC6-410C-85E2-40B9C66E977E", + "notes": "Part of the BFI Flare festival", + "screen": "2", + "status": {}, + "time": 1774701900000, + }, + ], + "showingId": "bfi.org.uk-bfi-festivals-washed-up-flare26", + "title": "Washed Up", + "url": "https://whatson.bfi.org.uk/flare/Online/default.asp?BOparam::WScontent::loadArticle::permalink=washed-up-flare26", + }, + { + "category": "event", + "overview": { + "actors": [ + "Julia Sweeney", + "Kevin Nealon", + "Molly Kearney", + ], + "categories": [], + "directors": [ + "Rowan Haber", + ], + "duration": 5280000, + "year": "2025", + }, + "performances": [ + { + "accessibility": { + "hardOfHearing": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=AC17C59F-CA3B-4726-83BB-77F93E6B9E06&BOparam::WScontent::loadArticle::context_id=8A34104B-D816-4FA7-9D72-75CBA55EE2DE", + "notes": "Part of the BFI Flare festival", + "screen": "2", + "status": {}, + "time": 1774558800000, + }, + { + "accessibility": { + "hardOfHearing": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=AC17C59F-CA3B-4726-83BB-77F93E6B9E06&BOparam::WScontent::loadArticle::context_id=1D79E4D8-DD8A-4D8A-805F-2258237B983C", + "notes": "Part of the BFI Flare festival", + "screen": "4", + "status": {}, + "time": 1774705800000, + }, + ], + "showingId": "bfi.org.uk-bfi-festivals-we-are-pat-flare26", + "title": "We Are Pat", + "url": "https://whatson.bfi.org.uk/flare/Online/default.asp?BOparam::WScontent::loadArticle::permalink=we-are-pat-flare26", + }, + { + "category": "event", + "overview": { + "actors": [ + "Rainer Strecker", + "Sigurd Rachman", + "Andy Lucas", + ], + "categories": [], + "directors": [ + "Wieland Speck", + ], + "duration": 5760000, + "year": "1985", + }, + "performances": [ + { + "accessibility": { + "subtitled": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=C5B24D57-9568-4A83-AFB6-DBE41C3D218E&BOparam::WScontent::loadArticle::context_id=BA369106-79A7-4BCE-AE8E-0961E4DFFE04", + "notes": "Part of the BFI Flare festival", + "screen": "3", + "status": {}, + "time": 1774617900000, + }, + ], + "showingId": "bfi.org.uk-bfi-festivals-westler-flare26", + "title": "Westler", + "url": "https://whatson.bfi.org.uk/flare/Online/default.asp?BOparam::WScontent::loadArticle::permalink=westler-flare26", + }, + { + "category": "event", + "overview": { + "actors": [ + "Sopheanith Thong", + "Deka Nine", + "Monita Keo", + ], + "categories": [], + "directors": [ + "Lai Yuqing", + ], + "duration": 5100000, + "year": "2025", + }, + "performances": [ + { + "accessibility": { + "subtitled": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=60D7D2BC-4DC2-4602-8040-90F400337343&BOparam::WScontent::loadArticle::context_id=DC4F4D5F-2AE0-48F1-BE31-3C2FA69B388C", + "notes": "Part of the BFI Flare festival", + "screen": "2", + "status": {}, + "time": 1774472400000, + }, + { + "accessibility": { + "subtitled": true, + }, + "bookingUrl": "https://whatson.bfi.org.uk/flare/Online/default.asp?doWork::WScontent::loadArticle=Load&BOparam::WScontent::loadArticle::article_id=60D7D2BC-4DC2-4602-8040-90F400337343&BOparam::WScontent::loadArticle::context_id=3E68B08C-51FF-4844-BF66-9BE22373E7A2", + "notes": "Part of the BFI Flare festival", + "screen": "3", + "status": {}, + "time": 1774539000000, + }, + ], + "showingId": "bfi.org.uk-bfi-festivals-whisperings-of-the-moon-flare26", + "title": "Whisperings of the Moon", + "url": "https://whatson.bfi.org.uk/flare/Online/default.asp?BOparam::WScontent::loadArticle::permalink=whisperings-of-the-moon-flare26", + }, +] +`; + +exports[`BFI Festivals Curzon Mayfair retrieve and find events 1`] = `[]`; diff --git a/sources/bfi.org.uk-bfi-festivals/tests/index.test.js b/sources/bfi.org.uk-bfi-festivals/tests/index.test.js new file mode 100644 index 0000000..ee253a8 --- /dev/null +++ b/sources/bfi.org.uk-bfi-festivals/tests/index.test.js @@ -0,0 +1,77 @@ +/** @jest-environment setup-polly-jest/jest-environment-node */ +const { + setupPolly, + schemaValidate, + setupCacheMock, +} = require("../../../common/test-utils"); +const { + readJSON, + removeMatchingHints, + addTestCategory, +} = require("../../../common/utils"); +const { attributes, retrieve, findEvents } = require(".."); + +jest.mock("../../../common/utils", () => ({ + ...jest.requireActual("../../../common/utils"), + readJSON: jest.fn(), +})); + +const isRecording = false; + +jest.mock("../../../common/cache"); +setupCacheMock(__dirname, "2026-02-23"); + +// Hide script output +console.log = () => {}; + +describe(attributes.name, () => { + setupPolly(isRecording, __dirname); + jest.useFakeTimers().setSystemTime(new Date("2026-02-23")); + + describe.each([ + { + name: "BFI Southbank", + alternativeNames: [], + geo: { lat: 51.50661723132389, lon: -0.11579438330226112 }, + expectedMatches: 72, + }, + { + name: "Curzon Mayfair", + alternativeNames: [], + geo: { lat: 51.506734218879856, lon: -0.14792424440091292 }, + expectedMatches: 0, + }, + ])("$name", ({ name, alternativeNames, geo, expectedMatches }) => { + it( + "retrieve and find events", + async () => { + const { movieListPages, moviePages } = await retrieve(); + + // Make sure the input looks roughly correct + expect(movieListPages).toBeTruthy(); + expect(moviePages).toBeTruthy(); + expect(Object.keys(moviePages)).toHaveLength(72); + + readJSON.mockImplementation(() => ({ movieListPages, moviePages })); + + const cinema = { name, alternativeNames, geo }; + const output = await findEvents(cinema); + expect( + output.every((movie) => + Object.prototype.hasOwnProperty.call(movie, "matchingHints"), + ), + ).toBe(true); + + const data = JSON.parse(JSON.stringify(output)) + .map(removeMatchingHints) + .map(addTestCategory); + + // Make sure the data looks roughly correct + expect(schemaValidate(data)).toBe(true); + expect(data).toHaveLength(expectedMatches); + expect(data).toMatchSnapshot(); + }, + isRecording ? 600_000 : undefined, + ); + }); +});