├── .gitignore ├── LICENSE ├── README.md ├── dataflow.py ├── dockerfile ├── requirements.txt └── run.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytewax/crypto-orderbook-app/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytewax/crypto-orderbook-app/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytewax/crypto-orderbook-app/HEAD/README.md -------------------------------------------------------------------------------- /dataflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytewax/crypto-orderbook-app/HEAD/dataflow.py -------------------------------------------------------------------------------- /dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytewax/crypto-orderbook-app/HEAD/dockerfile -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | bytewax==0.19 2 | websockets 3 | -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytewax/crypto-orderbook-app/HEAD/run.sh --------------------------------------------------------------------------------