✨ PyOhio 2026 CFP is Open! ✨

Hello PyOhio Community!
With Spring just around the corner, here at PyOhio we've decided to do a little early spring cleaning, and thus we're re-launching our newsletter. We've changed the layout to provide better information at a glance, keep you up to date on what we're doing to get PyOhio ready for you, and inform you about other regional events in the overall Python community. Expect to hear from us more regularly as well. We hope you enjoy the changes, and we promise not to flood your inbox! 🙏
If you have any feedback about the newsletter, please feel free to reach out to us at communications@pyohio.org!
PyOhio 2026 Updates
We've got some exciting updates to share with you as we get things kicked off for the upcoming PyOhio 2026 season! Stay tuned here for further updates and announcements, or follow us on our social media channels linked at the bottom of this message!
PyOhio 2026 Call For Proposals
📣 Our 2026 CFP is live! 📣
The PyOhio 2026 Call for Proposals went live on March 8th, 2026, at 8:00 AM ET. As we have in previous years, we're using the Pretalx platform to manage the CFP, so we have a custom submission page for you linked below. We accept submissions from all experience levels of speakers (especially first-time speakers!) and on any topic related to Python! Feel free to share your personal Python journey, the Python tools you've been using, or that fascinating project you've been tinkering with for months. It doesn't matter if you use Python for work or just enjoy it for a hobby, we love hearing new perspectives and we want to hear yours! The CFP will be open for six weeks, until April 19th, 2026, Anywhere on Earth.
Submit your proposals here: https://pretalx.com/pyohio-2026/cfp
You can submit up to three proposals, so collect your notes and get those proposals in! And please spread the word to anyone else you think might like to try giving a talk!
Upcoming Python Events (March-April 2026)
| Event | Dates | Location |
|---|---|---|
| PyConf Hyderabad 2026 | March 13-14 | Hyderabad, Telangana, India |
| PyCascades | March 20-23 | Vancouver, BC, Canada |
| PythonAsia | March 21-23 | Malate, Manila, Phillipines |
| PyCon Lithuania | April 8-10 | Vilnius, Lithuania |
| PyCon DE & PyData | April 13-15 | Darmstadt, Germany |
| PyTexas | April 17-19 | Austin, TX, USA |
Upcoming CFP Deadlines (March-April 2026)
| Event | Deadline | URL |
|---|---|---|
| DjangoCon US 2026 | March 16 | https://pretalx.com/djangocon-us-2026/cfp |
| PyCon Australia 2026 | March 30 | https://pretalx.com/pycon-au-2026/cfp |
| PyOhio 2026 | April 19 | <https://pretalx.com/pycon-au-2026/cfp> |
Today's Python Tip 💡
Did you know? The built-in float type in Python is great for simple, quick mathematical calculations, but float is based on a standard (IEEE 754) which doesn't allow it to represent certain values correctly, and can suffer from rounding errors!
If you truly need precise calculations, for financial transactions or scientific purposes, try using the fixed-point Decimal type from the standard library instead: https://docs.python.org/3/library/decimal.html