Skip to content

Instantly share code, notes, and snippets.

Quick Start :

Install dependances :

pip3 install -r requirements.txt

before launching script :

open script in editor there multiples variables in the top of the script.

Quick Start :

Install dependances :

pip3 install -r requirements.txt

before launching script :

open script in editor there multiples variables in the top of the script.

@YannickSF
YannickSF / story_watcher.md
Created December 8, 2022 15:59
instagram stories watcher trough python's bot

Quick Start :

Install dependances :

pip3 install -r requirements.txt

before launching script :

open script in editor there multiples variables in the top of the script.

@YannickSF
YannickSF / fibonacci.py
Created November 15, 2021 21:42
fibonacci algorithm
I0 = 0
I1 = 1
def fibonacci(high):
results = [I0, I1]
[results.append(results[v] + results[v + 1]) for v in range(high)]
return results