Skip to content
View s4w3d0ff's full-sized avatar
:octocat:
1 ¯\_(ツ)_/¯ 0
:octocat:
1 ¯\_(ツ)_/¯ 0
Block or Report

Block or report s4w3d0ff

Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. python-poloniex python-poloniex Public

    Poloniex API wrapper for Python 2.7 & 3

    Python 567 167

  2. python-slots python-slots Public

    Simple, expandable, customizable slot machine

    Python 5 1

  3. donnie donnie Public

    Poloniex Trade Bot Toolkit

    Python 4 2

  4. python-paperwallet python-paperwallet Public

    Creates a 100% 'pure local' paperwallet from a local image using PIL

    Python 1 2

  5. Opens a bitcoin.conf and puts conten... Opens a bitcoin.conf and puts contents into a dict
    1
    import os
    2
    
                  
    3
    def readCfg(location):
    4
    	# Make sure file exists...
    5
    	if not os.path.exists(location):
  6. create a tor hashed password without... create a tor hashed password without using `tor --hash-password`
    1
    from os import urandom
    2
    from binascii import b2a_hex
    3
    from hashlib import sha1
    4
    
                  
    5
    def getTorPassHash(secret='password'):