etrade 0.6.0

Wraps the etrade API and implements the oauth flows
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/env python
import sys

def rust_enum_values(input):
  parts = [part.strip() for part in input.split(',')]
  for part in parts:
    print('#[serde(rename = "'+part+'")]')
    print(part.replace("_", " ").title().replace(" ", "")+",")

if len(sys.argv) < 2:
  print("you need to specify the input string")

rust_enum_values(sys.argv[1])