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
#!/usr/bin/python | |
# | |
# Skrypt pobierajacy obecne wskazniki spolek ze strony GPW, | |
# po czym dla kazdej spolki wczytujacy parametry jej notowan i akcji | |
# ze strony Money.pl. Rezultatem dzialania sa dwa pliki CSV gotowe do zaimportowania | |
# i obrobienia w Excelu. Pierwszy plik - out.csv zawiera wszystkie dane spolek, drugi | |
# csv_filtered zawiera dane odfiltrowane po restrykcyjnych kryteriach Benjamina Grahama, | |
# autora Inteligentnego Inwestora. | |
# |
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
#!/bin/bash | |
# | |
# Watch current directory (recursively) for file changes, and execute | |
# a command when a file or directory is created, modified or deleted. | |
# | |
# Written by: Senko Rasic <senko.rasic@dobarkod.hr> | |
# | |
# Requires Linux, bash and inotifywait (from inotify-tools package). | |
# | |
# To avoid executing the command multiple times when a sequence of |