Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add param **values like Flask's url_for to fields.Url #604

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Conversation

felipemfp
Copy link

@felipemfp felipemfp commented Jul 6, 2016

Hey,

I've worked with this awesome framework, but I cannot create a simple output like:

"log": {
  "_links": {
    "self": "/api/v1/company/5/log/2016/6/5"
  }
}

... because my object Log does not have attributes like year, month and day.

Since url_for from Flask accepts **values, why not accept it on output fields? So I just add it.

Now I can:

log_fields = {
  '_links': {'self': fields.Url(year=2016, month=6, day=5)}
}

Or:

log_fields = {
  '_links': {'self': fields.Url(year=lambda x: x.custom_date.year(), month=lambda x: x.custom_date.month(), day=lambda x: x.custom_date.day())}
}

Regards 😃

@suzaku
Copy link

suzaku commented Aug 6, 2016

Is this project still active?

@NickSchimek
Copy link

No, I don't think it is. See issue #883

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants