Metadata-Version: 2.1
Name: msaFilesystem
Version: 0.0.3
Summary: msaFilesystem - Agnostic Abstract Filesystem API which allows to use S3, GCS, Azure Datalake, your local FS, Youtube etc
Home-page: https://github.com/swelcker/msaFilesystem
Download-URL: http://pypi.python.org/pypi/msaFilesystem
Author: Stefan Welcker
Author-email: stefan@u2d.ai
License: MIT
Project-URL: Documentation, http://msaFilesystem.u2d.ai/
Project-URL: Source, https://github.com/swelcker/msaFilesystem
Project-URL: Tracker, https://github.com/swelcker/msaFilesystem/issues
Classifier: Development Status :: 3 - Alpha
Classifier: Framework :: FastAPI
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Topic :: Database
Classifier: Topic :: Database :: Front-Ends
Classifier: Topic :: Documentation
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI :: Server
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Description-Content-Type: text/markdown
License-File: LICENCE

<p align="center">
  <img src="http://logos.u2d.ai/msaFilesystem_logo.png?raw=true" alt="msaFilesystem Logo"/>
</p>

------
<p align="center">
    <em>msaFilesystem - Agnostic Abstract Filesystem API which allows to use S3, GCS, Azure Datalake, your local FS, Youtube etc</em>
<br>
    Optimized for use with FastAPI/Pydantic.
<br>
  <a href="https://pypi.org/project/msaFilesystem" target="_blank">
      <img src="https://img.shields.io/pypi/v/msaFilesystem?color=%2334D058&label=pypi%20package" alt="Package version">
  </a>
  <a href="https://pypi.org/project/msaFilesystem" target="_blank">
      <img src="https://img.shields.io/pypi/pyversions/msaFilesystem.svg?color=%2334D058" alt="Supported Python versions">
  </a>
</p>

------

**Alpha/EarlyStage !!!**

**Documentation**: <a href="https://msaFilesystem.u2d.ai/" target="_blank">msaFilesystem Documentation (https://msaFilesystem.u2d.ai/)</a>

------

## Features
- **Abstract Filesystem**: Agnostic Abstract Filesystem API which allows to use S3, GCS, Azure Datalake, your local FS, Youtube etc. Based on: [PyFilesystem2](https://github.com/PyFilesystem/pyfilesystem2.)
- **App Filesystems**: Manage filesystems in platform-specific application directories. These classes abstract away the different requirements for user data across platforms.
- **FTP Filesystem**: A FTP (File Transport Protocol) Filesystem. Optionally, the connection can be made securely via TLS. This is known as FTPS, or FTP Secure.
- **Memory Filesystem**: A filesystem that stored in memory. Memory filesystems are useful for caches, temporary data stores, unit testing, etc.
- **Mount Filesystem**: A Mount FS is a virtual filesystem which can seamlessly map sub-directories on to other filesystems.
- **Multi Filesystem**: A MultiFS is a filesystem composed of a sequence of other filesystems, where the directory structure of each overlays the previous filesystem in the sequence.
- **OS Filesystem**: Manage the filesystem provided by your OS. In essence, an OSFS is a thin layer over the io and os modules of the Python standard library.
- **Sub Filesystem**: Manage a directory in a parent filesystem. A SubFS is a filesystem object that maps to a sub-directory of another filesystem.
- **Tar Filesystem**: Read and write tar files.
- **Temporary Filesystem**: Manage filesystems in temporary locations. A temporary filesytem is stored in a location defined by your OS (/tmp on linux). The contents are deleted when the filesystem is closed.
- **Zip Filesystem**: Read and write zip files.
- **SMB Filesystem**: A filesystem over SMB.
- **WebDAV Filesystem**: A filesystem for WebDAV. 
- **Azure Datalake & S3FS Filesystem**: A filesystem for Azure Datalake storage & S3FS.
- **Google Cloud Storage (GCS) Filesystem**: A filesystem for Google Cloud Storage (GCS). With GCSFS, you can interact with Google Cloud Storage as if it was a regular filesystem.
- **Google Drive Filesystem**: A filesystem for Google Drive. Interact with Google Drive as if it was a regular filesystem.
- **Dropbox Filesystem**: A filesystem for Dropbox.
- **OneDrive Filesystem**: A filesystem for Dropbox.
- **YouTube Videos and Playlists Filesystem**: A filesystem for YouTube Videos and Playlists.
- **External Filesystems**: See the following [wiki page](https://www.pyfilesystem.org/page/index-of-filesystems/) for a list of filesystems not in the core library, and community contributed filesystems.
    
## Main Dependencies

- **fs~=2.4.16**: Module that provides a common interface to any filesystem
- **six~=1.16.0**: Python 2 and 3 compatibility utilities
- **pysmb~=1.2.8**: SMB/CIFS library
- **fs.webdavfs~=0.4.2**: WebDAV support
- **fs-dlk~=0.1.3**: Azure Datalake support
- **fs-s3fs~=1.1.1**: Amazon S3 filesystem support
- **fs-gcsfs~=1.5.1**: Google Cloud Storage (GCS) support
- **fs.googledrivefs~=2.3.0**: Google Drive support
- **fs.dropboxfs~=0.2.2.post2**: Dropbox support
- **fs.onedrivefs~=1.1.1**: OneDrive support
- **fs.youtube~=0.3.1**: Youtube support
- **fs.smbfs~=1.0.5**: SMB support

## License Agreement

- `msaFilesystem` is based on `MIT` open source and free to use, it is free for commercial use, but please show/list the copyright information about msaFilesystem somewhere.


## How to create the documentation

We use mkdocs and mkdocsstring. The code reference and nav entry get's created virtually by the triggered python script /docs/gen_ref_pages.py while ``mkdocs`` ``serve`` or ``build`` is executed.

### Requirements Install for the PDF creation option:
PDF Export is using mainly weasyprint, if you get some errors here pls. check there documentation. Installation is part of the msaFilesystem, so this should be fine.

We can now test and view our documentation using:

    mkdocs serve

Build static Site:

    mkdocs build


## Build and Publish
  
Build:  

    python setup.py sdist

Publish to pypi:

    twine upload dist/*
