workspace
stringclasses 1
value | channel
stringclasses 1
value | sentences
stringlengths 1
3.93k
| ts
stringlengths 26
26
| user
stringlengths 2
11
| sentence_id
stringlengths 44
53
| timestamp
float64 1.5B
1.56B
| __index_level_0__
int64 0
106k
|
---|---|---|---|---|---|---|---|
pythondev | help | It's a one off, does that still apply? | 2019-05-20T09:15:19.188400 | Heide | pythondev_help_Heide_2019-05-20T09:15:19.188400 | 1,558,343,719.1884 | 24,321 |
pythondev | help | yup - thats where people go to look for work. even a contract gig | 2019-05-20T09:15:40.188800 | Clemmie | pythondev_help_Clemmie_2019-05-20T09:15:40.188800 | 1,558,343,740.1888 | 24,322 |
pythondev | help | Sure no problem, thanks! | 2019-05-20T09:15:45.189000 | Heide | pythondev_help_Heide_2019-05-20T09:15:45.189000 | 1,558,343,745.189 | 24,323 |
pythondev | help | I have api call and list of param like id. I need to iterate through all the ids and make an api call. I wrote a for loop and attached id to the request and made an api call. This works but I have lot of ids and its slow. I need to make it faster. | 2019-05-20T09:47:28.191600 | Leanora | pythondev_help_Leanora_2019-05-20T09:47:28.191600 | 1,558,345,648.1916 | 24,324 |
pythondev | help | Knowing how to ask a good question is a highly invaluable skill that will benefit you greatly in any career. Two good resources for suggestions and strategies to help you structure and phrase your question to make it easier for those here to understand your problem and help you work to a solution are:
• <https://www.mikeash.com/getting_answers.html>
• <https://stackoverflow.com/help/how-to-ask>
| 2019-05-20T09:48:13.191900 | Leana | pythondev_help_Leana_2019-05-20T09:48:13.191900 | 1,558,345,693.1919 | 24,325 |
pythondev | help | <@Leanora> can you show the code you have? | 2019-05-20T09:49:40.192500 | Clemmie | pythondev_help_Clemmie_2019-05-20T09:49:40.192500 | 1,558,345,780.1925 | 24,326 |
pythondev | help | Please use the snippet feature, or backticks, when sharing code. You can do so by clicking on the :heavy_plus_sign: on the left of the input box for a snippet.
For more information on snippets click <https://get.slack.help/hc/en-us/articles/204145658-Create-a-snippet|here>.
For more information on inline code formatting with backticks click <https://get.slack.help/hc/en-us/articles/202288908-Format-your-messages#inline-code|here>. | 2019-05-20T09:49:43.192600 | Leana | pythondev_help_Leana_2019-05-20T09:49:43.192600 | 1,558,345,783.1926 | 24,327 |
pythondev | help | None | 2019-05-20T09:51:41.192700 | Leanora | pythondev_help_Leanora_2019-05-20T09:51:41.192700 | 1,558,345,901.1927 | 24,328 |
pythondev | help | does the api you are using have an option for taking a list of ids? If not, you might want to explain what you are trying to do with all the requests, and we can see if there is another way of doing things. | 2019-05-20T09:53:19.194300 | Clemmie | pythondev_help_Clemmie_2019-05-20T09:53:19.194300 | 1,558,345,999.1943 | 24,329 |
pythondev | help | No, it doesn't take list of ids. That api returns me a json. All I need was, clean that json(removing some keys by checking the values of the key). Whole purpose of this code is, get all the list of eligible candidates based on the id and his other details. Also, response_json is list of dict type. | 2019-05-20T09:55:57.197000 | Leanora | pythondev_help_Leanora_2019-05-20T09:55:57.197000 | 1,558,346,157.197 | 24,330 |
pythondev | help | Sorry, I meant what you are trying to do as a whole, where this is a part of.This code is correct, but slow, as you said. There are not a whole lot of ways to make it faster (you could investigate making the calls asynchronously, possibly). I was thinking that perhaps we could rethink your problem so that you don’t need to make all these api calls, or at least not have to make them all at once | 2019-05-20T09:58:19.199400 | Clemmie | pythondev_help_Clemmie_2019-05-20T09:58:19.199400 | 1,558,346,299.1994 | 24,331 |
pythondev | help | or investigate whether the api used has batch capability | 2019-05-20T10:01:30.199800 | Hiroko | pythondev_help_Hiroko_2019-05-20T10:01:30.199800 | 1,558,346,490.1998 | 24,332 |
pythondev | help | however, that’s not often a common feature | 2019-05-20T10:01:44.200100 | Hiroko | pythondev_help_Hiroko_2019-05-20T10:01:44.200100 | 1,558,346,504.2001 | 24,333 |
pythondev | help | I did investigated and api doesn't have batch capability. May be I need to try making the api calls asynchronously. | 2019-05-20T10:02:21.200900 | Leanora | pythondev_help_Leanora_2019-05-20T10:02:21.200900 | 1,558,346,541.2009 | 24,334 |
pythondev | help | Can you tell us what you are using the result of this code snippet in? It sounds like a job placement tool. Could you present a single candidate at a time, so as to not have to make all the api calls at once? | 2019-05-20T10:04:02.202400 | Clemmie | pythondev_help_Clemmie_2019-05-20T10:04:02.202400 | 1,558,346,642.2024 | 24,335 |
pythondev | help | or paginate so you never have to fetch more than , say, 10 candidates? | 2019-05-20T10:04:42.202800 | Clemmie | pythondev_help_Clemmie_2019-05-20T10:04:42.202800 | 1,558,346,682.2028 | 24,336 |
pythondev | help | No, I can't paginate it. Thats a third party api. Hence, I'm limited to make only one candidate id at a time. | 2019-05-20T10:10:30.203600 | Leanora | pythondev_help_Leanora_2019-05-20T10:10:30.203600 | 1,558,347,030.2036 | 24,337 |
pythondev | help | I meant on your display end | 2019-05-20T10:10:49.204200 | Clemmie | pythondev_help_Clemmie_2019-05-20T10:10:49.204200 | 1,558,347,049.2042 | 24,338 |
pythondev | help | if you are stuck using a third party implementation that is too slow for how you wanted to do things, then you need to rethink how you do things | 2019-05-20T10:11:29.205300 | Clemmie | pythondev_help_Clemmie_2019-05-20T10:11:29.205300 | 1,558,347,089.2053 | 24,339 |
pythondev | help | I mean its a part of big dashboard. This is a small module and we need to get all the candidates. | 2019-05-20T10:11:49.206200 | Leanora | pythondev_help_Leanora_2019-05-20T10:11:49.206200 | 1,558,347,109.2062 | 24,340 |
pythondev | help | <@Leanora> can you try parallelizing the requests? There is no need for them to execute sequentially | 2019-05-20T10:12:34.207800 | Carlee | pythondev_help_Carlee_2019-05-20T10:12:34.207800 | 1,558,347,154.2078 | 24,341 |
pythondev | help | can you make the dashboard make ajax calls so as to load the details async that way? | 2019-05-20T10:12:38.208100 | Clemmie | pythondev_help_Clemmie_2019-05-20T10:12:38.208100 | 1,558,347,158.2081 | 24,342 |
pythondev | help | you can do async on the python end, but it will be a bit harder to collect all the data correctly | 2019-05-20T10:13:09.208700 | Clemmie | pythondev_help_Clemmie_2019-05-20T10:13:09.208700 | 1,558,347,189.2087 | 24,343 |
pythondev | help | I can do that. But, I'm just being cautions about how to collect all data correctly. | 2019-05-20T10:13:45.209400 | Leanora | pythondev_help_Leanora_2019-05-20T10:13:45.209400 | 1,558,347,225.2094 | 24,344 |
pythondev | help | If each candidates data is self contained, and you don’t need to aggregate anything, I would do it with ajax calls | 2019-05-20T10:14:18.210800 | Clemmie | pythondev_help_Clemmie_2019-05-20T10:14:18.210800 | 1,558,347,258.2108 | 24,345 |
pythondev | help | Can you point me some examples for how to do it. | 2019-05-20T10:14:39.211300 | Leanora | pythondev_help_Leanora_2019-05-20T10:14:39.211300 | 1,558,347,279.2113 | 24,346 |
pythondev | help | ajax? | 2019-05-20T10:14:43.211500 | Clemmie | pythondev_help_Clemmie_2019-05-20T10:14:43.211500 | 1,558,347,283.2115 | 24,347 |
pythondev | help | its an api. Not sure how ajax works here | 2019-05-20T10:14:59.212000 | Leanora | pythondev_help_Leanora_2019-05-20T10:14:59.212000 | 1,558,347,299.212 | 24,348 |
pythondev | help | And all the code base is in python | 2019-05-20T10:15:07.212400 | Leanora | pythondev_help_Leanora_2019-05-20T10:15:07.212400 | 1,558,347,307.2124 | 24,349 |
pythondev | help | ohhhh. | 2019-05-20T10:15:16.212900 | Clemmie | pythondev_help_Clemmie_2019-05-20T10:15:16.212900 | 1,558,347,316.2129 | 24,350 |
pythondev | help | Sorry, I have very little knowledge on ajax | 2019-05-20T10:15:18.213100 | Leanora | pythondev_help_Leanora_2019-05-20T10:15:18.213100 | 1,558,347,318.2131 | 24,351 |
pythondev | help | I figured your dashboard was a webapp | 2019-05-20T10:15:23.213300 | Clemmie | pythondev_help_Clemmie_2019-05-20T10:15:23.213300 | 1,558,347,323.2133 | 24,352 |
pythondev | help | <https://hackernoon.com/how-to-run-asynchronous-web-requests-in-parallel-with-python-3-5-without-aiohttp-264dc0f8546> | 2019-05-20T10:15:43.214200 | Carlee | pythondev_help_Carlee_2019-05-20T10:15:43.214200 | 1,558,347,343.2142 | 24,353 |
pythondev | help | If you are doing this as a desktop app in all python, then yeah check out ^ or something similar | 2019-05-20T10:16:58.215600 | Clemmie | pythondev_help_Clemmie_2019-05-20T10:16:58.215600 | 1,558,347,418.2156 | 24,354 |
pythondev | help | Sure. Thanks <@Carlee> <@Clemmie>. I'll look into that article. | 2019-05-20T10:17:23.215800 | Leanora | pythondev_help_Leanora_2019-05-20T10:17:23.215800 | 1,558,347,443.2158 | 24,355 |
pythondev | help | i feel bad for the team that decided to do that as asyncio was documented to be added just two months after this article | 2019-05-20T11:33:06.216800 | Johna | pythondev_help_Johna_2019-05-20T11:33:06.216800 | 1,558,351,986.2168 | 24,356 |
pythondev | help | wait i’m confused… reading now and they’re citing asyncio /shrug | 2019-05-20T11:36:14.217200 | Johna | pythondev_help_Johna_2019-05-20T11:36:14.217200 | 1,558,352,174.2172 | 24,357 |
pythondev | help | what is aiohttp? if not asyncio | 2019-05-20T11:39:59.217600 | Johna | pythondev_help_Johna_2019-05-20T11:39:59.217600 | 1,558,352,399.2176 | 24,358 |
pythondev | help | its a web server/client based on asyncio | 2019-05-20T11:42:26.217900 | Hiroko | pythondev_help_Hiroko_2019-05-20T11:42:26.217900 | 1,558,352,546.2179 | 24,359 |
pythondev | help | hi all, need a bit of help with vm's if I have a virtual machine that is running something on it, but want to create a shared folder that another computer can access, do I simply create a shared folder? | 2019-05-20T12:00:43.219600 | Arturo | pythondev_help_Arturo_2019-05-20T12:00:43.219600 | 1,558,353,643.2196 | 24,360 |
pythondev | help | this virtual machine has its own ip | 2019-05-20T12:00:59.220200 | Arturo | pythondev_help_Arturo_2019-05-20T12:00:59.220200 | 1,558,353,659.2202 | 24,361 |
pythondev | help | seems about right, if your VM can access your network I'd think you're set up nicely | 2019-05-20T12:02:25.220700 | Claudine | pythondev_help_Claudine_2019-05-20T12:02:25.220700 | 1,558,353,745.2207 | 24,362 |
pythondev | help | ok so my thought process is, create a shared folder, once the process running on the vm has finished it generates a file and saves it in the shared folder, then the other person can see it and use that file | 2019-05-20T12:06:34.222400 | Arturo | pythondev_help_Arturo_2019-05-20T12:06:34.222400 | 1,558,353,994.2224 | 24,363 |
pythondev | help | managed to do it, but what is interesting is that I cannot share just one folder on the using the Microsoft vm, on VM ware I have done this before, but this only lets me share the c drive | 2019-05-20T12:21:13.223700 | Arturo | pythondev_help_Arturo_2019-05-20T12:21:13.223700 | 1,558,354,873.2237 | 24,364 |
pythondev | help | This code returns either a matching element ( where `dog['name'] == 'Dr. Pupper'`) or an empty dict.
Is there a simple way to transform this so that it returns either single element or *None*? | 2019-05-20T13:58:00.225200 | Jorge | pythondev_help_Jorge_2019-05-20T13:58:00.225200 | 1,558,360,680.2252 | 24,365 |
pythondev | help | replace `else {}` with `else None` | 2019-05-20T13:59:30.225900 | Clemmie | pythondev_help_Clemmie_2019-05-20T13:59:30.225900 | 1,558,360,770.2259 | 24,366 |
pythondev | help | that gives me an ~NoneType~ Attribute error | 2019-05-20T13:59:47.226200 | Jorge | pythondev_help_Jorge_2019-05-20T13:59:47.226200 | 1,558,360,787.2262 | 24,367 |
pythondev | help | I think you can tag an `or None` on to the end of the expression to transform the empty dict case. | 2019-05-20T14:01:21.227400 | Sasha | pythondev_help_Sasha_2019-05-20T14:01:21.227400 | 1,558,360,881.2274 | 24,368 |
pythondev | help | ah, cool | 2019-05-20T14:02:02.227900 | Jorge | pythondev_help_Jorge_2019-05-20T14:02:02.227900 | 1,558,360,922.2279 | 24,369 |
pythondev | help | that works, thanks | 2019-05-20T14:02:08.228100 | Jorge | pythondev_help_Jorge_2019-05-20T14:02:08.228100 | 1,558,360,928.2281 | 24,370 |
pythondev | help | You might double-check if the `reduce()` works correctly if `'Dr. Pupper'` is the final element in the list. Since you're not using `y`, I'm a little suspicious that it will skip that case. | 2019-05-20T14:04:12.229500 | Sasha | pythondev_help_Sasha_2019-05-20T14:04:12.229500 | 1,558,361,052.2295 | 24,371 |
pythondev | help | oh, that doesnt work | 2019-05-20T14:05:44.229800 | Jorge | pythondev_help_Jorge_2019-05-20T14:05:44.229800 | 1,558,361,144.2298 | 24,372 |
pythondev | help | Actually it might not work for anything but the first element. | 2019-05-20T14:06:14.230400 | Sasha | pythondev_help_Sasha_2019-05-20T14:06:14.230400 | 1,558,361,174.2304 | 24,373 |
pythondev | help | yea, i think thats the case. and if i switch to using y, i'll miss out on if it is the first element | 2019-05-20T14:07:00.230900 | Jorge | pythondev_help_Jorge_2019-05-20T14:07:00.230900 | 1,558,361,220.2309 | 24,374 |
pythondev | help | Can you use `filter()` instead? | 2019-05-20T14:08:15.231200 | Sasha | pythondev_help_Sasha_2019-05-20T14:08:15.231200 | 1,558,361,295.2312 | 24,375 |
pythondev | help | i guess. my impression is that you want to use `filter` when you are going from *list* -> *smaller list* and `reduce` when you are going from *list* -> *any* | 2019-05-20T14:09:30.232400 | Jorge | pythondev_help_Jorge_2019-05-20T14:09:30.232400 | 1,558,361,370.2324 | 24,376 |
pythondev | help | I tend to conceptualize it as using `filter()` when you're looking at properties of a single item, `map()` when you're operating on single items, and `reduce()` when you are operating on pairs of items. | 2019-05-20T14:12:30.233800 | Sasha | pythondev_help_Sasha_2019-05-20T14:12:30.233800 | 1,558,361,550.2338 | 24,377 |
pythondev | help | Hahaha, how about `max(dogs, key=lambda x: x['name'] == 'Dr. Pupper')`? | 2019-05-20T14:14:40.234400 | Sasha | pythondev_help_Sasha_2019-05-20T14:14:40.234400 | 1,558,361,680.2344 | 24,378 |
pythondev | help | just never use reduce :) | 2019-05-20T14:16:39.235100 | Jettie | pythondev_help_Jettie_2019-05-20T14:16:39.235100 | 1,558,361,799.2351 | 24,379 |
pythondev | help | then you only have map and filter to worry about | 2019-05-20T14:16:56.235500 | Jettie | pythondev_help_Jettie_2019-05-20T14:16:56.235500 | 1,558,361,816.2355 | 24,380 |
pythondev | help | everybody wins | 2019-05-20T14:17:03.235800 | Jettie | pythondev_help_Jettie_2019-05-20T14:17:03.235800 | 1,558,361,823.2358 | 24,381 |
pythondev | help | lol the max function works.
as for filter, it just looks kind of ugly having to do something like:
```
my_filter = filter(lambda x: x['name'] == 'Dr. Pupper', dogs)
dog = list(my_filter)[0]
```
or actually, more like:
```
my_filter = filter(lambda x: x['name'] == 'Dr. Pupper', dogs)
if len(list(my_filter)):
dog = list(my_filter)[0]
else:
dog = None
``` | 2019-05-20T14:19:01.237800 | Jorge | pythondev_help_Jorge_2019-05-20T14:19:01.237800 | 1,558,361,941.2378 | 24,382 |
pythondev | help | Actually, the `max()` option won't work in the negative case, since it'll return another item. | 2019-05-20T14:20:04.238700 | Sasha | pythondev_help_Sasha_2019-05-20T14:20:04.238700 | 1,558,362,004.2387 | 24,383 |
pythondev | help | This may work: `max(x if x.get('name') == 'Dr. Pupper' else None for x in dogs)` | 2019-05-20T14:23:35.239900 | Sasha | pythondev_help_Sasha_2019-05-20T14:23:35.239900 | 1,558,362,215.2399 | 24,384 |
pythondev | help | what if there are more than 1 matching element? | 2019-05-20T14:25:32.240600 | Brain | pythondev_help_Brain_2019-05-20T14:25:32.240600 | 1,558,362,332.2406 | 24,385 |
pythondev | help | It'll just pick one semi-arbitrarily... I think dicts are compared by memory address or something. | 2019-05-20T14:26:22.241200 | Sasha | pythondev_help_Sasha_2019-05-20T14:26:22.241200 | 1,558,362,382.2412 | 24,386 |
pythondev | help | for more than one element, that probably means I have a data error, and i'll probably want to throw an exception.
Maybe trying to make this into a one liner is a bit of a stretch | 2019-05-20T14:28:04.242700 | Jorge | pythondev_help_Jorge_2019-05-20T14:28:04.242700 | 1,558,362,484.2427 | 24,387 |
pythondev | help | if it should not return every matching element, than personally I’d rather go with simple loop to be able to `break` when there is a match instead of continue looking.
Also from my experience python one-liners (or any language one-liners) are cool, but many beginners have difficulties understanding them. | 2019-05-20T14:31:21.245500 | Brain | pythondev_help_Brain_2019-05-20T14:31:21.245500 | 1,558,362,681.2455 | 24,388 |
pythondev | help | I've been using python for a good while and one liners are still difficult for me to understand lol | 2019-05-20T14:32:25.246200 | Holly | pythondev_help_Holly_2019-05-20T14:32:25.246200 | 1,558,362,745.2462 | 24,389 |
pythondev | help | I went with something similar to this | 2019-05-20T14:36:57.246300 | Jorge | pythondev_help_Jorge_2019-05-20T14:36:57.246300 | 1,558,363,017.2463 | 24,390 |
pythondev | help | Crystal clear. :+1: | 2019-05-20T14:40:13.247000 | Sasha | pythondev_help_Sasha_2019-05-20T14:40:13.247000 | 1,558,363,213.247 | 24,391 |
pythondev | help | thanks for the help <@Sasha> <@Brain> :taco:
honorable mention: <@Jettie>, <@Clemmie> and <@Holly> | 2019-05-20T14:42:42.248600 | Jorge | pythondev_help_Jorge_2019-05-20T14:42:42.248600 | 1,558,363,362.2486 | 24,392 |
pythondev | help | :smile: | 2019-05-20T14:42:59.248900 | Holly | pythondev_help_Holly_2019-05-20T14:42:59.248900 | 1,558,363,379.2489 | 24,393 |
pythondev | help | how do you guys version APIs? I see arguments for and against putting it in URI | 2019-05-20T15:09:18.250700 | Raguel | pythondev_help_Raguel_2019-05-20T15:09:18.250700 | 1,558,364,958.2507 | 24,394 |
pythondev | help | where else could you put it? :o | 2019-05-20T15:13:20.251300 | Jettie | pythondev_help_Jettie_2019-05-20T15:13:20.251300 | 1,558,365,200.2513 | 24,395 |
pythondev | help | as a header | 2019-05-20T15:15:47.251500 | Karoline | pythondev_help_Karoline_2019-05-20T15:15:47.251500 | 1,558,365,347.2515 | 24,396 |
pythondev | help | yeah, header vs uri | 2019-05-20T15:16:06.252000 | Raguel | pythondev_help_Raguel_2019-05-20T15:16:06.252000 | 1,558,365,366.252 | 24,397 |
pythondev | help | I like URI personally | 2019-05-20T15:16:33.252500 | Karoline | pythondev_help_Karoline_2019-05-20T15:16:33.252500 | 1,558,365,393.2525 | 24,398 |
pythondev | help | I can see why some people don't though | 2019-05-20T15:16:44.252800 | Karoline | pythondev_help_Karoline_2019-05-20T15:16:44.252800 | 1,558,365,404.2528 | 24,399 |
pythondev | help | I like uri also - easier to test/prototype against | 2019-05-20T15:17:00.253100 | Clemmie | pythondev_help_Clemmie_2019-05-20T15:17:00.253100 | 1,558,365,420.2531 | 24,400 |
pythondev | help | it's also easier to manage | 2019-05-20T15:22:52.253800 | Jettie | pythondev_help_Jettie_2019-05-20T15:22:52.253800 | 1,558,365,772.2538 | 24,401 |
pythondev | help | you could have v1 and v2 point to different app servers | 2019-05-20T15:23:05.254100 | Jettie | pythondev_help_Jettie_2019-05-20T15:23:05.254100 | 1,558,365,785.2541 | 24,402 |
pythondev | help | or introduce a delay to /v1/ if you want users to migrate to v2 faster | 2019-05-20T15:23:26.254600 | Jettie | pythondev_help_Jettie_2019-05-20T15:23:26.254600 | 1,558,365,806.2546 | 24,403 |
pythondev | help | how it is easier to manage? | 2019-05-20T15:23:52.254900 | Rikki | pythondev_help_Rikki_2019-05-20T15:23:52.254900 | 1,558,365,832.2549 | 24,404 |
pythondev | help | what do you mean by that | 2019-05-20T15:23:56.255100 | Rikki | pythondev_help_Rikki_2019-05-20T15:23:56.255100 | 1,558,365,836.2551 | 24,405 |
pythondev | help | then difference is semantical only there is no management troubles | 2019-05-20T15:24:08.255500 | Rikki | pythondev_help_Rikki_2019-05-20T15:24:08.255500 | 1,558,365,848.2555 | 24,406 |
pythondev | help | header vs uri is preference only | 2019-05-20T15:24:26.255800 | Rikki | pythondev_help_Rikki_2019-05-20T15:24:26.255800 | 1,558,365,866.2558 | 24,407 |
pythondev | help | for testing purposes and sheer ease of use, use URI | 2019-05-20T15:26:03.256700 | Hiroko | pythondev_help_Hiroko_2019-05-20T15:26:03.256700 | 1,558,365,963.2567 | 24,408 |
pythondev | help | if you want to get fancy, use header | 2019-05-20T15:26:09.257000 | Hiroko | pythondev_help_Hiroko_2019-05-20T15:26:09.257000 | 1,558,365,969.257 | 24,409 |
pythondev | help | but to be honest, if an API made me use versions in header for unauthed endpoints, I’d be annoyed | 2019-05-20T15:26:45.257900 | Hiroko | pythondev_help_Hiroko_2019-05-20T15:26:45.257900 | 1,558,366,005.2579 | 24,410 |
pythondev | help | I dont see difference seriously, I would even say headers make sense | 2019-05-20T15:27:41.259000 | Rikki | pythondev_help_Rikki_2019-05-20T15:27:41.259000 | 1,558,366,061.259 | 24,411 |
pythondev | help | If you are pedantic about what REST means, use headers (as with URI you would end up with multiple endpoints for the same(?) resource)' | 2019-05-20T15:27:45.259400 | Clemmie | pythondev_help_Clemmie_2019-05-20T15:27:45.259400 | 1,558,366,065.2594 | 24,412 |
pythondev | help | especially when you use accept-version header | 2019-05-20T15:27:51.259600 | Rikki | pythondev_help_Rikki_2019-05-20T15:27:51.259600 | 1,558,366,071.2596 | 24,413 |
pythondev | help | or accept content type | 2019-05-20T15:27:58.259900 | Rikki | pythondev_help_Rikki_2019-05-20T15:27:58.259900 | 1,558,366,078.2599 | 24,414 |
pythondev | help | <@Rikki> how do I quick-explore an api in a browser with headers? | 2019-05-20T15:28:28.260600 | Clemmie | pythondev_help_Clemmie_2019-05-20T15:28:28.260600 | 1,558,366,108.2606 | 24,415 |
pythondev | help | I think headers can be fine, but your documentation needs to be that much better | 2019-05-20T15:28:43.261300 | Clemmie | pythondev_help_Clemmie_2019-05-20T15:28:43.261300 | 1,558,366,123.2613 | 24,416 |
pythondev | help | why would you think exploring api in browser is something you should do? | 2019-05-20T15:28:58.261700 | Rikki | pythondev_help_Rikki_2019-05-20T15:28:58.261700 | 1,558,366,138.2617 | 24,417 |
pythondev | help | different locations in nginx and that's it
with headers it's a bit more cumbersome | 2019-05-20T15:29:00.261800 | Jettie | pythondev_help_Jettie_2019-05-20T15:29:00.261800 | 1,558,366,140.2618 | 24,418 |
pythondev | help | btw you should explore documentation, rather api itself | 2019-05-20T15:29:26.262300 | Rikki | pythondev_help_Rikki_2019-05-20T15:29:26.262300 | 1,558,366,166.2623 | 24,419 |
pythondev | help | swagger/yasg? | 2019-05-20T15:29:40.262500 | Hiroko | pythondev_help_Hiroko_2019-05-20T15:29:40.262500 | 1,558,366,180.2625 | 24,420 |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.