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 | but I was hoping the debugger would be more integrated with the UI, in particular the variable explorer. Is that the case at all? | 2019-04-26T20:36:48.171900 | Lory | pythondev_help_Lory_2019-04-26T20:36:48.171900 | 1,556,311,008.1719 | 20,621 |
pythondev | help | <https://gitter.im/spyder-ide/public> | 2019-04-26T20:37:29.172100 | Clayton | pythondev_help_Clayton_2019-04-26T20:37:29.172100 | 1,556,311,049.1721 | 20,622 |
pythondev | help | I think CAM will help you | 2019-04-26T20:37:49.172600 | Clayton | pythondev_help_Clayton_2019-04-26T20:37:49.172600 | 1,556,311,069.1726 | 20,623 |
pythondev | help | And also their Github site | 2019-04-26T20:38:09.173200 | Clayton | pythondev_help_Clayton_2019-04-26T20:38:09.173200 | 1,556,311,089.1732 | 20,624 |
pythondev | help | I will check it out! Thanks for the assist | 2019-04-26T20:38:18.173400 | Lory | pythondev_help_Lory_2019-04-26T20:38:18.173400 | 1,556,311,098.1734 | 20,625 |
pythondev | help | Ok. Always help a fellow SpiderMan | 2019-04-26T20:38:42.173900 | Clayton | pythondev_help_Clayton_2019-04-26T20:38:42.173900 | 1,556,311,122.1739 | 20,626 |
pythondev | help | Have you tried Pycharm ? | 2019-04-26T20:39:29.174200 | Clayton | pythondev_help_Clayton_2019-04-26T20:39:29.174200 | 1,556,311,169.1742 | 20,627 |
pythondev | help | I've installed it and given it a try, it seemed to take forever to open and then I had trouble figuring out how to replicate some of the features I liked from Spyder (I think variable explorer and maybe even handy interactive console). | 2019-04-26T20:45:37.176500 | Lory | pythondev_help_Lory_2019-04-26T20:45:37.176500 | 1,556,311,537.1765 | 20,628 |
pythondev | help | "find a good Pycharm tutorial" is somewhere on my back-burner to-do list ; ) | 2019-04-26T20:45:58.177000 | Lory | pythondev_help_Lory_2019-04-26T20:45:58.177000 | 1,556,311,558.177 | 20,629 |
pythondev | help | I had issues with importing / installing. on Mac and Windows , conda and pip | 2019-04-26T20:49:55.177800 | Clayton | pythondev_help_Clayton_2019-04-26T20:49:55.177800 | 1,556,311,795.1778 | 20,630 |
pythondev | help | I takes a long time because its feature heavy and / or your system is under powered. | 2019-04-26T20:51:05.178700 | Clayton | pythondev_help_Clayton_2019-04-26T20:51:05.178700 | 1,556,311,865.1787 | 20,631 |
pythondev | help | need more horsepower | 2019-04-26T20:51:22.179000 | Clayton | pythondev_help_Clayton_2019-04-26T20:51:22.179000 | 1,556,311,882.179 | 20,632 |
pythondev | help | I'm looping through a list of items that meet a test of one of the attributes of the items: | 2019-04-26T21:50:22.179900 | Lory | pythondev_help_Lory_2019-04-26T21:50:22.179900 | 1,556,315,422.1799 | 20,633 |
pythondev | help | ` for a in (a for a in self.assignments if not a.validated):` | 2019-04-26T21:50:36.180200 | Lory | pythondev_help_Lory_2019-04-26T21:50:36.180200 | 1,556,315,436.1802 | 20,634 |
pythondev | help | but then later in the loop I'd like to change the attribute based on some other logic: | 2019-04-26T21:51:00.180700 | Lory | pythondev_help_Lory_2019-04-26T21:51:00.180700 | 1,556,315,460.1807 | 20,635 |
pythondev | help | ` a.validated = True`
Will this cause problems with the loop, since I am modifying the iterator? | 2019-04-26T21:51:53.181500 | Lory | pythondev_help_Lory_2019-04-26T21:51:53.181500 | 1,556,315,513.1815 | 20,636 |
pythondev | help | It should be okay, since you're not modifying the direct contents of `assignments`. | 2019-04-26T22:00:02.182300 | Sasha | pythondev_help_Sasha_2019-04-26T22:00:02.182300 | 1,556,316,002.1823 | 20,637 |
pythondev | help | great, thanks. | 2019-04-26T22:00:42.182500 | Lory | pythondev_help_Lory_2019-04-26T22:00:42.182500 | 1,556,316,042.1825 | 20,638 |
pythondev | help | I've changed it anyhow to
''' for a in self.assignments:
if a.validated:
continue
''' | 2019-04-26T22:01:10.183000 | Lory | pythondev_help_Lory_2019-04-26T22:01:10.183000 | 1,556,316,070.183 | 20,639 |
pythondev | help | Great, I was almost going to suggest that too. | 2019-04-26T22:01:27.183600 | Sasha | pythondev_help_Sasha_2019-04-26T22:01:27.183600 | 1,556,316,087.1836 | 20,640 |
pythondev | help | I don't think there is a performance difference, and the for / comprehension is maybe one level too convoluted | 2019-04-26T22:01:56.184100 | Lory | pythondev_help_Lory_2019-04-26T22:01:56.184100 | 1,556,316,116.1841 | 20,641 |
pythondev | help | Is there a simpler way to set up the `for` in one line that I am missing? | 2019-04-26T22:03:44.186500 | Lory | pythondev_help_Lory_2019-04-26T22:03:44.186500 | 1,556,316,224.1865 | 20,642 |
pythondev | help | You could also do:
```for a in filter(lambda x: not x.validated, self.assignments):```
But I tend to favor the `continue` for clarify even if it's more lines. | 2019-04-26T22:05:59.187800 | Sasha | pythondev_help_Sasha_2019-04-26T22:05:59.187800 | 1,556,316,359.1878 | 20,643 |
pythondev | help | nod, thanks | 2019-04-26T22:06:15.188000 | Lory | pythondev_help_Lory_2019-04-26T22:06:15.188000 | 1,556,316,375.188 | 20,644 |
pythondev | help | I wonder if Python has considered a `continue if x.validated` one-liner construct. | 2019-04-26T22:08:50.188500 | Sasha | pythondev_help_Sasha_2019-04-26T22:08:50.188500 | 1,556,316,530.1885 | 20,645 |
pythondev | help | Ah, they did. Guido rejected it as just another way to do the same thing. <https://www.python.org/dev/peps/pep-0548/> | 2019-04-26T22:10:47.189000 | Sasha | pythondev_help_Sasha_2019-04-26T22:10:47.189000 | 1,556,316,647.189 | 20,646 |
pythondev | help | Hello. What whould be the simplest solution in Python for REST WebService that refuses a wrong value for "email" key in .json file? | 2019-04-27T01:10:56.191400 | Ermelinda | pythondev_help_Ermelinda_2019-04-27T01:10:56.191400 | 1,556,327,456.1914 | 20,647 |
pythondev | help | Can you clarify what you mean by "wrong"? An unregistered email, a syntactically invalid one, or one that fails delivery? | 2019-04-27T01:15:54.192000 | Sasha | pythondev_help_Sasha_2019-04-27T01:15:54.192000 | 1,556,327,754.192 | 20,648 |
pythondev | help | <@Sasha> Like "john@@mail.com" | 2019-04-27T01:28:22.192500 | Ermelinda | pythondev_help_Ermelinda_2019-04-27T01:28:22.192500 | 1,556,328,502.1925 | 20,649 |
pythondev | help | <@Sasha> Is it possible to use json schema for this in one of python web frameworks? | 2019-04-27T01:28:52.193100 | Ermelinda | pythondev_help_Ermelinda_2019-04-27T01:28:52.193100 | 1,556,328,532.1931 | 20,650 |
pythondev | help | It turns out to be somewhat difficult to recognize a valid email address in the general case. Some examples of attempts at it: <https://emailregex.com/> | 2019-04-27T01:34:29.194100 | Sasha | pythondev_help_Sasha_2019-04-27T01:34:29.194100 | 1,556,328,869.1941 | 20,651 |
pythondev | help | There's library available to do it, plus doing some mail-server validation: <https://pypi.org/project/validate_email/> | 2019-04-27T01:36:19.195100 | Sasha | pythondev_help_Sasha_2019-04-27T01:36:19.195100 | 1,556,328,979.1951 | 20,652 |
pythondev | help | <@Sasha> Thank you :slightly_smiling_face: | 2019-04-27T01:37:24.195700 | Ermelinda | pythondev_help_Ermelinda_2019-04-27T01:37:24.195700 | 1,556,329,044.1957 | 20,653 |
pythondev | help | I just finished my first project at my new gig | 2019-04-27T03:47:33.196100 | Conchita | pythondev_help_Conchita_2019-04-27T03:47:33.196100 | 1,556,336,853.1961 | 20,654 |
pythondev | help | Now I want to complete the documentation for the project | 2019-04-27T03:47:51.196900 | Conchita | pythondev_help_Conchita_2019-04-27T03:47:51.196900 | 1,556,336,871.1969 | 20,655 |
pythondev | help | Any tips on how to write good documentation? This is an internal tool, mainly for our developers | 2019-04-27T03:48:17.198100 | Conchita | pythondev_help_Conchita_2019-04-27T03:48:17.198100 | 1,556,336,897.1981 | 20,656 |
pythondev | help | There is whole talk somewhere about validating email. The conclusion was just send an email with a validation link it's way easier | 2019-04-27T03:48:41.198900 | Jimmy | pythondev_help_Jimmy_2019-04-27T03:48:41.198900 | 1,556,336,921.1989 | 20,657 |
pythondev | help | writing good documentation is hard, but having documentation at all is still a blessing :)
I'd say you need to have a quickstart section for the most common use-case, and then a section where you descibe advanced usage with lots of examples. Everything else depends of what the product is | 2019-04-27T04:06:06.199200 | Jettie | pythondev_help_Jettie_2019-04-27T04:06:06.199200 | 1,556,337,966.1992 | 20,658 |
pythondev | help | Yes, that's what I meant. | 2019-04-27T10:45:07.200300 | Carmen | pythondev_help_Carmen_2019-04-27T10:45:07.200300 | 1,556,361,907.2003 | 20,659 |
pythondev | help | Typically, when people are putting in an options object to hold configuration values, they'll name it `opt`. That's a regular and understandable abbreviation variable name. | 2019-04-27T10:45:42.200500 | Carmen | pythondev_help_Carmen_2019-04-27T10:45:42.200500 | 1,556,361,942.2005 | 20,660 |
pythondev | help | So without any other information than the line of code in question, we're assigning a local variable to the value of a member (with the exact same name) of an object that happens to conform to a standard options object naming convention. It seems reasonable that `opt` is supposed to be an options object, and there's just some code copying that occurred from someone who wasn't paying attention. | 2019-04-27T10:47:51.200700 | Carmen | pythondev_help_Carmen_2019-04-27T10:47:51.200700 | 1,556,362,071.2007 | 20,661 |
pythondev | help | Shouldnt there be some code that actually shows how the original developer actually imported / instantiated an 'opt' object ? | 2019-04-27T12:57:53.201400 | Clayton | pythondev_help_Clayton_2019-04-27T12:57:53.201400 | 1,556,369,873.2014 | 20,662 |
pythondev | help | I dont agree with this article. When I am deep into coding I want to focus and think about what I am doing. I will take breaks to crank some Slayer, Motorhead, Metallica, Megadeth ... What say you ? Code and Crank or Code or Crank ?
<https://dzone.com/articles/you-should-listen-to-metal?edition=479218&utm_source=Daily%20Digest&utm_medium=email&utm_campaign=Daily%20Digest%202019-04-27> | 2019-04-27T13:01:07.204000 | Clayton | pythondev_help_Clayton_2019-04-27T13:01:07.204000 | 1,556,370,067.204 | 20,663 |
pythondev | help | UTM-free link: <https://dzone.com/articles/you-should-listen-to-metal> | 2019-04-27T13:02:27.204300 | Chester | pythondev_help_Chester_2019-04-27T13:02:27.204300 | 1,556,370,147.2043 | 20,664 |
pythondev | help | I like my music 'dark' , but not my IDE. | 2019-04-27T13:05:28.205000 | Clayton | pythondev_help_Clayton_2019-04-27T13:05:28.205000 | 1,556,370,328.205 | 20,665 |
pythondev | help | if you have 40 mins to spare, you could try implementing some of the tips ray talks about here: <https://www.youtube.com/watch?v=ARKbfWk4Xyw> | 2019-04-27T13:06:48.205100 | Bethany | pythondev_help_Bethany_2019-04-27T13:06:48.205100 | 1,556,370,408.2051 | 20,666 |
pythondev | help | Metallica - one love :3 | 2019-04-27T13:07:27.205500 | Chester | pythondev_help_Chester_2019-04-27T13:07:27.205500 | 1,556,370,447.2055 | 20,667 |
pythondev | help | it's basically a tour of "tools that are so helpful you'd be a fool not to use them" includes documentation tips | 2019-04-27T13:07:28.205600 | Bethany | pythondev_help_Bethany_2019-04-27T13:07:28.205600 | 1,556,370,448.2056 | 20,668 |
pythondev | help | only the realest listen to the raccoon all day <https://www.youtube.com/watch?v=bebuiaSKtU4> | 2019-04-27T13:08:11.206400 | Bethany | pythondev_help_Bethany_2019-04-27T13:08:11.206400 | 1,556,370,491.2064 | 20,669 |
pythondev | help | Hey all! This might be a basic question, but it’s been killing me…I’m trying to use the python dateTime library and I create an object with: datetime.datetime(year, month, day, 0, 0, 0) | 2019-04-27T13:12:22.207700 | Olene | pythondev_help_Olene_2019-04-27T13:12:22.207700 | 1,556,370,742.2077 | 20,670 |
pythondev | help | and I’m trying to increment it to the next day. Using: *dateTimeDate = oldDate + datetime.timedelta(days=1)* | 2019-04-27T13:13:17.208100 | Olene | pythondev_help_Olene_2019-04-27T13:13:17.208100 | 1,556,370,797.2081 | 20,671 |
pythondev | help | TypeError: cannot concatenate ‘str’ and ‘datetime.timedelta’ objects | 2019-04-27T13:13:44.208400 | Olene | pythondev_help_Olene_2019-04-27T13:13:44.208400 | 1,556,370,824.2084 | 20,672 |
pythondev | help | oldDate = dateTimeDate | 2019-04-27T13:14:47.208900 | Olene | pythondev_help_Olene_2019-04-27T13:14:47.208900 | 1,556,370,887.2089 | 20,673 |
pythondev | help | is how I am assigning oldDate | 2019-04-27T13:14:59.209300 | Olene | pythondev_help_Olene_2019-04-27T13:14:59.209300 | 1,556,370,899.2093 | 20,674 |
pythondev | help | can you paste a code snippet with what you've tried? | 2019-04-27T13:16:59.209900 | Bethany | pythondev_help_Bethany_2019-04-27T13:16:59.209900 | 1,556,371,019.2099 | 20,675 |
pythondev | help | None | 2019-04-27T13:18:01.210000 | Olene | pythondev_help_Olene_2019-04-27T13:18:01.210000 | 1,556,371,081.21 | 20,676 |
pythondev | help | where does `dateTimeDate` get set? | 2019-04-27T13:18:25.210600 | Bethany | pythondev_help_Bethany_2019-04-27T13:18:25.210600 | 1,556,371,105.2106 | 20,677 |
pythondev | help | dateTimeDate = datetime.datetime(year, month, day, 0, 0, 0) | 2019-04-27T13:19:09.211100 | Olene | pythondev_help_Olene_2019-04-27T13:19:09.211100 | 1,556,371,149.2111 | 20,678 |
pythondev | help | outside of any function at the very top | 2019-04-27T13:19:15.211400 | Olene | pythondev_help_Olene_2019-04-27T13:19:15.211400 | 1,556,371,155.2114 | 20,679 |
pythondev | help | you might want to double check that, print out `dateTimeDate` and `type(dateTimeDate)` in your function | 2019-04-27T13:19:49.212600 | Bethany | pythondev_help_Bethany_2019-04-27T13:19:49.212600 | 1,556,371,189.2126 | 20,680 |
pythondev | help | None | 2019-04-27T13:20:13.212900 | Olene | pythondev_help_Olene_2019-04-27T13:20:13.212900 | 1,556,371,213.2129 | 20,681 |
pythondev | help | the error your getting is saying `oldDate` is of type `str` | 2019-04-27T13:20:23.213600 | Bethany | pythondev_help_Bethany_2019-04-27T13:20:23.213600 | 1,556,371,223.2136 | 20,682 |
pythondev | help | Will do, earlier on in a different function this is the call. | 2019-04-27T13:20:31.213700 | Olene | pythondev_help_Olene_2019-04-27T13:20:31.213700 | 1,556,371,231.2137 | 20,683 |
pythondev | help | `return date` is returning a string. | 2019-04-27T13:21:16.214300 | Sasha | pythondev_help_Sasha_2019-04-27T13:21:16.214300 | 1,556,371,276.2143 | 20,684 |
pythondev | help | OH GOOD EYE…. | 2019-04-27T13:22:09.214600 | Olene | pythondev_help_Olene_2019-04-27T13:22:09.214600 | 1,556,371,329.2146 | 20,685 |
pythondev | help | yo thank you so much <@Bethany> and <@Sasha> that was driving me insane and it didn’t occur to me to trace the hell out of it…. | 2019-04-27T13:28:00.215800 | Olene | pythondev_help_Olene_2019-04-27T13:28:00.215800 | 1,556,371,680.2158 | 20,686 |
pythondev | help | Hey another question for y’all. I’m making API calls to the DarkSky API and i was able to do about 900 of them, but then it timed out in pycharm | 2019-04-27T15:49:16.217100 | Olene | pythondev_help_Olene_2019-04-27T15:49:16.217100 | 1,556,380,156.2171 | 20,687 |
pythondev | help | I’m able to make the call fine (and speedily) in Postman. I threw the call in a try except block and now it’s timing out without any response. | 2019-04-27T15:49:59.218000 | Olene | pythondev_help_Olene_2019-04-27T15:49:59.218000 | 1,556,380,199.218 | 20,688 |
pythondev | help | None | 2019-04-27T15:50:50.218300 | Olene | pythondev_help_Olene_2019-04-27T15:50:50.218300 | 1,556,380,250.2183 | 20,689 |
pythondev | help | do they restrict access to X calls per hour? | 2019-04-27T15:50:52.218700 | Bethany | pythondev_help_Bethany_2019-04-27T15:50:52.218700 | 1,556,380,252.2187 | 20,690 |
pythondev | help | they might be blocking you | 2019-04-27T15:50:58.218900 | Bethany | pythondev_help_Bethany_2019-04-27T15:50:58.218900 | 1,556,380,258.2189 | 20,691 |
pythondev | help | Oh….I think I hit their limit and forgot to add billing info | 2019-04-27T15:52:16.219200 | Olene | pythondev_help_Olene_2019-04-27T15:52:16.219200 | 1,556,380,336.2192 | 20,692 |
pythondev | help | Ok I got that to work, but I took it out of the try except because now I can’t get it to write to the folder… | 2019-04-27T15:59:15.219800 | Olene | pythondev_help_Olene_2019-04-27T15:59:15.219800 | 1,556,380,755.2198 | 20,693 |
pythondev | help | it was working earlier and I haven’t a clue what is different | 2019-04-27T15:59:44.220300 | Olene | pythondev_help_Olene_2019-04-27T15:59:44.220300 | 1,556,380,784.2203 | 20,694 |
pythondev | help | None | 2019-04-27T16:00:06.220400 | Olene | pythondev_help_Olene_2019-04-27T16:00:06.220400 | 1,556,380,806.2204 | 20,695 |
pythondev | help | Maybe `filepath` versus `folderPath`? I don't know what either of those are, but it's a difference between your two code snippets. | 2019-04-27T16:12:54.221500 | Sasha | pythondev_help_Sasha_2019-04-27T16:12:54.221500 | 1,556,381,574.2215 | 20,696 |
pythondev | help | gave up on that (i just added filepath and folder path after I pasted it in) | 2019-04-27T16:49:10.222300 | Olene | pythondev_help_Olene_2019-04-27T16:49:10.222300 | 1,556,383,750.2223 | 20,697 |
pythondev | help | <https://stackoverflow.com/questions/22600128/json-loads-is-returning-a-unicode-object-instead-of-a-dictionary/22600208> Regarding this, I have a json file that is doubly JSON’d. Is there a way to do what this person suggested for a doubly JSON’d? | 2019-04-27T16:49:35.222900 | Olene | pythondev_help_Olene_2019-04-27T16:49:35.222900 | 1,556,383,775.2229 | 20,698 |
pythondev | help | Here’s the JSON file | 2019-04-27T16:53:37.223200 | Olene | pythondev_help_Olene_2019-04-27T16:53:37.223200 | 1,556,384,017.2232 | 20,699 |
pythondev | help | Absolutely. | 2019-04-27T16:58:13.223500 | Carmen | pythondev_help_Carmen_2019-04-27T16:58:13.223500 | 1,556,384,293.2235 | 20,700 |
pythondev | help | What is the best way to store data like this within a program? The number of devices is determined by input from operator. So the operator will input the number of devices, then assign a serial number to each one, then iterate through some tests for each one. What is the best course to hold this information while it processes? list? cant be a dictionary because a dictionary has only 1 value to a key right? | 2019-04-27T18:22:13.224300 | Priscilla | pythondev_help_Priscilla_2019-04-27T18:22:13.224300 | 1,556,389,333.2243 | 20,701 |
pythondev | help | Yes, though that value can be arbitrary: a list, another dict, a class, etc. | 2019-04-27T18:24:05.225000 | Sasha | pythondev_help_Sasha_2019-04-27T18:24:05.225000 | 1,556,389,445.225 | 20,702 |
pythondev | help | a dictionary can hold a list as a value huh? so i could let the key be a device serial number, and the value be a list of true or false for pass/fail right? | 2019-04-27T18:25:27.226100 | Priscilla | pythondev_help_Priscilla_2019-04-27T18:25:27.226100 | 1,556,389,527.2261 | 20,703 |
pythondev | help | or just pass/fail strings i guess.. | 2019-04-27T18:26:24.227200 | Priscilla | pythondev_help_Priscilla_2019-04-27T18:26:24.227200 | 1,556,389,584.2272 | 20,704 |
pythondev | help | Yep, you sure can. That's a reasonable solution, though there are plenty of other options, like making a class to hold each device's data. | 2019-04-27T18:26:47.227700 | Sasha | pythondev_help_Sasha_2019-04-27T18:26:47.227700 | 1,556,389,607.2277 | 20,705 |
pythondev | help | Alright - who wants to attack this one? lol | 2019-04-27T18:27:15.227800 | Frankie | pythondev_help_Frankie_2019-04-27T18:27:15.227800 | 1,556,389,635.2278 | 20,706 |
pythondev | help | trying to export user data to a CSV on the EC2 instance, then boto3 it up to an S3 bucket | 2019-04-27T18:28:01.228600 | Frankie | pythondev_help_Frankie_2019-04-27T18:28:01.228600 | 1,556,389,681.2286 | 20,707 |
pythondev | help | I copied the permissions from the bucket that the deploy pushes staticfiles to and just changed the bucket name and Sid's, hoping that giving it the same roles/permissions/whatever as that bucket would let it do its thing, but it refuses | 2019-04-27T18:29:34.229900 | Frankie | pythondev_help_Frankie_2019-04-27T18:29:34.229900 | 1,556,389,774.2299 | 20,708 |
pythondev | help | It's possible that the API user doesn't have permissions on the bucket, even though you copied over permissions from the bucket. Can you verify that the user is part of a permissions group or straight up has direct permissions to the new bucket? | 2019-04-27T18:45:51.231300 | Carmen | pythondev_help_Carmen_2019-04-27T18:45:51.231300 | 1,556,390,751.2313 | 20,709 |
pythondev | help | You could also just try using the S3 CLI with those credentials to verify that it can do it's thing. | 2019-04-27T18:46:20.231900 | Carmen | pythondev_help_Carmen_2019-04-27T18:46:20.231900 | 1,556,390,780.2319 | 20,710 |
pythondev | help | I've verified the latter - it works locally | 2019-04-27T18:46:38.232500 | Frankie | pythondev_help_Frankie_2019-04-27T18:46:38.232500 | 1,556,390,798.2325 | 20,711 |
pythondev | help | this is once it tries to run the command from the EC2 instance | 2019-04-27T18:46:48.233100 | Frankie | pythondev_help_Frankie_2019-04-27T18:46:48.233100 | 1,556,390,808.2331 | 20,712 |
pythondev | help | on deploy | 2019-04-27T18:46:51.233400 | Frankie | pythondev_help_Frankie_2019-04-27T18:46:51.233400 | 1,556,390,811.2334 | 20,713 |
pythondev | help | Does your EC2 instance have the API permissions in the environment when it's executing the transfer? | 2019-04-27T18:47:42.234200 | Carmen | pythondev_help_Carmen_2019-04-27T18:47:42.234200 | 1,556,390,862.2342 | 20,714 |
pythondev | help | *API credentials | 2019-04-27T18:47:47.234400 | Carmen | pythondev_help_Carmen_2019-04-27T18:47:47.234400 | 1,556,390,867.2344 | 20,715 |
pythondev | help | well it has the AWS access key and secret key in the environment variables if that's what you mean | 2019-04-27T18:48:04.234800 | Frankie | pythondev_help_Frankie_2019-04-27T18:48:04.234800 | 1,556,390,884.2348 | 20,716 |
pythondev | help | and FWIW, it can put static files in the elastic beanstalk bucket whenthe container commands run collectstatic just before this, so I know that the user running manage.py collectstatic has access to the EB bucket...which is why I tried a derivation of those permissions on the new bucket I created | 2019-04-27T18:49:20.236100 | Frankie | pythondev_help_Frankie_2019-04-27T18:49:20.236100 | 1,556,390,960.2361 | 20,717 |
pythondev | help | also, there's no CORS config or ACL on that bucket...it's just a bucket policy | 2019-04-27T18:51:44.236600 | Frankie | pythondev_help_Frankie_2019-04-27T18:51:44.236600 | 1,556,391,104.2366 | 20,718 |
pythondev | help | use an IAM role on the ec2 instance | 2019-04-27T18:59:41.237300 | Bethany | pythondev_help_Bethany_2019-04-27T18:59:41.237300 | 1,556,391,581.2373 | 20,719 |
pythondev | help | with permissions to upload to the s3 bucket | 2019-04-27T18:59:54.238000 | Bethany | pythondev_help_Bethany_2019-04-27T18:59:54.238000 | 1,556,391,594.238 | 20,720 |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.