requests missing from requirements
See original GitHub issueIt appears pydap uses the requests pacakge, but it’s not listed in the setup.py:
install_requires = [
'numpy',
'Webob',
'Jinja2',
'docopt',
'six >= 1.4.0',
'beautifulsoup4'
]
Issue Analytics
- State:
- Created 6 years ago
- Comments:8 (5 by maintainers)
Top Results From Across the Web
requirements.txt is missing requests · Issue #50 - GitHub
(env) local$ python server.py Traceback (most recent call last): File "server.py", line 15, in <module> from authlib.flask.client import ...
Read more >python - ImportError: No module named requests
Before import requests , you should import sys and then append the copied path. Example: Command Prompt: pip install requests. Output:
Read more >How to PIP Install Requests Python Package - ActiveState
Pip Install Requests as a Dependency. Pip will allow you to declare a specific Requests version as a dependency in a requirements.txt file, ......
Read more >ModuleNotFoundError: No module named 'requests' in Python
The Python "ModuleNotFoundError: No module named 'requests'" occurs when we forget to install the requests module before importing it or install it in...
Read more >Required packages missing when testing a Python project ...
Problem. When testing a Python project with the Snyk CLI, you sometimes get the following error: Please run `pip install -r requirements.txt`.
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
IMHO better not to. From a server perspective requests is not required right? As a server deployment it would mean less moving parts. Thoughts?
Sent from my iPhone
@laliberte @wholmgren @ChrisBarker-NOAA thanks for the info. I like the idea of splitting between
pydap-client
andpydap-server
but that’s a longer term move that needs more discussion.Having said this, sounds like the path forward is to include
requests
as part of Pydap proper. I’ll issue a PR shortly.