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
if you would have to do a migration sqlite > postgres
2017-08-02T10:48:05.779260
Corrine
pythondev_help_Corrine_2017-08-02T10:48:05.779260
1,501,670,885.77926
88,503
pythondev
help
how would you do it?
2017-08-02T10:48:09.781835
Corrine
pythondev_help_Corrine_2017-08-02T10:48:09.781835
1,501,670,889.781835
88,504
pythondev
help
I don't know, I'm trying to solve a SERIAL / INTEGER mystery :confused:
2017-08-02T10:48:46.806827
Suellen
pythondev_help_Suellen_2017-08-02T10:48:46.806827
1,501,670,926.806827
88,505
pythondev
help
Your model definition is OK, so maybe Alembic did something it shouldn't (if you used it)
2017-08-02T10:49:13.825400
Suellen
pythondev_help_Suellen_2017-08-02T10:49:13.825400
1,501,670,953.8254
88,506
pythondev
help
I need help with web crawling. I use 'requests' module. After 5 successful requests with 2 sec interval, this particular website returns 403. I set user-agent to 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.41 Safari/537.36'. I'm wondering if there is more I can do to make my requests appear as if from a browser.
2017-08-02T10:59:18.242345
Lamont
pythondev_help_Lamont_2017-08-02T10:59:18.242345
1,501,671,558.242345
88,507
pythondev
help
FYI for formatting code it's a backticks ` :slightly_smiling_face:
2017-08-02T11:00:13.282900
Ciera
pythondev_help_Ciera_2017-08-02T11:00:13.282900
1,501,671,613.2829
88,508
pythondev
help
and please post that in <#C5PHT9EGK|webscraping> as it might be against website TOS
2017-08-02T11:01:17.330108
Ciera
pythondev_help_Ciera_2017-08-02T11:01:17.330108
1,501,671,677.330108
88,509
pythondev
help
Is there a way to see a list of all the channels in slack?
2017-08-02T13:11:27.302440
Arturo
pythondev_help_Arturo_2017-08-02T13:11:27.302440
1,501,679,487.30244
88,510
pythondev
help
duuhh just found it lol
2017-08-02T13:11:47.313948
Arturo
pythondev_help_Arturo_2017-08-02T13:11:47.313948
1,501,679,507.313948
88,511
pythondev
help
<@Winnifred> thanks for the .apply tip, got it figured out finally! :taco:
2017-08-02T13:39:22.310597
Jed
pythondev_help_Jed_2017-08-02T13:39:22.310597
1,501,681,162.310597
88,512
pythondev
help
Thanks, <@Jed>! I try to resist the ~urg~ urge to use control structures or things outside of the `pandas` and `numpy` libs when munging/processing `DataFrame`s.
2017-08-02T13:42:25.418898
Winnifred
pythondev_help_Winnifred_2017-08-02T13:42:25.418898
1,501,681,345.418898
88,513
pythondev
help
I'm writing a unittest and I find that one of my test cases will generate either an ssl.CertificateError or an Exception with a message of "8.8.8.8 is not a VIM server". Is there a way to write my unit test to check to see that if one of the two cases gets raised in this situation? It kinda looks like ``` def test_connect_non_vim_server_host(self): non_vim_conn = connector.Connector("8.8.8.8") # with self.assertRaisesMessage(Exception, "8.8.8.8:443 is not a VIM server"): with self.assertRaises(ssl.CertificateError): non_vim_conn.connect_to_server()```
2017-08-02T15:50:54.919773
Kristopher
pythondev_help_Kristopher_2017-08-02T15:50:54.919773
1,501,689,054.919773
88,514
pythondev
help
So, it works with ss.CertificateError, but you want to check for either possibility?
2017-08-02T15:55:45.084577
Meghan
pythondev_help_Meghan_2017-08-02T15:55:45.084577
1,501,689,345.084577
88,515
pythondev
help
<@Meghan> Sometimes it's an ssl.CertificateError and sometimes it generates the Exception with the "is not a VIM server" message
2017-08-02T15:57:25.141727
Kristopher
pythondev_help_Kristopher_2017-08-02T15:57:25.141727
1,501,689,445.141727
88,516
pythondev
help
And you want to have either be a pass for the test?
2017-08-02T15:57:40.150307
Meghan
pythondev_help_Meghan_2017-08-02T15:57:40.150307
1,501,689,460.150307
88,517
pythondev
help
Yes
2017-08-02T15:57:44.152403
Kristopher
pythondev_help_Kristopher_2017-08-02T15:57:44.152403
1,501,689,464.152403
88,518
pythondev
help
Not sure if assertRaises can do that, but how about: ``` try: exceptional_thing() except ssl.CertificateError: self.assertEqual(True, True) except OtherThing: self.assertEqual(True, True) ```
2017-08-02T15:58:37.183276
Meghan
pythondev_help_Meghan_2017-08-02T15:58:37.183276
1,501,689,517.183276
88,519
pythondev
help
Let me try that and I'll get back to you. What would that assertEqual usually be in a case like this?
2017-08-02T15:59:08.201343
Kristopher
pythondev_help_Kristopher_2017-08-02T15:59:08.201343
1,501,689,548.201343
88,520
pythondev
help
You would put your function as one of the parameters there, and the expected result as the other.
2017-08-02T15:59:32.215285
Meghan
pythondev_help_Meghan_2017-08-02T15:59:32.215285
1,501,689,572.215285
88,521
pythondev
help
```self.assertEqual(add(1,2), 3)```
2017-08-02T15:59:50.225868
Meghan
pythondev_help_Meghan_2017-08-02T15:59:50.225868
1,501,689,590.225868
88,522
pythondev
help
I suppose you will want an else clause, and in it put self.assertEqual(True, False) to get a failure.
2017-08-02T16:00:20.244312
Meghan
pythondev_help_Meghan_2017-08-02T16:00:20.244312
1,501,689,620.244312
88,523
pythondev
help
With that though, can you narrow down what the exceptional condition should be so you know which exception it will give and you can test more accurately?
2017-08-02T16:01:19.278795
Meghan
pythondev_help_Meghan_2017-08-02T16:01:19.278795
1,501,689,679.278795
88,524
pythondev
help
You could also use Exception rather than a specific exception, however, I don't like vague. If the two exceptions are related, that is one inherits from the other, or both inherit from a common exception, you could use that as well.
2017-08-02T16:04:39.391438
Meghan
pythondev_help_Meghan_2017-08-02T16:04:39.391438
1,501,689,879.391438
88,525
pythondev
help
<@Kristopher>, I'm leaving the office, if you want to continue tag me so I get a notification.
2017-08-02T16:06:38.456467
Meghan
pythondev_help_Meghan_2017-08-02T16:06:38.456467
1,501,689,998.456467
88,526
pythondev
help
Ok, thank you for letting me know
2017-08-02T16:06:54.465325
Kristopher
pythondev_help_Kristopher_2017-08-02T16:06:54.465325
1,501,690,014.465325
88,527
pythondev
help
<@Meghan> Thank you, I figured it out.
2017-08-02T16:23:31.016425
Kristopher
pythondev_help_Kristopher_2017-08-02T16:23:31.016425
1,501,691,011.016425
88,528
pythondev
help
hey everyone! i have a question in pandas about how to extract rows of a given dataframe based on a certain condition. So let's say I have a dataframe `table` and the condition is `bool_exp` which evaluates to true or false. How I can extract all rows of the dataframe which satisfy this condition?
2017-08-02T16:25:36.087182
Tameika
pythondev_help_Tameika_2017-08-02T16:25:36.087182
1,501,691,136.087182
88,529
pythondev
help
my attempt was this : `table = table[bool_exp]`
2017-08-02T16:26:22.112591
Tameika
pythondev_help_Tameika_2017-08-02T16:26:22.112591
1,501,691,182.112591
88,530
pythondev
help
actually, `bool_exp` is something like this : `table['col1'].str.split('_').tolist()[0][2] in somelist`
2017-08-02T16:27:40.156209
Tameika
pythondev_help_Tameika_2017-08-02T16:27:40.156209
1,501,691,260.156209
88,531
pythondev
help
<@Tameika>, do you want to extract rows based on boolean values of a specific column in `table` ?
2017-08-02T16:29:21.213132
Winnifred
pythondev_help_Winnifred_2017-08-02T16:29:21.213132
1,501,691,361.213132
88,532
pythondev
help
hey kennes sorry for the ambiguity. every element of table['col1'] is : ABC_DEF_xyz_KLM. If `xyz` is a member of `somelist`, I extract that row.
2017-08-02T16:31:37.291678
Tameika
pythondev_help_Tameika_2017-08-02T16:31:37.291678
1,501,691,497.291678
88,533
pythondev
help
What is `somelist`?
2017-08-02T16:42:06.642848
Winnifred
pythondev_help_Winnifred_2017-08-02T16:42:06.642848
1,501,692,126.642848
88,534
pythondev
help
typically, if you’re trying to perform calculations on `Series`objects, you can use `.map` so in your case `table.col1.map(some_function_you_wrote(value))`
2017-08-02T16:44:35.724796
Winnifred
pythondev_help_Winnifred_2017-08-02T16:44:35.724796
1,501,692,275.724796
88,535
pythondev
help
`somelist` is a list of string entries which may potentially contain `xyz`.
2017-08-02T16:48:40.859708
Tameika
pythondev_help_Tameika_2017-08-02T16:48:40.859708
1,501,692,520.859708
88,536
pythondev
help
Ah I understand now.
2017-08-02T16:49:43.894113
Winnifred
pythondev_help_Winnifred_2017-08-02T16:49:43.894113
1,501,692,583.894113
88,537
pythondev
help
Could you point to an example for map? I have a hard time wrapping my head around map and Series objects.
2017-08-02T16:50:15.912315
Tameika
pythondev_help_Tameika_2017-08-02T16:50:15.912315
1,501,692,615.912315
88,538
pythondev
help
yes!
2017-08-02T16:51:44.961455
Winnifred
pythondev_help_Winnifred_2017-08-02T16:51:44.961455
1,501,692,704.961455
88,539
pythondev
help
To solve this issue, create a temporary column like so `table.temp = table.col1.map(lambda x: 1 if x in somelist else 0)` and then do `table = table[table.temp == 1]` then drop your `temp` column.
2017-08-02T16:53:34.021649
Winnifred
pythondev_help_Winnifred_2017-08-02T16:53:34.021649
1,501,692,814.021649
88,540
pythondev
help
ok, let me this try it out.
2017-08-02T16:54:34.054448
Tameika
pythondev_help_Tameika_2017-08-02T16:54:34.054448
1,501,692,874.054448
88,541
pythondev
help
`x` will be the extracted `_xyz_` portion
2017-08-02T16:56:14.110978
Winnifred
pythondev_help_Winnifred_2017-08-02T16:56:14.110978
1,501,692,974.110978
88,542
pythondev
help
True
2017-08-02T17:00:42.263284
Tameika
pythondev_help_Tameika_2017-08-02T17:00:42.263284
1,501,693,242.263284
88,543
pythondev
help
dropping temp column :`del table['temp']` does not work?
2017-08-02T17:04:19.381330
Tameika
pythondev_help_Tameika_2017-08-02T17:04:19.381330
1,501,693,459.38133
88,544
pythondev
help
first, did you get the rows you wanted?
2017-08-02T17:07:26.478971
Winnifred
pythondev_help_Winnifred_2017-08-02T17:07:26.478971
1,501,693,646.478971
88,545
pythondev
help
yes, I did the get the rows I wanted -- thanks!
2017-08-02T17:14:23.685466
Tameika
pythondev_help_Tameika_2017-08-02T17:14:23.685466
1,501,694,063.685466
88,546
pythondev
help
finally :smile:
2017-08-02T17:14:29.688223
Tameika
pythondev_help_Tameika_2017-08-02T17:14:29.688223
1,501,694,069.688223
88,547
pythondev
help
:boom:
2017-08-02T17:14:35.691295
Winnifred
pythondev_help_Winnifred_2017-08-02T17:14:35.691295
1,501,694,075.691295
88,548
pythondev
help
so, dropping the col?
2017-08-02T17:15:48.727453
Tameika
pythondev_help_Tameika_2017-08-02T17:15:48.727453
1,501,694,148.727453
88,549
pythondev
help
oh, check out the `.drop` method!
2017-08-02T17:16:48.756357
Winnifred
pythondev_help_Winnifred_2017-08-02T17:16:48.756357
1,501,694,208.756357
88,550
pythondev
help
cool!
2017-08-02T17:17:02.763243
Tameika
pythondev_help_Tameika_2017-08-02T17:17:02.763243
1,501,694,222.763243
88,551
pythondev
help
hi, I'm not sure if this is the right place to ask this, but I wanted to ask a really simple question about machine learning (reviewing some python code that uses sckit learn's RandomForestClassifier to generate a model using some data)
2017-08-02T19:43:43.856365
Albert
pythondev_help_Albert_2017-08-02T19:43:43.856365
1,501,703,023.856365
88,552
pythondev
help
welcome <@Albert>! best to give it a shout in <#C2J4B66PK|machine_learning> and make sure you use the + icon on the left side there to share a code snippet if it relates to code :slightly_smiling_face:
2017-08-02T19:45:09.879694
Marcie
pythondev_help_Marcie_2017-08-02T19:45:09.879694
1,501,703,109.879694
88,553
pythondev
help
ahh, there's a channel for that. Thanks!
2017-08-02T19:45:27.884599
Albert
pythondev_help_Albert_2017-08-02T19:45:27.884599
1,501,703,127.884599
88,554
pythondev
help
hey everyone, what is the best suggestion to ramp up on Python in 4 weeks? I am considering any paid content or tutorials which can help me achieve this goal. I have been programming in C++ for the last 4 years.
2017-08-02T23:34:27.760753
Tameika
pythondev_help_Tameika_2017-08-02T23:34:27.760753
1,501,716,867.760753
88,555
pythondev
help
<@Tameika> Someone was asking the same question this afternoon so I'm just gonna share his wisdom :wink:
2017-08-02T23:42:48.842771
Kiersten
pythondev_help_Kiersten_2017-08-02T23:42:48.842771
1,501,717,368.842771
88,556
pythondev
help
Also checkout: <http://pythonbooks.org/>
2017-08-02T23:49:55.914453
Kiersten
pythondev_help_Kiersten_2017-08-02T23:49:55.914453
1,501,717,795.914453
88,557
pythondev
help
<@Beula> :taco: for helping without even knowing you were helping
2017-08-03T00:32:06.346746
Kiersten
pythondev_help_Kiersten_2017-08-03T00:32:06.346746
1,501,720,326.346746
88,558
pythondev
help
has anyone ever used rollbar for python, it's for tracking errors but for something like django which it claims to support there's the error logs which do the same, is there any advantage of adding it?
2017-08-03T03:25:38.499799
Beverley
pythondev_help_Beverley_2017-08-03T03:25:38.499799
1,501,730,738.499799
88,559
pythondev
help
I want to switch the default python from 3 to 2.7
2017-08-03T04:19:57.596887
Beverley
pythondev_help_Beverley_2017-08-03T04:19:57.596887
1,501,733,997.596887
88,560
pythondev
help
```samuel@samuel-pc:~$ python Python 3.5.2 |Anaconda 4.2.0 (64-bit)| (default, Jul 2 2016, 17:53:06) [GCC 4.4.7 20120313 (Red Hat 4.4.7-1)] on linux Type "help", "copyright", "credits" or "license" for more information. &gt;&gt;&gt; ```
2017-08-03T04:20:09.601269
Beverley
pythondev_help_Beverley_2017-08-03T04:20:09.601269
1,501,734,009.601269
88,561
pythondev
help
Why?
2017-08-03T04:23:28.674377
Junita
pythondev_help_Junita_2017-08-03T04:23:28.674377
1,501,734,208.674377
88,562
pythondev
help
also re: Rollbar, I’ve used similar sorts of tools. They make your life a lot easier by collecting a bunch of information and collating it in one place, making it searchable.
2017-08-03T04:24:03.687316
Junita
pythondev_help_Junita_2017-08-03T04:24:03.687316
1,501,734,243.687316
88,563
pythondev
help
I usually use Sentry, but I think Rollbar is basically the same.
2017-08-03T04:24:16.692079
Junita
pythondev_help_Junita_2017-08-03T04:24:16.692079
1,501,734,256.692079
88,564
pythondev
help
Need to I'm used to using 2.7 and most django sites I'm working on wont work with 4
2017-08-03T04:24:18.693001
Beverley
pythondev_help_Beverley_2017-08-03T04:24:18.693001
1,501,734,258.693001
88,565
pythondev
help
3
2017-08-03T04:24:20.693645
Beverley
pythondev_help_Beverley_2017-08-03T04:24:20.693645
1,501,734,260.693645
88,566
pythondev
help
You can see all sorts of nice stats like when the first time an error was seen, how often, etc.
2017-08-03T04:24:41.701720
Junita
pythondev_help_Junita_2017-08-03T04:24:41.701720
1,501,734,281.70172
88,567
pythondev
help
stats about the OS of the user, etc.
2017-08-03T04:24:54.706591
Junita
pythondev_help_Junita_2017-08-03T04:24:54.706591
1,501,734,294.706591
88,568
pythondev
help
`virtualenv -p /path/to/python2.7 name_of_venv` to make a quick virtualenv for Py2.7, and then `source /path/to/venv/bin/activate` to activate it and then `python` will start a Py2.7 REPL.
2017-08-03T04:26:04.733371
Carri
pythondev_help_Carri_2017-08-03T04:26:04.733371
1,501,734,364.733371
88,569
pythondev
help
re: python 2.7, there’s probably a package for it. but I’d invest some time in upgrading.
2017-08-03T04:26:12.736360
Junita
pythondev_help_Junita_2017-08-03T04:26:12.736360
1,501,734,372.73636
88,570
pythondev
help
Although, you should still have `python2` on your system
2017-08-03T04:26:14.736949
Carri
pythondev_help_Carri_2017-08-03T04:26:14.736949
1,501,734,374.736949
88,571
pythondev
help
I do I think I'm going through ubuntu guide for this
2017-08-03T04:26:38.745968
Beverley
pythondev_help_Beverley_2017-08-03T04:26:38.745968
1,501,734,398.745968
88,572
pythondev
help
if you are on ubuntu `python` should point to `python2`
2017-08-03T04:31:29.858529
Ciera
pythondev_help_Ciera_2017-08-03T04:31:29.858529
1,501,734,689.858529
88,573
pythondev
help
or maybe it doesn't do it on a fresh install ?
2017-08-03T04:31:49.866307
Ciera
pythondev_help_Ciera_2017-08-03T04:31:49.866307
1,501,734,709.866307
88,574
pythondev
help
he’s on RedHat, but I think just found a tutorial based on Ubuntu
2017-08-03T04:35:41.953978
Junita
pythondev_help_Junita_2017-08-03T04:35:41.953978
1,501,734,941.953978
88,575
pythondev
help
<@Beverley> switching your default python from 2 to 3 is a _bad_ idea
2017-08-03T07:48:53.043531
Meg
pythondev_help_Meg_2017-08-03T07:48:53.043531
1,501,746,533.043531
88,576
pythondev
help
since you're on redhat, there are a large number of packages that rely on python 2
2017-08-03T07:49:16.051172
Meg
pythondev_help_Meg_2017-08-03T07:49:16.051172
1,501,746,556.051172
88,577
pythondev
help
so, just use `python3` instead, or use a virtualenv
2017-08-03T07:49:29.055301
Meg
pythondev_help_Meg_2017-08-03T07:49:29.055301
1,501,746,569.055301
88,578
pythondev
help
`I want to switch the default python from 3 to 2.7`
2017-08-03T07:49:41.059230
Ciera
pythondev_help_Ciera_2017-08-03T07:49:41.059230
1,501,746,581.05923
88,579
pythondev
help
the default is python3
2017-08-03T07:49:49.062030
Ciera
pythondev_help_Ciera_2017-08-03T07:49:49.062030
1,501,746,589.06203
88,580
pythondev
help
:disappointed: reading comp fail
2017-08-03T07:50:01.065567
Meg
pythondev_help_Meg_2017-08-03T07:50:01.065567
1,501,746,601.065567
88,581
pythondev
help
still, bad idea all around
2017-08-03T07:50:05.067069
Meg
pythondev_help_Meg_2017-08-03T07:50:05.067069
1,501,746,605.067069
88,582
pythondev
help
(doesn't change anything you said but just poiinting it out)
2017-08-03T07:50:07.067794
Ciera
pythondev_help_Ciera_2017-08-03T07:50:07.067794
1,501,746,607.067794
88,583
pythondev
help
:smile:
2017-08-03T07:50:16.070410
Meg
pythondev_help_Meg_2017-08-03T07:50:16.070410
1,501,746,616.07041
88,584
pythondev
help
apparently I need more :coffee:
2017-08-03T07:50:27.074135
Meg
pythondev_help_Meg_2017-08-03T07:50:27.074135
1,501,746,627.074135
88,585
pythondev
help
and maybe more :sleeping_accommodation: :timer_clock:
2017-08-03T07:50:40.078165
Meg
pythondev_help_Meg_2017-08-03T07:50:40.078165
1,501,746,640.078165
88,586
pythondev
help
but having python3 as default on red hat 4.4 seems weird
2017-08-03T07:51:53.101953
Ciera
pythondev_help_Ciera_2017-08-03T07:51:53.101953
1,501,746,713.101953
88,587
pythondev
help
no... kidding
2017-08-03T07:54:14.147002
Meg
pythondev_help_Meg_2017-08-03T07:54:14.147002
1,501,746,854.147002
88,588
pythondev
help
I think he's mistaken
2017-08-03T07:54:20.148925
Meg
pythondev_help_Meg_2017-08-03T07:54:20.148925
1,501,746,860.148925
88,589
pythondev
help
because 4.4 was released Aug 2006
2017-08-03T07:54:36.153834
Meg
pythondev_help_Meg_2017-08-03T07:54:36.153834
1,501,746,876.153834
88,590
pythondev
help
oh
2017-08-03T07:55:03.162326
Meg
pythondev_help_Meg_2017-08-03T07:55:03.162326
1,501,746,903.162326
88,591
pythondev
help
that's why
2017-08-03T07:55:05.162919
Meg
pythondev_help_Meg_2017-08-03T07:55:05.162919
1,501,746,905.162919
88,592
pythondev
help
anaconda
2017-08-03T07:55:07.163430
Meg
pythondev_help_Meg_2017-08-03T07:55:07.163430
1,501,746,907.16343
88,593
pythondev
help
<https://pythondev.slack.com/archives/C07EFMZ1N/p1501748409601269>
2017-08-03T07:55:15.166182
Meg
pythondev_help_Meg_2017-08-03T07:55:15.166182
1,501,746,915.166182
88,594
pythondev
help
hmm that might explain it. But does it change the default python ?
2017-08-03T07:56:52.198209
Ciera
pythondev_help_Ciera_2017-08-03T07:56:52.198209
1,501,747,012.198209
88,595
pythondev
help
apparently
2017-08-03T07:58:08.223356
Meg
pythondev_help_Meg_2017-08-03T07:58:08.223356
1,501,747,088.223356
88,596
pythondev
help
<https://askubuntu.com/questions/748069/how-do-i-switch-back-to-python2-after-anaconda-set-python3-as-the-default>
2017-08-03T07:58:09.223517
Meg
pythondev_help_Meg_2017-08-03T07:58:09.223517
1,501,747,089.223517
88,597
pythondev
help
even though he's using anaconda v4, it apparently hasn't changed
2017-08-03T07:58:39.233755
Meg
pythondev_help_Meg_2017-08-03T07:58:39.233755
1,501,747,119.233755
88,598
pythondev
help
I’d just bite the bullet and upgrade projects to python3. it really isn’t that hard.
2017-08-03T08:04:19.353189
Junita
pythondev_help_Junita_2017-08-03T08:04:19.353189
1,501,747,459.353189
88,599
pythondev
help
I put it off for years and it ended up being really easy
2017-08-03T08:04:44.362416
Junita
pythondev_help_Junita_2017-08-03T08:04:44.362416
1,501,747,484.362416
88,600
pythondev
help
then again that’s because I had a good test suite I suppose. if that’s not the case perhaps that’s the first priority. :stuck_out_tongue:
2017-08-03T08:05:07.370584
Junita
pythondev_help_Junita_2017-08-03T08:05:07.370584
1,501,747,507.370584
88,601
pythondev
help
Hi all
2017-08-03T09:17:31.214740
Antoinette
pythondev_help_Antoinette_2017-08-03T09:17:31.214740
1,501,751,851.21474
88,602