Metadata-Version: 2.4
Name: pycon-lithuania
Version: 0.1.0
Summary: PyCon Lithuania conference data — schedules, speakers, and dates
Project-URL: Homepage, https://pycon.lt
Project-URL: Source, https://github.com/pyconlt/pyconlt
Author-email: PyCon Lithuania <info@pycon.lt>
License: MIT
License-File: LICENSE
Keywords: conference,lithuania,pycon,schedule
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Typing :: Typed
Requires-Python: >=3.10
Description-Content-Type: text/markdown

# pyconlt

```python
import pyconlt

pyconlt.edition        # "2025"
pyconlt.name           # "PyCon Lithuania 2025"
pyconlt.dates          # (date(2025, 5, 14), date(2025, 5, 15), date(2025, 5, 16))

for talk in pyconlt.schedule:
    print(f"{talk.time} | {talk.title} — {talk.speaker}")

for speaker in pyconlt.speakers:
    print(f"{speaker.name} ({speaker.country})")
```
