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 | before the commit messages | 2017-10-11T12:32:32.000374 | Arlene | pythondev_help_Arlene_2017-10-11T12:32:32.000374 | 1,507,725,152.000374 | 96,603 |
pythondev | help | <@Collette> | 2017-10-11T12:33:12.000654 | Arlene | pythondev_help_Arlene_2017-10-11T12:33:12.000654 | 1,507,725,192.000654 | 96,604 |
pythondev | help | Why? | 2017-10-11T12:33:41.000229 | Collette | pythondev_help_Collette_2017-10-11T12:33:41.000229 | 1,507,725,221.000229 | 96,605 |
pythondev | help | What kind of changes? | 2017-10-11T12:33:50.000371 | Collette | pythondev_help_Collette_2017-10-11T12:33:50.000371 | 1,507,725,230.000371 | 96,606 |
pythondev | help | Hullo Whirled!
So I'm returning to Python after about a 15 year absence... :slightly_smiling_face: So I'm effectively starting over...
I'm trying to figure out how "max" calculates the way it does.
I have a list:
car = ['chevy' , 'Ford', 'Lotus' , 'Aston Martin']
When I ask:
>>> max (car)
'chevy'
That was unexpected to me... Why not 'Aston Martin'? Or does max only work on integer values and is barfing on my query? | 2017-10-11T13:27:13.000599 | Sarina | pythondev_help_Sarina_2017-10-11T13:27:13.000599 | 1,507,728,433.000599 | 96,607 |
pythondev | help | `max` on a string return the last alphabetical letter | 2017-10-11T13:29:27.000556 | Ciera | pythondev_help_Ciera_2017-10-11T13:29:27.000556 | 1,507,728,567.000556 | 96,608 |
pythondev | help | so I guess in this case it does it on all of them and them max the letter | 2017-10-11T13:29:45.000314 | Ciera | pythondev_help_Ciera_2017-10-11T13:29:45.000314 | 1,507,728,585.000314 | 96,609 |
pythondev | help | Same for list then? | 2017-10-11T13:29:47.000246 | Sarina | pythondev_help_Sarina_2017-10-11T13:29:47.000246 | 1,507,728,587.000246 | 96,610 |
pythondev | help | and `y` is the last one | 2017-10-11T13:29:54.000440 | Ciera | pythondev_help_Ciera_2017-10-11T13:29:54.000440 | 1,507,728,594.00044 | 96,611 |
pythondev | help | So... if I had a "Zebra" car (?!) that would probably win? | 2017-10-11T13:30:20.000137 | Sarina | pythondev_help_Sarina_2017-10-11T13:30:20.000137 | 1,507,728,620.000137 | 96,612 |
pythondev | help | ```
>>> max(('abcy', 'abcz'))
'abcz'
``` | 2017-10-11T13:30:24.000184 | Ciera | pythondev_help_Ciera_2017-10-11T13:30:24.000184 | 1,507,728,624.000184 | 96,613 |
pythondev | help | im guessing it treats the string as an array of characters and it takes the "highest" character? | 2017-10-11T13:30:40.000673 | Jodie | pythondev_help_Jodie_2017-10-11T13:30:40.000673 | 1,507,728,640.000673 | 96,614 |
pythondev | help | anyways I don't really see the point of doing that :smile: | 2017-10-11T13:31:01.000315 | Ciera | pythondev_help_Ciera_2017-10-11T13:31:01.000315 | 1,507,728,661.000315 | 96,615 |
pythondev | help | Hopefully not the most ignorant neophyte question... Thanks! | 2017-10-11T13:31:16.000520 | Sarina | pythondev_help_Sarina_2017-10-11T13:31:16.000520 | 1,507,728,676.00052 | 96,616 |
pythondev | help | ah no problem. It's always fun to lookup that kind of trivia | 2017-10-11T13:31:35.000450 | Ciera | pythondev_help_Ciera_2017-10-11T13:31:35.000450 | 1,507,728,695.00045 | 96,617 |
pythondev | help | Just was reviewing some list operator and gave it a whirl, and was not expecting that result. | 2017-10-11T13:31:52.000345 | Sarina | pythondev_help_Sarina_2017-10-11T13:31:52.000345 | 1,507,728,712.000345 | 96,618 |
pythondev | help | Take away lesson: Use max on list with caution! | 2017-10-11T13:32:16.000298 | Sarina | pythondev_help_Sarina_2017-10-11T13:32:16.000298 | 1,507,728,736.000298 | 96,619 |
pythondev | help | Or experiment a bit to get a more solid understanding | 2017-10-11T13:32:39.000371 | Sarina | pythondev_help_Sarina_2017-10-11T13:32:39.000371 | 1,507,728,759.000371 | 96,620 |
pythondev | help | max on a list take the max of the list | 2017-10-11T13:32:40.000353 | Ciera | pythondev_help_Ciera_2017-10-11T13:32:40.000353 | 1,507,728,760.000353 | 96,621 |
pythondev | help | it depends what the list is made of | 2017-10-11T13:32:48.000579 | Ciera | pythondev_help_Ciera_2017-10-11T13:32:48.000579 | 1,507,728,768.000579 | 96,622 |
pythondev | help | it's especially weird when you start to mix type | 2017-10-11T13:33:05.000089 | Ciera | pythondev_help_Ciera_2017-10-11T13:33:05.000089 | 1,507,728,785.000089 | 96,623 |
pythondev | help | Thanks guys, I appreciate it! | 2017-10-11T13:34:20.000381 | Sarina | pythondev_help_Sarina_2017-10-11T13:34:20.000381 | 1,507,728,860.000381 | 96,624 |
pythondev | help | <@Sarina>: If you're expecting Aston Martin as the longest, you can do that: `max(car, key=len)` | 2017-10-11T16:43:11.000226 | Delicia | pythondev_help_Delicia_2017-10-11T16:43:11.000226 | 1,507,740,191.000226 | 96,625 |
pythondev | help | <@Delicia> Thanks! I appreciate the tip! | 2017-10-11T17:04:44.000459 | Sarina | pythondev_help_Sarina_2017-10-11T17:04:44.000459 | 1,507,741,484.000459 | 96,626 |
pythondev | help | *anyone knows simple script in python which parses PDF invoices and stores them in tabular format in a CSV?* | 2017-10-12T01:12:55.000095 | Malorie | pythondev_help_Malorie_2017-10-12T01:12:55.000095 | 1,507,770,775.000095 | 96,627 |
pythondev | help | <@Malorie> <https://www.binpress.com/tutorial/manipulating-pdfs-with-python/167>
<https://docs.python.org/3/library/csv.html> | 2017-10-12T01:18:05.000159 | Collette | pythondev_help_Collette_2017-10-12T01:18:05.000159 | 1,507,771,085.000159 | 96,628 |
pythondev | help | thanks <@Collette>, but I have managed to convert PDF to Text but the whole process of ocnverting invoice to data has been challenging. Anything on that front would be great :+1: | 2017-10-12T01:25:20.000063 | Malorie | pythondev_help_Malorie_2017-10-12T01:25:20.000063 | 1,507,771,520.000063 | 96,629 |
pythondev | help | <@Malorie> every invoice will be different as many places don't format them the same. So it's going to have to be a unique solution to your invoices | 2017-10-12T04:07:44.000220 | Vada | pythondev_help_Vada_2017-10-12T04:07:44.000220 | 1,507,781,264.00022 | 96,630 |
pythondev | help | Hi, I've been having real problems with importing my own packages in an aws lambda function, it would be great if i could get some pointers :slightly_smiling_face:
My lambda handler is in a file called property_endpoint.py and the handler function is called api_get_properties, I have this set up in the lambda console.
At the top of property_endpoint.py i import some extra things, like this
```import logging
from typing import Optional
from custom_exceptions.custom_exceptions import *
from property_package.mproperty import MProperty
from property_package.property_manager import PropertyManager```
But when i try to test the function it fails with the error `Unable to import module 'property_endpoint': cannot import name 'MProperty'`
mproperty.py is in a folder called property_package and i have an __init__.py in there.
The top of that file look like this
```import json
from property_package.property_manager import PropertyManager
class MProperty:```
It doesn't complain about the other one - custom_exceptions which i seem to be importing in the same way :confused:
Can anyone spot anything wrong here? | 2017-10-12T04:23:58.000279 | Alleen | pythondev_help_Alleen_2017-10-12T04:23:58.000279 | 1,507,782,238.000279 | 96,631 |
pythondev | help | <@Vada> there is a library called invoice2data | 2017-10-12T04:56:44.000055 | Malorie | pythondev_help_Malorie_2017-10-12T04:56:44.000055 | 1,507,784,204.000055 | 96,632 |
pythondev | help | but i am unable to correctly use it | 2017-10-12T04:56:57.000211 | Malorie | pythondev_help_Malorie_2017-10-12T04:56:57.000211 | 1,507,784,217.000211 | 96,633 |
pythondev | help | <@Malorie> you will have to provide more detail than thhat :slightly_smiling_face: | 2017-10-12T04:57:55.000029 | Vada | pythondev_help_Vada_2017-10-12T04:57:55.000029 | 1,507,784,275.000029 | 96,634 |
pythondev | help | sure | 2017-10-12T05:01:02.000308 | Malorie | pythondev_help_Malorie_2017-10-12T05:01:02.000308 | 1,507,784,462.000308 | 96,635 |
pythondev | help | so i used PDFMiner as the library depends on pdf2text which wasnt working for some reason | 2017-10-12T05:01:34.000438 | Malorie | pythondev_help_Malorie_2017-10-12T05:01:34.000438 | 1,507,784,494.000438 | 96,636 |
pythondev | help | post using PDFMiner, i have been able to extract pdf info in text format | 2017-10-12T05:02:04.000168 | Malorie | pythondev_help_Malorie_2017-10-12T05:02:04.000168 | 1,507,784,524.000168 | 96,637 |
pythondev | help | then i modified the library a little bit to accept text data | 2017-10-12T05:02:23.000264 | Malorie | pythondev_help_Malorie_2017-10-12T05:02:23.000264 | 1,507,784,543.000264 | 96,638 |
pythondev | help | all that is fine | 2017-10-12T05:02:27.000351 | Malorie | pythondev_help_Malorie_2017-10-12T05:02:27.000351 | 1,507,784,547.000351 | 96,639 |
pythondev | help | the library expects me to write a yaml template for a particular companys invoice | 2017-10-12T05:02:52.000201 | Malorie | pythondev_help_Malorie_2017-10-12T05:02:52.000201 | 1,507,784,572.000201 | 96,640 |
pythondev | help | all invoice are matched based on keywords in yaml file | 2017-10-12T05:03:07.000019 | Malorie | pythondev_help_Malorie_2017-10-12T05:03:07.000019 | 1,507,784,587.000019 | 96,641 |
pythondev | help | and information is extracted using regex in yaml file | 2017-10-12T05:03:22.000470 | Malorie | pythondev_help_Malorie_2017-10-12T05:03:22.000470 | 1,507,784,602.00047 | 96,642 |
pythondev | help | i am attaching an example | 2017-10-12T05:03:31.000107 | Malorie | pythondev_help_Malorie_2017-10-12T05:03:31.000107 | 1,507,784,611.000107 | 96,643 |
pythondev | help | but the parsing doesnt happen and it gives an error | 2017-10-12T05:03:48.000356 | Malorie | pythondev_help_Malorie_2017-10-12T05:03:48.000356 | 1,507,784,628.000356 | 96,644 |
pythondev | help | above is yaml file created by me | 2017-10-12T05:04:54.000455 | Malorie | pythondev_help_Malorie_2017-10-12T05:04:54.000455 | 1,507,784,694.000455 | 96,645 |
pythondev | help | similar to one expected by them | 2017-10-12T05:05:00.000338 | Malorie | pythondev_help_Malorie_2017-10-12T05:05:00.000338 | 1,507,784,700.000338 | 96,646 |
pythondev | help | still parsing error shows up | 2017-10-12T05:05:09.000122 | Malorie | pythondev_help_Malorie_2017-10-12T05:05:09.000122 | 1,507,784,709.000122 | 96,647 |
pythondev | help | I am trying to write a lambda function, to update an ordered dict if len is not 0. | 2017-10-12T07:58:01.000106 | Desire | pythondev_help_Desire_2017-10-12T07:58:01.000106 | 1,507,795,081.000106 | 96,648 |
pythondev | help | Its giving me a syntax error. | 2017-10-12T07:58:09.000177 | Desire | pythondev_help_Desire_2017-10-12T07:58:09.000177 | 1,507,795,089.000177 | 96,649 |
pythondev | help | `eq_x = lambda g: g.update({'pnl':'NA'}) if (len(g) != 0) ` | 2017-10-12T07:58:14.000084 | Desire | pythondev_help_Desire_2017-10-12T07:58:14.000084 | 1,507,795,094.000084 | 96,650 |
pythondev | help | how do you use `eq_x`? | 2017-10-12T08:01:13.000132 | Vada | pythondev_help_Vada_2017-10-12T08:01:13.000132 | 1,507,795,273.000132 | 96,651 |
pythondev | help | you also can't use if in a lambda | 2017-10-12T08:02:26.000322 | Vada | pythondev_help_Vada_2017-10-12T08:02:26.000322 | 1,507,795,346.000322 | 96,652 |
pythondev | help | actually that is wrong you can do this | 2017-10-12T08:02:52.000472 | Vada | pythondev_help_Vada_2017-10-12T08:02:52.000472 | 1,507,795,372.000472 | 96,653 |
pythondev | help | `a = lambda g: g.update({'pnl':'NA'}) if (len(g) != 0) else None` | 2017-10-12T08:03:00.000005 | Vada | pythondev_help_Vada_2017-10-12T08:03:00.000005 | 1,507,795,380.000005 | 96,654 |
pythondev | help | Thanks <@Vada> | 2017-10-12T08:08:17.000360 | Desire | pythondev_help_Desire_2017-10-12T08:08:17.000360 | 1,507,795,697.00036 | 96,655 |
pythondev | help | If you're assigning a lambda to a variable right away, you'd better write a regular function | 2017-10-12T08:08:25.000016 | Collette | pythondev_help_Collette_2017-10-12T08:08:25.000016 | 1,507,795,705.000016 | 96,656 |
pythondev | help | <@Desire> while this does solve the issue, I agree with <@Collette>, lambdas are not for everyday constant use. You should define a function if possible - not a lambda. | 2017-10-12T08:09:41.000218 | Vada | pythondev_help_Vada_2017-10-12T08:09:41.000218 | 1,507,795,781.000218 | 96,657 |
pythondev | help | <@Desire> a lambda is an anonymous function | 2017-10-12T08:11:25.000242 | Meg | pythondev_help_Meg_2017-10-12T08:11:25.000242 | 1,507,795,885.000242 | 96,658 |
pythondev | help | what you’e doing here is essentially making a named function with a lambda, which is bypassing what it is intended for | 2017-10-12T08:11:47.000279 | Meg | pythondev_help_Meg_2017-10-12T08:11:47.000279 | 1,507,795,907.000279 | 96,659 |
pythondev | help | Got it ! | 2017-10-12T08:20:17.000435 | Desire | pythondev_help_Desire_2017-10-12T08:20:17.000435 | 1,507,796,417.000435 | 96,660 |
pythondev | help | guys, need help. I need speech detect in audio file, not speech recognition, only speech detect. Input audio file, output True or False. | 2017-10-12T08:25:48.000273 | Odilia | pythondev_help_Odilia_2017-10-12T08:25:48.000273 | 1,507,796,748.000273 | 96,661 |
pythondev | help | cool | 2017-10-12T08:28:14.000190 | Suellen | pythondev_help_Suellen_2017-10-12T08:28:14.000190 | 1,507,796,894.00019 | 96,662 |
pythondev | help | scan for typical voice frequences | 2017-10-12T08:28:22.000454 | Suellen | pythondev_help_Suellen_2017-10-12T08:28:22.000454 | 1,507,796,902.000454 | 96,663 |
pythondev | help | Does anyone know if there’s somewhere a handy sets of asserts, like the one on the TestCase but without using the `TestCase`? I’m using BDD approach this time with behave library and I’m used to using asserts like `assertRaises` but I couldn’t find anything similar to it in behave library. Kindly asking for help :slightly_smiling_face: | 2017-10-12T08:55:57.000389 | Rashida | pythondev_help_Rashida_2017-10-12T08:55:57.000389 | 1,507,798,557.000389 | 96,664 |
pythondev | help | I did probably answer my question myself :slightly_smiling_face: | 2017-10-12T09:02:45.000040 | Rashida | pythondev_help_Rashida_2017-10-12T09:02:45.000040 | 1,507,798,965.00004 | 96,665 |
pythondev | help | <http://jenisys.github.io/behave.example/intro.html#select-an-assertion-matcher-library> | 2017-10-12T09:02:46.000407 | Rashida | pythondev_help_Rashida_2017-10-12T09:02:46.000407 | 1,507,798,966.000407 | 96,666 |
pythondev | help | For the sake of our children | 2017-10-12T09:02:59.000187 | Rashida | pythondev_help_Rashida_2017-10-12T09:02:59.000187 | 1,507,798,979.000187 | 96,667 |
pythondev | help | <@Malorie> is the pdf invoice data contained in tables? | 2017-10-12T09:57:03.000161 | Willena | pythondev_help_Willena_2017-10-12T09:57:03.000161 | 1,507,802,223.000161 | 96,668 |
pythondev | help | if so, Tabula does a pretty good job <https://github.com/tabulapdf/tabula> and it has python bindings <https://github.com/chezou/tabula-py> | 2017-10-12T09:58:29.000514 | Willena | pythondev_help_Willena_2017-10-12T09:58:29.000514 | 1,507,802,309.000514 | 96,669 |
pythondev | help | <@Maisha> <@Ciera> <@Jodie>
max works by comparing each element
so if you fed max a list of strings then you're asking it to compare each string
in python3, strings are compared lexiographically, which is why you get Aston, since 'A' is the highest ascii value | 2017-10-12T10:31:00.000864 | Winnie | pythondev_help_Winnie_2017-10-12T10:31:00.000864 | 1,507,804,260.000864 | 96,670 |
pythondev | help | the other way around you get Z | 2017-10-12T10:31:42.000569 | Ciera | pythondev_help_Ciera_2017-10-12T10:31:42.000569 | 1,507,804,302.000569 | 96,671 |
pythondev | help | other way? | 2017-10-12T10:32:02.000611 | Winnie | pythondev_help_Winnie_2017-10-12T10:32:02.000611 | 1,507,804,322.000611 | 96,672 |
pythondev | help | Z > A | 2017-10-12T10:32:30.000067 | Ciera | pythondev_help_Ciera_2017-10-12T10:32:30.000067 | 1,507,804,350.000067 | 96,673 |
pythondev | help | yes | 2017-10-12T10:33:05.000291 | Winnie | pythondev_help_Winnie_2017-10-12T10:33:05.000291 | 1,507,804,385.000291 | 96,674 |
pythondev | help | <@Cuc> I appreciate you are excited about your trending project, but you've posted it already today in <#C07EFN21K|random>, we try to avoid cross posting here and more to the point, this is not relevant to <#C07EFMZ1N|help> | 2017-10-12T10:58:22.000021 | Vada | pythondev_help_Vada_2017-10-12T10:58:22.000021 | 1,507,805,902.000021 | 96,675 |
pythondev | help | Otherwise congrats | 2017-10-12T10:58:44.000382 | Vada | pythondev_help_Vada_2017-10-12T10:58:44.000382 | 1,507,805,924.000382 | 96,676 |
pythondev | help | or use <#C3GFPUBGF|shameless_plug> | 2017-10-12T10:59:03.000305 | Meg | pythondev_help_Meg_2017-10-12T10:59:03.000305 | 1,507,805,943.000305 | 96,677 |
pythondev | help | <@Vada> oh sorry, I’ll delete it from random. | 2017-10-12T11:14:46.000307 | Cuc | pythondev_help_Cuc_2017-10-12T11:14:46.000307 | 1,507,806,886.000307 | 96,678 |
pythondev | help | <@Liane> you have credentials in that screenshot | 2017-10-12T13:28:05.000426 | Patty | pythondev_help_Patty_2017-10-12T13:28:05.000426 | 1,507,814,885.000426 | 96,679 |
pythondev | help | better to use variables ? | 2017-10-12T13:29:15.000246 | Liane | pythondev_help_Liane_2017-10-12T13:29:15.000246 | 1,507,814,955.000246 | 96,680 |
pythondev | help | I wouldn’t post them in a public forum like this | 2017-10-12T13:29:44.000030 | Patty | pythondev_help_Patty_2017-10-12T13:29:44.000030 | 1,507,814,984.00003 | 96,681 |
pythondev | help | also probably _best_ to use `env` vars | 2017-10-12T13:30:14.000299 | Frieda | pythondev_help_Frieda_2017-10-12T13:30:14.000299 | 1,507,815,014.000299 | 96,682 |
pythondev | help | other than that, can you tell if the global connector is correct ? | 2017-10-12T13:30:43.000101 | Liane | pythondev_help_Liane_2017-10-12T13:30:43.000101 | 1,507,815,043.000101 | 96,683 |
pythondev | help | I was trying to execute the python code in the cent os using ansible
self.do_handshake()\r\n File \"/usr/lib64/python2.7/ssl.py\", line 833, in do_handshake\r\n self._sslobj.do_handshake()\r\nssl.SSLError: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:579)\r\n", "msg": "MODULE FAILURE" | 2017-10-12T14:45:50.000397 | Erwin | pythondev_help_Erwin_2017-10-12T14:45:50.000397 | 1,507,819,550.000397 | 96,684 |
pythondev | help | How to fix this issue? | 2017-10-12T14:45:59.000336 | Erwin | pythondev_help_Erwin_2017-10-12T14:45:59.000336 | 1,507,819,559.000336 | 96,685 |
pythondev | help | Hi there guys so... I'm coding a library system (for my school project) and I've found this problem: I code this:
```
from tkinter import *
from tkinter import ttk
class GUIManager(object):
def __init__(self):
self.mainMenu()
def mainMenu(self):
root = Tk()
# FRAMES
header = Frame(root)
# WIDGETS
l1 = Label(header, text = 'BibliotePy - Coded By: @alfonsoima', bg = 'red', fg = 'blue')
# INCLUDE
l1.pack(fill = X)
header.pack()
root.mainloop()
def quitEverything(self):
sys.exit(0)
```
and, when I run it, Tkinter prints this: (image uploading...) | 2017-10-12T15:46:05.000440 | Lana | pythondev_help_Lana_2017-10-12T15:46:05.000440 | 1,507,823,165.00044 | 96,686 |
pythondev | help | My question is about the `fill = X` It seems to not work properly... Any ideas? | 2017-10-12T15:46:49.000232 | Lana | pythondev_help_Lana_2017-10-12T15:46:49.000232 | 1,507,823,209.000232 | 96,687 |
pythondev | help | Not super familiar with tkinter so this might be off, but fill=X makes the widget as wide as its parent, which in this case is the header, but you are not also filling the header to be as wide as its parent (root). If you wanted to label to take up the full space of the main frame you might also have to set fill=X for the header packing as well | 2017-10-12T15:55:08.000159 | Antionette | pythondev_help_Antionette_2017-10-12T15:55:08.000159 | 1,507,823,708.000159 | 96,688 |
pythondev | help | <@Antionette> Ok, you did it :taco: :taco: | 2017-10-12T16:28:05.000171 | Lana | pythondev_help_Lana_2017-10-12T16:28:05.000171 | 1,507,825,685.000171 | 96,689 |
pythondev | help | Double taco cuz you saved my whole program, lol :stuck_out_tongue: (What a mistake, dummy-me, btw).... | 2017-10-12T16:28:35.000288 | Lana | pythondev_help_Lana_2017-10-12T16:28:35.000288 | 1,507,825,715.000288 | 96,690 |
pythondev | help | :+1: glad it worked | 2017-10-12T16:30:35.000393 | Antionette | pythondev_help_Antionette_2017-10-12T16:30:35.000393 | 1,507,825,835.000393 | 96,691 |
pythondev | help | hey somewhat of a newbie to python wanted to know if someone could point me in the right direction with the requests module ? I keep getting the same error ```/usr/bin/python /Users/c5263978/apiprojects/test.py
Traceback (most recent call last):
File "/Users/c5263978/apiprojects/test.py", line 4, in <module>
test = requests.get("<http://wwww.hipstercode.com>")
File "/Library/Python/2.7/site-packages/requests/api.py", line 72, in get
return request('get', url, params=params, **kwargs)
File "/Library/Python/2.7/site-packages/requests/api.py", line 58, in request
return session.request(method=method, url=url, **kwargs)
File "/Library/Python/2.7/site-packages/requests/sessions.py", line 508, in request
resp = self.send(prep, **send_kwargs)
File "/Library/Python/2.7/site-packages/requests/sessions.py", line 618, in send
r = adapter.send(request, **kwargs)
File "/Library/Python/2.7/site-packages/requests/adapters.py", line 508, in send
raise ConnectionError(e, request=request)
requests.exceptions.ConnectionError: HTTPConnectionPool(host='<http://wwww.hipstercode.com|wwww.hipstercode.com>', port=80): Max retries exceeded with url: / (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x10138a290>: Failed to establish a new connection: [Errno 8] nodename nor servname provided, or not known',))
Process finished with exit code 1``` | 2017-10-12T16:41:31.000529 | Burma | pythondev_help_Burma_2017-10-12T16:41:31.000529 | 1,507,826,491.000529 | 96,692 |
pythondev | help | <http://wwww.hipstercode.com|wwww.hipstercode.com> isn't a site | 2017-10-12T16:42:02.000344 | Mallie | pythondev_help_Mallie_2017-10-12T16:42:02.000344 | 1,507,826,522.000344 | 96,693 |
pythondev | help | <http://www.hipstercode.com|www.hipstercode.com> may be however | 2017-10-12T16:42:09.000607 | Mallie | pythondev_help_Mallie_2017-10-12T16:42:09.000607 | 1,507,826,529.000607 | 96,694 |
pythondev | help | wrong snippet | 2017-10-12T16:43:05.000603 | Burma | pythondev_help_Burma_2017-10-12T16:43:05.000603 | 1,507,826,585.000603 | 96,695 |
pythondev | help | thanks <@Mallie> | 2017-10-12T16:43:21.000380 | Burma | pythondev_help_Burma_2017-10-12T16:43:21.000380 | 1,507,826,601.00038 | 96,696 |
pythondev | help | np :+1: | 2017-10-12T16:43:40.000248 | Mallie | pythondev_help_Mallie_2017-10-12T16:43:40.000248 | 1,507,826,620.000248 | 96,697 |
pythondev | help | ```raise SSLError(e, request=request)
requests.exceptions.SSLError: HTTPSConnectionPool(host . Max retries exceeded with url: /rest/login (Caused by SSLError(SSLError(1, u'[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:590)'),))``` | 2017-10-12T16:49:02.000137 | Burma | pythondev_help_Burma_2017-10-12T16:49:02.000137 | 1,507,826,942.000137 | 96,698 |
pythondev | help | Is there a SSL parameter that I'm missing when running requests.get | 2017-10-12T16:49:36.000068 | Burma | pythondev_help_Burma_2017-10-12T16:49:36.000068 | 1,507,826,976.000068 | 96,699 |
pythondev | help | <https://stackoverflow.com/questions/38065240/python-request-ssl-certificate-verify-failed-certificate-verify-failed-ssl> | 2017-10-12T16:50:12.000240 | Meg | pythondev_help_Meg_2017-10-12T16:50:12.000240 | 1,507,827,012.00024 | 96,700 |
pythondev | help | What URL are you requesting from? It's probably just a bad cert - do you want the bad cert to be accepted? | 2017-10-12T16:50:30.000164 | Mallie | pythondev_help_Mallie_2017-10-12T16:50:30.000164 | 1,507,827,030.000164 | 96,701 |
pythondev | help | Oh yeah just use that SO answer that <@Meg> shared | 2017-10-12T16:50:55.000390 | Mallie | pythondev_help_Mallie_2017-10-12T16:50:55.000390 | 1,507,827,055.00039 | 96,702 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.