All Projects → yadayada → Acd_cli

yadayada / Acd_cli

Licence: other
An unmaintained command line interface and FUSE filesystem for Amazon (Cloud) Drive

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Acd cli

Sandboxfs
A virtual file system for sandboxing
Stars: ✭ 286 (-79.06%)
Mutual labels:  fuse-filesystem
Dwarfs
A fast high compression read-only file system
Stars: ✭ 444 (-67.5%)
Mutual labels:  fuse-filesystem
Fuse Ts
Stars: ✭ 6 (-99.56%)
Mutual labels:  fuse-filesystem
X11fs
A tool for manipulating X windows
Stars: ✭ 330 (-75.84%)
Mutual labels:  fuse-filesystem
Ifuse
A fuse filesystem to access the contents of iOS devices
Stars: ✭ 433 (-68.3%)
Mutual labels:  fuse-filesystem
S3fs Fuse
FUSE-based file system backed by Amazon S3
Stars: ✭ 5,733 (+319.69%)
Mutual labels:  fuse-filesystem
xwmfs
X11 Window-Manager file system based on FUSE
Stars: ✭ 21 (-98.46%)
Mutual labels:  fuse-filesystem
Hfsfuse
FUSE driver for HFS+ filesystems
Stars: ✭ 53 (-96.12%)
Mutual labels:  fuse-filesystem
Httpdirfs
A filesystem which allows you to mount HTTP directory listings, with a permanent cache. Now with Airsonic / Subsonic support!
Stars: ✭ 443 (-67.57%)
Mutual labels:  fuse-filesystem
Distribyted
📂 ➡️ 📺 🎶 🎮 Torrent client with on-demand file downloading as a filesystem.
Stars: ✭ 791 (-42.09%)
Mutual labels:  fuse-filesystem
Goofys
a high-performance, POSIX-ish Amazon S3 file system written in Go
Stars: ✭ 3,932 (+187.85%)
Mutual labels:  fuse-filesystem
Catfs
Cache AnyThing filesystem written in Rust
Stars: ✭ 404 (-70.42%)
Mutual labels:  fuse-filesystem
Lxcfs
FUSE filesystem for LXC
Stars: ✭ 602 (-55.93%)
Mutual labels:  fuse-filesystem
Glusterfs
Gluster Filesystem : Build your distributed storage in minutes
Stars: ✭ 3,437 (+151.61%)
Mutual labels:  fuse-filesystem
Fusell Seed
FUSE (the low-level interface) file system boilerplate 📂 🔌 💾
Stars: ✭ 9 (-99.34%)
Mutual labels:  fuse-filesystem
docker-s3fs
S3FS Docker image
Stars: ✭ 18 (-98.68%)
Mutual labels:  fuse-filesystem
Securefs
Filesystem in userspace (FUSE) with transparent authenticated encryption
Stars: ✭ 518 (-62.08%)
Mutual labels:  fuse-filesystem
Zipfs
Example FUSE filesystem that serves a Zip archive
Stars: ✭ 93 (-93.19%)
Mutual labels:  fuse-filesystem
Dungeonfs
A FUSE filesystem and dungeon crawling adventure game engine
Stars: ✭ 979 (-28.33%)
Mutual labels:  fuse-filesystem
Rclone
"rsync for cloud storage" - Google Drive, S3, Dropbox, Backblaze B2, One Drive, Swift, Hubic, Wasabi, Google Cloud Storage, Yandex Files
Stars: ✭ 30,541 (+2135.8%)
Mutual labels:  fuse-filesystem

|Donate| |Gitter| |PyVersion| |Status| |License| |Build| |PyPiVersion|

acd_cli

acd_cli provides a command line interface to Amazon Drive and allows Unix users to mount their drive using FUSE for read and (sequential) write access. It is currently in beta stage.

Node Cache Features

  • local caching of node metadata in an SQLite database
  • addressing of remote nodes via a pathname (e.g. /Photos/kitten.jpg)
  • file search

CLI Features

  • tree or flat listing of files and folders
  • simultaneous uploads/downloads, retry on error
  • basic plugin support

File Operations


- upload/download of single files and directories
- streamed upload/download
- folder creation
- trashing/restoring
- moving/renaming nodes

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

The full documentation is available at `<https://acd-cli.readthedocs.io>`_.

Quick Start
-----------

Have a look at the `known issues`_, then follow the `setup guide <docs/setup.rst>`_ and
`authorize <docs/authorization.rst>`_. You may then use the program as described in the
`usage guide <docs/usage.rst>`_.

CLI Usage Example
-----------------

In this example, a two-level folder hierarchy is created in an empty drive.
Then, a relative local path ``local/spam`` is uploaded recursively using two connections.
::

    $ acd_cli sync
      Getting changes...
      Inserting nodes..

    $ acd_cli ls /
      [PHwiEv53QOKoGFGqYNl8pw] [A] /

    $ acd_cli mkdir /egg/
    $ acd_cli mkdir /egg/bacon/

    $ acd_cli upload -x 2 local/spam/ /egg/bacon/
      [################################]   100.0% of  100MiB  12/12  654.4KB/s

    $ acd_cli tree
      /
          egg/
              bacon/
                  spam/
                      sausage
                      spam
      [...]


The standard node listing format includes the node ID, the first letter of its status
and its full path. Possible statuses are "AVAILABLE" and "TRASH".

Known Issues
------------

It is not possible to upload files using Python 3.2.3, 3.3.0 and 3.3.1 due to a bug in
the http.client module.

API Restrictions
  • the current upload file size limit is 50GiB
  • uploads of large files >10 GiB may be successful, yet a timeout error is displayed (please check the upload by syncing manually)
  • storage of node names is case-preserving, but not case-sensitive (this should not concern Apple users)
  • it is not possible to share or delete files

Contribute

Have a look at the contributing guidelines <CONTRIBUTING.rst>_.

Recent Changes

0.3.3 (upcoming)


* stat
* Appspot OAuth proxy switch

0.3.2
~~~~~
* added ``--remove-source-files`` argument to upload action
* added ``--times`` argument to download action for preservation of modification times
* added streamed overwrite action
* fixed upload of directories containing broken symlinks
* disabled FUSE autosync by default
* added timeout handling for uploads of large files
* fixed exit status >=256
* added config files
* added syncing to/from file
* fixed download of files with failed (incomplete) chunks

0.3.1
~~~~~

* general improvements for FUSE
* FUSE write support added
* added automatic logging
* sphinx documentation added

0.3.0
~~~~~

* FUSE read support added

0.2.2
~~~~~

* sync speed-up
* node listing format changed
* optional node listing coloring added (for Linux or via LS_COLORS)
* re-added possibility for local OAuth

0.2.1
~~~~~

* curl dependency removed
* added job queue, simultaneous transfers
* retry on error

0.2.0
~~~~~

* setuptools support
* workaround for download of files larger than 10 GiB
* automatic resuming of downloads


.. |Donate| image:: https://img.shields.io/badge/paypal-donate-blue.svg
   :alt: Donate via PayPal
   :target: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=V4V4HVSAH4VW8

.. |Gitter| image:: https://img.shields.io/badge/GITTER-join%20chat-brightgreen.svg
   :alt: Join the Gitter chat
   :target: https://gitter.im/yadayada/acd_cli

.. |PyPiVersion| image:: https://img.shields.io/pypi/v/acdcli.svg
   :alt: PyPi
   :target: https://pypi.python.org/pypi/acdcli

.. |PyVersion| image:: https://img.shields.io/badge/python-3.2+-blue.svg
   :alt:

.. |Status| image:: https://img.shields.io/badge/status-beta-yellow.svg
   :alt:

.. |License| image:: https://img.shields.io/badge/license-GPLv2+-blue.svg
   :alt:

.. |Build| image:: https://img.shields.io/travis/yadayada/acd_cli.svg
   :alt:
   :target: https://travis-ci.org/yadayada/acd_cli
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].