Nima Talebi

Results 30 comments of Nima Talebi

By the way, this isn't really a `robin-stocks` issue, the Robinhood API is the problem. Just looking for some guidance, or possibly a recommendation for an alternative API to use...

I get a response as expected when I try this. When I misspell the name of the watchlist, I get the error you're getting. ``` >>> rh.account.get_watchlist_by_name('DIV') {'results': [{'created_at': '2021-01-09T01:42:08.254474Z',...

Clearly they don't take too kindly to folk not logging in to give away their data. Not sure which ones require no auth though. ```py >>> rh.get_quotes('GM') [{'adjusted_previous_close': '51.040000', 'ask_price':...

https://github.com/addisonlynch/iexfinance/blob/64ee3afe0f3e456e5a0a8120dd7c8c87b28964dd/iexfinance/stocks/base.py#L92-L101 Something like: ```py 87 def _get_field(self, endpoint, field): 88 try: 89 data = getattr(self, "get_%s" % endpoint)(filter_=field) 90 except AttributeError: 91 raise NotImplementedError("Endpoint %s not implemented." % endpoint) 92...

On `block_id` - this wasn't a successful venture and I'm going to remove it. I was trying provide the user with an abstract view of the code, so that they...

Thank you again for the detailed review here @thaJeztah. I agree with everything you've pointed out here, and I've reverted the change in `verifiers.go`. Some of the confusion I've inadvertently...

Hi @thaJeztah, when you get some time could you please take a look at this change and give me your feedback and list of concerns?

I've dropped the dependency on this change in `oras-go`, but I wonder if it still makes sense to keep this change. a) returning a payload + an error seems like...

> The PR title and the description text is confusing. Hard to understand what this PR is. I'll clean this up now and split it into two separate PRs.

This was my first PR, and it was (as pointed out) confusing, poorly documented, and contained more than one target change. Superseded by #77, #78