Coder Social home page Coder Social logo

juvenal-yescas / mediafire-dl Goto Github PK

View Code? Open in Web Editor NEW
142.0 142.0 35.0 13 KB

Simple command-line script to download files from mediafire based on gdown

License: MIT License

Python 100.00%
cli downloader mediafire mediafire-dl mediafire-download mediafire-downloader python3

mediafire-dl's People

Contributors

juvenal-yescas avatar kartatz avatar machsix avatar matthewscholefield avatar mirusu400 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

mediafire-dl's Issues

Google Drive

I don't know if it is possible but you couldn't add a Google Drive download, it would be interesting, well it's just a proposal

Missing "https://" match

extractDownloadLink is a function that seeks for link, which begins on http://. Lately many of these links begins on https://.
It's a good idea to add OR function to regex match, just for a quick fix:

previously:

def extractDownloadLink(contents):
    for line in contents.splitlines():
        m = re.search(r'href="(http://download[^"]+)', line)

updated:

def extractDownloadLink(contents):
    for line in contents.splitlines():
        m = re.search(r'href="((http|https)://download[^"]+)', line)

Permission denied

When downloading a public url:

Permission denied: https://www.mediafire.com/?mylink
Maybe you need to change permission over 'Anyone with the link'?

Potentially a new mediafire anti-bot solution

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.