This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### Keybase proof | |
I hereby claim: | |
* I am f-prime on github. | |
* I am fprime (https://keybase.io/fprime) on keybase. | |
* I have a public key ASB_qIrtxDp98gWTAuWQ8F7JMKGOCaTff0t3eZxe2YrEYgo | |
To claim this, I am signing this object: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
AR | 00 | Capital Federal | |
---|---|---|---|
AR | 01 | Buenos Aires | |
AR | 02 | Catamarca | |
AR | 03 | Córdoba | |
AR | 04 | Corrientes | |
AR | 05 | Entre Rios | |
AR | 06 | Jujuy | |
AR | 07 | Mendoza | |
AR | 08 | La Rioja | |
AR | 09 | Salta |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import socket | |
import json | |
import threading | |
import landerdb | |
class DemoP2P: | |
def __init__(self): | |
self.host = "" | |
self.port = 1337 | |
self.db = landerdb.Connect("nodes.db") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import urllib | |
class AdflySkipper: | |
def __init__(self, url): | |
self.url = url | |
def extract(self): | |
source = urllib.urlopen(self.url).readlines() | |
for line in source: |