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
already do this in read_json
read_json
first check if its a valid filename (which is safe in python) if so, then open and process else try to use as a StringIO(buffer)
StringIO(buffer)
The text was updated successfully, but these errors were encountered:
the downside of this is that a non-existant file returns an empty frame which is odd
`` (Pdb) path '1yLtjInbe1.csv' (Pdb) self.read_csv(path) Empty DataFrame Columns: [1yLtjInbe1.csv] Index: []
Sorry, something went wrong.
No branches or pull requests
already do this in
read_json
first check if its a valid filename (which is safe in python)
if so, then open and process
else try to use as a
StringIO(buffer)
The text was updated successfully, but these errors were encountered: