Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/facebookresearch/iopath
A python library that provides common I/O interface across different storage backends.
https://github.com/facebookresearch/iopath
Last synced: 1 day ago
JSON representation
A python library that provides common I/O interface across different storage backends.
- Host: GitHub
- URL: https://github.com/facebookresearch/iopath
- Owner: facebookresearch
- License: mit
- Created: 2020-08-31T23:10:23.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2024-08-09T11:47:13.000Z (3 months ago)
- Last Synced: 2024-08-09T13:07:43.441Z (3 months ago)
- Language: Python
- Size: 395 KB
- Stars: 129
- Watchers: 14
- Forks: 23
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# iopath
iopath is a lightweight I/O abstraction library that provides a common interface
across storage backends.## Install:
iopath requires python >= 3.6.
Use one of the following ways to install:
### 1. Install from PyPI (updated nightly)
```
pip install -U iopath
```### 2. Install from Anaconda Cloud (updated nightly)
```
conda install -c conda-forge yacs
conda install -c iopath iopath
```### 3. Install latest from GitHub
```
pip install -U 'git+https://github.com/facebookresearch/iopath'
```### 4. Install from a local clone
```
git clone https://github.com/facebookresearch/iopath
pip install -e iopath
```## License
This library is released under the MIT License (https://github.com/facebookresearch/iopath/blob/master/LICENSE).