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
In this code example: https://github.com/prise-3d/rawls_api/blob/devel/api.py#L41, the path construction is not safe.
Package os gives the possibility to build path in a safe way.
os
Example:
import os global_path = 'projects' csv_path = os.path.join(global_path, 'data', 'csv_data')
This issue can be linked with issue #2.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In this code example: https://github.com/prise-3d/rawls_api/blob/devel/api.py#L41, the path construction is not safe.
Package
os
gives the possibility to build path in a safe way.Example:
This issue can be linked with issue #2.
The text was updated successfully, but these errors were encountered: