Skip to content

Commit 82e0e81

Browse files
Save notes on event metadata python-organizers#266
1 parent ec93c4b commit 82e0e81

1 file changed

Lines changed: 33 additions & 0 deletions

File tree

README.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,39 @@ Here is a list of Python Conferences around the world. The goal is to make it ea
77

88
:warning: This repository does not power www.pycon.org; to add an event to www.pycon.org, see [its official repository](https://github.com/PyCon/pycon.org#adding-your-pycon-to-the-website). See also https://github.com/python-organizers/resources.
99

10+
## Event Metadata
11+
12+
Include machine readable metadata on the homepage of your conference website to make it easier for aggregators to add your event to their listings. Here is the most recent example in JSON-LD format. Please see https://github.com/python-organizers/conferences/issues/266 for details.
13+
14+
```
15+
<script type="application/ld+json">
16+
{
17+
"@context": "https://schema.org",
18+
"@type": "ConferenceEvent",
19+
"name": "EuroPython 2025",
20+
"url": "https://ep2025.europython.eu",
21+
"startDate": "2025-07-14",
22+
"endDate": "2025-07-20",
23+
"location": {
24+
"@type": "PostalAddress",
25+
"name": "The Prague Congress Centre",
26+
"addressCountry": "CZ"
27+
},
28+
"hasParticipationOffer": {
29+
"@type": "Offer",
30+
"name": "Call for Proposals",
31+
"url": "https://ep2025.europython.eu/cfp/",
32+
"availabilityEnds": "2025-02-03"
33+
},
34+
"hasSponsorshipOffer": {
35+
"@type": "Offer",
36+
"name": "Sponsor Packages",
37+
"url": "https://ep2025.europython.eu/sponsorship/sponsor/"
38+
}
39+
}
40+
</script>
41+
```
42+
1043
## File Format
1144

1245
Each CSV file is [compatible with Google Calendar](https://support.google.com/calendar/answer/37118?hl=en) and has additional optional fields.

0 commit comments

Comments
 (0)