Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

No imports found? "Writing 0 requirements" #190

Open
TryTryAgain opened this issue Feb 4, 2020 · 1 comment
Open

No imports found? "Writing 0 requirements" #190

TryTryAgain opened this issue Feb 4, 2020 · 1 comment

Comments

@TryTryAgain
Copy link

pipreqs --debug ./file.py --force --savepath ./requirements.txt produces:

DEBUG: Found packages: set()
DEBUG: Found imports: 
DEBUG: Getting packages information from Local/PyPI
DEBUG: Writing 0 requirements:  to ./requirements.txt
INFO: Successfully saved requirements file in ./requirements.txt

file.py "import" contents:

import os
import sys
import time
import zipfile
import argparse
from selenium import webdriver
from selenium.webdriver import ActionChains
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
from selenium.webdriver.common.by import By
from selenium.common.exceptions import TimeoutException
from selenium.common.exceptions import NoSuchElementException
from selenium.webdriver.common.keys import Keys

Not sure why it's not finding anything...

@jonafato
Copy link
Collaborator

jonafato commented Apr 5, 2020

pipreqs currently only operates on directories. If you replace ./file.py with ., it should detect imports as expected.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants