Skip to content
This repository was archived by the owner on Jun 4, 2022. It is now read-only.
This repository was archived by the owner on Jun 4, 2022. It is now read-only.

get cookie via proxy #6

@pausiert

Description

@pausiert

the script doesn't work in germany since the gema (representative of music publishers) forced to shut down grooveshark here
good news: everythink works fine if you catch the cookie via proxy (like firefox plugin "grooveshark unlocker")
simply change a few lines:

# SETTINGS
PROXY = False
HOST = example.com
PORT = 1234
# ...
def init():
    if PROXY:
        conn = httplib.HTTPConnection(HOST, PORT)
        conn.set_tunnel("grooveshark.com")
        conn.connect()
    else:
        conn = httplib.HTTPConnection("grooveshark.com")
# ...

cheers

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions