Bob12345

Results 8 comments of Bob12345

Even without Colorama, I get the handle but kernel32.GetConsoleMode() returns 0. Latest Windows 10 and all the packages. Similar code in C/C++ renders as it should (https://docs.microsoft.com/en-us/windows/console/console-virtual-terminal-sequences)

> > > What Python code are you running? this used to work: ``` from colorama import init, Fore, Back, Style if os.name == 'nt': init(convert=True) print (Style.BRIGHT + Fore.YELLOW...

Now something like this, works just fine in Windows 10. This is C++ and no Colorama: (It's a Microsoft Sample, slightly modified) ```// ConsoleApplication1.cpp : Defines the entry point for...

I may have figured it out (Maybe). I have Python 2.7, 3.4, 3.6 on my Windows10 machine.

you're using proprietary classes (pytz and dateparser). could it be something to do with that? the API simply returns what Binance gives...

Let me put it this way: is anyone reading this able to trade USD on Binance.US using this API or any other API?

> > > found solution, by default its using Binance.com exchange, if you want to use .us pass this to client: > client = Client(api_key, api_secret, tld='us') I've been using...

> > > Alright, I found the solution to get sockets for USD pairs on binance.us: > > ``` > client = Client(api_key, api_secret, tld='us') > socket_manager = BinanceSocketManager(client) >...