Denis Volokh
Denis Volokh
Hi, How can I get client with API key only? I have created API key on Credentials page selecting API key [http://www.awesomescreenshot.com/09b69xqda2](url) Thank you.
Where is broadcast_msg_to_chat method?
Hi, Here are my models: ``` class Instrument(models.Model): stock_code = models.CharField(max_length=50) asset_type = models.ForeignKey(AssetType, on_delete=models.DO_NOTHING) data = JSONField() def __str__(self): return self.stock_code ``` ``` class AssetType(models.Model): code = models.CharField(max_length=5) name...
Hi, Could you please show me how to log in or respond to message type A? I have code in Python that is based on QuickFIX library and could not...
Hi, I have a problem with building filter on a timestamp field. I have defined filter in my MarketDataResource(resources.MongoEngineResource) `filtering = { "instrument" : ALL, "timestamp" : ["gte", "lte", "range"],...
Hi, Thank for your library. Have you added your library to bower packager? I tried to install it with "bower install angular-l10n" and it installed something different from this repo...
Could you give an example how to connect with redis?
Hi, Are you going to make plugin for DynamoDB?
Hi, Thank you for your library, it looks similar to erlang pattern matching which I really love and was looking in python. Could you give me an example of how...
Hi, Is it possible to combine filter and zfilter, for example: Person.objects.filter(zipcode="123").zfilter(created_at__in=(datetime(2010, 4, 20, 5, 2, 0), datetime(2010, 5, 1))) Or maybe there is another way to do it?