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
I think that's working better :slightly_smiling_face:
2017-12-12T10:51:39.000082
Glinda
pythondev_help_Glinda_2017-12-12T10:51:39.000082
1,513,075,899.000082
103,503
pythondev
help
for `all_events` it could be interesting to just set the message in DEBUG mode and log the debug elsewhere
2017-12-12T10:52:52.000640
Ciera
pythondev_help_Ciera_2017-12-12T10:52:52.000640
1,513,075,972.00064
103,504
pythondev
help
haha I see you also had some trouble with the stupid `Bot ID`. I can't understand why they haven't changed that yet
2017-12-12T10:53:52.000691
Ciera
pythondev_help_Ciera_2017-12-12T10:53:52.000691
1,513,076,032.000691
103,505
pythondev
help
I'm not even sure if I need it.
2017-12-12T10:54:11.000278
Glinda
pythondev_help_Glinda_2017-12-12T10:54:11.000278
1,513,076,051.000278
103,506
pythondev
help
But was working with someone and he included that utility to get the bot id
2017-12-12T10:54:28.000941
Glinda
pythondev_help_Glinda_2017-12-12T10:54:28.000941
1,513,076,068.000941
103,507
pythondev
help
This first iteration we are just using the RTM, the next step is to turn it into an app so we can incorporate buttons. Do you know if that's something your wrapper can do?
2017-12-12T10:55:05.000156
Glinda
pythondev_help_Glinda_2017-12-12T10:55:05.000156
1,513,076,105.000156
103,508
pythondev
help
the wrapper doesn't handle button by itself but yeah it can handle messages with buttons.
2017-12-12T10:55:48.000096
Ciera
pythondev_help_Ciera_2017-12-12T10:55:48.000096
1,513,076,148.000096
103,509
pythondev
help
try the `/gif` command to see some buttons :wink:
2017-12-12T10:56:08.000280
Ciera
pythondev_help_Ciera_2017-12-12T10:56:08.000280
1,513,076,168.00028
103,510
pythondev
help
it's a bit of work to get buttons and commands working correctly as you will need a webserver, Most likely Django, Flask or an async one
2017-12-12T10:57:06.000045
Ciera
pythondev_help_Ciera_2017-12-12T10:57:06.000045
1,513,076,226.000045
103,511
pythondev
help
you should use `logger.exception(e)` here
2017-12-12T10:57:49.000348
Ciera
pythondev_help_Ciera_2017-12-12T10:57:49.000348
1,513,076,269.000348
103,512
pythondev
help
<https://github.com/OperationCode/operation_code_pybot/blob/master/src/app.py#L117>
2017-12-12T10:57:52.000107
Ciera
pythondev_help_Ciera_2017-12-12T10:57:52.000107
1,513,076,272.000107
103,513
pythondev
help
so no need to do the traceback thingy
2017-12-12T10:58:00.000885
Ciera
pythondev_help_Ciera_2017-12-12T10:58:00.000885
1,513,076,280.000885
103,514
pythondev
help
Yeah, probably go with flask at first.
2017-12-12T10:58:58.000218
Glinda
pythondev_help_Glinda_2017-12-12T10:58:58.000218
1,513,076,338.000218
103,515
pythondev
help
I saw you were working on a curio implementation
2017-12-12T10:59:40.000546
Glinda
pythondev_help_Glinda_2017-12-12T10:59:40.000546
1,513,076,380.000546
103,516
pythondev
help
I really wanted to learn async using curio first.
2017-12-12T10:59:52.000626
Glinda
pythondev_help_Glinda_2017-12-12T10:59:52.000626
1,513,076,392.000626
103,517
pythondev
help
Been hearing lots of crap about asyncio
2017-12-12T11:01:48.000172
Glinda
pythondev_help_Glinda_2017-12-12T11:01:48.000172
1,513,076,508.000172
103,518
pythondev
help
I have never really used it, I usually stick to the standard python async
2017-12-12T11:01:57.000134
Ciera
pythondev_help_Ciera_2017-12-12T11:01:57.000134
1,513,076,517.000134
103,519
pythondev
help
well it works for me ¯\_(ツ)_/¯
2017-12-12T11:02:17.000162
Ciera
pythondev_help_Ciera_2017-12-12T11:02:17.000162
1,513,076,537.000162
103,520
pythondev
help
I don't disagree
2017-12-12T11:02:39.000766
Glinda
pythondev_help_Glinda_2017-12-12T11:02:39.000766
1,513,076,559.000766
103,521
pythondev
help
but I can understand that there is other implementations that are easier to get into
2017-12-12T11:04:07.000477
Ciera
pythondev_help_Ciera_2017-12-12T11:04:07.000477
1,513,076,647.000477
103,522
pythondev
help
``` while True: try: parse_slack_output(slack_client.rtm_read()) time.sleep(delay) # TODO determine which exceptions can be ignored and which can be handled. except Exception as e: logger.error(f'Some exception occured: {e}') ...
2017-12-12T11:05:53.000097
Glinda
pythondev_help_Glinda_2017-12-12T11:05:53.000097
1,513,076,753.000097
103,523
pythondev
help
seems :thumbsup:
2017-12-12T11:08:27.000345
Ciera
pythondev_help_Ciera_2017-12-12T11:08:27.000345
1,513,076,907.000345
103,524
pythondev
help
Thanks
2017-12-12T11:17:08.000472
Glinda
pythondev_help_Glinda_2017-12-12T11:17:08.000472
1,513,077,428.000472
103,525
pythondev
help
Anyone used `grequests` for async requests?
2017-12-12T11:30:30.000128
Myong
pythondev_help_Myong_2017-12-12T11:30:30.000128
1,513,078,230.000128
103,526
pythondev
help
I did :slightly_smiling_face:
2017-12-12T11:32:54.000456
Suellen
pythondev_help_Suellen_2017-12-12T11:32:54.000456
1,513,078,374.000456
103,527
pythondev
help
It's pretty fast, although I had difficulties when a number of URLs reached ~10k
2017-12-12T11:33:34.000484
Suellen
pythondev_help_Suellen_2017-12-12T11:33:34.000484
1,513,078,414.000484
103,528
pythondev
help
<@Myong> so... what did you have in mind
2017-12-12T11:38:27.000220
Suellen
pythondev_help_Suellen_2017-12-12T11:38:27.000220
1,513,078,707.00022
103,529
pythondev
help
So I've got a webpage where I download some data from the items on the page by sending a request to download a csv, I then have to do an individual request to scrape data from each individual row/item in the csv
2017-12-12T11:39:47.000542
Myong
pythondev_help_Myong_2017-12-12T11:39:47.000542
1,513,078,787.000542
103,530
pythondev
help
So basically just download the csv, grab all the item id's, format them into the url, go to each url and grab the data and store it in a dictionary then put it all into a csv at the end
2017-12-12T11:40:20.000260
Myong
pythondev_help_Myong_2017-12-12T11:40:20.000260
1,513,078,820.00026
103,531
pythondev
help
But first gotta find the request necessary to download the info I need from the csv
2017-12-12T11:40:36.000405
Myong
pythondev_help_Myong_2017-12-12T11:40:36.000405
1,513,078,836.000405
103,532
pythondev
help
grequests is suitable for this I think, when you have a hundred URLs
2017-12-12T11:41:36.000745
Suellen
pythondev_help_Suellen_2017-12-12T11:41:36.000745
1,513,078,896.000745
103,533
pythondev
help
Yeah it'll be around that
2017-12-12T11:42:26.000585
Myong
pythondev_help_Myong_2017-12-12T11:42:26.000585
1,513,078,946.000585
103,534
pythondev
help
Just trying to figure out the url to grab this csv....
2017-12-12T11:42:43.000190
Myong
pythondev_help_Myong_2017-12-12T11:42:43.000190
1,513,078,963.00019
103,535
pythondev
help
If I'm not seeing a GET/POST go through on downloading this file, what exactly can I do to get the file to actually download? Basically just cant find the URL
2017-12-12T11:51:59.000201
Myong
pythondev_help_Myong_2017-12-12T11:51:59.000201
1,513,079,519.000201
103,536
pythondev
help
Is it public? Can you give an URL?
2017-12-12T11:52:32.000021
Suellen
pythondev_help_Suellen_2017-12-12T11:52:32.000021
1,513,079,552.000021
103,537
pythondev
help
Hi everyone, I'm having somewhat of a weird issue : when doing a docker-compose up I get the following error message : WARNING: no logs are available with the 'syslog' log driver I've tried restarting the docker service, the syslog service and making sure they were both working (I can tail and see logs in the syslog fi...
2017-12-12T13:57:17.000052
Renetta
pythondev_help_Renetta_2017-12-12T13:57:17.000052
1,513,087,037.000052
103,538
pythondev
help
Short Question: Is it possible to use a MS Office file as a source to render a webpage with one of the web frameworks? If so, what would you use? (I am looking for a simple yes/no on the possible question. And if possible, just direct me to the package/module and I'll read the docs from there...) Long Version: Our IT ...
2017-12-12T14:20:26.000344
Virgen
pythondev_help_Virgen_2017-12-12T14:20:26.000344
1,513,088,426.000344
103,539
pythondev
help
Fellas, completed the MIT 6001 course and started 6002 and realized the data scientific approach for python isnt interesting to me, any other general python courses you can recommend?
2017-12-12T15:24:19.000461
Del
pythondev_help_Del_2017-12-12T15:24:19.000461
1,513,092,259.000461
103,540
pythondev
help
i already ran thru ATBS
2017-12-12T15:24:29.000156
Del
pythondev_help_Del_2017-12-12T15:24:29.000156
1,513,092,269.000156
103,541
pythondev
help
<@Del> Realpython has a series of courses on Python with a web focus: <https://realpython.com/courses/> Coursera has tons of Python programming courses as well, for example: <https://www.coursera.org/specializations/python> There is also <https://automatetheboringstuff.com/>
2017-12-12T15:44:29.000472
Kiersten
pythondev_help_Kiersten_2017-12-12T15:44:29.000472
1,513,093,469.000472
103,542
pythondev
help
i'm a fan of <https://teamtreehouse.com>'s Python stuff :smile:
2017-12-12T15:45:04.000193
Frieda
pythondev_help_Frieda_2017-12-12T15:45:04.000193
1,513,093,504.000193
103,543
pythondev
help
So I'm working on some code pulling in data from Xero accounting and it's brutally slow. Not sure what's going on other than it's taking a few minutes to establish one connection. Setup some logs for the requests library and it looks like it sits on `DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): <htt...
2017-12-12T15:46:59.000278
Kiersten
pythondev_help_Kiersten_2017-12-12T15:46:59.000278
1,513,093,619.000278
103,544
pythondev
help
but that's because I'm the teacher for them
2017-12-12T15:47:09.000430
Frieda
pythondev_help_Frieda_2017-12-12T15:47:09.000430
1,513,093,629.00043
103,545
pythondev
help
Once it hits the proper url everything is all good, just stuck in that starting new connection for a long time :rage:
2017-12-12T15:48:59.000288
Kiersten
pythondev_help_Kiersten_2017-12-12T15:48:59.000288
1,513,093,739.000288
103,546
pythondev
help
unless it's waiting for xero to respond that long ¯\_(ツ)_/¯
2017-12-12T15:50:38.000355
Kiersten
pythondev_help_Kiersten_2017-12-12T15:50:38.000355
1,513,093,838.000355
103,547
pythondev
help
might be a proxy? <https://stackoverflow.com/questions/28521535/requests-how-to-disable-bypass-proxy>
2017-12-12T15:51:46.000350
Frieda
pythondev_help_Frieda_2017-12-12T15:51:46.000350
1,513,093,906.00035
103,548
pythondev
help
Nope, you know what, it's xero, it's taking a few minutes to get a reply. Uuuugh.
2017-12-12T15:58:03.000278
Kiersten
pythondev_help_Kiersten_2017-12-12T15:58:03.000278
1,513,094,283.000278
103,549
pythondev
help
joy
2017-12-12T15:58:13.000409
Frieda
pythondev_help_Frieda_2017-12-12T15:58:13.000409
1,513,094,293.000409
103,550
pythondev
help
thanks <@Kiersten> - already did Automate TBS, will look into the other. im already doing flask so just wondering if there was something else that got deep down into advanced basics like decorators, etc.
2017-12-12T16:04:05.000252
Del
pythondev_help_Del_2017-12-12T16:04:05.000252
1,513,094,645.000252
103,551
pythondev
help
<@Del> <http://shop.oreilly.com/product/0636920032519.do>
2017-12-12T16:05:14.000561
Kiersten
pythondev_help_Kiersten_2017-12-12T16:05:14.000561
1,513,094,714.000561
103,552
pythondev
help
I really like the Learn Python book for those topics as well.
2017-12-12T16:05:22.000228
Johana
pythondev_help_Johana_2017-12-12T16:05:22.000228
1,513,094,722.000228
103,553
pythondev
help
And <http://www.effectivepython.com/> too
2017-12-12T16:06:11.000082
Kiersten
pythondev_help_Kiersten_2017-12-12T16:06:11.000082
1,513,094,771.000082
103,554
pythondev
help
Yeah Learn Python is a gem, good idea <@Johana> :taco:
2017-12-12T16:06:47.000361
Kiersten
pythondev_help_Kiersten_2017-12-12T16:06:47.000361
1,513,094,807.000361
103,555
pythondev
help
<@Frieda> You wouldn't happen to know how to get a log of the actual response time?
2017-12-12T16:08:25.000471
Kiersten
pythondev_help_Kiersten_2017-12-12T16:08:25.000471
1,513,094,905.000471
103,556
pythondev
help
or just google decorators. there are lots of good resources. checkout out the python module of the week.
2017-12-12T16:09:21.000591
Johana
pythondev_help_Johana_2017-12-12T16:09:21.000591
1,513,094,961.000591
103,557
pythondev
help
I guess I can just use the time module.
2017-12-12T16:09:23.000295
Kiersten
pythondev_help_Kiersten_2017-12-12T16:09:23.000295
1,513,094,963.000295
103,558
pythondev
help
<https://pymotw.com/2/functools/>
2017-12-12T16:09:42.000408
Johana
pythondev_help_Johana_2017-12-12T16:09:42.000408
1,513,094,982.000408
103,559
pythondev
help
<https://pymotw.com/3/functools/>
2017-12-12T16:09:54.000155
Johana
pythondev_help_Johana_2017-12-12T16:09:54.000155
1,513,094,994.000155
103,560
pythondev
help
yeah i already know the basics of those so i wanted a course or something about topics like that
2017-12-12T16:12:10.000462
Del
pythondev_help_Del_2017-12-12T16:12:10.000462
1,513,095,130.000462
103,561
pythondev
help
metaclasses, decorators, advanced regex
2017-12-12T16:12:17.000282
Del
pythondev_help_Del_2017-12-12T16:12:17.000282
1,513,095,137.000282
103,562
pythondev
help
cause i can google them but wanted to see if there was something that packed them
2017-12-12T16:12:28.000301
Del
pythondev_help_Del_2017-12-12T16:12:28.000301
1,513,095,148.000301
103,563
pythondev
help
for now i have enough material to keep studying, thanks!
2017-12-12T16:13:05.000629
Del
pythondev_help_Del_2017-12-12T16:13:05.000629
1,513,095,185.000629
103,564
pythondev
help
<@Kiersten> i'd probably just use the time module, yeah
2017-12-12T16:14:00.000343
Frieda
pythondev_help_Frieda_2017-12-12T16:14:00.000343
1,513,095,240.000343
103,565
pythondev
help
but I'm lazy and I try not to be clever
2017-12-12T16:14:17.000312
Frieda
pythondev_help_Frieda_2017-12-12T16:14:17.000312
1,513,095,257.000312
103,566
pythondev
help
Roundtrip time: 203.51362252235413 :rage:
2017-12-12T16:15:39.000070
Kiersten
pythondev_help_Kiersten_2017-12-12T16:15:39.000070
1,513,095,339.00007
103,567
pythondev
help
seconds?
2017-12-12T16:15:58.000766
Frieda
pythondev_help_Frieda_2017-12-12T16:15:58.000766
1,513,095,358.000766
103,568
pythondev
help
yeah
2017-12-12T16:16:02.000286
Kiersten
pythondev_help_Kiersten_2017-12-12T16:16:02.000286
1,513,095,362.000286
103,569
pythondev
help
time to go async :smile:
2017-12-12T16:16:11.000141
Ciera
pythondev_help_Ciera_2017-12-12T16:16:11.000141
1,513,095,371.000141
103,570
pythondev
help
maybe something with the tls version ?
2017-12-12T16:16:27.000305
Ciera
pythondev_help_Ciera_2017-12-12T16:16:27.000305
1,513,095,387.000305
103,571
pythondev
help
<@Fabiola>, <@Ciera> after changes my function finish in 0.10725951194763184 sec. when I put `n` = 1000 and 35.36659622192383 sec. when I put in loop `n` for range(10, 1001), I think it is very good result :slightly_smiling_face: :+1:
2017-12-12T16:16:28.000288
Hipolito
pythondev_help_Hipolito_2017-12-12T16:16:28.000288
1,513,095,388.000288
103,572
pythondev
help
nice <@Hipolito> :taco: . Care to share your final code ? :slightly_smiling_face:
2017-12-12T16:17:01.000127
Ciera
pythondev_help_Ciera_2017-12-12T16:17:01.000127
1,513,095,421.000127
103,573
pythondev
help
is not change much: ```import itertools def removNb(n): numbers = range(1, n + 1) pairs = itertools.combinations(numbers, 2) total = sum(numbers) new_pairs = list(filter(lambda par: par[0] * par[1] == total - (par[0] + par[1]), pairs)) result = new_pairs + list(map(lambda par: (par[1], par[0]), ne...
2017-12-12T16:17:59.000249
Hipolito
pythondev_help_Hipolito_2017-12-12T16:17:59.000249
1,513,095,479.000249
103,574
pythondev
help
<@Ciera> Yeah I was thinking that too, but xero had performance issues yesterday on their status page, though today it says all is good. I'm just gonna get in touch with support and see if they have some insight on their end before I chase rabbit holes.
2017-12-12T16:18:04.000583
Kiersten
pythondev_help_Kiersten_2017-12-12T16:18:04.000583
1,513,095,484.000583
103,575
pythondev
help
<@Hipolito> Another idea that would be slower overall but faster for the first results would to make `removNb` a generator
2017-12-12T16:23:04.000776
Ciera
pythondev_help_Ciera_2017-12-12T16:23:04.000776
1,513,095,784.000776
103,576
pythondev
help
and yield pairs as you find them
2017-12-12T16:23:22.000160
Ciera
pythondev_help_Ciera_2017-12-12T16:23:22.000160
1,513,095,802.00016
103,577
pythondev
help
possible
2017-12-12T16:24:35.000483
Hipolito
pythondev_help_Hipolito_2017-12-12T16:24:35.000483
1,513,095,875.000483
103,578
pythondev
help
anyways good job :thumbsup:
2017-12-12T16:25:48.000120
Ciera
pythondev_help_Ciera_2017-12-12T16:25:48.000120
1,513,095,948.00012
103,579
pythondev
help
thx
2017-12-12T16:29:09.000622
Hipolito
pythondev_help_Hipolito_2017-12-12T16:29:09.000622
1,513,096,149.000622
103,580
pythondev
help
but funny is, I don't know haw use yield :slightly_smiling_face:
2017-12-12T16:36:22.000065
Hipolito
pythondev_help_Hipolito_2017-12-12T16:36:22.000065
1,513,096,582.000065
103,581
pythondev
help
Can someone point me in a good direction for using ngrok with pycharm, or if the new http client has any way of replacing ngrok?
2017-12-12T17:23:08.000369
Glinda
pythondev_help_Glinda_2017-12-12T17:23:08.000369
1,513,099,388.000369
103,582
pythondev
help
Hi all, i have an issue about python, when run command line `/usr/bin/xattr` it will show error `Traceback (most recent call last): File “/usr/bin/xattr-2.7”, line 7, in &lt;module&gt;...pkg_resources.DistributionNotFound: The ‘xattr==0.6.4’ distribution was not found and is required by the application`. How i can fi...
2017-12-12T23:07:59.000126
Maia
pythondev_help_Maia_2017-12-12T23:07:59.000126
1,513,120,079.000126
103,583
pythondev
help
api_1 =\ MultisigIota
2017-12-13T00:41:52.000164
Gemma
pythondev_help_Gemma_2017-12-13T00:41:52.000164
1,513,125,712.000164
103,584
pythondev
help
api_1 =\ MultisigIota(.........) can someone explain what is *api_=\* in this code
2017-12-13T00:42:50.000132
Gemma
pythondev_help_Gemma_2017-12-13T00:42:50.000132
1,513,125,770.000132
103,585
pythondev
help
the same as `api_1 = MultisigIota()`, but with a line break
2017-12-13T00:44:05.000048
Collette
pythondev_help_Collette_2017-12-13T00:44:05.000048
1,513,125,845.000048
103,586
pythondev
help
api_1=\ is a variable ?
2017-12-13T01:00:28.000145
Gemma
pythondev_help_Gemma_2017-12-13T01:00:28.000145
1,513,126,828.000145
103,587
pythondev
help
No, `api_1` is
2017-12-13T01:24:34.000146
Collette
pythondev_help_Collette_2017-12-13T01:24:34.000146
1,513,128,274.000146
103,588
pythondev
help
<@Collette> thanks :slightly_smiling_face:
2017-12-13T01:41:26.000018
Gemma
pythondev_help_Gemma_2017-12-13T01:41:26.000018
1,513,129,286.000018
103,589
pythondev
help
Anyone have a sugestion on how I might get a serious investor for my idea, here's two links of what it used to do, need to resurrect it <https://www.youtube.com/watch?v=-EiCraPtVIY> &amp; <https://www.youtube.com/watch?v=E8VxffpCQ3w&amp;t=3370s>
2017-12-13T01:52:45.000121
Beverley
pythondev_help_Beverley_2017-12-13T01:52:45.000121
1,513,129,965.000121
103,590
pythondev
help
i am using tkinter text widget to display 3 diffrent text messeges at diffrent time . but i am havint trouble to use txt.delete(1.0, END) to clear txt an input a new content at a specific time..
2017-12-13T03:08:04.000048
Marg
pythondev_help_Marg_2017-12-13T03:08:04.000048
1,513,134,484.000048
103,591
pythondev
help
Is it good choice to develop payment gateway from scratch using Django and Django rest framework?
2017-12-13T03:14:20.000351
Concha
pythondev_help_Concha_2017-12-13T03:14:20.000351
1,513,134,860.000351
103,592
pythondev
help
IMO payment is the same as crypto never do it yourself :smile:
2017-12-13T03:18:13.000255
Ciera
pythondev_help_Ciera_2017-12-13T03:18:13.000255
1,513,135,093.000255
103,593
pythondev
help
it's a function, so you need to call it
2017-12-13T03:56:38.000268
Suellen
pythondev_help_Suellen_2017-12-13T03:56:38.000268
1,513,137,398.000268
103,594
pythondev
help
a.next_number() vs a.next_number
2017-12-13T03:56:47.000189
Suellen
pythondev_help_Suellen_2017-12-13T03:56:47.000189
1,513,137,407.000189
103,595
pythondev
help
&gt; The comparison operators &lt;&gt; and != are alternate spellings of the same operator. != is the preferred spelling; &lt;&gt; is obsolescent.
2017-12-13T03:58:53.000073
Ciera
pythondev_help_Ciera_2017-12-13T03:58:53.000073
1,513,137,533.000073
103,596
pythondev
help
<https://docs.python.org/2.7/reference/lexical_analysis.html#operators>
2017-12-13T03:59:02.000371
Ciera
pythondev_help_Ciera_2017-12-13T03:59:02.000371
1,513,137,542.000371
103,597
pythondev
help
but it doesn't looks like it's in the 3.x doc
2017-12-13T03:59:26.000095
Ciera
pythondev_help_Ciera_2017-12-13T03:59:26.000095
1,513,137,566.000095
103,598
pythondev
help
thank god it's not
2017-12-13T03:59:33.000232
Suellen
pythondev_help_Suellen_2017-12-13T03:59:33.000232
1,513,137,573.000232
103,599
pythondev
help
oups wrong channel :stuck_out_tongue:
2017-12-13T04:00:08.000388
Ciera
pythondev_help_Ciera_2017-12-13T04:00:08.000388
1,513,137,608.000388
103,600
pythondev
help
thanks
2017-12-13T04:13:19.000394
Brendan
pythondev_help_Brendan_2017-12-13T04:13:19.000394
1,513,138,399.000394
103,601
pythondev
help
Any experts in celery ?
2017-12-13T05:15:57.000062
Verlene
pythondev_help_Verlene_2017-12-13T05:15:57.000062
1,513,142,157.000062
103,602