-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4708645
commit 84714e5
Showing
4 changed files
with
985 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# Программа для помощи в скачивании базы ФИАС с сайта https://fias.nalog.ru/ | ||
# App fo helping download FIAS base from https://fias.nalog.ru/ | ||
|
||
-gui Запускать в режиме автоматического скачивания без GUI по сохранённым настройкам | ||
|
||
-o Скачивать, но не распаковывать | ||
|
||
-full Запускать скачивание полного ФИАС, иначе дельты | ||
|
||
Список настроек: | ||
|
||
Address API - Адрес сервиса для получения актуальных ссылок на скачивание | ||
|
||
Full mode - Режим скачивания полной версии | ||
|
||
Proxy - Использование базового прокси(не kerberos) | ||
|
||
Proxy IP - ip адрес прокси сервера | ||
|
||
Format - Формат архива (!!! Реализовано только для ZIP) | ||
|
||
Path full(press Enter) - При нажании на ВВОД при выборе поля позволяет выбрать путь сохранения полного ФИАС | ||
|
||
Path delta(press Enter) - При нажании на ВВОД при выборе поля позволяет выбрать путь сохранения дельты ФИАС | ||
|
||
Count last - Позволяет выбрать количество скачиваемых элементов | ||
|
||
Regions(by - ;) - При вводе номеров регионов РФ в формате "01;02" при разархивации будут пропущены файлы, содержащие прочие регионы (!!! Не пропускается распаковка файлов 3х значных кодов регионов, если указаны двузначные содержащиеся в 3х значных) | ||
|
||
full type - Название типа полного архива в сервисе ФИАС (ручной ввод) | ||
|
||
delta type - Название типа дельты в сервисе ФИАС (ручной ввод) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
module fias_downloader | ||
|
||
go 1.16 | ||
|
||
require ( | ||
fyne.io/fyne/v2 v2.0.4 | ||
github.com/ulvham/helper v0.0.0-20180912150029-d45a6be21c19 | ||
) |
Oops, something went wrong.