posti

3.5.1 • Public • Published

POSTI

pipeline status coverage report latest version last commit total downloads dependencies

Description

posti is a tool to automagically download latest basic address data from Finnish post - Posti, to parse the files and insert the contents into database. Check also posti-graphql.

Changelog

Check changes here.

Posti

Postal Code Services - Homepage:

Postal Code Services – Service Description and Terms Of Use:

Postal Code Services – Frequently Asked Questions:

There are 3 different files:

  • BAF (Basic Address File) - Updated every saturday at 13:00 (1:00 PM) GMT+0
  • PCF (Postal Code File) - Updated every day at 13:00 (1:00 PM) GMT+0
  • POM (Postal Code Changes) - Updated on 2nd day of each month at 13:00 (1:00 PM) GMT+0

This tool downloads the latest files and processes only the ones that have been updated, so you can setup the automation to be run as often as you like, but I would suggest you not to run this more than once per day.

The files above can be found here:

TIPS

While executing this tool, it will try to automatically find the config file from these paths, in this order:

  • <path to your project>/posti.config.js
  • <path to your home dir>/.posti/config.js

You can also specify a custom path for the config file, with either:

posti --config=/path/to/config

..or:

config=/path/to/config posti

You can also use ~ in the path, which will be converted as your home directory path automatically, so e.g.: config=~/.posti.js is going to be converted into e.g.: config=/home/user/.posti.js.

This tool uses Sequelize, therefore this tool supports/should support:

  • MySQL / MariaDB
  • Postgres
  • SQLite
  • Microsoft SQL Server

I've only tested the usage with MariaDB, so please, if you try any other of the supported databases, let me know if you're having issues and/or if its working, so that I can update this readme.

Force update

You can bypass the checks and force this tool to process each of the files, by force=true posti.

Installation as a dependency for your project

  1. Install the dependency

    yarn add posti
    

    or:

    npm install posti
    
  2. Create a posti.config.js file in your project root with the contents of posti.config.example.js

  3. Create a npm script in your package.json file:

    "scripts": {
      "update-posti": "posti"
    }
  4. Run the script:

    yarn update-posti
    

    or:

    npm run update-posti
    

Installation as a global command

  1. Install the package

    yarn global add posti
    

    or:

    npm install -g posti
    
  2. Create a .posti/config.js file in your home dir with the contents of posti.config.example.js

  3. Run the script:

    posti
    

Links

Disclaimer

I am not in any way affiliated with nor do I represent anything from Finnish post - Posti.

License

MIT License

Copyright (c) 2018 Kimmo Saari

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Package Sidebar

Install

npm i posti

Weekly Downloads

2

Version

3.5.1

License

MIT

Unpacked Size

60.6 kB

Total Files

10

Last publish

Collaborators

  • kirbo