curl's request (using example at http://developers.soundcloud.com/docs/api/tracks#uploading):
POST /tracks.json HTTP/1.1
User-Agent: curl/7.15.5 (i686-redhat-linux-gnu) libcurl/7.15.5
OpenSSL/0.9.8b zlib/1.2.3 libidn/0.6.5
Host: api.soundcloud.com
Accept: */*
Content-Length: 7924
Expect: 100-continue
Content-Type: multipart/form-data;
boundary=----------------------------4a4156d0aebd
------------------------------4a4156d0aebd
Content-Disposition: form-data; name="oauth_token"
A_VALID_TOKEN
------------------------------4a4156d0aebd
Content-Disposition: form-data; name="track[asset_data]"; filename="1.txt"
Content-Type: application/octet-stream
<file data>
------------------------------4a4156d0aebd
Content-Disposition: form-data; name="track[title]"
A nice track title
------------------------------4a4156d0aebd
Content-Disposition: form-data; name="track[sharing]"
private
------------------------------4a4156d0aebd--
poster's request:
POST /tracks.json HTTP/1.1
Accept-Encoding: identity
Content-Length: 479
Host: api.soundcloud.com
Content-Type: multipart/form-data; boundary=f98467a0174a487eb23e2bf019936ec4
Connection: close
User-Agent: Python-urllib/2.7
--f98467a0174a487eb23e2bf019936ec4
Content-Disposition: form-data; name="track[title]"
Content-Type: text/plain; charset=utf-8
SONG NAME
--f98467a0174a487eb23e2bf019936ec4
Content-Disposition: form-data; name="oauth_token"
Content-Type: text/plain; charset=utf-8
SOUNDCLOUD_TOKEN
--f98467a0174a487eb23e2bf019936ec4
Content-Disposition: form-data; name="track[asset_data]"; filename="1.txt"
Content-Type: text/plain
<file data>
--f98467a0174a487eb23e2bf019936ec4--
I assume SoundCloud doesn't play well with excessive "Content-Type:" headers.
I suggest trying to use JSON format instead. Since they return it, they should be able to read it as well. I suspect they only keep multipart/form-data to be able to use curl for examples/testing (there's no widespread equivalent for JSON), hence the poor support.
import json,urllib2
print urllib2.urlopen("https://api.soundcloud.com/tracks.json",json.dumps(\
{
"oauth_token": "SOUNDCLOUD_TOKEN",
"track[title]": "SONG NAME",
"track[asset_data]" : open("song.mp3", "rb").read(),
} )).read()
You might consider using stock SC Python bindings as well.