GithubHelp home page GithubHelp logo

ccurl's Introduction

Ccurl - Caching curl

ccurl.py module

FUNCTIONS:

add(src, url)
    Add file from <src> to the cache using <url> for future retrieval

delete(url)
    Delete <url> from cache

get(url, dest)
    Get file from <url> and save it to <dest>.

    Tries to retrieve <url> from cache, otherwise stores it in
    cache following retrieval.

Command line interface

add:

Syntax: ./cmd_add.py <path> <url>
Add file from path to cache using url for future retrieval

Arguments:

    path            Path to source file
    url             URL of the file's origin

Environment:

    CCURL_CACHE     Path to ccurl's cache (default: $HOME/.ccurl/global)

del:

Syntax: ./cmd_del.py <url>
Remove file from cache using url

Arguments:

    url             URL of the file's origin

Environment:

    CCURL_CACHE     Path to ccurl's cache (default: $HOME/.ccurl/global)

Note:

    To delete all files that aren't being used (ie. no hardlinks):
    cd $HOME/.ccurl/global
    find -type f -name "*.deb" -links 1 -delete
get::

Syntax: ./cmd_get.py <url> [ <path> ] Get file from url and save to path

Arguments:

url URL of file to get path Path to save file (default: .)

Environment:

CCURL_CACHE Path to ccurl's cache (default: $HOME/.ccurl/global)

ccurl's People

Contributors

alonswartz avatar lirazsiri avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.