Josue Kouka

Results 47 comments of Josue Kouka

Hey @unpairestgood, could you please qualify this [commit](https://github.com/josuebrunel/yahoo-fantasy-sport/commit/920e9d87236377d214ac0c7f02f5281797d23661). It's about this issue. Yahoo Documentation is [here](https://developer.yahoo.com/fantasysports/guide/#put). Thanks PS: I think we're almost done, we did a good job so far....

Hello @unpairestgood, > To make sure we understand each other, by "qualify this commit" do you mean: pull the code from that commit to my local machine, then test to...

> What I'd like to do now is add structure so you can pass the player codes and new positions of the players you want to swap in your lineup....

Hello @unpairestgood, Thanks for the feedback. I really hoped it would work :disappointed: . I have commented your [commit](https://github.com/unpairestgood/yahoo-fantasy-sport/commit/cd17ec780e9ec3acf9047e5e03f0ad9ad8e938f1#diff-f4bc68ff01eef7bed2f3a64cad7d37caR318)

Time to create a **docs** folder for https://readthedocs.org/

Just avoid using **_"**_ instead of **_'**_ :smile:

Hello @amcrn , any example of the implementation of a `SingleHostReadyPolicy` please ? edit: I'll try with ```go cluster.PoolConfig = gocql.PoolConfig{ HostSelectionPolicy: gocql.SingleHostReadyPolicy(gocql.RoundRobinHostPolicy()), } ```

Hello @jakubigla , I think you can pass a `from_file` param (file can be *json* or *yaml*) just like [here](https://github.com/josuebrunel/yahoo-oauth/blob/master/tests.py#L36) You might need to have file which looks like this...

Ok, I see. Hum, I think you can try passing them as `args` while instantiating your service ```python s = OAuth2(client_id, client_secret, access_token, ...) ``` Sorry can't test because I...

Ok, I think you'll need to create a `wrapper` class that inherit from `BaseOAuth` ```python from yahoo_oauth.oauth import BaseOAuth class Wrapper(BaseOAuth): def __init__(self, consumer_key, consumer_secret, access_token, refresh_token, ..): self.consumer_key =...