web-services
Here are 162 public repositories matching this topic...
I noticed that the docs for EvaluationStatus indicate that "reported" is an acceptable value, but the code for EvaluationStatus itself will not accept it.
obspy.core.event.Pick(time=time, waveform_id=wid, phase_hint="P", evaluation_status="reported")
returns
`ValueError: Setting attribute "evaluation_status" failed. Value "reported" could not be converted to type "Enum(["preliminary
-
Updated
Apr 23, 2020 - C#
-
Updated
Dec 27, 2018 - JavaScript
-
Updated
May 22, 2020 - Dart
-
Updated
May 17, 2019 - Java
As suggested by some users, it would be good to support a new parameter parent.labels (TRUE/FALSE) for aas.data.frame applied to SDMX datasets, that would allow to enrich the dataset also with parent code labels. The code should generic enough:
- to manage parent hierarchies (not only the 1st parent code/label)
- to manage it for all potential codelists describing the dataset and having
-
Updated
Jun 21, 2017 - Java
-
Updated
Oct 8, 2019 - Go
-
Updated
Aug 17, 2017 - Python
-
Updated
May 21, 2020 - C#
-
Updated
May 26, 2020 - Scala
-
Updated
Oct 17, 2019 - Java
-
Updated
Jun 28, 2019 - Java
-
Updated
Jul 2, 2018 - R
-
Updated
Feb 21, 2020 - Rust
-
Updated
Dec 29, 2011 - PHP
-
Updated
Mar 7, 2020 - Java
-
Updated
Jan 29, 2017 - PHP
-
Updated
Mar 11, 2020 - Java
-
Updated
Mar 12, 2020 - Go
-
Updated
May 24, 2020 - Java
-
Updated
May 12, 2020
-
Updated
Mar 5, 2019 - Java
-
Updated
May 27, 2020 - Python
Improve this page
Add a description, image, and links to the web-services topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the web-services topic, visit your repo's landing page and select "manage topics."
Hey! When I was reading the docs and I saw
api.background.task, the first thing that popped into my head was "but you can just useasyncio.create_taskorloop,.run_in_executorfor that without inventing something new!". But then I noticed that it also passes the context vars to the synchronous backround stuff, which is nice. Wonder why that's not the case in the stdlib, cause it would be nic