
Security News
Meet Socket at Black Hat and DEF CON 2025 in Las Vegas
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
- Release. -
multiple loader
(hereinafter referred to as EEV xld
) is a python library. It is a library that reads the main data file extensions often used by data scientists for data analysis in a "simpler" and "one-line" format.
xld
is a python library that automatically loads files in a single line, without the need to specify with statements or modes. Just pass the file path and it will recognize the file extension and load it using the appropriate library.
xld
is a library that automatically recognizes file extensions and loads files.
The extensions supported by the current version(1.0.1)
are the following extensions:
More extensions will be supported in the future.
The supported libraries are as follows:
Standard features include the following,
Basic Usage
import multipleloader as xld
load_data = xld.load("test_file.csv")
Simply import the library and pass the file path you wish to load.
The actual loading screen will look like this:
In addition, the following LIBRARIES are supported for the extensions.
You can also specify a library if you wish to load data using a library other than the one configured by default.
import multipleloader as xld
load_data = xld.load("test_file.csv", lib="numpy") # Default is pandas
In the sample code above, numpy is specified for library. When specifying library, numpy also supports spelling inconsistencies such as very commonly used abbreviations such as np.
The list of arguments, etc. that can be used in xld
is as follows.
import multipleloader as xld
loaded_data = xld( # The results will always return with a type of List.
filepath, # Required argument
### List to be used in the target function.
lib,
### Argument to set if you want to use the default library.
encoding
### To specify the encoding.
)
pip install multipleloader
pip install git+https://github.com/Domzou-kun/xld.git
or install via SSH
pip install git+git://github.com:Domzou-kun/xld.git
Domzou
If you want to know about past versions, please refer to version history.
xld has a MIT license, as found in the LICENSE file.
FAQs
Automatic loading of files with any extension
We found that multipleloader demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.