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
None
2019-04-18T14:53:33.298200
Kam
pythondev_help_Kam_2019-04-18T14:53:33.298200
1,555,599,213.2982
19,321
pythondev
help
Do you have any control over the frontend, even indirectly through API interface design?
2019-04-18T15:09:25.298500
Carmen
pythondev_help_Carmen_2019-04-18T15:09:25.298500
1,555,600,165.2985
19,322
pythondev
help
<@Al> there is `wsgiref` in the Python 2 standard lib <https://docs.python.org/2/library/wsgiref.html>
2019-04-18T15:10:34.299000
Lawrence
pythondev_help_Lawrence_2019-04-18T15:10:34.299000
1,555,600,234.299
19,323
pythondev
help
If so, you could use a resumable API setup, and get automatic parallelism via client side libraries implementing that protocol. <http://www.resumablejs.com/> <https://pypi.org/project/python-resumable/>
2019-04-18T15:11:11.299100
Carmen
pythondev_help_Carmen_2019-04-18T15:11:11.299100
1,555,600,271.2991
19,324
pythondev
help
I don't see anything wrong with this approach. It may depend on the context of what you are ultimately implementing, but this appears to be okay to me :thumbsup:
2019-04-18T15:11:47.299500
Lawrence
pythondev_help_Lawrence_2019-04-18T15:11:47.299500
1,555,600,307.2995
19,325
pythondev
help
Alternately, if it makes sense for your architecture, you could take advantage of direct-upload to AWS S3 and let AWS handle all the hard work of optimally receiving uploads. I guarantee they have better bandwidth than you do. And then you just pull the uploaded file from the S3 bucket at your convenience to process.
2019-04-18T15:13:02.299700
Carmen
pythondev_help_Carmen_2019-04-18T15:13:02.299700
1,555,600,382.2997
19,326
pythondev
help
It's a graph, vertices and edges so I need to plot the distance that represents the edges between 2 nodes
2019-04-18T15:22:29.301000
Tanja
pythondev_help_Tanja_2019-04-18T15:22:29.301000
1,555,600,949.301
19,327
pythondev
help
Thank you.
2019-04-18T15:30:48.301200
Kam
pythondev_help_Kam_2019-04-18T15:30:48.301200
1,555,601,448.3012
19,328
pythondev
help
<@Lawrence> Thanks, I'll take a look
2019-04-18T16:01:31.301800
Al
pythondev_help_Al_2019-04-18T16:01:31.301800
1,555,603,291.3018
19,329
pythondev
help
We are trying to apply DDD to our project (php) recently, and I really like the concepts behind it. We have a decoupled architecture and a extensive use of dependency injection and i think that is a nice approach for large app. But i don't see many of this concepts in the Python world. So the question is , what do you think about Python, dependency injection and DDD?. Thanks in advanced
2019-04-18T16:03:27.302000
Monika
pythondev_help_Monika_2019-04-18T16:03:27.302000
1,555,603,407.302
19,330
pythondev
help
It’s amazing to me that consultants make money selling DDD concepts - it is just good systems design practice. In a way it is the same with Dependency injection, we don’t really talk about it much. Mostly it is because, in statically type languages dependency injection is a Big Difficult Idea :tm: leading to frameworks that abstract away the difficulties. Python is dynamically typed and so it is easy to build up Inversion of Control, to a degree that you might look at some python code and say “You are using dependency injection? I love it” and the response is “What’s dependency injection?”
2019-04-18T16:10:34.305800
Clemmie
pythondev_help_Clemmie_2019-04-18T16:10:34.305800
1,555,603,834.3058
19,331
pythondev
help
you can use django as a good example of a project using DI
2019-04-18T16:16:30.307000
Hiroko
pythondev_help_Hiroko_2019-04-18T16:16:30.307000
1,555,604,190.307
19,332
pythondev
help
Hi all, is there any library in python which would help with creating dynamic web page (with graphics/charts) where I could hover over some items and it would display some kind of pop up with additional information ?
2019-04-18T16:17:05.307600
Danae
pythondev_help_Danae_2019-04-18T16:17:05.307600
1,555,604,225.3076
19,333
pythondev
help
sounds like you want a mix of python and javascript
2019-04-18T16:18:15.307900
Hiroko
pythondev_help_Hiroko_2019-04-18T16:18:15.307900
1,555,604,295.3079
19,334
pythondev
help
you can’t do all this in python
2019-04-18T16:19:00.308800
Hiroko
pythondev_help_Hiroko_2019-04-18T16:19:00.308800
1,555,604,340.3088
19,335
pythondev
help
gonna need some browser side work in javascript
2019-04-18T16:19:13.309300
Hiroko
pythondev_help_Hiroko_2019-04-18T16:19:13.309300
1,555,604,353.3093
19,336
pythondev
help
<https://dash.plot.ly/getting-started>
2019-04-18T16:24:25.309900
Lashawna
pythondev_help_Lashawna_2019-04-18T16:24:25.309900
1,555,604,665.3099
19,337
pythondev
help
U r amazing
2019-04-18T16:28:50.311300
Angle
pythondev_help_Angle_2019-04-18T16:28:50.311300
1,555,604,930.3113
19,338
pythondev
help
Thanks
2019-04-18T16:28:55.311600
Angle
pythondev_help_Angle_2019-04-18T16:28:55.311600
1,555,604,935.3116
19,339
pythondev
help
<@Danae> That should do what you need without requiring you to know a lot about html, css, or any Javascript.
2019-04-18T16:29:13.312000
Lashawna
pythondev_help_Lashawna_2019-04-18T16:29:13.312000
1,555,604,953.312
19,340
pythondev
help
<https://dash.plot.ly/gallery>
2019-04-18T16:29:48.312200
Lashawna
pythondev_help_Lashawna_2019-04-18T16:29:48.312200
1,555,604,988.3122
19,341
pythondev
help
<@Hiroko> the django code base?
2019-04-18T16:37:35.312700
Monika
pythondev_help_Monika_2019-04-18T16:37:35.312700
1,555,605,455.3127
19,342
pythondev
help
yeah, especially the ORM
2019-04-18T16:38:57.312900
Hiroko
pythondev_help_Hiroko_2019-04-18T16:38:57.312900
1,555,605,537.3129
19,343
pythondev
help
ok thanks, i will take a look
2019-04-18T16:40:24.313300
Monika
pythondev_help_Monika_2019-04-18T16:40:24.313300
1,555,605,624.3133
19,344
pythondev
help
:+1:
2019-04-18T17:38:05.313500
Carmen
pythondev_help_Carmen_2019-04-18T17:38:05.313500
1,555,609,085.3135
19,345
pythondev
help
Hello everyone! Brasil only ...
2019-04-18T18:54:09.316600
Diamond
pythondev_help_Diamond_2019-04-18T18:54:09.316600
1,555,613,649.3166
19,346
pythondev
help
django emite certificado digital ou algo assim ??
2019-04-18T18:54:50.317000
Diamond
pythondev_help_Diamond_2019-04-18T18:54:50.317000
1,555,613,690.317
19,347
pythondev
help
Hey all! Can anyone help me with incorporating a lexicon for Azure text-to-speech? I'm using the Python SDK. I tried this but it didn't work :disappointed: ```xml_body = ElementTree.Element('speak', version='1.0') xml_body.set('{<http://www.w3.org/XML/1998/namespace>}lang', 'en-us') lexicon = ElementTree.SubElement(xml_body, 'lexicon') lexicon.set('uri', '/resources/_gen/assets/MedLexicon.pls') lexicon.set('type', 'application/pls+xml')```
2019-04-18T19:03:40.319200
Danette
pythondev_help_Danette_2019-04-18T19:03:40.319200
1,555,614,220.3192
19,348
pythondev
help
<@Danette> did you receive any errors?
2019-04-18T19:17:23.319600
Lawrence
pythondev_help_Lawrence_2019-04-18T19:17:23.319600
1,555,615,043.3196
19,349
pythondev
help
<@Lawrence> Yes, seems like a generic message: 400. Something went wrong. Check your subscription key and headers. My subscription key works for sure bc I'm still able to get an MP3 when I run the code without the lexicon.
2019-04-18T19:19:28.321000
Danette
pythondev_help_Danette_2019-04-18T19:19:28.321000
1,555,615,168.321
19,350
pythondev
help
I'm unfamiliar with lexicon or azure but could it be a bad request? perhaps something with the uri?
2019-04-18T19:22:24.321800
Lawrence
pythondev_help_Lawrence_2019-04-18T19:22:24.321800
1,555,615,344.3218
19,351
pythondev
help
Right offhand, that second line looks odd. Do you know for sure you need the curly brackets around `<http://www.w3.org/XML/1998/namespace>`?
2019-04-18T19:29:43.322500
Carmen
pythondev_help_Carmen_2019-04-18T19:29:43.322500
1,555,615,783.3225
19,352
pythondev
help
I successfully created a docker image for a flask application but when I decide to start container from this image it says "can't open app.py file [Errno 2] no such file or directory"
2019-04-18T19:31:37.322600
Elmira
pythondev_help_Elmira_2019-04-18T19:31:37.322600
1,555,615,897.3226
19,353
pythondev
help
``` From debian:jessie RUN apt-get -y install python-pip python-dev build-essential WORKDIR /diary COPY . /couchapp EXPOSE 5000 CMD["python", "app. py"]
2019-04-18T19:31:37.322700
Elmira
pythondev_help_Elmira_2019-04-18T19:31:37.322700
1,555,615,897.3227
19,354
pythondev
help
Any help?
2019-04-18T19:32:12.323100
Elmira
pythondev_help_Elmira_2019-04-18T19:32:12.323100
1,555,615,932.3231
19,355
pythondev
help
perhaps the path is wrong? I imagine `app.py` lives in `couchapp` so I would presume `CMD["python", "couchapp/app.py"]` would be work
2019-04-18T19:39:01.324300
Lawrence
pythondev_help_Lawrence_2019-04-18T19:39:01.324300
1,555,616,341.3243
19,356
pythondev
help
really?
2019-04-18T19:40:17.324600
Elmira
pythondev_help_Elmira_2019-04-18T19:40:17.324600
1,555,616,417.3246
19,357
pythondev
help
am I correct in my assumption that `app.py` lives within the directory `couchapp`? `no such file or directory` means it cannot find `app.py` in its current working directory
2019-04-18T19:41:51.325700
Lawrence
pythondev_help_Lawrence_2019-04-18T19:41:51.325700
1,555,616,511.3257
19,358
pythondev
help
Okay. I will check it again... Thanks <@Lawrence>
2019-04-18T19:53:36.326600
Elmira
pythondev_help_Elmira_2019-04-18T19:53:36.326600
1,555,617,216.3266
19,359
pythondev
help
so you have a program that moves through functions proceduraly, Step 1, Step2, Step3, etc... and you want to be able to go back one step. How do you go about that? is it as simple as this? know of a better way? its a command line program btw.
2019-04-18T21:57:25.330000
Priscilla
pythondev_help_Priscilla_2019-04-18T21:57:25.330000
1,555,624,645.33
19,360
pythondev
help
You may want to look into "state machines", which are a common abstraction for general schemes of this form.
2019-04-18T22:03:35.331100
Sasha
pythondev_help_Sasha_2019-04-18T22:03:35.331100
1,555,625,015.3311
19,361
pythondev
help
on it, thanks!
2019-04-18T22:03:58.331300
Priscilla
pythondev_help_Priscilla_2019-04-18T22:03:58.331300
1,555,625,038.3313
19,362
pythondev
help
oh damn, lots of new words in this explanation :fearful:
2019-04-18T22:05:59.331800
Priscilla
pythondev_help_Priscilla_2019-04-18T22:05:59.331800
1,555,625,159.3318
19,363
pythondev
help
Heh heh, yell if you get stuck somewhere.
2019-04-18T22:08:18.332100
Sasha
pythondev_help_Sasha_2019-04-18T22:08:18.332100
1,555,625,298.3321
19,364
pythondev
help
what ide do you use ed?
2019-04-18T22:17:40.332500
Priscilla
pythondev_help_Priscilla_2019-04-18T22:17:40.332500
1,555,625,860.3325
19,365
pythondev
help
For Python, honestly I just use emacs. For other stuff, usually Eclipse derivatives. I'm probably not a good person to learn IDE habits from, though.
2019-04-18T22:20:04.334100
Sasha
pythondev_help_Sasha_2019-04-18T22:20:04.334100
1,555,626,004.3341
19,366
pythondev
help
working on anything cool currently?
2019-04-18T22:20:35.334500
Priscilla
pythondev_help_Priscilla_2019-04-18T22:20:35.334500
1,555,626,035.3345
19,367
pythondev
help
Trying to get started with a new (for me) embedded platform called the ESP32. Neat little high-end microcontroller with integrated Bluetooth and WiFi.
2019-04-18T22:22:58.335400
Sasha
pythondev_help_Sasha_2019-04-18T22:22:58.335400
1,555,626,178.3354
19,368
pythondev
help
neat, that sounds like a fun project
2019-04-18T22:23:24.335800
Priscilla
pythondev_help_Priscilla_2019-04-18T22:23:24.335800
1,555,626,204.3358
19,369
pythondev
help
is python your prefered language?
2019-04-18T22:23:49.336100
Priscilla
pythondev_help_Priscilla_2019-04-18T22:23:49.336100
1,555,626,229.3361
19,370
pythondev
help
It's definitely my favorite, and my go-to choice for anything on the small to medium side. Professionally I've often worked in embedded systems, and it's hard to avoid C there, though.
2019-04-18T22:25:46.337500
Sasha
pythondev_help_Sasha_2019-04-18T22:25:46.337500
1,555,626,346.3375
19,371
pythondev
help
have you used rust?
2019-04-18T22:27:59.337700
Priscilla
pythondev_help_Priscilla_2019-04-18T22:27:59.337700
1,555,626,479.3377
19,372
pythondev
help
Afraid not. Worth digging into?
2019-04-18T22:29:18.338100
Sasha
pythondev_help_Sasha_2019-04-18T22:29:18.338100
1,555,626,558.3381
19,373
pythondev
help
i think it is. I used it a tiny amount but found it very readable just getting started. I was interested in it because of its memory safety aspects which I didnt quite understand with C. I hear that may be why many devs dont like it, not as much control as C but I wouldn't know that lol.
2019-04-18T22:31:21.340300
Priscilla
pythondev_help_Priscilla_2019-04-18T22:31:21.340300
1,555,626,681.3403
19,374
pythondev
help
Hahaha, yeah, "memory safety" and "C" don't really go together. Thanks for the pointer, sounds interesting.
2019-04-18T22:34:12.342000
Sasha
pythondev_help_Sasha_2019-04-18T22:34:12.342000
1,555,626,852.342
19,375
pythondev
help
:smile:
2019-04-18T22:34:42.342200
Priscilla
pythondev_help_Priscilla_2019-04-18T22:34:42.342200
1,555,626,882.3422
19,376
pythondev
help
&gt; Thanks for the pointer I see a pun here
2019-04-18T22:50:09.342700
Chester
pythondev_help_Chester_2019-04-18T22:50:09.342700
1,555,627,809.3427
19,377
pythondev
help
<@Conchita> Let me try with Postman to see if I can post with a parameter. Odd you are not seeing it.
2019-04-19T01:05:08.343600
Pasquale
pythondev_help_Pasquale_2019-04-19T01:05:08.343600
1,555,635,908.3436
19,378
pythondev
help
thanks <@Lashawna>! Will have a look at it :slightly_smiling_face:
2019-04-19T01:49:01.343800
Danae
pythondev_help_Danae_2019-04-19T01:49:01.343800
1,555,638,541.3438
19,379
pythondev
help
hi beginner question how can I use data from a function in a list as follow <https://p.6core.net/p/cz7SI1OoJmR3kyMV4TOYOdR9>
2019-04-19T06:51:10.344900
Kalyn
pythondev_help_Kalyn_2019-04-19T06:51:10.344900
1,555,656,670.3449
19,380
pythondev
help
i want the info from ips or def getIpAddresses in the message
2019-04-19T06:51:42.345600
Kalyn
pythondev_help_Kalyn_2019-04-19T06:51:42.345600
1,555,656,702.3456
19,381
pythondev
help
note for beginner: <http://pep8.org|pep8.org> :slightly_smiling_face: snake_case and spaces
2019-04-19T06:52:37.346100
Susan
pythondev_help_Susan_2019-04-19T06:52:37.346100
1,555,656,757.3461
19,382
pythondev
help
thats something I need to work on :wink:
2019-04-19T06:54:03.346400
Kalyn
pythondev_help_Kalyn_2019-04-19T06:54:03.346400
1,555,656,843.3464
19,383
pythondev
help
maybe <https://docs.python.org/3/library/ipaddress.html> would be handy
2019-04-19T06:54:24.346700
Susan
pythondev_help_Susan_2019-04-19T06:54:24.346700
1,555,656,864.3467
19,384
pythondev
help
`messages = [ "announce flow route { match { destination" " ips " "/32; } then { discard; } }" ]` that's just a list of one element
2019-04-19T06:54:56.347200
Susan
pythondev_help_Susan_2019-04-19T06:54:56.347200
1,555,656,896.3472
19,385
pythondev
help
can’t use data from for loop in element?
2019-04-19T06:55:57.348200
Kalyn
pythondev_help_Kalyn_2019-04-19T06:55:57.348200
1,555,656,957.3482
19,386
pythondev
help
and `ips` equals None
2019-04-19T06:56:00.348300
Susan
pythondev_help_Susan_2019-04-19T06:56:00.348300
1,555,656,960.3483
19,387
pythondev
help
`stdout.write(... + '\n'); flush` -&gt; `print(..., flush=True)`
2019-04-19T06:57:05.348900
Susan
pythondev_help_Susan_2019-04-19T06:57:05.348900
1,555,657,025.3489
19,388
pythondev
help
`"destination " " ips " " /32"` just equals `"destination ips /32"`
2019-04-19T06:57:50.349600
Susan
pythondev_help_Susan_2019-04-19T06:57:50.349600
1,555,657,070.3496
19,389
pythondev
help
yeah trying to get that data in there but I guess I have to make a sum of lists elements
2019-04-19T06:58:46.350400
Kalyn
pythondev_help_Kalyn_2019-04-19T06:58:46.350400
1,555,657,126.3504
19,390
pythondev
help
if you need to insert a list in the middle of list `["prefix", *ips, "suffix"]`
2019-04-19T06:58:51.350700
Susan
pythondev_help_Susan_2019-04-19T06:58:51.350700
1,555,657,131.3507
19,391
pythondev
help
`getIpAddresses` should `return ip_range`
2019-04-19T06:59:42.351100
Susan
pythondev_help_Susan_2019-04-19T06:59:42.351100
1,555,657,182.3511
19,392
pythondev
help
mh
2019-04-19T07:03:55.351300
Kalyn
pythondev_help_Kalyn_2019-04-19T07:03:55.351300
1,555,657,435.3513
19,393
pythondev
help
let me try so
2019-04-19T07:03:59.351500
Kalyn
pythondev_help_Kalyn_2019-04-19T07:03:59.351500
1,555,657,439.3515
19,394
pythondev
help
hi
2019-04-19T07:24:01.351900
Marcia
pythondev_help_Marcia_2019-04-19T07:24:01.351900
1,555,658,641.3519
19,395
pythondev
help
is there a easy way to create all permutations of an array, but to have a rule that some array key’s have to be on the same position
2019-04-19T07:25:12.353100
Marcia
pythondev_help_Marcia_2019-04-19T07:25:12.353100
1,555,658,712.3531
19,396
pythondev
help
[1, 2, 3, 4 ,5 6, 7, 8] e.g. 2 and 7 have to be always on their position otherwise skip this permutation
2019-04-19T07:25:57.353900
Marcia
pythondev_help_Marcia_2019-04-19T07:25:57.353900
1,555,658,757.3539
19,397
pythondev
help
`[x for x in itertools.permutations(...) if condition(x)]`
2019-04-19T07:36:21.354800
Susan
pythondev_help_Susan_2019-04-19T07:36:21.354800
1,555,659,381.3548
19,398
pythondev
help
Say I have this method: ``` def my_func(b, a = 10): """ This is a sample function to test what I learned from official docs. """ x = 1 def print_value(): return x + a + b return print_value ```
2019-04-19T07:40:13.355300
Cordell
pythondev_help_Cordell_2019-04-19T07:40:13.355300
1,555,659,613.3553
19,399
pythondev
help
Why then __kwdefaults__ doesn't show anything? ``` 3.7.3 (default, Mar 27 2019, 09:23:15) [Clang 10.0.1 (clang-1001.0.46.3)] Python Type "help", "copyright", "credits" or "license" for more information. from python_methods import * my_func.__kwdefaults__ ```
2019-04-19T07:40:38.355800
Cordell
pythondev_help_Cordell_2019-04-19T07:40:38.355800
1,555,659,638.3558
19,400
pythondev
help
<@Susan> thank you
2019-04-19T07:40:56.356000
Marcia
pythondev_help_Marcia_2019-04-19T07:40:56.356000
1,555,659,656.356
19,401
pythondev
help
I know bs4 exists, but you have to download the html page with a get request... Selenium is just slow... Isn’t there a LWP::Simple module for Python or equivalent? This is for a scraper of sorts... maybe.
2019-04-19T07:44:42.358300
Nieves
pythondev_help_Nieves_2019-04-19T07:44:42.358300
1,555,659,882.3583
19,402
pythondev
help
any handy tools I am not aware of for guessing datatypes from a csv file for databases? I used to use pandas often (had issues with ID columns with nulls turning into decimals like 188282889.0), right now I am using something called tableschema (python library)
2019-04-19T07:56:31.359500
Alvina
pythondev_help_Alvina_2019-04-19T07:56:31.359500
1,555,660,591.3595
19,403
pythondev
help
None
2019-04-19T07:57:54.361200
Alvina
pythondev_help_Alvina_2019-04-19T07:57:54.361200
1,555,660,674.3612
19,404
pythondev
help
typically generating a list of dicts, like that
2019-04-19T07:58:02.361900
Alvina
pythondev_help_Alvina_2019-04-19T07:58:02.361900
1,555,660,682.3619
19,405
pythondev
help
guessing datatypes?
2019-04-19T07:59:11.363200
Nieves
pythondev_help_Nieves_2019-04-19T07:59:11.363200
1,555,660,751.3632
19,406
pythondev
help
Couldn't you read each line or whatever in the file and compare or something?
2019-04-19T07:59:31.364000
Nieves
pythondev_help_Nieves_2019-04-19T07:59:31.364000
1,555,660,771.364
19,407
pythondev
help
Pretty sure Python has the ability to tell the datatype or whatever natively?
2019-04-19T07:59:43.364500
Nieves
pythondev_help_Nieves_2019-04-19T07:59:43.364500
1,555,660,783.3645
19,408
pythondev
help
One sec...
2019-04-19T07:59:55.364900
Nieves
pythondev_help_Nieves_2019-04-19T07:59:55.364900
1,555,660,795.3649
19,409
pythondev
help
<@Nieves> yeah, selenium is slow because it's dependent on a web browser, and I don't recommend it for scraping (not just because it's dependent on a browser, but because it uses the WebDriver protocol, which can be limiting). Bs4 and requests make a very solid combo, but there's no JS engine involved, so that may limit you in other ways. There's also scrapy which is built for scraping, but I don't believe it uses a JS engine either (I could be wrong though)
2019-04-19T08:00:29.365900
Ashley
pythondev_help_Ashley_2019-04-19T08:00:29.365900
1,555,660,829.3659
19,410
pythondev
help
Yeah... no Selenium. Webdriver protocol needs to die btw. Thinking a mix of PhantomJS and the like...
2019-04-19T08:01:03.366900
Nieves
pythondev_help_Nieves_2019-04-19T08:01:03.366900
1,555,660,863.3669
19,411
pythondev
help
I could always parse for JS manually
2019-04-19T08:01:22.368000
Nieves
pythondev_help_Nieves_2019-04-19T08:01:22.368000
1,555,660,882.368
19,412
pythondev
help
WebDriver is actually fantastic. It's just not built for scraping ;)
2019-04-19T08:01:25.368200
Ashley
pythondev_help_Ashley_2019-04-19T08:01:25.368200
1,555,660,885.3682
19,413
pythondev
help
PhantomJS is dead though I think
2019-04-19T08:01:45.369400
Ashley
pythondev_help_Ashley_2019-04-19T08:01:45.369400
1,555,660,905.3694
19,414
pythondev
help
all the tools I have seen for scraping use selenium and I always shake my head
2019-04-19T08:01:47.369500
Nieves
pythondev_help_Nieves_2019-04-19T08:01:47.369500
1,555,660,907.3695
19,415
pythondev
help
No
2019-04-19T08:01:48.369800
Nieves
pythondev_help_Nieves_2019-04-19T08:01:48.369800
1,555,660,908.3698
19,416
pythondev
help
<@Ashley> i will need to look at some other options. I have some selenium things running daily since like 2014 (have to log into a website, select some filters and a date picker, export a file when the page loads). I am afraid to even look at that code..
2019-04-19T08:01:51.370200
Alvina
pythondev_help_Alvina_2019-04-19T08:01:51.370200
1,555,660,911.3702
19,417
pythondev
help
PhantomJS is alive and well
2019-04-19T08:01:52.370300
Nieves
pythondev_help_Nieves_2019-04-19T08:01:52.370300
1,555,660,912.3703
19,418
pythondev
help
Yeah, it's not built for scraping
2019-04-19T08:01:57.370600
Ashley
pythondev_help_Ashley_2019-04-19T08:01:57.370600
1,555,660,917.3706
19,419
pythondev
help
WWW::Mechanize::PhantomJS is dope
2019-04-19T08:02:13.371000
Nieves
pythondev_help_Nieves_2019-04-19T08:02:13.371000
1,555,660,933.371
19,420