- Install Python, pip and (optional) virtualenv.
- Create a virtual environment. This is optional, however recommended. It allows for easier dependency management and prevents messing up your system's Python installation and dependencies. The recommended way is to create one virtual environment for this Code Camp.
- Install all dependencies.
- Install and configure an IDE. We recommend either JetBrains PyCharm or PyDev (based on Eclipse)
This file contains 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
const esClient = require('node-eventstore-client') | |
const uuid = require('uuid/v4') | |
const axios = require('axios') | |
const Long = require('long') | |
const createEventStoreUser = async () => { | |
const callOptions = { | |
baseURL: `http://localhost:2113`, | |
timeout: 5000, | |
auth: { |
This file contains 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
const esClient = require('node-eventstore-client') | |
const uuid = require('uuid/v4') | |
const axios = require('axios') | |
const Long = require('long') | |
const createEventStoreUser = async () => { | |
const callOptions = { | |
baseURL: `http://localhost:2113`, | |
timeout: 5000, | |
auth: { |
This file contains 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
{ | |
"event": null, | |
"link": { | |
"eventStreamId": "$et-DeletionTest", | |
"eventId": "6c773947-b4da-4099-a7cd-864255844263", | |
"eventNumber": { | |
"low": 0, | |
"high": 0, | |
"unsigned": false | |
}, |
This file contains 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
{ | |
"event": { | |
"eventStreamId": "user-31", | |
"eventId": "39334613-4613-4613-4613-154539334613", | |
"eventNumber": { | |
"low": 0, | |
"high": 0, | |
"unsigned": false | |
}, | |
"eventType": "DeletionTest", |
This file contains 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
bleach==1.5.0 | |
cycler==0.10.0 | |
dependency-injector==3.8.0 | |
enum34==1.1.6 | |
h5py==2.7.1 | |
html5lib==0.9999999 | |
Keras==2.1.1 | |
Markdown==2.6.9 | |
matplotlib==2.1.0 | |
numpy==1.13.3 |