tweepy init

This commit is contained in:
2024-10-12 23:06:45 -06:00
parent 18abdbd0d8
commit 29dfbd41ad
5 changed files with 1989 additions and 0 deletions

18
tweepy/shell.nix Normal file
View File

@@ -0,0 +1,18 @@
{ pkgs ? import <nixpkgs> { } }:
with pkgs;
mkShell {
packages = [
geckodriver
(python3.withPackages (ps:
with ps; [
tweepy
requests
beautifulsoup4
selenium
webdriver-manager
]))
];
buildInputs = [ ];
}