Metadata-Version: 2.1
Name: airflow-fs
Version: 0.1.0
Summary: Composable filesystem hooks and operators for Airflow.
Home-page: https://github.com/jrderuiter/airflow-fs
Author: Julian de Ruiter
Author-email: julianderuiter@gmail.com
License: MIT license
Keywords: airflow_fs
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Requires-Dist: apache-airflow
Requires-Dist: future
Provides-Extra: all
Requires-Dist: ftputil ; extra == 'all'
Requires-Dist: s3fs ; extra == 'all'
Requires-Dist: pysftp ; extra == 'all'
Requires-Dist: pyarrow (<0.12) ; (python_version < "3") and extra == 'all'
Requires-Dist: pyarrow ; (python_version >= "3") and extra == 'all'
Provides-Extra: dev
Requires-Dist: moto ; extra == 'dev'
Requires-Dist: pylint ; extra == 'dev'
Requires-Dist: sphinx ; extra == 'dev'
Requires-Dist: sphinx-rtd-theme ; extra == 'dev'
Requires-Dist: watchdog ; extra == 'dev'
Requires-Dist: pytest-helpers-namespace ; extra == 'dev'
Requires-Dist: bump2version ; extra == 'dev'
Requires-Dist: pytest ; extra == 'dev'
Requires-Dist: pytest-mock ; extra == 'dev'
Requires-Dist: pytest-cov ; extra == 'dev'
Requires-Dist: black ; (python_version > "3") and extra == 'dev'
Provides-Extra: ftp
Requires-Dist: ftputil ; extra == 'ftp'
Provides-Extra: hdfs
Requires-Dist: pyarrow (<0.12) ; (python_version < "3") and extra == 'hdfs'
Requires-Dist: pyarrow ; (python_version >= "3") and extra == 'hdfs'
Provides-Extra: s3
Requires-Dist: s3fs ; extra == 's3'
Provides-Extra: sftp
Requires-Dist: pysftp ; extra == 'sftp'

==========
airflow-fs
==========

.. image:: https://img.shields.io/circleci/project/github/jrderuiter/airflow-fs/master.svg
        :target: https://circleci.com/gh/jrderuiter/airflow-fs

.. image:: https://img.shields.io/pypi/v/airflow_fs.svg
        :target: https://pypi.python.org/pypi/airflow-fs

airflow-fs is Python package that provides hooks and operators for manipulating
files across a variety of file systems using Apache Airflow.

Why airflow-fs?
---------------

Airflow-fs implements a single interface for different file system hooks, in contrast
to Airflows builtin file system hooks/operators. This approach allows us to interact
with files independently of the underlying file system, using a common set of operators
for performing general operations such as copying and deleting files.

Currently, airflow-fs supports the following file systems: local, FTP, HDFS, S3 and SFTP.
Support for additional file systems can be added by implementing an additional file
system hook that adheres to the required hook interface. See the documentation for more
details.

Documentation
-------------

Detailed documentation is available at: https://jrderuiter.github.io/airflow-fs.

License
-------

This software is freely available under the MIT license.


=======
History
=======

Version 0.1.0
-------------

Initial release supporting local, FTP, HDFS, S3 and SFTP file systems.


