ENH: pandas read_* wildcard
See original GitHub issuehi every one,i want to use in pandas like this
df = pd.read_excel('*order list*.xlsx')
could panda wildcard? thank you!
Issue Analytics
- State:
- Created 6 years ago
- Comments:7 (4 by maintainers)
Top Results From Across the Web
Pandas reading csv files with partial wildcard - Stack Overflow
I'm trying to write a script that imports a file, then does something with the file and outputs the result into another file....
Read more >Pandas reading csv files with partial wildcard - YouTube
Pandas : Pandas reading csv files with partial wildcard [ Beautify Your Computer : https://www.hows.tech/p/recommended.html ] Pandas ...
Read more >Solved: Wild Card - Alteryx Community
To answer your follow up question - yes, different schemas will error when using wildcards. the field names and types need to be...
Read more >PEP 622 – Structural Pattern Matching
The pattern operator | separates alternative patterns (not unlike regular expressions or EBNF grammars), and _ is a wildcard. (Note that the match...
Read more >There is more to 'pandas.read_csv()' than meets the eye
The primary tool used for data import in pandas is read_csv(). This function accepts the ... The ' *'(asterisk) is a wild card...
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 FreeTop 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
Top GitHub Comments
@dwkenefick in
doc/source/cookbook.rst
there’s a link to the stackoverflow answer http://stackoverflow.com/questions/25210819/speeding-up-data-import-function-pandas-and-appending-to-dataframe/25210900#25210900Basically, we want include an example like that in our documentation. Ideally it would be runnable.
Then in the main IO docs in
io.rst
you can add a little section about reading multiple files and link to the example incookbook.rst
.There’s a link in our cookbook, which links to http://stackoverflow.com/questions/25210819/speeding-up-data-import-function-pandas-and-appending-to-dataframe/25210900#25210900
@wxl3322335 would you want to include the example from StackOverflow in the actual documentation, like some of the other examples?