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

Block or report s4w3d0ff

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

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

Report abuse

Pinned

  1. python-poloniex python-poloniex Public

    Poloniex API wrapper for Python 2.7 & 3

    Python 569 169

  2. python-slots python-slots Public

    Simple, expandable, customizable slot machine

    Python 4 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'):