Publishing One Package to Five Registries with GitHub Actions
A new open-source project called eu-vat-rates-data provides a reliable dataset of EU VAT rates published across five programming language registries. This initiative aims to simplify access to VAT data by bundling it into native packages, eliminating the need for developers to handle network calls or parsing. The data is sourced from the European Commission's official database and is updated daily, ensuring accuracy and ease of use for developers in various ecosystems.
- ▪The eu-vat-rates-data project publishes VAT rates as native packages for npm, PyPI, Go Module, RubyGems, and Packagist.
- ▪The data is updated daily from the European Commission's Taxes in Europe Database, ensuring accuracy.
- ▪Each package is designed to be idiomatic for its respective ecosystem, making it easier for developers to integrate.
Opening excerpt (first ~120 words) tap to expand
try { if(localStorage) { let currentUser = localStorage.getItem('current_user'); if (currentUser) { currentUser = JSON.parse(currentUser); if (currentUser.id === 3561015) { document.getElementById('article-show-container').classList.add('current-user-is-article-author'); } } } } catch (e) { console.error(e); } Iurii Rogulia Posted on Jun 3 • Originally published at iurii.rogulia.fi Publishing One Package to Five Registries with GitHub Actions #typescript #python #php #go Every developer building for European markets hits the same wall eventually. EU VAT rates are public data — the European Commission publishes them — but getting that data into your codebase reliably is a mess. You hardcode the rates, they change, your invoices are wrong.
…
Excerpt limited to ~120 words for fair-use compliance. The full article is at DEV.to (Top).