Coder Social home page Coder Social logo

proxy_ibm's Introduction

Proxy_IBM

proxy_ibm's People

Contributors

richardss avatar

Watchers

 avatar

proxy_ibm's Issues

test

@autopilot :from twisted.internet import reactor, protocol, threads
from twisted.web.client import Agent
from twisted.web.http_headers import Headers
import threading

class ProxyProtocol(protocol.Protocol):
def init(self, agent):
self.agent = agent

def connectionMade(self):
    self.buffer = []

def dataReceived(self, data):
    self.buffer.append(data)
    self.forwardData(data)

def forwardData(self, data):
    d = threads.deferToThread(
        agent.request,
        b"POST",
        b"WEBHOOK_URL",
        Headers({"Content-Type": ["application/json"]}),
        b''.join(self.buffer)
    )
    d.addCallback(lambda _: self.transport.write(data))

class ProxyFactory(protocol.Factory):
def init(self, agent):
self.agent = agent

def buildProtocol(self, addr):
    return ProxyProtocol(self.agent)

Crea l'oggetto Agent per effettuare le richieste HTTP

agent = Agent(reactor)

Crea l'istanza del factory del proxy

proxyFactory = ProxyFactory(agent)

Avvia il proxy su localhost, porta 5529

reactor.listenTCP(5529, proxyFactory)

Avvia il reactor di Twisted in un thread separato

reactor_thread = threading.Thread(target=reactor.run, args=(False,))
reactor_thread.start()

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.