Skip to content

Instantly share code, notes, and snippets.

@kratsg
Last active August 29, 2015 14:10
Show Gist options
  • Save kratsg/9ea8dc715c04103d08c4 to your computer and use it in GitHub Desktop.
Save kratsg/9ea8dc715c04103d08c4 to your computer and use it in GitHub Desktop.
Last login: Sun Dec 7 15:54:34 on ttys000
Lord Stark:~/cloudchaser (master)$ workon soundcloud
(soundcloud)Lord Stark:~/cloudchaser (master)$ python
Python 2.7.8 (default, Oct 19 2014, 16:03:53)
[GCC 4.2.1 Compatible Apple LLVM 6.0 (clang-600.0.51)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import soundcloud
>>> from sc_pagerank import computePR, initializePR
>>> import sc_api_calls as scac
>>>
>>> import multiprocessing as mp
>>> from cc_mp_classes import Consumer, Task, bookTasks
>>> artistGraph = nx.MultiDiGraph()
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
NameError: name 'nx' is not defined
>>> import sys
>>> import networkx as nx
>>> artistGraph = nx.MultiDiGraph()
>>> client = soundcloud.Client(client_id='454aeaee30d3533d6d8f448556b50f23')
>>> raw_name = 'tedybrewski'
>>> search = client.get('/users/', q = raw_name)[0]
>>> search
<soundcloud.resource.Resource object at 0x109576790>
>>> search.username
u'TEDYBREWSKI'
>>> scac.id2username(raw_name)
'TEDYBREWSKI'
>>> scac.id2username(search.id)
'TEDYBREWSKI'
>>> bool(scac.id2username(search.id))
True
>>> tasks = mp.Queue()
>>> bookTasks(tasks, search.id)
>>> tasks
<multiprocessing.queues.Queue object at 0x1095aa610>
>>> list(tasks)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: 'Queue' object is not iterable
>>> tasks.
tasks.__class__( tasks.__subclasshook__( tasks._sem
tasks.__delattr__( tasks.__weakref__( tasks._send(
tasks.__dict__ tasks._after_fork( tasks._start_thread(
tasks.__doc__ tasks._buffer tasks._thread
tasks.__format__( tasks._close( tasks._wlock
tasks.__getattribute__( tasks._closed tasks._writer
tasks.__getstate__( tasks._feed( tasks.cancel_join_thread(
tasks.__hash__( tasks._finalize_close( tasks.close(
tasks.__init__( tasks._finalize_join( tasks.empty(
tasks.__module__ tasks._joincancelled tasks.full(
tasks.__new__( tasks._jointhread( tasks.get(
tasks.__reduce__( tasks._maxsize tasks.get_nowait(
tasks.__reduce_ex__( tasks._notempty tasks.join_thread(
tasks.__repr__( tasks._opid tasks.put(
tasks.__setattr__( tasks._poll( tasks.put_nowait(
tasks.__setstate__( tasks._reader tasks.qsize(
tasks.__sizeof__( tasks._recv(
tasks.__str__( tasks._rlock
>>> next_text = tasks.get()
>>> next_task
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
NameError: name 'next_task' is not defined
>>> next_text
<cc_mp_classes.Task object at 0x10950d690>
>>> next_text.artist
3480945
>>> next_text.action
'followings'
>>> answer = next_text()
getFollowings: Analyzing TEDYBREWSKI's 100 followings...
>>> answer
[91234816, 40773124, 40091662, 3191823, 42628577, 38112793, 12206620, 1948704, 16382433, 11796020, 45146165, 2407481, 54459454, 11278401, 29374538, 16857015, 5919821, 13746770, 54959699, 2112596, 97401437, 11872357, 19286117, 56058641, 101408360, 4098155, 113399405, 43262066, 2183804, 6937215, 19576683, 12626579, 58061974, 100611735, 61246405, 10965665, 11079846, 108391084, 60245165, 50131630, 48968382, 86081056, 133826, 5198019, 115291848, 4440801, 17805555, 3944375, 10216694, 2238202, 40902398, 15179013, 33576204, 70323985, 187161, 55596316, 110528286, 976672, 7700773, 2896174, 72600371, 78784273, 18849598, 72361799, 87112522, 10550094, 5351248, 17592665, 11623774, 11914591, 98267490, 93437796, 77157, 4819303, 15776619, 4514175, 29676417, 15871876, 39232393, 72655754, 7583125, 61867928, 1977253, 16569766, 4799402, 36090288, 4246455, 25953726, 6407618, 4791237, 7948234, 15569882, 64743392, 11517409, 17024995, 121604581, 23130087, 34212337, 7993843, 27275263]
>>> [next_text.artist, next_text.action, answer]
[3480945, 'followings', [91234816, 40773124, 40091662, 3191823, 42628577, 38112793, 12206620, 1948704, 16382433, 11796020, 45146165, 2407481, 54459454, 11278401, 29374538, 16857015, 5919821, 13746770, 54959699, 2112596, 97401437, 11872357, 19286117, 56058641, 101408360, 4098155, 113399405, 43262066, 2183804, 6937215, 19576683, 12626579, 58061974, 100611735, 61246405, 10965665, 11079846, 108391084, 60245165, 50131630, 48968382, 86081056, 133826, 5198019, 115291848, 4440801, 17805555, 3944375, 10216694, 2238202, 40902398, 15179013, 33576204, 70323985, 187161, 55596316, 110528286, 976672, 7700773, 2896174, 72600371, 78784273, 18849598, 72361799, 87112522, 10550094, 5351248, 17592665, 11623774, 11914591, 98267490, 93437796, 77157, 4819303, 15776619, 4514175, 29676417, 15871876, 39232393, 72655754, 7583125, 61867928, 1977253, 16569766, 4799402, 36090288, 4246455, 25953726, 6407618, 4791237, 7948234, 15569882, 64743392, 11517409, 17024995, 121604581, 23130087, 34212337, 7993843, 27275263]]
>>> next_text.__str__()
'Get followings: 3480945'
>>> artist, action, newArtists = [next_text.artist, next_text.action, answer]
>>> bool(newArtists)
True
>>> bool([])
False
>>> if artistGraph.__contains__(artist)
KeyboardInterrupt
>>> scac.addFollowings(artist, newArtists, artistGraph)
Link from TEDYBREWSKI to ☹ FUTURE INTERNET ☹ successfully added to artistGraph!
Link from TEDYBREWSKI to Rapgamewarrensapp successfully added to artistGraph!
Link from TEDYBREWSKI to NikkoSan successfully added to artistGraph!
Link from TEDYBREWSKI to BADMXN successfully added to artistGraph!
Link from TEDYBREWSKI to Breezy Montclair successfully added to artistGraph!
Link from TEDYBREWSKI to Gvcci Hvcci successfully added to artistGraph!
Link from TEDYBREWSKI to Trip Dixon successfully added to artistGraph!
Link from TEDYBREWSKI to Canya Reial successfully added to artistGraph!
Link from TEDYBREWSKI to pacmanADV successfully added to artistGraph!
Link from TEDYBREWSKI to WICCA PHASE SPRINGS 4EVR successfully added to artistGraph!
Link from TEDYBREWSKI to JPDREAMTHUG successfully added to artistGraph!
Link from TEDYBREWSKI to Kodyak successfully added to artistGraph!
Link from TEDYBREWSKI to COSMOVITALI ▲☥▲ successfully added to artistGraph!
Link from TEDYBREWSKI to Prada Wavez successfully added to artistGraph!
Link from TEDYBREWSKI to bine☃ successfully added to artistGraph!
Link from TEDYBREWSKI to Arc Neon successfully added to artistGraph!
Link from TEDYBREWSKI to MelissaHasAGun successfully added to artistGraph!
Link from TEDYBREWSKI to GigaHD successfully added to artistGraph!
Link from TEDYBREWSKI to alexisinacidland successfully added to artistGraph!
Link from TEDYBREWSKI to Fughazi successfully added to artistGraph!
Link from TEDYBREWSKI to celdenuit successfully added to artistGraph!
Link from TEDYBREWSKI to shu 3D successfully added to artistGraph!
Link from TEDYBREWSKI to O'GRIME successfully added to artistGraph!
Link from TEDYBREWSKI to falls­ successfully added to artistGraph!
Link from TEDYBREWSKI to Yo Patso successfully added to artistGraph!
Link from TEDYBREWSKI to verybadli successfully added to artistGraph!
Link from TEDYBREWSKI to BandoBeatz successfully added to artistGraph!
Link from TEDYBREWSKI to softest hard successfully added to artistGraph!
Link from TEDYBREWSKI to Gravy ® successfully added to artistGraph!
Link from TEDYBREWSKI to Ania Shestakova successfully added to artistGraph!
Link from TEDYBREWSKI to ✦ godie ✦ successfully added to artistGraph!
Link from TEDYBREWSKI to Dyfferant Demeanor successfully added to artistGraph!
Link from TEDYBREWSKI to niks80001 successfully added to artistGraph!
Link from TEDYBREWSKI to SNOBMOBB successfully added to artistGraph!
Link from TEDYBREWSKI to 3zvm successfully added to artistGraph!
Link from TEDYBREWSKI to P2THEGOLDMA$K successfully added to artistGraph!
Link from TEDYBREWSKI to O Billz successfully added to artistGraph!
Link from TEDYBREWSKI to Mastergang successfully added to artistGraph!
Link from TEDYBREWSKI to ᴢᴏᴏᴛ ʟᴇggᴢ successfully added to artistGraph!
Link from TEDYBREWSKI to Lonny X successfully added to artistGraph!
Link from TEDYBREWSKI to dj pentagram successfully added to artistGraph!
Link from TEDYBREWSKI to YungGuccimane successfully added to artistGraph!
Link from TEDYBREWSKI to FUHNETIK successfully added to artistGraph!
Link from TEDYBREWSKI to Paco Escobar パコエスコバル successfully added to artistGraph!
Link from TEDYBREWSKI to Sam Futterman successfully added to artistGraph!
Link from TEDYBREWSKI to BalanceMAYNE successfully added to artistGraph!
Link from TEDYBREWSKI to Based Frequency successfully added to artistGraph!
Link from TEDYBREWSKI to Aaron Cohen successfully added to artistGraph!
Link from TEDYBREWSKI to EYEDRESS successfully added to artistGraph!
Link from TEDYBREWSKI to pussin5 successfully added to artistGraph!
Link from TEDYBREWSKI to CoolΔSwim successfully added to artistGraph!
Link from TEDYBREWSKI to Alex_Cordova successfully added to artistGraph!
Link from TEDYBREWSKI to ARTYROBO2 successfully added to artistGraph!
Link from TEDYBREWSKI to YPH successfully added to artistGraph!
Link from TEDYBREWSKI to Eilen successfully added to artistGraph!
Link from TEDYBREWSKI to MISOGI successfully added to artistGraph!
Link from TEDYBREWSKI to B4wifi successfully added to artistGraph!
Link from TEDYBREWSKI to Darq E Freaker successfully added to artistGraph!
Link from TEDYBREWSKI to Katzski successfully added to artistGraph!
Link from TEDYBREWSKI to Gamera (Beats for Sale) successfully added to artistGraph!
Link from TEDYBREWSKI to Chill Trippy Nigga Shit successfully added to artistGraph!
Link from TEDYBREWSKI to VAPERROR successfully added to artistGraph!
Link from TEDYBREWSKI to hnrk successfully added to artistGraph!
Link from TEDYBREWSKI to DJ DIALUP successfully added to artistGraph!
Link from TEDYBREWSKI to AcidBlunts successfully added to artistGraph!
Link from TEDYBREWSKI to Gide◎n successfully added to artistGraph!
Link from TEDYBREWSKI to Izno Trust successfully added to artistGraph!
Link from TEDYBREWSKI to Yetti (YDK) successfully added to artistGraph!
Link from TEDYBREWSKI to young venmo prince successfully added to artistGraph!
Link from TEDYBREWSKI to AtariJones successfully added to artistGraph!
Link from TEDYBREWSKI to HAZMATCAZ successfully added to artistGraph!
Link from TEDYBREWSKI to Two Parent Home successfully added to artistGraph!
Link from TEDYBREWSKI to bambamannn successfully added to artistGraph!
Link from TEDYBREWSKI to Jimmy V successfully added to artistGraph!
Link from TEDYBREWSKI to HOLYSMOKES successfully added to artistGraph!
Link from TEDYBREWSKI to felly. successfully added to artistGraph!
Link from TEDYBREWSKI to Ziggy Black successfully added to artistGraph!
Link from TEDYBREWSKI to Cyrax! successfully added to artistGraph!
Link from TEDYBREWSKI to STL Zoovie successfully added to artistGraph!
Link from TEDYBREWSKI to ~ $$$iDD WAVEY ~ successfully added to artistGraph!
Link from TEDYBREWSKI to ok lou successfully added to artistGraph!
Link from TEDYBREWSKI to GUAPMANG successfully added to artistGraph!
Link from TEDYBREWSKI to G R X V E S successfully added to artistGraph!
Link from TEDYBREWSKI to TAHA successfully added to artistGraph!
Link from TEDYBREWSKI to Dasha_da successfully added to artistGraph!
Link from TEDYBREWSKI to Deverano successfully added to artistGraph!
Link from TEDYBREWSKI to Moloshe (Chimichangaz) successfully added to artistGraph!
Link from TEDYBREWSKI to BABii WOLF successfully added to artistGraph!
Link from TEDYBREWSKI to JOEYY successfully added to artistGraph!
Link from TEDYBREWSKI to DENZELCURRYPH successfully added to artistGraph!
Link from TEDYBREWSKI to RAHEAVEN successfully added to artistGraph!
Link from TEDYBREWSKI to fluence. successfully added to artistGraph!
Link from TEDYBREWSKI to Caligul4 successfully added to artistGraph!
Link from TEDYBREWSKI to S0ul Unreal successfully added to artistGraph!
Link from TEDYBREWSKI to DELISHA DESIGNER successfully added to artistGraph!
Link from TEDYBREWSKI to Avi Twat successfully added to artistGraph!
Link from TEDYBREWSKI to Trill Spector successfully added to artistGraph!
Link from TEDYBREWSKI to chilllllin successfully added to artistGraph!
Link from TEDYBREWSKI to Ari Y2k (yung gho$t) successfully added to artistGraph!
Link from TEDYBREWSKI to Yung Turd successfully added to artistGraph!
>>> exit()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment