├── .gitattributes ├── .gitignore ├── LICENSE.md ├── README.md ├── requirements.txt └── update_factorio.py /.gitattributes: -------------------------------------------------------------------------------- 1 | *.py text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .* 2 | !.git* 3 | 4 | *.pyc 5 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narc0tiq/factorio-updater/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narc0tiq/factorio-updater/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | psutil; os_name == "nt" 3 | -------------------------------------------------------------------------------- /update_factorio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narc0tiq/factorio-updater/HEAD/update_factorio.py --------------------------------------------------------------------------------