1
0
forked from nat/webbed-site

finally make a stupid repository for this

This commit is contained in:
main
2024-07-26 07:28:48 -07:00
commit a5d0c8b589
149 changed files with 4386 additions and 0 deletions

16
shell.nix Normal file
View File

@ -0,0 +1,16 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = [
pkgs.python312
pkgs.python312Packages.networkx
pkgs.python312Packages.matplotlib
pkgs.python312Packages.requests
pkgs.python312Packages.bleach
pkgs.python312Packages.beautifulsoup4
pkgs.python312Packages.pygraphviz
];
shellHook = ''
python main.py
'';
}