Filtering retrieved events

Query parameters can be used to filter the retrieved events by the following criteria.

Ongoing local events

Use to quickly access local (municipality level) events that are upcoming or have not ended yet. Combines the search on a number of description, name, and keyword fields. Locality is defined on the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR. Use local_ongoing_AND=lapset,musiikki to search for the events with both search terms in the description fields and local_ongoing_OR to search for the events with at least one term mentioned. In case you need to realize a more complicated logic and search for a combination of search terms as in (singing OR vocal) AND (workshop OR training) use local_ongoing_OR_setX parameter, where X is a number.

Examples:

event/?local_ongoing_OR=lapsi,musiikki

See the result

event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi

See the result

Ongoing internet events

Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the same as for local ongoing events, three variations: internet_ongoing_AND, internet_ongoing_OR, and internet_ongoing_OR_setX, Note, that local_ongoing and internet_ongoing are mutually exclusive.

Example:

event/?internet_ongoing_AND=lapsi,musiikki

See the result

All ongoing events

All ongoing events, both internet and local combined. Usage is the same as for local ongoing events: all_ongoing_AND, all_ongoing_OR and all_ongoing_OR_setX

Example:

event/?all_ongoing_AND=lapsi,musiikki

See the result

Internet based

Filter for all the events that happen in the internet, both past and upcoming.

Example:

event/?internet_based=true

See the result

Event time

Use start and end to restrict the date range of returned events. Any events that intersect with the given date range will be returned.

The parameters start and end can be given in the following formats:

  • ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
  • yyyy-mm-dd

In addition, today (for start or end of today) and now (for the exact current timestamp) can be used in either parameter to get current events.

Example:

event/?start=today&end=2020-12-31

See the result

event/?start=now&end=today

See the result

You can also use days filter to restrict the date range of returned events. Any events that intersect with the current time and amount of days from current time will be returned.

The parameters start and end cannot be used together with the days parameter.

Example:

event/?days=7

See the result

Event start/end time

Use starts_after, starts_before, ends_after, and ends_before to filter for the events that start and end within certain hours, for example for the ones that start after 17:00 and end before 21:00.

The parameters can be given as:

  • Hours only
  • Hours and minutes separated by a colon

Example:

event/?starts_after=16:30&ends_before=21

See the result

Event weekday

Use weekday to filter for the events that occurs within certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday and 7 is Sunday.

The parameter can include:

  • One weekday
  • Multiple weekdays separated by a comma

Example (Saturdays and Sundays):

event/?weekday=6,7

See the result

Event duration

Use max_duration to filter for the events that last up to a specified time, or min_duration to filter for the events that last at least a specified amount of time.

The parameters are expressed in format:

  • 86400 or 86400s (24 hours)
  • 180m or 3h (3 hours)
  • 3d (3 days)

Example:

event/?max_duration=3d

See the result

Event location

Bounding box

To restrict the retrieved events to a geographical region, use the query parameter bbox in the format

bbox=west,south,east,north

Where west is the longitude of the rectangle's western boundary, south is the latitude of the rectangle's southern boundary, and so on. The default coordinate system is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid parameter.

Example:

event/?bbox=24.9348,60.1762,24.9681,60.1889

See the result

Specific location

To restrict the retrieved events to a known location(s), use the query parameter location, separating values by commas if you wish to query for several locations.

Location ids are found at the place endpoint, which lists the locations in decreasing number of events found. Most locations originate from the Helsinki service point registry (tprek), hence the format tprek:28473. An easy way to locate service points is to browse servicemap.hel.fi, which uses the same location ids, e.g. servicemap.hel.fi/unit/28473.

Example:

event/?location=tprek:28473

See the result

District

To restrict the retrieved events to city district(s), use the query parameter division, separating values by commas if you wish to query for several divisions.

City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.

You may query either by specific OCD division type peruspiiri:malmi, or by division name malmi. The latter query checks all divisions with the name, regardless of division type.

Example:

event/?division=malmi

See the result

Within a distance (or "circle filter")

To restrict the retrieved events to a certain distance from a point, use the query parameters dwithin_origin and dwithin_metres in the format

dwithin_origin=lon,lat&dwithin_metres=distance

Where lon is the longitude of the origin point, lat is the latitude of the origin point, and distance is the radius in metres. Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden with the srid parameter.

Example:

event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000

See the result

Event category

To restrict the retrieved events by category, use the query parameter keyword, separating values by commas if you wish to query for any of several keywords, or the parameter keyword_AND, if you require all provided values (separated by commas) to be present. Use parameter keyword! if you require all provided values (separated by commas) not to be present.

In case you need to realize a more complicated logic and search for a combination of keywords as in (yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185) use keyword_OR_setX parameter, where X is a number.

Keyword ids are found at the keyword endpoint, which lists the keywords in decreasing number of events found. The common keywords used in all events originate from the general Finnish ontology (YSO), hence the format yso:p4354.

The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.

Example:

event/?keyword=yso:p4354

See the result

event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185

See the result

Keyword set search

Some services maintain curated keyword sets, which can also be used in search with query parameters keyword_set_AND and keyword_set_OR. As names of the keyword sets can repeat between the services, ids should be supplied. Say, we have one keyword set Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request /event/?keyword_set_AND=myservice:1,myservice:2 would return the events matching the following expression: (rock OR jazz) AND (workshop OR seminar).

Event last modification time

To find events that have changed since you last polled Linkedevents API (to e.g. update your event cache), it is best to use the query parameter last_modified_since. This allows you to only return data that has changed after your last update. You may also include events that have been deleted in the API in the results by using the show_deleted filter. This allows you to update your cache with all added, modified and deleted events without having to fetch *all* future events every time.

Example:

event/?last_modified_since=2020-04-07&show_deleted=true

See the result

Specific ids

To find events that have specific id use parameter ids, separating values by commas if you wish to query for several event ids.

Example:

event/?ids=helsinki:1

See the result

Event status

Events in Linkedevents (indicated by the event_status field) may be either scheduled as planned (EventScheduled), rescheduled if their start time has changed after they were first published (EventRescheduled), cancelled if they were cancelled altogether after publication (EventCancelled), or postponed to the indefinite future if they could not be organized at the original time (EventPostponed). These statuses stem from schema.org.

You may filter events with only the desired status with the event_status filter.

Example:

event/?event_status=EventCancelled

See the result

It is also possible to use multiple event_status parameters in a single query. Statuses must be separated by a comma.

Example:

event/?event_status=EventCancelled,EventPostponed

Event type

Events in Linkedevents (indicated by the type_id field) may be event (General), course (Course) or volunteering (Volunteering). By default, only events with General type_id are returned.

You may filter events with only the desired type with the event_type filter, separating values by commas if you wish to query for several types.

Example:

event/?event_type=General,Course

See the result

Event text

To find out events that contain a specific string in any of the text fields, use the query parameter text.

Example:

event/?text=shostakovich

See the result

Combined text

While the text search is looking for the events containg exact matches of the search string, combined_text filtering finds events with exact text match for event text fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works similar ways as keyword free_text filtering.

Example:

event/?combined_text=lapppset

See the result

Use full_text to perform advanced PostgreSQL full-text search with weighted relevance ranking. This search method provides more sophisticated results than basic text matching by:

  • Searching across multiple fields with different priority levels
  • Supporting stemming and language-specific text processing
  • Ranking results by relevance when no other sorting is specified

The search covers the following fields with weighted priorities:

  • Highest priority (A): Event names, location names
  • High priority (B): Keywords, audience keywords
  • Medium priority (C): Short descriptions
  • Lowest priority (D): Full descriptions

Use full_text_language to specify the search language. Accepts single language (e.g., 'fi') or comma-separated multiple languages (e.g., 'fi,en,sv'). Supported languages: fi, en, sv, zh_hans, ru, ar. Defaults to 'fi' if not specified.

Examples:

event/?full_text=musiikki

See the result

event/?full_text=music&full_text_language=en

See the result

event/?full_text=lapset&full_text_language=fi,en,sv

See the result

Event price

Events may or may not contain the offers field that lists event pricing. To return only free or non-free events, use the query parameteris_free. However, note that from some data sources, no event pricing info is available, so this filter will only return those events which have pricing data available.

Example:

event/?is_free=true

See the result

Event language

To find events that have a set language or event data translated into that language, use the query parameter language. If you only wish to see events that have a set language, use the in_language parameter, and if you only want event data translated to a set language, use the translation parameter.

Supported languages are found at the language endpoint, which also lists which languages have translations available. Currently, translations are supported in fi, sv, en, ru, zh_hans, and ar.

Example:

event/?language=ru

See the result

Event audience age boundaries.

To find events that are designed for specific age audiences use the query paramteres audience_min_age_lt, audience_min_age_gt, audience_max_age_lt, audience_max_age_gt.

audience_min_age_lt returns the events whose minimal age is lower than or equals the specified value, audience_min_age_gt returns the events whose minimal age is greater than or equals the specified value. max_age parameteres, naturally, work the same way only for the maximum age of the event audience. Note, that the events that are not designed for the specific audiences will be omitted.

audience_max_age and audience_min_age parameters without lt and gt modifiers are left for backward compatibility only and should not be employed.

Example:

event/?audience_min_age_gt=10

See the result

Select events suitable for certain age.

To find events that are suitable for certain age use the query paramter suitable_for that returns all the events that are suitable for the age or age range specified. Under the hood it excludes all the events that have max age limit below or min age limit above the age specified. Suitable events with just one age boundary specified are returned, events with no age limits specified are excluded. Query parameter can take either one or two arguments, the order of parameters when specifying the age range is not important.

Examples:

event/?suitable_for=12

See the result

event/?suitable_for=12,14

See the result

Event publisher

To find out events that are published by a specific organization, use the query parameter publisher, separating values by commas if you wish to query for several publishers.

Existing publisher organizations are found at the organization endpoint. City of Helsinki internal publishers have ids of the form ahjo:origin_id as they originate from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External publishers may have their own namespaces, ids and hierarchies.

Also, it is possible to fetch events under a specific publisher organization hierarchy (say City of Helsinki) by using the parameter publisher_ancestor, which returns all events published by any suborganizations (at any level) of the given organization.

Example:

event/?publisher=ytj:0586977-6

See the result

event/?publisher_ancestor=ahjo:00001

See the result

Event data source

To find out events that originate from a specific source system, use the query parameter data_source. All event ids are of the form data_source:origin_id, so this allows you to return only events coming to Linkedevents from a specific data system. helsinki is the name of our own data source, i.e. events where Linkedevents API itself is the master data.

Example:

event/?data_source=helsinki

See the result

Event hierarchy

Events in linkedevents may be either standalone events, or they may have super or sub events. There are two types of super events, indicated in the field super_event_type by recurring (repeating events, event series) and umbrella (festivals etc.).

recurring events last for a period and have sub_events that all have similar data, but different dates.

umbrella events last for a period and may have different sub_events, including recurring events (i.e. an umbrella festival may have a recurring theater play sub_event, which may have several nights as sub_events.)

Super event type

You may use the query parameter super_event_type, comma separated, to get only super events of specific types. You may use none if you want non-super events included.

Example:

event/?super_event_type=umbrella,none

See the result

Super event

You may use the query parameter super_event, comma separated, to get all subevents for specific superevents. You may use none if you want all events which have no superevent included.

Example:

event/?super_event=linkedevents:agg-103

See the result

Hide super event

You may use the query parameter hide_super_event to exclude super events from the response.

Example:

event/?hide_super_event=true

See the result

Hide recurring children

You may use the query parameter hide_recurring_children to hide all child events for super events which are of type recurring.

Example:

event/?hide_recurring_children=true

See the result

Sub events

You may use the query parameter hide_recurring_children_sub_events in pair with hide_recurring_children to apply other filters to child events.

If you want to get only super_events of weekend events then pair hide_recurring_children and hide_recurring_children_sub_events with weekday=6,7

Example:

event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7

See the result

Event with registration

To find out events with or without a registration, use the query parameterregistration.

Example:

event/?registration=true

See the result

Open enrolment

Two endpoints show the events that have connected registrations and have places either at the event itself enrolment_open or in the waiting lists enrolment_open_waitlist. Note that the latter query parameter when set to true returns also the events that have open spots at the event itself. Null values are regarded as unlimited number of spots at the event or in the waiting list.

For example:

event/?enrolment_open_waitlist=true

See the result

Enrolment open on a given date

It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.

enrolment_open_on parameter displays events where the given datetime is within the enrolment_start_time and enrolment_end_time of the events. If an event has a registration, the registration's enrolment start and end times will be preferred over the event's times.

For example:

event/?enrolment_open_on=2024-02-19T12:00:00

See the result

Attendee capacity

Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:

Filtering for maximum_attendee_capacity

It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.

maximum_attendee_capacity_gte parameter displays events with maximum attendee capacity greater than or equal the applied parameter (integer value)

Example:

event/?maximum_attendee_capacity_gte=10

See the result

maximum_attendee_capacity_lte parameter displays events with maximum attendee capacity less than or equal the applied parameter (integer value)

Example:

event/?maximum_attendee_capacity_lte=10

See the result

Filtering for minimum_attendee_capacity

It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.

minimum_attendee_capacity_gte parameter displays events with minimum attendee capacity greater than or equal the applied parameter (integer value)

Example:

event/?minimum_attendee_capacity_gte=10

See the result

minimum_attendee_capacity_lte parameter displays events with minimum attendee capacity less than or equal the applied parameter (integer value)

Example:

event/?minimum_attendee_capacity_lte=10

See the result

Remaining registration attendee or waiting list capacity

Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:

Filtering for registration remaining_attendee_capacity

It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.

registration__remaining_attendee_capacity__gte parameter displays events where registration's remaining attendee capacity is greater than or equal the applied parameter (integer value)

Example:

event/?registration__remaining_attendee_capacity__gte=10

See the result

registration__remaining_attendee_capacity__isnull parameter displays events where registration's remaining attendee capacity is or is not NULL

The values True, true and 1 are all considered to be "true".

The values False, false and 0 are all considered to be "false".

Example:

event/?registration__remaining_attendee_capacity__isnull=true

See the result

Filtering for registration remaining_waiting_list_capacity

It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.

registration__remaining_waiting_list_capacity__gte parameter displays events where registration's remaining waiting list capacity is greater than or equal the applied parameter (integer value)

Example:

event/?registration__remaining_waiting_list_capacity__gte=10

See the result

registration__remaining_waiting_list_capacity__isnull parameter displays events where registration's remaining waiting list capacity is or is not NULL

The values True, true and 1 are all considered to be "true".

The values False, false and 0 are all considered to be "false".

Example:

event/?registration__remaining_waiting_list_capacity__isnull=true

See the result

Filtering for authenticated users

By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users

Show all events

show_all parameter displays all events authenticated user can edit, including drafts, and public non-editable events

Example:

event/?show_all=true

See the result

Publication status

Events in Linkedevents (indicated by the publication_status field) may be either (draft) if the event is not published yet or (public) for published events.

You may filter events with only the desired publication status with the publication_status filter.

Example:

event/?publication_status=draft

See the result

Only editable events

admin_user parameter displays all events authenticated user can edit, including drafts, but no other public events

Example:

event/?admin_user=true

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

Getting detailed data

In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.

If you want to include the complete data from related resources in the current response, use the keyword include. Please note, however, that including all the resources inlined in *every* event will result in a huge number of duplicate data in the json, making the json very slow to generate and process and causing considerable API load and long response times when too many such requests are made. Therefore, if you are listing the maximum number of events (100) or updating your cache with all events, please consider caching the keyword and location data separately to prevent unnecessary API slowdown and continuous repeated work. Keyword and location data seldom change and are easily fetched from their own endpoints separately.

Example:

event/?include=location,keywords

See the result

Ordering

Default normal search ordering is descending order by -last_modified_time. Default full text search ordering is based on search relevance rank and id (-rank,id). You may also order results by start_time, end_time, name, duration, enrolment_start_time, enrolment_end_time, registration__enrolment_start_time, registration__enrolment_end_time, enrolment_start and enrolment_end. Descending order is denoted by adding - in front of the parameter, default order is ascending.

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

The ordering filters enrolment_start and enrolment_end have two notable differences compared to the rest of the ordering filters related to enrolment start and enrolment end times:

First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.

Second, if neither the event's registration nor the event has enrolment times defined (enrolment_start_time and enrolment_end_time are both NULL), the event will be placed at the end of the results list regardless of whether ascending or descending order was used.

GET /v1/event/?format=api&page=212&weekday=6%2C7
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json ;utf-8
Vary: Accept

{
    "meta": {
        "count": 6639,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=213&weekday=6%2C7",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=211&weekday=6%2C7"
    },
    "data": [
        {
            "id": "kulke:64554",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://hiff.fi/rakkautta-anarkiaa/info/#lippuinfo"
                    },
                    "price": {
                        "fi": "13 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152345,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-09-09T10:14:55.348374Z",
                    "last_modified_time": "2024-09-09T10:14:55.348388Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758012.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152345/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-09-09T10:14:55.323215Z",
            "last_modified_time": "2024-09-09T10:14:55.409325Z",
            "date_published": null,
            "start_time": "2024-09-28T10:45:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": {
                "fi": "Helsinki International Film Festival – Rakkautta & Anarkiaa ry"
            },
            "short_description": {
                "fi": "Timbuktu-ohjaajan romanttinen draama Norsunluurannikolta Kiinaan uuden alun perässä muuttavasta naisesta on juuri sopivasti haudutettu oodi Wong Kar-wain elokuville."
            },
            "description": {
                "fi": "<p>Timbuktu-ohjaajan romanttinen draama Norsunluurannikolta Kiinaan uuden alun perässä muuttavasta naisesta on juuri sopivasti haudutettu oodi Wong Kar-wain elokuville.</p><p>Morsian saa tietää hääpäivänsä alla sulhasensa pettäneen häntä. Suhteen tulevaisuus vaikuttaa liian synkältä kestettäväksi. Sulhanen ei osoita katumusta, vaan syyttää morsiantaan mustasukkaisuudesta – kuten yhä tyypillisempää on nyky-yhteiskunnassa.</p><p>“En ole mustasukkainen”, morsian, Aya, vastaa. ”En halua valheiden ja katkeruuden varaan rakennettua tulevaisuutta.” Heidän hääpäivänään Aya torjuu sulhasensa Toussaintin luoden ainutlaatuisen sävyn elokuvalle, joka etenee tarinaksi aistillisuudesta, rakkaudesta, siirtolaisuudesta, konflikteista sekä yrityksistä löytää yhteys kahden mantereen, Afrikan ja Aasian, välillä.</p><p>Ayan matka vie Norsunluurannikolta Kiinan Guangzhouhun, jossa hän rakastuu teeliikkeen omistavaan vanhempaan kiinalaiseen pomonsa Caihin. Cain synkkä menneisyys kuitenkin varjostaa heidän suhdettaan kuin ikuisuuteen kaikuva ääni.</p><p>Abderrahmane Sissakon (Timbuktu, R&A 2014) romanttinen draama tutkii afroaasialaista suhdedynamiikkaa, jota harvoin kuvataan valtavirtaelokuvassa. Black Tea on huolellisesti rakennettu ja elegantin rytmikäs tarina kulttuurienvälisyydestä, marginalisoiduista ryhmistä ja perhesalaisuuksista. Tässä maailmassa alku heijastelee loppua ja loppu alkua.</p><p>Yemi Abu (kääntänyt Inari Ylinen)</p><p>Ohjaus: Abderrahmane Sissako<br>Näyttelijät: Nina Helo, Han Chang, Ke-Xi Wu<br>Maa: Mauritania, Ranska, Norsunluurannikko, Taiwan, Luxemburg<br>Kielet: mandariinikiina, ranska, englanti, portugali<br>Tekstitykset: englanti<br>Ikäraja: K12<br>Kesto: 110 min<br>Teema: Live, Laugh, Love & Anarchy<br>Avainsanat: Rakkaus, Siirtolaisuus<br>Vuosi: 2024<br>Levittäjä: Gaumont</p>"
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/EDBE828357FEC515D45D38872415F780/Black_Tea"
            },
            "name": {
                "fi": "Black Tea – Rakkautta & Anarkiaa 19.-29.9.2024"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64554/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64553",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://hiff.fi/rakkautta-anarkiaa/info/#lippuinfo"
                    },
                    "price": {
                        "fi": "13 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152344,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-09-09T10:14:55.171903Z",
                    "last_modified_time": "2024-09-09T10:14:55.171916Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758011.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152344/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-09-09T10:14:55.146410Z",
            "last_modified_time": "2024-09-09T10:14:55.231263Z",
            "date_published": null,
            "start_time": "2024-09-28T08:45:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": {
                "fi": "Helsinki International Film Festival – Rakkautta & Anarkiaa ry"
            },
            "short_description": {
                "fi": "Neuvokas pikkukissa pelastautuu suuren tulvan alta laivalle, jossa eläinten täytyy opetella selviytymään yhdessä. Immersiivisen kaunis animaatiomaailma häikäisee."
            },
            "description": {
                "fi": "<p>Neuvokas pikkukissa pelastautuu suuren tulvan alta laivalle, jossa eläinten täytyy opetella selviytymään yhdessä. Immersiivisen kaunis animaatiomaailma häikäisee.</p><p>Kun yksi elokuvan päähenkilöistä on kapybara, tietää että nyt on tarjolla jotain erityistä.</p><p>Flow’n seikkailu alkaa, kun yhtäkkinen vedenpaisumus peittää kaiken alleen ja päähenkilömme, yksinäinen – tai yksin viihtyvä – kissa joutuu pelastautumaan ajelehtivaan purjeveneeseen. Ihmiset ovat kadonneet maailmasta, ja heidän olemassaolostaan kertovat enää vain rakennukset, kelluvat esineet ja valtavat, mystiset patsaat. Kissan lisäksi purjevenettä päätyvät ilmastopakolaisina asuttamaan kultainennoutaja, kapybara, kissamaki ja sihteerilintu, jotka erilaisten luonteidensa myötä joutuvat kestämään toisiaan keskellä aavaa merta. Pintaan nousee paitsi jännitteitä, ennakkoluuloja ja selviytymisviettejä, myös muinaisia merihirviöitä.</p><p>Dialogia ei tarvita, sillä Gints Zilbalodis on herättänyt henkiin erilaisten eläinhahmojensa liikkeet, eleet ja äännähdykset uskomattomalla tarkkuudella – animaatiotiimi on selvästi viettänyt paljon aikaa tutkien kaikkia elokuvassa nähtäviä eläinlajeja. Jokainen kissan- ja koiranomistaja voi hykerrellä läpi tarinan tunnistaessaan lemmikkinsä toimintatapoja kankaalla.</p><p>Zilbalodis on todellinen monitaituri, joka on ohjauksen lisäksi hoitanut säveltämisen, käsikirjoittamisen, tuottamisen ja animoinnin. Tärkein hänen lahjoistaan on kuitenkin sielukkuus, joka loistaa molemmissa elokuvissa ennennäkemättömällä tavalla. Flow’n ilman puhetta kerrotun tarinan, hahmojen, musiikin ja kuvien kauneus ja merkitys sekä särkevät että parantavat sydämen.</p><p>Outi Rehn</p><p>Ohjaus: Gints Zilbalodis<br>Maa: Liettua, Ranska, Belgia<br>Kielet: No dialogue<br>Tekstitykset: N/A<br>Ikäraja: K7<br>Kesto: 84 min<br>Teema: Animoituja unia<br>Avainsanat: Eläimet, Koko perheelle, Huumori, Fantasia, Seikkailu, Matka, Luontosuhde<br>Vuosi: 2024<br>Alkuperäinen nimi: Straume<br>Levittäjä: Njuta Films</p>"
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/E6790F064FB829DC0E8DEEC00CDCAED7/Flow"
            },
            "name": {
                "fi": "Flow – Rakkautta & Anarkiaa 19.-29.9.2024"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64553/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64552",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://hiff.fi/rakkautta-anarkiaa/info/#lippuinfo"
                    },
                    "price": {
                        "fi": "14 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152343,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-09-09T10:14:54.865341Z",
                    "last_modified_time": "2024-09-09T10:14:54.865356Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_757945.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152343/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-09-09T10:14:54.832525Z",
            "last_modified_time": "2024-09-09T10:14:54.929269Z",
            "date_published": null,
            "start_time": "2024-09-27T18:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": {
                "fi": "Helsinki International Film Festival – Rakkautta & Anarkiaa ry"
            },
            "short_description": {
                "fi": "Viggo Mortensenin toinen ohjaustyö siivilöi länkkärin kodikkaan linssin läpi. Vaikka pyssyt ryskyvät maltillisesti, uhreilta ja uhrauksilta ei vältytä."
            },
            "description": {
                "fi": "<p>Viggo Mortensenin toinen ohjaustyö siivilöi länkkärin kodikkaan linssin läpi. Vaikka pyssyt ryskyvät maltillisesti, uhreilta ja uhrauksilta ei vältytä.</p><p>Tanskalainen Olsen (Viggo Mortensen) kohtaa 1860-luvun Yhdysvalloissa ilkikurisen Viviennen (Vicky Krieps). Jäyhän Olsenin ja tulisieluisemman Viviennen välille syntyy kumppanuus, ja vaikka itsemääräämisoikeudestaan kiinni pitävä Vivienne ei suostu naimisiin, alkaa sopuisa yhteiselo nevadalaisen pikkukylän laidalla.</p><p>Rakkaustarinan loppu kuitenkin häämöttää. Jo elokuvan alkuhetkillä Vivienne nukkuu pois, ja Olsen lähtee erämaahan hevosellaan. Mies etsii jotakin – tai ehkä jotakuta.</p><p>Kahdessa aikatasossa liikkuva The Dead Don’t Hurt kaihtaa perinteisen lännenelokuvan äärimaskuliinista patsastelua. Väkivalta on Mortensenin ohjaaman, kirjoittaman ja säveltämän elokuvan maailmassa läsnä kauaskantoisesti, mutta elokuvan ytimenä on Olsenin ja Viviennen suhde. Heidän hellät ja humoristisetkin hetkensä piirtävät lempeän vastakuvan ympäröivän yhteisön julmuudelle.</p><p>Elokuvaa ei aivan voi kutsua feministiseksi länkkäriksi. Mortensen on kuitenkin ujosti tunnustellut maaperää, ja ajoittain hän tavoittaa jotakin raikasta. Phantom Threadilla (2017) läpimurtonsa tehnyt Krieps on Mortensenille lottovoitto – todellinen aavikon ruusu, joka nostaa elokuvan keskivertoa genreteosta sävykkäämmäksi kokonaisuudeksi.</p><p>Riikka Haapanen</p><p>Ohjaus: Viggo Mortensen<br>Näyttelijät: Vicky Krieps, Viggo Mortensen, Solly McLeod<br>Maa: Meksiko, Tanska, Kanada<br>Kielet: englanti, espanja, ranska, tanska<br>Tekstitykset: englanti<br>Ikäraja: K16<br>Kesto: 129 min<br>Teema: Historia uusiksi<br>Avainsanat: Jännitys, Historia, Angsti, Rakkaus<br>Vuosi: 2023<br>Levittäjä: Scanbox Entertainment</p>"
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/5999A1F5D6C3E92D0926547951C6E369/The_Dead_Don_t_Hurt"
            },
            "name": {
                "fi": "The Dead Don't Hurt – Rakkautta & Anarkiaa 19.-29.9.2024"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64552/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64551",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://hiff.fi/rakkautta-anarkiaa/info/#lippuinfo"
                    },
                    "price": {
                        "fi": "14 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152342,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-09-09T10:14:54.612845Z",
                    "last_modified_time": "2024-09-09T10:14:54.612860Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_757944.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152342/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-09-09T10:14:54.559407Z",
            "last_modified_time": "2024-09-09T10:14:54.706424Z",
            "date_published": null,
            "start_time": "2024-09-27T15:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": {
                "fi": "Helsinki International Film Festival – Rakkautta & Anarkiaa ry"
            },
            "short_description": {
                "fi": "Hiljattain edesmenneen Ryuichi Sakamoton viimeisen esiintymisen taltioiva konserttielokuva on visuaalisesti pelkistetty mutta musiikillisesti rikas matka lahjakkaan muusikon elämäntyöhön."
            },
            "description": {
                "fi": "<p>Hiljattain edesmenneen Ryuichi Sakamoton viimeisen esiintymisen taltioiva konserttielokuva on visuaalisesti pelkistetty mutta musiikillisesti rikas matka lahjakkaan muusikon elämäntyöhön.</p><p>Ryuichi Sakamoto oli loistava taiteilija monella alalla: elektronisen musiikin edelläkävijänä, bändinsä YMO:n johtajana, elokuvasäveltäjänä ja näyttelijänä. Viimeisinä vuosinaan hän taisteli syövän kanssa, joka lopulta vei hänet.</p><p>Opus tallentaa Sakamoton viimeisen konsertin syksyllä 2022, vain muutama kuukausi ennen hänen menehtymistään. Tai lahjan, yleisölleen, sillä Sakamoto nauhoitti konsertin omassa studiossaan yhden syyskuisen viikon aikana, vain muutama kuvausryhmän jäsen ja dokumentin ohjaaja, Sakamoton poika Neo Sora, yleisönään.</p><p>Karun yksinkertainen mustavalkoinen taltiointi on väriskaalaltaan kuin Sakamoton pianon koskettimet. Se on taiteilijan viimeinen taistelu musiikkinsa, elämän ja kuoleman kanssa. Valot ja varjot vaihtuvat kunkin musiikkiteoksen tunnelman mukaan ja syvenevät kohden loppua, jossa Sakamoto soittaa miltei täydessä pimeydessä.</p><p>Konsertti kattaa 20 Sakamoton säveltämää teosta YMO:n teknopopista elektronisen konserttimusiikin kautta tunnettuihin elokuvascoreihin, kuten Merry Christmas Mr. Lawrence, Viimeinen keisari ja The Revenant.</p><p>Yksi suurista on poissa, mutta hänen musiikkinsa on jäänyt.</p><p>Eija Niskanen</p><p>Ohjaus: Neo Sora<br>Maa: Japani<br>Kielet: No dialogue<br>Ikäraja: S<br>Kesto: 104 min<br>Teema: Feel the Beat!<br>Avainsanat: Musiikki, Taide<br>Vuosi: 2023<br>Levittäjä: Njuta Films</p>"
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/40A33594EC7E7E3BFA3F692A8F8FE4E9/Ryuichi_Sakamoto_Opus"
            },
            "name": {
                "fi": "Ryuichi Sakamoto | Opus – Rakkautta & Anarkiaa 19.-29.9.2024"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64551/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agi5lzuv2m",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11733/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi5lzuvhq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi5lzuvqy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi5lzuvta/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi5lzuvvm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi5lzuvya/?format=api"
                }
            ],
            "images": [
                {
                    "id": 150743,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-04-23T12:43:34.341615Z",
                    "last_modified_time": "2024-05-17T10:30:18.739899Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/Nimet%C3%B6n_malli_5.png",
                    "name": "Kahvihetki.",
                    "cropping": "293,0,1707,1414",
                    "photographer_name": "Pixabay",
                    "alt_text": "Kolme kahvikuppia.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150743/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2024-09-09T07:44:51.392062Z",
            "last_modified_time": "2024-09-09T07:44:51.392084Z",
            "date_published": null,
            "start_time": "2024-09-13T06:00:00Z",
            "end_time": "2024-11-08T09:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "short_description": {
                "fi": "Alle kouluikäisille lapsiperheille suunnattu Perhekahvila käynnistyy Entressen kirjastossa. ",
                "sv": "Familjekafé, som riktar sig till familjer med barn under skolåldern.",
                "en": "Family Café is an event for families with children under school age, which will start in the Entresse library. "
            },
            "description": {
                "fi": "<p>Alle kouluikäisille lapsiperheille suunnattu Perhekahvila käynnistyy Entressen kirjastossa.</p><p>Tervetuloa laulamaan, loruttelemaan, kuuntelemaan satuja ja viettämään aikaa alueen muiden vanhempien kanssa kahvikupin äärellä.</p><p>Järjestetään joka toinen perjantai klo 9-11 Entressen kirjaston Sinisessä huoneessa.</p><p>Järjestetään:</p><p>30.8.</p><p>13.9.</p><p>27.9.</p><p>11.10.</p><p>25.10.</p><p>8.11.</p><p>Tapahtumaan on esteetön pääsy.</p>",
                "sv": "<p>Familjekafé, som riktar sig till familjer med barn under skolåldern, kommer att starta i Entresse biblioteket.</p><p>Välkommen att sjunga, rimma, lyssna på sagor och umgås med andra föräldrar i området över fika.</p><p>Händer varje fredag från 9 till 11 i Sininen huone på Entresse biblioteket.</p><p>Händer:</p><p>30.8.</p><p>13.9.</p><p>27.9.</p><p>11.10.</p><p>25.10.</p><p>8.11.</p><p>Evenemanget är på finska.</p><p>Evenemanget är tillgängligt för rörelsehindrade.</p>",
                "en": "<p>Family Café is an event for families with children under school age, which will start in the Entresse library.</p><p>Welcome to sing, rhyme, listen to fairy tales and spend time with other parents in the area over a cup of coffee.</p><p>Organized on every Friday from 9 to 11 in the Sininen huone at Entresse library.</p><p>Event is organized on:</p><p>30.8.</p><p>13.9.</p><p>27.9.</p><p>11.10.</p><p>25.10.</p><p>8.11.</p><p>The event is in Finnish.</p><p>The event is accessible for all.</p>"
            },
            "info_url": null,
            "name": {
                "fi": "Perhekahvila",
                "sv": "Familjekafé",
                "en": "Family Café"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Sininen huone",
                "sv": "Sininen huone",
                "en": "Sininen huone"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi5lzuv2m/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agiy5ldmne",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agiy5ldmbq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agiy5ldmle/?format=api"
                }
            ],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-08-26T11:39:11.557683Z",
            "last_modified_time": "2024-09-09T07:11:43.039667Z",
            "date_published": null,
            "start_time": "2024-09-12T14:00:00Z",
            "end_time": "2024-10-10T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "short_description": {
                "fi": "Lukudisko lapsiperheille\nTule lukemaan kuvia ja tanssimaan yhdessä! "
            },
            "description": {
                "fi": "<p>Lukudisko lapsiperheille</p><p>Tule lukemaan kuvia ja tanssimaan yhdessä! Alle kouluikäisten lasten ja vanhempien yhteisessä Lukudiskossa kirjoja lähestytään kuvien kautta – kirjoihin liittyvää musiikkia ja tanssia unohtamatta.</p><p>Mitä kuvassa näkyy? Mitä ääniä kuvassa kuuluu? Mitä tuoksuja kuvan maailmassa on? Keskustelua vetävät kirjastolaiset Merituuli Hemilä ja Elina Roukala.</p>"
            },
            "info_url": null,
            "name": {
                "fi": "Lukudisko lapsiperheille"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Sininen huone"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agiy5ldmne/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64545",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://hiff.fi/rakkautta-anarkiaa/info/#lippuinfo"
                    },
                    "price": {
                        "fi": "13 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152335,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-09-06T15:14:12.749146Z",
                    "last_modified_time": "2024-09-06T15:14:12.749163Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_757943.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152335/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-09-06T15:14:12.732737Z",
            "last_modified_time": "2024-09-06T15:14:12.790463Z",
            "date_published": null,
            "start_time": "2024-09-27T13:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": {
                "fi": "Helsinki International Film Festival – Rakkautta & Anarkiaa ry"
            },
            "short_description": {
                "fi": "Räväköistä dokumenteistaan tunnetun Chris Smithin (Tiger King) uutuus seuraa kokeellisen rockyhtyeen Devon järjen ja tarkoituksen vastaista matkaa maineeseen."
            },
            "description": {
                "fi": "<p>Räväköistä dokumenteistaan tunnetun Chris Smithin (Tiger King) uutuus seuraa kokeellisen rockyhtyeen Devon järjen ja tarkoituksen vastaista matkaa maineeseen.</p><p>Huoli ihmisen elämäntavan kestämättömyydestä synnyttää eksentrisen musiikkimatkan, joka saa nimekseen Devo. 1970-luvulla kukoistuksensa nähnyt rockyhtye haastaa sekä kokeellista että kaupallista mediamaisemaa. Yhtyeellä on painava missio pelastaa maailma musiikin, videon sekä hupsuttelun keinoin.</p><p>Dokumentti on kohteelleen uskollinen. Yhtyeen jäsenet toimivat kertojaääninä, mutta vaikuttavin kerronta on musiikin ja kuvan elinvoimaisessa virrassa. Huomiota voi kiinnittää myös siihen, ettei elokuvan jälkeen edelleenkään tiedä juuri mitään henkilöistä, jotka muodostivat Devon. Devo on entiteetti – yhtye, konsepti sekä viime kädessä tuote – ja tämä on legenda Devosta.</p><p>Ohjaaja Chris Smithillä onkin silmää unelma edellä syntyneille tarinoille. Viime vuosien elokuvissa Jim & Andy: The Great Beyond (2017) ja 100 Foot Wave (2021) on niin ikään keskiössä intohimoonsa sitoutuneet eksentrikot, jotka hahmoina ovat rakastettavia ja ymmärrettäviä. Samaa voi kai varovasti todeta myös dokumentaristin hiteistä Fyre (2019) ja Tiger King (2020), joissa intohimon tiellä eivät seiso edes moraalin rajat.</p><p>Alina Tolvanen</p><p>Ohjaus: Chris Smith<br>Maa: Yhdysvallat, Iso-Britannia<br>Kielet: englanti<br>Tekstitykset: osittain englanti<br>Ikäraja: K12<br>Kesto: 93 min<br>Teema: Feel the Beat!<br>Avainsanat: Musiikki, Yhteiskunta<br>Vuosi: 2024<br>Levittäjä: Fremantle</p>"
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/92914805C4034B51CCF39262BCB7ED0A/Devo"
            },
            "name": {
                "fi": "Devo – Rakkautta & Anarkiaa 19.-29.9.2024"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64545/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64542",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152329,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-09-06T14:14:16.396668Z",
                    "last_modified_time": "2024-09-06T14:14:16.396683Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751747.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152329/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-09-06T14:14:16.379840Z",
            "last_modified_time": "2024-09-06T14:14:16.431949Z",
            "date_published": null,
            "start_time": "2024-09-20T14:45:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "short_description": {
                "fi": "Pohjois-Helsingin musiikkiopisto järjestämää ilmaisohjelmaa Malmitalon 30-vuotisjuhlaviikon merkeissä.",
                "sv": "Ett gratisprogram ordnat av Pohjois-Helsingin musiikkiopisto för att fira 30-årsjubileet för Malms kulturhus.",
                "en": "A free programme by the North Helsinki Music Institute on the occasion of Malmitalo's 30th anniversary."
            },
            "description": {
                "fi": "<p>Pohjois-Helsingin musiikkiopisto järjestämää ilmaisohjelmaa Malmitalon 30-vuotisjuhlaviikon merkeissä.</p><p>Pohjois-Helsingin musiikkiopiston oppilaat esiintyvät Malmitalon aulassa.</p>",
                "sv": "<p>Ett gratisprogram ordnat av Pohjois-Helsingin musiikkiopisto för att fira 30-årsjubileet för Malms kulturhus.</p>",
                "en": "<p>A free programme by the North Helsinki Music Institute on the occasion of Malmitalo's 30th anniversary.</p>"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/5008FC66BAE07DE675920DA6106A6457/Malmitalo_30_vuotta_PHMO_sta_kajahtaa_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/5008FC66BAE07DE675920DA6106A6457/PHMO_klingar_",
                "en": "http://www.malmitalo.fi/en/events/event/5008FC66BAE07DE675920DA6106A6457/Coming_to_you_from_North_Helsinki_Music_Institute_"
            },
            "name": {
                "fi": "Malmitalo 30 vuotta: PHMO:sta kajahtaa!",
                "sv": "PHMO klingar!",
                "en": "Coming to you from North Helsinki Music Institute!"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64542/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agi4ogzmsu",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi4ogzlwa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi4ogzlym/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi4ogzl2u/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi4ogzl44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi4ogzl7i/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi4ogzmbq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi4ogzmd4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi4ogzmiy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi4ogzmle/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi4ogzmnq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi4ogzmqi/?format=api"
                }
            ],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-09-06T10:29:12.098904Z",
            "last_modified_time": "2024-09-06T11:35:46.507317Z",
            "date_published": null,
            "start_time": "2024-09-17T11:00:00Z",
            "end_time": "2024-12-03T13:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": {
                "fi": "Vantaan sanataidekoulu | Espoon harrastuspolku",
                "sv": "Vantaan sanataidekoulu | Hobbystigen i Esbo",
                "en": "Vantaan sanataidekoulu | Espoo Hobby Path"
            },
            "short_description": {
                "fi": "Tarinoiden taika- ryhmässä pääset tutustumaan sanataiteen erilaisiin ilmaisumuotoihin",
                "sv": "I gruppen Berättelsernas magi får du bekanta dig med olika uttrycksformer inom ordkonsten",
                "en": "In the Magic of Stories group, you will get to know different forms of expression of literary art"
            },
            "description": {
                "fi": "<p>Tarinoiden taika- ryhmässä pääset tutustumaan sanataiteen erilaisiin ilmaisumuotoihin: lukemaan ja käsikirjoittamaan tarinoita, kirjoittamaan lyriikkaa. Toteutamme myös draamaleikkejä, animaatioita ja muita pieniä esityksiä kuten kuunnelmia, digitarinoita ja varjoteatteria. Pääset myös esittämään toiveita sisällöstä!</p><p>Ryhmään ei tarvitse ilmoittautua, mutta ilmoittautuminen on mahdollista paikan varaamiseksi. Ilmoittautuminen harrastusryhmiin käynnistyy to 29.8. alkaen. Harrastusryhmät käynnistyvät viikolla 38 maanantaista 16.9.2024 alkaen. Harrastus kestää koko lukuvuoden ajan, ellei muuta mainita. Harrastusryhmät eivät kokoonnu koulujen loma-aikoina. Harrastus on osallistujille maksuton. Espoon kaupunki on vakuuttanut harrastusryhmien osallistujat.</p><p>Harrastusryhmän järjestäjä on yhteydessä huoltajiin harrastuksen käytännön asioista. Olettehan yhteydessä harrastuksen järjestäjään, mikäli haluatte perua lapsen osallistumisen tai teillä on kysyttävää harrastuksesta.</p><p>Espoon harrastuspolku tarjoaa maksuttomia, lasten ja nuorten toiveiden mukaisia harrastuksia 3.–9.-luokkalaisille koulupäivien jälkeen kouluilla, niiden läheisyydessä tai etäyhteydellä. Espoon harrastuspolku toteuttaa valtakunnallista harrastamisen Suomen mallia Espoossa.</p>",
                "sv": "<p>I gruppen Berättelsernas magi får du bekanta dig med olika uttrycksformer inom ordkonsten: läsa och skriva manus samt skriva lyrik. Vi genomför också dramalekar, animationer och andra små föreställningar såsom hörspel, digitala berättelser och skuggteater. Du kan också framföra önskemål om innehållet!</p><p>Du behöver inte anmäla dig till gruppen, men det är möjlig att registrera för att reservera en plats. Anmälan till hobbygrupper öppnas den 29 augusti. Hobbygrupperna börjar vecka 38, fr.o.m. måndagen den 16 september 2024. Hobbyn pågår hela läsåret, om inte annat nämns. Hobbygrupperna samlas inte under skolloven. Hobbyn är avgiftsfri för deltagarna. Esbo stad har försäkrat deltagarna i hobbygrupperna.</p><p>Den som ordnar hobbygruppen kontaktar vårdnadshavarna om praktiska frågor rörande hobbyverksamheten. Kontakta den som ordnar hobbyn om ni vill annullera barnets deltagande eller om ni har frågor om hobbyn.</p><p>Hobbystigen i Esbo erbjuder avgiftsfria hobbyer enligt barnens och ungdomarnas önskemål för elever i årskurs 3–9 efter skoldagarna i skolorna, i närheten av skolorna eller på distans. Hobbystigen i Esbo förverkligar Finlandsmodellen för hobbyverksamhet i Esbo</p>",
                "en": "<p>In the Magic of Stories group, you will get to know different forms of expression of literary art; you will get to read and write stories and poetry. We will also produce drama games, animations and other small performances such as radio plays, digital stories and shadow theatre. You will also be able to express your wishes concerning the content!</p><p>There is no need to sign up for the group, but it is possible to register to reserve a place.&nbsp;Registration for hobby groups will start on 29 August. The hobby groups will start in week 38 on Monday, 16 September 2024 onwards. The hobby will continue throughout the school year unless otherwise stated. The hobby groups will not meet during school holidays. The hobbies are free-of-charge to the participants. The City of Espoo has insured the participants of the hobby groups.</p><p>The organiser of the hobby group contacts the guardians about the practical aspects of the activity. Please contact the organiser of the activity if you want to cancel your child’s participation or ask more about the activity.</p><p>The Espoo Hobby Path offers free hobbies according to children’s and young people’s wishes. The activities are for pupils attending grades 3–9 and take place after the school day at the school, in its vicinity or via a remote connection. The Espoo Hobby Path implements the national Finnish Model for Leisure Activities in Espoo.</p>"
            },
            "info_url": null,
            "name": {
                "fi": "Tarinoiden taika -sanataidepaja 3.-6.-luokkalaisille",
                "sv": "Berättelsernas magi -ordkonstverkstad för åk 3-6",
                "en": "The Magic of Stories - literary art workshop for 3rd-6th graders"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Yhteystiedot: info@sanataidekoulu.fi",
                "sv": "Kontaktinformation: info@sanataidekoulu.fi",
                "en": "Contact details: info@sanataidekoulu.fi"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi4ogzmsu/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agi4ogzksq",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi4ogzjoi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi4ogzjwi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi4ogzjy4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi4ogzj34/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi4ogzj6m/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi4ogzka4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi4ogzkdm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi4ogzkiu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi4ogzkla/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi4ogzknm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi4ogzkpy/?format=api"
                }
            ],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-09-06T10:35:45.545696Z",
            "last_modified_time": "2024-09-06T11:34:15.240227Z",
            "date_published": null,
            "start_time": "2024-09-18T14:00:00Z",
            "end_time": "2024-12-04T16:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": {
                "fi": "Natural Voices | Espoon harrastuspolku",
                "sv": "Natural Voices  | Hobbystigen i Esbo",
                "en": "Natural Voices | Espoo Hobbypath"
            },
            "short_description": {
                "fi": "Räppipajassa pääset rap-musiikin ammattilaisen opastuksella tutustumaan rap-musiikin perustaitoihin ja kokeilemaan rap-musiikin tekemistä ja esittämistä. ",
                "sv": "I rapverkstaden får du under handledning av en yrkesperson inom rapmusik bekanta dig med de grundläggande färdigheterna i rapmusik.",
                "en": "In the rap music workshop, rap music professionals will help you learn the basic skills of rap music and try making and performing rap music."
            },
            "description": {
                "fi": "<p>Räppipajassa pääset rap-musiikin ammattilaisen opastuksella tutustumaan rap-musiikin perustaitoihin ja kokeilemaan rap-musiikin tekemistä ja esittämistä. Opit kirjoittamaan omaa rap-lyriikkaa ja räppäämään sekä nauhoittamaan valmiita tuotoksia. Tutustut uusiin kavereihin ja pääset myös vaikuttamaan harrastuksen sisältöihin!&nbsp;</p><p>Ryhmään ei tarvitse ilmoittautua, mutta ilmoittautuminen on mahdollista paikan varaamiseksi. Ilmoittautuminen harrastusryhmiin käynnistyy to 29.8. alkaen. Harrastusryhmät käynnistyvät viikolla 38 maanantaista 16.9.2024 alkaen. Harrastus kestää koko lukuvuoden ajan, ellei muuta mainita. Harrastusryhmät eivät kokoonnu koulujen loma-aikoina. Harrastus on osallistujille maksuton. Espoon kaupunki on vakuuttanut harrastusryhmien osallistujat.</p><p>Harrastusryhmän järjestäjä on yhteydessä huoltajiin harrastuksen käytännön asioista. Olettehan yhteydessä harrastuksen järjestäjään, mikäli haluatte perua lapsen osallistumisen tai teillä on kysyttävää harrastuksesta.</p><p>Espoon harrastuspolku tarjoaa maksuttomia, lasten ja nuorten toiveiden mukaisia harrastuksia 3.–9.-luokkalaisille koulupäivien jälkeen kouluilla, niiden läheisyydessä tai etäyhteydellä. Espoon harrastuspolku toteuttaa valtakunnallista harrastamisen Suomen mallia Espoossa.</p>",
                "sv": "<p>I rapverkstaden får du under handledning av en yrkesperson inom rapmusik bekanta dig med de grundläggande färdigheterna i rapmusik och pröva på att skapa och framföra rapmusik. Du lär dig skriva din egen raplyrik och rappa och spela in färdiga låtar. Du får bekanta dig med nya kompisar och kan också påverka innehållet i hobbyn!</p><p>Du behöver inte anmäla dig till gruppen, men det är möjlig att registrera för att reservera en plats. Anmälan till hobbygrupper öppnas den 29 augusti. Hobbygrupperna börjar vecka 38, fr.o.m. måndagen den 16 september 2024. Hobbyn pågår hela läsåret, om inte annat nämns. Hobbygrupperna samlas inte under skolloven. Hobbyn är avgiftsfri för deltagarna. Esbo stad har försäkrat deltagarna i hobbygrupperna.</p><p>Den som ordnar hobbygruppen kontaktar vårdnadshavarna om praktiska frågor rörande hobbyverksamheten. Kontakta den som ordnar hobbyn om ni vill annullera barnets deltagande eller om ni har frågor om hobbyn.</p><p>Hobbystigen i Esbo erbjuder avgiftsfria hobbyer enligt barnens och ungdomarnas önskemål för elever i årskurs 3–9 efter skoldagarna i skolorna, i närheten av skolorna eller på distans. Hobbystigen i Esbo förverkligar Finlandsmodellen för hobbyverksamhet i Esbo.</p>",
                "en": "<p>In the rap music workshop, rap music professionals will help you learn the basic skills of rap music and try making and performing rap music. You will learn to write your own rap lyrics, rap and record your own finished productions. You will meet new friends and also get to influence the content of the hobby!</p><p>There is no need to sign up for the group, but it is possible to register to reserve a place.&nbsp;Registration for hobby groups will start on 29 August. The hobby groups will start in week 38 on Monday, 16 September 2024 onwards. The hobby will continue throughout the school year unless otherwise stated. The hobby groups will not meet during school holidays. The hobbies are free-of-charge to the participants. The City of Espoo has insured the participants of the hobby groups.</p><p>The organiser of the hobby group contacts the guardians about the practical aspects of the activity. Please contact the organiser of the activity if you want to cancel your child’s participation or ask more about the activity.</p><p>The Espoo Hobby Path offers free hobbies according to children’s and young people’s wishes. The activities are for pupils attending grades 3–9 and take place after the school day at the school, in its vicinity or via a remote connection. The Espoo Hobby Path implements the national Finnish Model for Leisure Activities in Espoo.</p>"
            },
            "info_url": null,
            "name": {
                "fi": "Räppipaja 6.-9.-luokkalaisille",
                "sv": "Rapmusikverkstad för åk 6-9",
                "en": "Rap Music workshop for 6th-9th graders"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Yhteystiedot: virvemariamagdaleno@gmail.com",
                "sv": " Kontaktinformation: virvemariamagdaleno@gmail.com",
                "en": "Contact details: virvemariamagdaleno@gmail.com"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi4ogzksq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kultus:agi4n5fray",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/helsinki:internet/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:1/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:30/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    },
                    "info_url": null,
                    "price": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    }
                }
            ],
            "data_source": "kultus",
            "publisher": "ahjo:u480400",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:56/?format=api"
                }
            ],
            "created_time": "2024-09-06T10:50:10.610644Z",
            "last_modified_time": "2024-09-06T10:54:12.466501Z",
            "date_published": null,
            "start_time": "2024-09-28T09:00:00Z",
            "end_time": "2024-09-30T11:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": "2024-09-21T12:00:00+03:00",
            "enrolment_end_time": "2024-09-29T12:00:00+03:00",
            "local": false,
            "replaced_by": null,
            "provider": null,
            "short_description": {
                "fi": "Nikon tapahtuma",
                "sv": "",
                "en": ""
            },
            "description": {
                "fi": "<p>Nikon tapahtuma</p>\n",
                "sv": "",
                "en": ""
            },
            "info_url": {
                "fi": "",
                "sv": "",
                "en": ""
            },
            "name": {
                "fi": "Nikon tapahtuma",
                "sv": "",
                "en": ""
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kultus:agi4n5fray/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agixjm5wo4",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:KOTO",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agixjm5wky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agixjm5wm4/?format=api"
                }
            ],
            "images": [
                {
                    "id": 150326,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-04-12T09:43:27.503183Z",
                    "last_modified_time": "2024-04-12T09:43:27.503210Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/instrument-g128ad72a9_1920.jpg",
                    "name": "",
                    "cropping": "420,0,1500,1080",
                    "photographer_name": "",
                    "alt_text": "kellopeli",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150326/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-08-08T05:55:03.964704Z",
            "last_modified_time": "2024-09-06T10:43:28.452395Z",
            "date_published": null,
            "start_time": "2024-09-04T07:30:00Z",
            "end_time": "2024-10-04T08:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "short_description": {
                "fi": "Vauvamuskarissa opetellaan tunnettuja ja uudempiakin lauluja, ja soitetaan ja tutustutaan monipuolisesti erilaisiin soittimiin ja leikkeihin musiikin tahdissa."
            },
            "description": {
                "fi": "<p>Varhaisiän musiikkikasvatustunnilla opetellaan tunnettuja ja uudempia kappaleita. Tunneilla soitetaan ja tutustutaan monipuolisesti erilaisiin soittimiin ja leikkeihin musiikin tahdissa. Ei haittaa, vaikka et olisi soittanut tai laulanut aikaisemmin. Tunnilla tutustutaan musiikkiin ja pidetään hauskaa yhdessä lapsen kanssa. Vauvamuskarin kesto on 30 minuuttia. Ryhmään voi osallistua kielitaidosta ja musiikkitaustasta riippumatta. Ryhmä on suunnattu 3kk - 3v ikäisille lapsille. Osallistuminen on maksutonta.</p><p>On suositeltavaa ottaa mukaan oma viltti tai jarrusukat riippuen lapsen iästä. Osallistuthan tunnille vain terveenä.</p><p><br></p><p>Vauvamuskariin ilmoittaudutaan alla olevasta linkistä. Ilmoittautuminen aukeaa 20.8 klo 10.00</p><p><a href=\"https://link.webropol.com/s/vauvamuskari\">https://link.webropol.com/s/vauvamuskari</a></p><p><br></p><p>Ilmoittautuminen aukeaa alla oleviin muskareihin:</p><ul><li>Ison Omenan kirjasto (Nuorten tila VOX) tiistai 3.9 klo 10.30</li><li>Tapiolan kirjasto (Heikki) keskiviikko 4.9 klo 10.30</li><li>Sellon kirjasto (Jaminurkka) tiistai 10.9 klo 10.30</li><li>Lippulaivan kirjasto (Kajuutta) keskiviikko 11.9 klo 10.30</li><li>Nöykkiön kirjasto tiistai 17.9 klo 10.30</li><li>Entressen kirjasto (Jukeboksi) keskiviikko 18.9 klo 10.30</li><li>Viherlaakson kirjasto keskiviikko 25.9 klo 10.30</li><li>Ison Omenan kirjasto (Nuorten tila VOX) tiistai 1.10 klo 10.30</li><li>Tapiolan kirjasto (Heikki) perjantai 4.10 klo 10.30</li><li>Sellon kirjasto (Jaminurkka) tiistai 8.10 klo 10.30</li><li>Lippulaivan kirjasto (Kajuutta) tiistai 8.10 klo 10.30</li></ul><p>Tunnit ohjaavat musiikkipedagogit Sakari Heikka ja Lauri Iljin</p><p>sakari.heikka(at)espoo.fi</p><p>lauri.iljin(at)espoo.fi</p><p><br></p><p>#musiikki #muskari #vauva</p>"
            },
            "info_url": null,
            "name": {
                "fi": "Vauvamuskari"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "tapahtumatila Heikki"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agixjm5wo4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agitgbv6mq",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:KOTO",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agitgbv6h4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agitgbv6kq/?format=api"
                }
            ],
            "images": [
                {
                    "id": 150326,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-04-12T09:43:27.503183Z",
                    "last_modified_time": "2024-04-12T09:43:27.503210Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/instrument-g128ad72a9_1920.jpg",
                    "name": "",
                    "cropping": "420,0,1500,1080",
                    "photographer_name": "",
                    "alt_text": "kellopeli",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150326/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-08-08T16:42:02.249970Z",
            "last_modified_time": "2024-09-06T10:42:42.744576Z",
            "date_published": null,
            "start_time": "2024-09-03T07:30:00Z",
            "end_time": "2024-10-01T08:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "short_description": {
                "fi": "Vauvamuskarissa opetellaan tunnettuja ja uudempiakin lauluja, ja soitetaan ja tutustutaan monipuolisesti erilaisiin soittimiin ja leikkeihin musiikin tahdissa."
            },
            "description": {
                "fi": "<p>Varhaisiän musiikkikasvatustunnilla opetellaan tunnettuja ja uudempia kappaleita. Tunneilla soitetaan ja tutustutaan monipuolisesti erilaisiin soittimiin ja leikkeihin musiikin tahdissa. Ei haittaa, vaikka et olisi soittanut tai laulanut aikaisemmin. Tunnilla tutustutaan musiikkiin ja pidetään hauskaa yhdessä lapsen kanssa. Vauvamuskarin kesto on 30 minuuttia. Ryhmään voi osallistua kielitaidosta ja musiikkitaustasta riippumatta. Ryhmä on suunnattu 3kk - 3v ikäisille lapsille. Osallistuminen on maksutonta.</p><p>On suositeltavaa ottaa mukaan oma viltti tai jarrusukat riippuen lapsen iästä. Osallistuthan tunnille vain terveenä.</p><p><br></p><p>Vauvamuskariin ilmoittaudutaan alla olevasta linkistä. Ilmoittautuminen aukeaa 20.8 klo 10.00</p><p><a href=\"https://link.webropol.com/s/vauvamuskari\">https://link.webropol.com/s/vauvamuskari</a></p><p><br></p><p>Ilmoittautuminen aukeaa alla oleviin muskareihin:</p><ul><li>Ison Omenan kirjasto (Nuorten tila VOX) tiistai 3.9 klo 10.30</li><li>Tapiolan kirjasto (Heikki) keskiviikko 4.9 klo 10.30</li><li>Sellon kirjasto (Jaminurkka) tiistai 10.9 klo 10.30</li><li>Lippulaivan kirjasto (Kajuutta) keskiviikko 11.9 klo 10.30</li><li>Nöykkiön kirjasto tiistai 17.9 klo 10.30</li><li>Entressen kirjasto (Jukeboksi) keskiviikko 18.9 klo 10.30</li><li>Viherlaakson kirjasto keskiviikko 25.9 klo 10.30</li><li>Ison Omenan kirjasto (Nuorten tila VOX) tiistai 1.10 klo 10.30</li><li>Tapiolan kirjasto (Heikki) perjantai 4.10 klo 10.30</li><li>Sellon kirjasto (Jaminurkka) tiistai 8.10 klo 10.30</li><li>Lippulaivan kirjasto (Kajuutta) tiistai 8.10 klo 10.30</li></ul><p>Tunnit ohjaavat musiikkipedagogit Sakari Heikka ja Lauri Iljin</p><p>sakari.heikka(at)espoo.fi</p><p>lauri.iljin(at)espoo.fi</p><p><br></p><p>#musiikki #muskari #vauva</p>"
            },
            "info_url": null,
            "name": {
                "fi": "Vauvamuskari"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "nuortentila VOX"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agitgbv6mq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agitgbv6ga",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:KOTO",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agitgbv53i/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agitgbv6d4/?format=api"
                }
            ],
            "images": [
                {
                    "id": 150326,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-04-12T09:43:27.503183Z",
                    "last_modified_time": "2024-04-12T09:43:27.503210Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/instrument-g128ad72a9_1920.jpg",
                    "name": "",
                    "cropping": "420,0,1500,1080",
                    "photographer_name": "",
                    "alt_text": "kellopeli",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150326/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-08-08T16:44:26.553130Z",
            "last_modified_time": "2024-09-06T10:42:07.314877Z",
            "date_published": null,
            "start_time": "2024-09-10T07:30:00Z",
            "end_time": "2024-10-08T08:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "short_description": {
                "fi": "Vauvamuskarissa opetellaan tunnettuja ja uudempiakin lauluja, ja soitetaan ja tutustutaan monipuolisesti erilaisiin soittimiin ja leikkeihin musiikin tahdissa."
            },
            "description": {
                "fi": "<p>Varhaisiän musiikkikasvatustunnilla opetellaan tunnettuja ja uudempia kappaleita. Tunneilla soitetaan ja tutustutaan monipuolisesti erilaisiin soittimiin ja leikkeihin musiikin tahdissa. Ei haittaa, vaikka et olisi soittanut tai laulanut aikaisemmin. Tunnilla tutustutaan musiikkiin ja pidetään hauskaa yhdessä lapsen kanssa. Vauvamuskarin kesto on 30 minuuttia. Ryhmään voi osallistua kielitaidosta ja musiikkitaustasta riippumatta. Ryhmä on suunnattu 3kk - 3v ikäisille lapsille. Osallistuminen on maksutonta.</p><p>On suositeltavaa ottaa mukaan oma viltti tai jarrusukat riippuen lapsen iästä. Osallistuthan tunnille vain terveenä.</p><p><br></p><p>Vauvamuskariin ilmoittaudutaan alla olevasta linkistä. Ilmoittautuminen aukeaa 20.8 klo 10.00</p><p><a href=\"https://link.webropol.com/s/vauvamuskari\">https://link.webropol.com/s/vauvamuskari</a></p><p><br></p><p>Ilmoittautuminen aukeaa alla oleviin muskareihin:</p><ul><li>Ison Omenan kirjasto (Nuorten tila VOX) tiistai 3.9 klo 10.30</li><li>Tapiolan kirjasto (Heikki) keskiviikko 4.9 klo 10.30</li><li>Sellon kirjasto (Jaminurkka) tiistai 10.9 klo 10.30</li><li>Lippulaivan kirjasto (Kajuutta) keskiviikko 11.9 klo 10.30</li><li>Nöykkiön kirjasto tiistai 17.9 klo 10.30</li><li>Entressen kirjasto (Jukeboksi) keskiviikko 18.9 klo 10.30</li><li>Viherlaakson kirjasto keskiviikko 25.9 klo 10.30</li><li>Ison Omenan kirjasto (Nuorten tila VOX) tiistai 1.10 klo 10.30</li><li>Tapiolan kirjasto (Heikki) perjantai 4.10 klo 10.30</li><li>Sellon kirjasto (Jaminurkka) tiistai 8.10 klo 10.30</li><li>Lippulaivan kirjasto (Kajuutta) tiistai 8.10 klo 10.30</li></ul><p>Tunnit ohjaavat musiikkipedagogit Sakari Heikka ja Lauri Iljin</p><p>sakari.heikka(at)espoo.fi</p><p>lauri.iljin(at)espoo.fi</p><p><br></p><p>#musiikki #muskari #vauva</p>"
            },
            "info_url": null,
            "name": {
                "fi": "Vauvamuskari"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Jaminurkka"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agitgbv6ga/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agixjm5wvu",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:KOTO",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agixjm5wre/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agixjm5wtq/?format=api"
                }
            ],
            "images": [
                {
                    "id": 150326,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-04-12T09:43:27.503183Z",
                    "last_modified_time": "2024-04-12T09:43:27.503210Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/instrument-g128ad72a9_1920.jpg",
                    "name": "",
                    "cropping": "420,0,1500,1080",
                    "photographer_name": "",
                    "alt_text": "kellopeli",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150326/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-08-08T06:23:43.982284Z",
            "last_modified_time": "2024-09-06T10:41:26.859836Z",
            "date_published": null,
            "start_time": "2024-09-11T07:30:00Z",
            "end_time": "2024-10-08T08:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "short_description": {
                "fi": "Vauvamuskarissa opetellaan tunnettuja ja uudempiakin lauluja, ja soitetaan ja tutustutaan monipuolisesti erilaisiin soittimiin ja leikkeihin musiikin tahdissa."
            },
            "description": {
                "fi": "<p>Varhaisiän musiikkikasvatustunnilla opetellaan tunnettuja ja uudempia kappaleita. Tunneilla soitetaan ja tutustutaan monipuolisesti erilaisiin soittimiin ja leikkeihin musiikin tahdissa. Ei haittaa, vaikka et olisi soittanut tai laulanut aikaisemmin. Tunnilla tutustutaan musiikkiin ja pidetään hauskaa yhdessä lapsen kanssa. Vauvamuskarin kesto on 30 minuuttia. Ryhmään voi osallistua kielitaidosta ja musiikkitaustasta riippumatta. Ryhmä on suunnattu 3kk - 3v ikäisille lapsille. Osallistuminen on maksutonta.</p><p>On suositeltavaa ottaa mukaan oma viltti tai jarrusukat riippuen lapsen iästä. Osallistuthan tunnille vain terveenä.</p><p><br></p><p>Vauvamuskariin ilmoittaudutaan alla olevasta linkistä. Ilmoittautuminen aukeaa 20.8 klo 10.00</p><p><a href=\"https://link.webropol.com/s/vauvamuskari\">https://link.webropol.com/s/vauvamuskari</a></p><p><br></p><p>Ilmoittautuminen aukeaa alla oleviin muskareihin:</p><ul><li>Ison Omenan kirjasto (Nuorten tila VOX) tiistai 3.9 klo 10.30</li><li>Tapiolan kirjasto (Heikki) keskiviikko 4.9 klo 10.30</li><li>Sellon kirjasto (Jaminurkka) tiistai 10.9 klo 10.30</li><li>Lippulaivan kirjasto (Kajuutta) keskiviikko 11.9 klo 10.30</li><li>Nöykkiön kirjasto tiistai 17.9 klo 10.30</li><li>Entressen kirjasto (Jukeboksi) keskiviikko 18.9 klo 10.30</li><li>Viherlaakson kirjasto keskiviikko 25.9 klo 10.30</li><li>Ison Omenan kirjasto (Nuorten tila VOX) tiistai 1.10 klo 10.30</li><li>Tapiolan kirjasto (Heikki) perjantai 4.10 klo 10.30</li><li>Sellon kirjasto (Jaminurkka) tiistai 8.10 klo 10.30</li><li>Lippulaivan kirjasto (Kajuutta) tiistai 8.10 klo 10.30</li></ul><p>Tunnit ohjaavat musiikkipedagogit Sakari Heikka ja Lauri Iljin</p><p>sakari.heikka(at)espoo.fi</p><p>lauri.iljin(at)espoo.fi</p><p><br></p><p>#musiikki #muskari #vauva</p>"
            },
            "info_url": null,
            "name": {
                "fi": "Vauvamuskari"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Kajuutta"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agixjm5wvu/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agitd6beqq",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2630/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agitd6bdf4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agitd6bdiu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agitd6bdlm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agitd6bdoe/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agitd6bdra/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agitd6bdue/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agitd6bdxu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agitd6bd4i/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agitd6bd7e/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agitd6bece/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agitd6befa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agitd6beia/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agitd6bela/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agitd6beny/?format=api"
                }
            ],
            "images": [
                {
                    "id": 150444,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-03-15T10:01:16.416451Z",
                    "last_modified_time": "2024-03-15T10:01:16.416479Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/SuomenPakolaisapu.jpg",
                    "name": "",
                    "cropping": "149,0,531,382",
                    "photographer_name": "",
                    "alt_text": "Ryhmä pelaa korttia",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150444/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-08-08T11:16:48.562035Z",
            "last_modified_time": "2024-09-06T09:42:18.569865Z",
            "date_published": null,
            "start_time": "2024-09-09T14:00:00Z",
            "end_time": "2024-12-09T16:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": {
                "fi": "Suomen pakolaisapu"
            },
            "short_description": {
                "fi": "Puhutaan! - ryhmässä keskustelemme suomeksi ja harjoittelemme puhekieltä yhdessä.",
                "sv": "I gruppen diskuterar vi på finska och tränar talat språk tillsammans.",
                "en": "In this group we discuss in finnish and practice language together."
            },
            "description": {
                "fi": "<p>Haluatko puhua paremmin suomea?</p><p>Puhutaan! - ryhmässä keskustelemme suomeksi ja harjoittelemme puhekieltä yhdessä.</p><p>Puheenaiheina voi olla vaikkapa uutiset, työnhaku tai eri kulttuurit. Päätämme yhdessä kiinnostavat aiheet.</p><p>Tervetuloa mukaan!</p><p>Kysy lisää: vapaaehtoiset@pakolaisapu.fi</p>",
                "sv": "<p>Vill du prata finska bättre?</p><p>I gruppen diskuterar vi på finska och tränar talat språk tillsammans.</p><p>Ämnena kan till exempel vara nyheter, jobbsökande eller olika kulturer. Vi bestämmer tillsammans vilka ämnen som är intressanta.</p><p>Välkommen ombord!</p><p>Be om mer information: vapaaehtoiset@pakolaisapu.fi</p>",
                "en": "<p>Would you like to speak better finnish?</p><p>In this group we discuss in finnish and practice language together. We talk about news, job hunting and different cultures. We deside together the topics.</p><p>Welcome!</p><p>More information: vapaaehtoiset@pakolaisapu.fi</p>"
            },
            "info_url": null,
            "name": {
                "fi": "Puhutaan suomea",
                "sv": "Vi talar finska",
                "en": "Let's speak Finnish"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Akseli sali",
                "sv": "Akseli salen",
                "en": "Akseli hall"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agitd6beqq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agi4d47h7a",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-07-31T10:58:59.924215Z",
            "last_modified_time": "2024-09-06T09:37:41.132634Z",
            "date_published": null,
            "start_time": "2024-10-12T07:00:00Z",
            "end_time": "2024-10-13T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "short_description": {
                "fi": "Go-pelin naisten- ja Suomen mestaruus ratkaistaan tänä vuonna Sellon kirjaston Akseli-salissa. Järjestäjä on Espoon go-kerho eGo.",
                "sv": "Damernas och Finlands mästerskap i go avgörs i år i Sellobibliotekets Akseli-sal. Arrangör är Esbos go-klubb eGo.",
                "en": "Damernas och Finlands mästerskap i go avgörs i år i Sellobibliotekets Akseli-sal. Arrangör är Esbos go-klubb eGo."
            },
            "description": {
                "fi": "<p>Kaikki nais+ -pelaajat ovat lämpimästi tervetulleita osallistumaan go-lautapelin SM-turnaukseen ikään, luokitukseen tai henkilötunnukseen katsomatta. Naisten+ Suomen mestaruuden voittaa turnauksessa parhaiten sijoittunut suomalainen. Turnaukseen voivat osallistua myös ulkomaalaiset naiset+, joilla on suomalainen kyu- tai danluokitus. Turnaukseen osallistuvalta edellytetään lisäksi Suomen Go-liiton jäsenyyttä, eli käytännössä kuulumista johonkin liittoon kuuluvaan go-kerhoon. Turnaus on maksuton.</p><p><a href=\"https://www.suomigo.net/wiki/N%2BSM_2024_Ilmoittautuminen\">Osallistuminen edellyttää ilmoittautumista ennakkoon</a> viimeistään 11.10.24</p><p>&nbsp;https://www.suomigo.net/wiki/N%2BSM_2024_Ilmoittautuminen</p><p><a href=\"https://www.suomigo.net/wiki/N%2BSM%202024. \">Tarkemmat tiedot</a> aikataulusta ja turnausjärjestelyistä https://www.suomigo.net/wiki/N%2BSM%202024&nbsp;</p>",
                "sv": "<p>Alla dam+-spelare är varmt välkomna att delta i turneringen, oavsett ålder, klassificering eller ID. Det finska mästerskapet för dam+ kommer att vinnas av den högst rankade finska spelaren i turneringen. Utländska dam+ med finsk kyu- eller dan-klassning kan också delta i turneringen. Deltagarna i turneringen måste också vara medlemmar i Finlands Goförbund, dvs. i praktiken måste de tillhöra någon av förbundets go-klubbar. Turneringen är avgiftsfri.</p><p><a href=\"https://www.suomigo.net/wiki/N%2BSM_2024_Ilmoittautuminen. \">För deltagande krävs förhandsanmälan</a> senast 11.10.24</p><p>https://www.suomigo.net/wiki/N%2BSM_2024_Ilmoittautuminen</p><p><a href=\"https://www.suomigo.net/wiki/N%2BSM%202024.\">Mer information</a> om tidtabellen och turneringsarrangemangen finns på</p><p>https://www.suomigo.net/wiki/N%2BSM%202024</p>",
                "en": "<p>All female+ players are warmly welcome to participate in the tournament, regardless of age, classification or ID. The Finnish Women+ Championship will be won by the highest ranked Finnish player in the tournament. Foreign women+ with a Finnish kyu or dan classification can also participate in the tournament. Participants in the tournament must also be members of the Finnish Go Federation, i.e. in practice they must belong to one of the federation's go clubs. The tournament is free of charge.</p><p><a href=\"https://www.suomigo.net/wiki/N%2BSM_2024_Ilmoittautuminen. \">Participation requires advance registration</a> no later than 11.10.24</p><p>https://www.suomigo.net/wiki/N%2BSM_2024_Ilmoittautuminen</p><p><a href=\"https://www.suomigo.net/wiki/N%2BSM%202024. \">More information</a> about the schedule and tournament arrangements can be found at https://www.suomigo.net/wiki/N%2BSM%202024</p>"
            },
            "info_url": null,
            "name": {
                "fi": "Go-peliturnaus",
                "sv": "Go game-turnering",
                "en": "Go game tournament"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Akseli",
                "sv": "Akseli",
                "en": "Akseli"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi4d47h7a/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64028",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151444,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-06-13T10:13:03.518891Z",
                    "last_modified_time": "2024-06-13T10:13:03.518908Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_741609.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151444/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-06-13T10:13:03.461791Z",
            "last_modified_time": "2024-09-05T16:14:00.089989Z",
            "date_published": null,
            "start_time": "2024-09-05",
            "end_time": "2024-09-28",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "short_description": {
                "fi": "Kurkkaa, avaa, kurota, katsele, piiloudu, kosketa, kuuntele, lue, väritä… Mutta minne värit ovat kadonneet?",
                "sv": "Kika, öppna, sträck dig, titta, göm dig, vidrör, lyssna, läs, färglägg... Men vart har färgerna tagit vägen?",
                "en": "Peek, open, reach, watch, hide, touch, listen, read, colour… But where have the colours gone?"
            },
            "description": {
                "fi": "<p>Kurkkaa, avaa, kurota, katsele, piiloudu, kosketa, kuuntele, lue, väritä… Mutta minne värit ovat kadonneet?</p><p>Kun yö värittää on Värinauttien oma elämyksellinen taidenäyttely yöstä, peloista, möröistä ja kadonneista väreistä. Näyttely kutsuu kävijänsä mukaan öiseen seikkailuun, jossa sanat ovat sadetta ja möröt kesytettävissä. Sanataidetta, käsityötä ja kuvataidetta yhdistelevä näyttely on koottu pääosin kierrätysmateriaaleista. Värinauttien taidenäyttelyssä kaikkeen saa koskea.</p><p>Värinautit <b>Anni Pöyhönen</b> ja <b>Mona Paalanen</b> tunnetaan monipuolisesta pedagogisesta materiaalistaan, joka on käytössä varhaiskasvatuksesta yläkoululuokille ympäri Suomea. Värinauttien taidenäyttely perustuu samannimiseen tarinaan, jossa Annu ja Unna heräävät kotoaan keskellä yötä etsimään kadonneita värejä.</p><p>Näyttelystä on saatavilla maksuton pedagoginen opas osoitteessa: https://www.varinautit.fi/taidenayttely/</p><p>Näyttely soveltuu kaikenikäisille lapsille perheineen.</p><p>Vapaa pääsy!</p>",
                "sv": "<p>Kika, öppna, sträck dig, titta, göm dig, vidrör, lyssna, läs, färglägg... Men vart har färgerna tagit vägen?</p><p>Kun yö värittää är en upplevelsebaserad konstutställning av Färgnauterna om natten, rädslor, monster och försvunna färger. Utställningen bjuder in besökarna på ett nattligt äventyr där orden är regn och monstren går att tämja. Utställningen kombinerar ordkonst, handarbete och bildkonst, och är huvudsakligen sammanställd av återvunnet material. På Färgnauternas utställning får man röra vid allt.</p><p>Färgnauterna Anni Pöyhönen och Mona Paalanen är kända för sitt mångsidiga pedagogiska material, som används från småbarnspedagogiken till högstadieklasser runt om i Finland. Färgnauternas utställning är baserad på berättelsen med samma namn, och handlar om Annu och Unna som vaknar mitt i natten för att leta efter de försvunna färgerna.</p><p>Utställningen är lämplig för barn i alla åldrar och deras familjer.</p><p>Fritt inträde!</p>",
                "en": "<p>Peek, open, reach, watch, hide, touch, listen, read, colour… But where have the colours gone?</p><p>Colours of the Night is Värinautit’s experiential art exhibition about the night, fears, monsters and lost colours. The exhibition invites its visitors on a nighttime adventure where the words are rain and the monsters can be tamed. The exhibition combines word art, handicraft and visual arts and is mainly made from recycled materials. At the Värinautit exhibition, you can touch everything.</p><p>Anni Pöyhönen and Mona Paalanen, who make up Värinautit, are known for their versatile pedagogical material, which is used from early childhood education to secondary school classes all over Finland. Their exhibition is based on a story of the same name, in which Annu and Unna wake up in the middle of the night to go on a search for the lost colours.</p><p>The exhibition is suitable for children of all ages and their families.</p><p>Admission is free!</p>"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/E1C0B39035DD464BBB7CF7E7D15B5B70/Kun_yo_varittaa",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/E1C0B39035DD464BBB7CF7E7D15B5B70/Kun_yo_varittaa",
                "en": "http://www.malmitalo.fi/en/events/event/E1C0B39035DD464BBB7CF7E7D15B5B70/Kun_yo_varittaa"
            },
            "name": {
                "fi": "Kun yö värittää",
                "sv": "Kun yö värittää",
                "en": "Kun yö värittää"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64028/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64180",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/global-club-nights/",
                        "sv": "https://www.lippu.fi/artist/global-club-nights/",
                        "en": "https://www.lippu.fi/artist/global-club-nights/"
                    },
                    "price": {
                        "fi": "11 € / 6 €",
                        "sv": "11 € / 6 €",
                        "en": "11 € / 6 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151666,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-04T15:13:13.227529Z",
                    "last_modified_time": "2024-07-04T15:13:13.227542Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_753177.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151666/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-07-04T15:13:13.192687Z",
            "last_modified_time": "2024-09-05T13:13:59.477352Z",
            "date_published": null,
            "start_time": "2024-09-20T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "short_description": {
                "fi": "Global Club Nights (GCN) on klubisarja, jossa musiikin parissa työskentelevät ja sitä rakastavat ihmiset kokoontuvat juhlistamaan musiikkia yhdessä.",
                "sv": "Global Club Nights (GCN) är en klubbserie där personer som är involverade i och arbetar med musik kan träffa musikälskare för att hylla musiken och skapa en säker, inkluderande och kreativ miljö.",
                "en": "Global Club Nights (GCN) is a club series where people who deal and work with music gather with those who love and enjoy it, to celebrate and create a safe, inclusive, and creative environment."
            },
            "description": {
                "fi": "<p>Global Club Nights (GCN) on klubisarja, jossa musiikin parissa työskentelevät ja sitä rakastavat ihmiset kokoontuvat juhlistamaan musiikkia yhdessä.</p><p>Klubien tavoitteena on turvallisen, osallistavan ja luovan ympäristön luominen. Elävän musiikin, radio-ohjelmien, seminaarien ja työpajojen avulla tapahtumat pyrkivät rakentamaan siltoja kaikkien musiikin ystävien ja heidän yhteisöjensä välille.</p><p><b>TATAKI</b> on musiikkiesitys, josta vastaavat taiwanilainen shamisenin soittaja Zuiko ja suomalainen rumpali ja laulaja Aarne. Yksi piirre yhdistää Zuikoa ja Aarnea – kumpikin lyö instrumenttiaan. Olipa kyse sitten shamisenin kieliä takovasta bachista tai rumpua lyövistä rumpukapuloista, iskut ja rytmiset elementit ovat tämän esityksen ytimessä.</p><p><b>Sambaki</b> on Brasiliasta alkunsa saanut bändi, jonka jäsenet ovat eri puolilta maailmaa. Sambaki on käynyt kiertueilla jo vuosikymmenen ja valloittanut yleisöjä suosittujen brasilialaisten kappaleiden ja tyylien cover-versioilla.</p><p><b>Aikataulu</b><br>19:00 – 19:30 Interviews with Tataki and Sambaki<br>19:30 – 20:30 Tataki live show<br>20:30 – 21:00 Intermission<br>21:00 – 22:00 Sambaki Live Show <br>22:00 – 22:30 Outro</p><p>Global Club Nights on tuotettu yhteistyössä Sibelius-Akatemian globaalin musiikin osaston ja kulttuurikeskus Caisan kanssa.</p><p>Kesto: 3,5 t, sis. väliajan <br>Kieli: englanti, suomi, portugali ja espanja <br>Liput: 11 € / 6 € osoitteesta lippu.fi.</p><p>Voit pyytää esitykseen mukaasi kulttuurikaverin, jonka seurassa maksat lipusta 5 € ja kulttuurikaveri pääsee esitykseen ilmaiseksi. <br><u><a href=\"https://www.helsinkimissio.fi/tarvitsetko-apua/kulttuurikaveri/\">Lue lisää kulttuurikavereista täältä</u></a></p><p>Kulttuurikaverilippujen varaukset sähköpostitse Caisan vahtimestarille: caisa.vahtimestari@hel.fi.</p>",
                "sv": "<p>Global Club Nights (GCN) är en klubbserie där personer som är involverade i och arbetar med musik kan träffa musikälskare för att hylla musiken och skapa en säker, inkluderande och kreativ miljö.</p><p>Med livemusik, radioprogram, seminarier och workshoppar försöker evenemangen bygga broar mellan alla musikälskare och deras gemenskaper.</p><p><b>TATAKI</b> är en musikgrupp under ledning av den taiwanesiske shamisenspelaren Zuiko och den finske trumslagaren och vokalisten Aarne. Zuiko och Aarne har en sak gemensamt i sitt musicerande: båda två spelar på sina instrument genom att slå på dem! Vare sig det rör sig om Zuikos batchi som slår på instrumentets strängar eller Aarnes trumpinnar är deras spelande djupt rotat i slagljud och rytmiska element. <br> <br><b>Sambaki</b> är ett band som har rötterna i Brasilien och vars medlemmar har sitt ursprung i olika delar av världen. Under tio års turnerande har Sambaki förtrollat sin publik med versioner av populära brasilianska melodier och musikstilar.</p><p>Global Club Nights (GCN) anordnas i samarbete med Globala musikinstitutionen vid Sibeliusakademin och Kulturcentret Caisa.</p><p>Längd: 3,5 t <br>Språk: engelska, finska, portugisiska, spanska</p>",
                "en": "<p>Global Club Nights (GCN) is a club series where people who deal and work with music gather with those who love and enjoy it, to celebrate and create a safe, inclusive, and creative environment.</p><p><b>TATAKI</b> is a musical act led by Taiwanese shamisen player Zuiko and Finnish drummer/singer Aarne. Zuiko and Aarne share a common characteristic: they both strike their instruments! Whether it’s the bachi hitting the strings of the shamisen or the drumsticks hitting the drums, their performance is highly rooted in percussive sounds and rhythmical elements. With background in rock music in combination with the influence of Japanese music, TATAKI takes you on a joyous and wild journey! Get ready for some hard hitting and freshly arranged traditional pieces from Japan, pop songs from Taiwan, groovy originals, and who knows, maybe some improvisation!</p><p><b>Sambaki</b> is a band with roots in Brazil and members from around the world. With 10 years on the road, Sambaki has been captivating audiences with their covers of popular Brazilian songs and styles. Their music is a fusion of samba, forró, and other Brazilian rhythms that will have you dancing and singing along in no time. Each performance is a unique celebration of the rich musical traditions and culture of Brazil.</p><p>Sambaki's live shows are a must-see, as they bring an authentic energy and spirit that will leave you feeling uplifted and inspired. Whether you're a long-time fan or new to their music, let Sambaki take you on a journey to the heart of Brazil and experience the magic of their music for yourself.</p><p><b>Event schedules:</b><br>19:00 – 19:30 Interviews with Tataki and Sambaki<br>19:30 – 20:30 Tataki live show<br>20:30 – 21:00 Intermission<br>21:00 – 22:00 Sambaki Live Show <br>22:00 – 22:30 Outro</p><p>Global Club Nights (GCN) closely collaborates with the Global music Department of Sibelius Academy and Cultural Centre Caisa.</p><p>Duration: 3,5 h<br>Language: English, Finnish, Portuguese, Spanish</p><p>Tickets: 11 € / 6 € from lippu.fi.</p>"
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/9B00FD16869364286BD31EDE0B6A0D9F/Tataki_Sambaki",
                "sv": "http://www.caisa.fi/sv/evenemang/event/9B00FD16869364286BD31EDE0B6A0D9F/Tataki_Sambaki",
                "en": "http://www.caisa.fi/en/events/event/9B00FD16869364286BD31EDE0B6A0D9F/Tataki_Sambaki"
            },
            "name": {
                "fi": "Tataki | Sambaki – Global Club Nights",
                "sv": "Tataki | Sambaki – Global Club Nights",
                "en": "Tataki | Sambaki – Global Club Nights"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64180/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agi4ek6rqq",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-09-05T11:18:04.364765Z",
            "last_modified_time": "2024-09-05T11:18:04.364793Z",
            "date_published": "2024-09-01T21:00:00Z",
            "start_time": "2024-09-02T05:00:00Z",
            "end_time": "2024-09-28T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "short_description": {
                "fi": "Taidenäyttely",
                "sv": "Konstutställning",
                "en": "Art exhibition"
            },
            "description": {
                "fi": "<p>Jo seitsemän vuotta Matti Westerlund on vastannut Inktober-haasteeseen ja piirtänyt lokakuun ajan joka päivä musteella. Tässä näyttelyssä näet parhaimmat, veikeimmät ja mielenkiintoisimmat kuvat noiden yli 270 kuvan joukosta. Inktober on vuosittainen taidehaaste. Se kannustaa taiteilijoita ympäri maailmaa piirtämään musteella. Taidehaasteessa piirretään päivittäin vaihtuvan aihesanan inspiroimana.</p><p><br></p><p>”Aihesanoja hyödyntämällä osallistuminen on yhteisöllisempää, kun kaikki muutkin julkaisivat samasta aiheesta oman kuvansa. Monesti nämä sanat voi tulkita hyvin eri tavoilla, ja on hauskaa seurata, miten ihmiset ympäri maailmaa ovat tulkinneet näitä sanoja”, kertoo taiteilija itse haasteesta. Sosiaalisessa mediassa Westerlundin mustekuvat ovat keränneet yli 1,1 miljoonan yleisön. Inktober tuo piirtämiseen takaisin leikkisyyden ja luo siihen rutiinin. Muste on hyvin monipuolinen materiaali, piirustus voi muodostua tarkoista viivoista tai musteen saa leviämään maalaamalla harmaan eri sävyissä.&nbsp;</p><p><br></p><p>”Olen tehnyt haasteeseen kuvia mustetusseilla sekä musteella maalaamalla, jolloin jälki on hyvin erilaista. Minulla ei ole muutenkaan yhtä tyyliä, vaan olen tehnyt tosi erilaisia juttuja urani varrella, ja se näkyy myös Inktober-piirustuksissani. Musteesta saa paljon irti ja se mahdollistaa eri tyylejä.”</p><p><br></p><p>”Siisteintä Inktoberissä on se, että on tosi vapauttavaa piirtää jotain, mitä kukaan ei ole tilannut, vaan ihan omaksi huvikseen. Ideointi ja toteutus on tällöin vapaampaa. Kun tekee kuvituksia työkseen, niin omaksi iloksi piirtäminen on hieman jäänyt, mutta Inktoberin myötä olen saanut tuotua sitä takaisin.”</p><p><br></p>",
                "sv": "<p>Matti Westerlund har deltagit i Inktober-utmaningen i sju år och tecknat med bläck varje dag under oktober. I den här utställningen kan du se de bästa, roligaste och mest intressanta av de över 270 bilderna. Inktober är en årlig konstutmaning. Den uppmuntrar konstnärer över hela världen att teckna med bläck. Konstutmaningen går ut på att dagligen teckna med inspiration från ett annat tema. </p><p><br></p><p>Inktober återför lekfullheten till tecknandet och skapar en rutin. Bläck är ett mycket mångsidigt material, teckningen kan bestå av exakta linjer eller så kan man sprida ut bläcket genom att måla i olika grå nyanser.&nbsp;</p><p><br></p><p>”Jag har gjort utmaningen både med tusch och målat med tusch, så resultatet blir väldigt olika. Jag har ändå inte en stil, jag har gjort väldigt olika saker under hela min karriär och det syns i mina Inktober-teckningar. Man får ut mycket av bläck och det gör att man kan ha olika stilar.”</p><p><br></p><p>”Det bästa med Inktober är att det är väldigt befriande att rita något som ingen har beställt, bara för skojs skull. Det ger dig mer frihet när det gäller idé och utförande. När man försörjer sig på att göra illustrationer försvinner det lite grann att rita för sitt eget nöjes skull, men med Inktober har jag kunnat ta tillbaka det.”</p>",
                "en": "<p>Matti Westerlund has been taking part in the Inktober challenge for seven years, drawing in ink every day during October. In this exhibition, you can see the best, the funniest and the most interesting of those 270+ images. Inktober is an annual art challenge. It encourages artists around the world to draw with ink. The art challenge involves drawing daily inspired by a different theme.</p><p><br></p><p>Inktober brings playfulness back into drawing and creates a routine. Ink is a very versatile material, your drawing can be made up of precise lines, or you can spread the ink by painting in different shades of grey.&nbsp;</p><p><br></p><p>\"I've done the challenge with ink inks as well as painting with ink, so the result is very different. I don't have one style anyway, I've done really different things throughout my career and it shows in my Inktober drawings. You get a lot out of ink and it allows you to have different styles.\"</p><p><br></p><p>\"The nicest thing about Inktober is that it's really liberating to draw something that no one has commissioned, just for fun. It gives you more freedom in terms of ideation and execution. When you do illustrations for a living, drawing for your own pleasure is a little bit lost, but with Inktober I've been able to bring it back.\"</p>"
            },
            "info_url": {
                "fi": "https://www.instagram.com/mattiwest/",
                "sv": "https://www.instagram.com/mattiwest/",
                "en": "https://www.instagram.com/mattiwest/"
            },
            "name": {
                "fi": "Näyttely: Matti Westerlund: Mustejälkiä",
                "sv": "Utställning: Matti Westerlund: Bläckspår",
                "en": "Exhibition: Traces of ink (Mustejälkiä)"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Näyttelyvitriini (kirjaston ylempi kerros)",
                "sv": "Utställningsvitrinen (bibliotekets övre våning)",
                "en": "Glass display cabinet (the upper floor of the library)"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agi4ek6rqq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}