We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I'm on the current main branch of Panel.
main
When I use find_requirements like below I get "packages" included like datetime and random from the stdlib.
find_requirements
datetime
random
stdlib
from panel.io.convert import find_requirements code = """ import panel as pn import pandas as pd import random from datetime import datetime, timedelta """ requirements = find_requirements(code) print(requirements)
$ python app.py ['datetime', 'pandas', 'panel', 'random']
The text was updated successfully, but these errors were encountered:
sys.stdlib_module_names
Successfully merging a pull request may close this issue.
I'm on the current
main
branch of Panel.When I use
find_requirements
like below I get "packages" included likedatetime
andrandom
from thestdlib
.The text was updated successfully, but these errors were encountered: