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
on it
2019-03-29T07:13:04.202900
Florencio
pythondev_help_Florencio_2019-03-29T07:13:04.202900
1,553,843,584.2029
15,721
pythondev
help
<@Valeri> class TestSearch(Base): @pytest.mark.parametrize("a, b", [(1, 2), (3, 4)]) def test_add(self, a, b): print(a+b) @pytest.mark.parametrize("query, test", [('selenium',0), ('QTP',1)]) def test_search_1(self, query, test): page = CreatePage.get(SearchPage, self.driver) page.search(query) assert self.driver.title.startswith(query), "title does not match"
2019-03-29T07:26:36.203200
Merlyn
pythondev_help_Merlyn_2019-03-29T07:26:36.203200
1,553,844,396.2032
15,722
pythondev
help
<https://get.slack.help/hc/en-us/articles/202288908-Format-your-messages#inline-code>
2019-03-29T07:27:03.203400
Hiroko
pythondev_help_Hiroko_2019-03-29T07:27:03.203400
1,553,844,423.2034
15,723
pythondev
help
this will help you format your message for more readability
2019-03-29T07:27:13.203800
Hiroko
pythondev_help_Hiroko_2019-03-29T07:27:13.203800
1,553,844,433.2038
15,724
pythondev
help
Test add runs without any error but testsearch doesn't
2019-03-29T07:27:24.203900
Merlyn
pythondev_help_Merlyn_2019-03-29T07:27:24.203900
1,553,844,444.2039
15,725
pythondev
help
It gives error query and tesf not found
2019-03-29T07:27:42.204100
Merlyn
pythondev_help_Merlyn_2019-03-29T07:27:42.204100
1,553,844,462.2041
15,726
pythondev
help
with 1, you’re not doing anything with that, no asserts or anything
2019-03-29T07:28:08.204600
Hiroko
pythondev_help_Hiroko_2019-03-29T07:28:08.204600
1,553,844,488.2046
15,727
pythondev
help
not surprising it runs fine
2019-03-29T07:28:13.204800
Hiroko
pythondev_help_Hiroko_2019-03-29T07:28:13.204800
1,553,844,493.2048
15,728
pythondev
help
<https://www.blazemeter.com/blog/improve-your-selenium-webdriver-tests-with-pytest>
2019-03-29T07:29:05.205000
Hiroko
pythondev_help_Hiroko_2019-03-29T07:29:05.205000
1,553,844,545.205
15,729
pythondev
help
<https://pytest-selenium.readthedocs.io/en/latest/user_guide.html>
2019-03-29T07:29:20.205300
Hiroko
pythondev_help_Hiroko_2019-03-29T07:29:20.205300
1,553,844,560.2053
15,730
pythondev
help
doesn’t look like you have a selenium fixture to be used
2019-03-29T07:29:53.206000
Hiroko
pythondev_help_Hiroko_2019-03-29T07:29:53.206000
1,553,844,593.206
15,731
pythondev
help
I have fixture in base class
2019-03-29T08:00:22.206500
Merlyn
pythondev_help_Merlyn_2019-03-29T08:00:22.206500
1,553,846,422.2065
15,732
pythondev
help
I'm just trying to get it run that's why I'm not using any assert
2019-03-29T08:00:54.207400
Merlyn
pythondev_help_Merlyn_2019-03-29T08:00:54.207400
1,553,846,454.2074
15,733
pythondev
help
But it's printing the parameters properly
2019-03-29T08:01:38.208500
Merlyn
pythondev_help_Merlyn_2019-03-29T08:01:38.208500
1,553,846,498.2085
15,734
pythondev
help
what happens if you remove the `page` and `assert` in `test_search_1`?
2019-03-29T08:04:29.209000
Hiroko
pythondev_help_Hiroko_2019-03-29T08:04:29.209000
1,553,846,669.209
15,735
pythondev
help
and do the same print as in `test_add`?
2019-03-29T08:04:35.209200
Hiroko
pythondev_help_Hiroko_2019-03-29T08:04:35.209200
1,553,846,675.2092
15,736
pythondev
help
Issue got resolved it was due to my base class extending unittest.Testcase
2019-03-29T08:58:26.210800
Merlyn
pythondev_help_Merlyn_2019-03-29T08:58:26.210800
1,553,849,906.2108
15,737
pythondev
help
Ah I wish I saw this. Yeah, pytest has to defer to `unittest.TestCase` if your class inherits from it at all (this includes things like Django's test class). The reason being that `unittest.TestCase` has its own test running logic that would break if pytest tried to mess with it. So to be safe, they just have pytest treat those kinds of classes as they would normally be treated, which means you can't have things like fixtures.
2019-03-29T09:24:53.216400
Ashley
pythondev_help_Ashley_2019-03-29T09:24:53.216400
1,553,851,493.2164
15,738
pythondev
help
also <@Merlyn> we have a #testing_ channel
2019-03-29T09:31:37.216900
Hiroko
pythondev_help_Hiroko_2019-03-29T09:31:37.216900
1,553,851,897.2169
15,739
pythondev
help
<@Ashley> did a dissertation in there about testing practices yesterday
2019-03-29T09:31:52.217600
Hiroko
pythondev_help_Hiroko_2019-03-29T09:31:52.217600
1,553,851,912.2176
15,740
pythondev
help
Lol "dissertation"
2019-03-29T09:32:06.218100
Ashley
pythondev_help_Ashley_2019-03-29T09:32:06.218100
1,553,851,926.2181
15,741
pythondev
help
a very meaty and thought provoking dissertation in which I haven’t parsed entirely yet :smile:
2019-03-29T09:32:15.218400
Hiroko
pythondev_help_Hiroko_2019-03-29T09:32:15.218400
1,553,851,935.2184
15,742
pythondev
help
I'm gonna update the PDF with the feedback you guys gave me yesterday
2019-03-29T09:33:11.219200
Ashley
pythondev_help_Ashley_2019-03-29T09:33:11.219200
1,553,851,991.2192
15,743
pythondev
help
feel free to pin to the channel
2019-03-29T09:33:30.220000
Hiroko
pythondev_help_Hiroko_2019-03-29T09:33:30.220000
1,553,852,010.22
15,744
pythondev
help
Maybe it's better to set up a GitHub page so I can update it more easily and take PRs/feedback
2019-03-29T09:34:49.220800
Ashley
pythondev_help_Ashley_2019-03-29T09:34:49.220800
1,553,852,089.2208
15,745
pythondev
help
Better than a PDF that is
2019-03-29T09:35:16.221100
Ashley
pythondev_help_Ashley_2019-03-29T09:35:16.221100
1,553,852,116.2211
15,746
pythondev
help
But thanks for the endorsement :grin:
2019-03-29T09:39:37.221900
Ashley
pythondev_help_Ashley_2019-03-29T09:39:37.221900
1,553,852,377.2219
15,747
pythondev
help
:smile:
2019-03-29T09:42:23.222100
Hiroko
pythondev_help_Hiroko_2019-03-29T09:42:23.222100
1,553,852,543.2221
15,748
pythondev
help
<@Hiroko> I'm not able to see testing channel
2019-03-29T09:47:30.223000
Merlyn
pythondev_help_Merlyn_2019-03-29T09:47:30.223000
1,553,852,850.223
15,749
pythondev
help
okay i'm trying that imagefield
2019-03-29T09:47:35.223200
Florencio
pythondev_help_Florencio_2019-03-29T09:47:35.223200
1,553,852,855.2232
15,750
pythondev
help
<@Merlyn> #testing_
2019-03-29T09:48:50.224300
Clemmie
pythondev_help_Clemmie_2019-03-29T09:48:50.224300
1,553,852,930.2243
15,751
pythondev
help
it isn’t linkable because of how slack handles the trailing underscore, but just search for that in the channel listing
2019-03-29T09:49:17.225100
Clemmie
pythondev_help_Clemmie_2019-03-29T09:49:17.225100
1,553,852,957.2251
15,752
pythondev
help
None
2019-03-29T09:49:35.225200
Hiroko
pythondev_help_Hiroko_2019-03-29T09:49:35.225200
1,553,852,975.2252
15,753
pythondev
help
i still feel base on the codes I'm seeing that it's going to be different
2019-03-29T09:51:32.226400
Florencio
pythondev_help_Florencio_2019-03-29T09:51:32.226400
1,553,853,092.2264
15,754
pythondev
help
<@Clemmie> <@Hiroko> Thanks joined <#C8WT3VCMU|testing_>
2019-03-29T09:54:32.227300
Merlyn
pythondev_help_Merlyn_2019-03-29T09:54:32.227300
1,553,853,272.2273
15,755
pythondev
help
If you have a question, please just ask it. Please do not ask for topic experts; do not DM or ping random users. We cannot begin to answer a question until we actually get a question. <http://sol.gfxile.net/dontask.html|*Asking Questions*>
2019-03-29T10:15:11.227900
Leana
pythondev_help_Leana_2019-03-29T10:15:11.227900
1,553,854,511.2279
15,756
pythondev
help
I'm not getting any results for the following: bets2[['puckline','pl_expected_value','pl_probability','pl_units']] = bets[['pick', 'expvalue', 'probability', 'units']].loc[1:len(bets):3] can anyone lend a hand? I can screenshot the dataframes
2019-03-29T11:07:03.233200
Freeda
pythondev_help_Freeda_2019-03-29T11:07:03.233200
1,553,857,623.2332
15,757
pythondev
help
Please use the snippet feature, or backticks, when sharing code. You can do so by clicking on the :heavy_plus_sign: on the left of the input box for a snippet. For more information on snippets click <https://get.slack.help/hc/en-us/articles/204145658-Create-a-snippet|here>. For more information on inline code formatting with backticks click <https://get.slack.help/hc/en-us/articles/202288908-Format-your-messages#inline-code|here>.
2019-03-29T11:08:16.233300
Leana
pythondev_help_Leana_2019-03-29T11:08:16.233300
1,553,857,696.2333
15,758
pythondev
help
does anyone know of a slack group for wordpress? I am running into a php memory leak of some sort that is constantly going over a set limit that I have for Monit. Any ideas on how to find this needle in the haystack?
2019-03-29T11:11:42.234200
Matthew
pythondev_help_Matthew_2019-03-29T11:11:42.234200
1,553,857,902.2342
15,759
pythondev
help
I’m using `from enum import Enum` anyone have a simple way to write an exhaustive `switch` on my `Enum`?
2019-03-29T11:34:26.234600
Cammie
pythondev_help_Cammie_2019-03-29T11:34:26.234600
1,553,859,266.2346
15,760
pythondev
help
Screw it, just using gold ol’ `if` `elif`
2019-03-29T11:37:02.235900
Cammie
pythondev_help_Cammie_2019-03-29T11:37:02.235900
1,553,859,422.2359
15,761
pythondev
help
This page also has some solutions for faking a switch -<https://data-flair.training/blogs/python-switch-case/>
2019-03-29T11:37:22.236400
Clemmie
pythondev_help_Clemmie_2019-03-29T11:37:22.236400
1,553,859,442.2364
15,762
pythondev
help
Its crazy we have to fake this
2019-03-29T11:37:33.236700
Cammie
pythondev_help_Cammie_2019-03-29T11:37:33.236700
1,553,859,453.2367
15,763
pythondev
help
is there a reason python doesn't have switch/case?
2019-03-29T11:47:38.237000
Claudine
pythondev_help_Claudine_2019-03-29T11:47:38.237000
1,553,860,058.237
15,764
pythondev
help
in the docs in fact <https://docs.python.org/3/faq/design.html#why-isn-t-there-a-switch-or-case-statement-in-python>
2019-03-29T11:48:24.237200
Clemmie
pythondev_help_Clemmie_2019-03-29T11:48:24.237200
1,553,860,104.2372
15,765
pythondev
help
I haven’t read deeply, but to me dynamic typing and the idea of a switch statement are somewhat in tension
2019-03-29T11:49:43.238100
Clemmie
pythondev_help_Clemmie_2019-03-29T11:49:43.238100
1,553,860,183.2381
15,766
pythondev
help
Is there any reason why it needs it?
2019-03-29T11:50:14.238400
Jonas
pythondev_help_Jonas_2019-03-29T11:50:14.238400
1,553,860,214.2384
15,767
pythondev
help
needs? nah, it's just a common construct
2019-03-29T11:50:38.238800
Claudine
pythondev_help_Claudine_2019-03-29T11:50:38.238800
1,553,860,238.2388
15,768
pythondev
help
<@Clemmie> is has nothing to do with dynamic typing. Its moreso the confusion around the `break` statement inside switch statements. Switch statements have a "feature" where they passthrough to the next statement unless you use break. There are very few scenarios where this is actually needed, and it mostly is confusing to begginers and a lot of people don't understand that feature. So python, which is supposed to be easier to parse for begginers, just doesn't support it. Forces you to write your code in a way thats easier to understand
2019-03-29T11:57:06.241800
Genesis
pythondev_help_Genesis_2019-03-29T11:57:06.241800
1,553,860,626.2418
15,769
pythondev
help
Do you have a citation for that? I’m not saying you are wrong, but the reasonings I can find - In the docs: do it with `if elif else` “There should be one-- and preferably only one --obvious way to do it.” and in the pep noted in the docs - 275 there is a throwaway line that speaks to the issue with dynamic typing `Note that the constants need not be all of the same type, but they should be comparable to the type of the switch variable.`
2019-03-29T12:00:09.243700
Clemmie
pythondev_help_Clemmie_2019-03-29T12:00:09.243700
1,553,860,809.2437
15,770
pythondev
help
I also don’t know about “easier to parse for beginners” there are plenty of operators and reserved words in the standard lib that are barely comprehensible by experts. I mean `:=` was accepted for 3.8
2019-03-29T12:01:50.246200
Clemmie
pythondev_help_Clemmie_2019-03-29T12:01:50.246200
1,553,860,910.2462
15,771
pythondev
help
GDScript, which is a Python-esque language for Godot Engine, chose to use “match”: `<https://docs.godotengine.org/en/latest/getting_started/scripting/gdscript/gdscript_basics.html#match>` Following from the thought that `break` is often forgotten, `match` assumes each case breaks unless an explicit `continue` is encountered.
2019-03-29T12:02:45.248100
Mora
pythondev_help_Mora_2019-03-29T12:02:45.248100
1,553,860,965.2481
15,772
pythondev
help
It is a good beginner language because you don’t _need_ to use these features, but I don’t think there is any motivating factor to keep python easy for beginners. More don’t add functionality if it can be easily handled in an already existing way
2019-03-29T12:03:02.248400
Clemmie
pythondev_help_Clemmie_2019-03-29T12:03:02.248400
1,553,860,982.2484
15,773
pythondev
help
how can remove characters from a dataframe column but retain the '-' negative numbers?
2019-03-29T12:09:10.248900
Freeda
pythondev_help_Freeda_2019-03-29T12:09:10.248900
1,553,861,350.2489
15,774
pythondev
help
characters as in letters
2019-03-29T12:09:34.249200
Freeda
pythondev_help_Freeda_2019-03-29T12:09:34.249200
1,553,861,374.2492
15,775
pythondev
help
I used: .str.extract('(\d+)', expand=False)
2019-03-29T12:09:50.249400
Freeda
pythondev_help_Freeda_2019-03-29T12:09:50.249400
1,553,861,390.2494
15,776
pythondev
help
then set it to integer but that removed the negative numbers '-' notation
2019-03-29T12:10:14.249900
Freeda
pythondev_help_Freeda_2019-03-29T12:10:14.249900
1,553,861,414.2499
15,777
pythondev
help
<@Freeda> `'(-?\d+)'`?
2019-03-29T12:16:21.250900
Clemmie
pythondev_help_Clemmie_2019-03-29T12:16:21.250900
1,553,861,781.2509
15,778
pythondev
help
Lets gooo
2019-03-29T12:25:30.251100
Freeda
pythondev_help_Freeda_2019-03-29T12:25:30.251100
1,553,862,330.2511
15,779
pythondev
help
I'll continue my debugging tomoroow
2019-03-29T12:31:38.251500
Florencio
pythondev_help_Florencio_2019-03-29T12:31:38.251500
1,553,862,698.2515
15,780
pythondev
help
Hi all! I'm having some trouble with a bit of `mypy` weirdness. Which is becoming less of a surprise as time goes on. But I wanted to see if anybody could help me out. Specifically, I'm seeing errors like: ```error: Incompatible return value type (got "PostgresQueue", expected "Optional[Queue]")``` However, `PostgresQueue` is a subclass of `Queue`.
2019-03-29T12:40:58.252600
Kasandra
pythondev_help_Kasandra_2019-03-29T12:40:58.252600
1,553,863,258.2526
15,781
pythondev
help
I'm struggling to see why it's giving this error, and how I can fix it. I've even tried some explicit inline type annotations with no success.
2019-03-29T12:42:42.253300
Kasandra
pythondev_help_Kasandra_2019-03-29T12:42:42.253300
1,553,863,362.2533
15,782
pythondev
help
<@Kasandra> please, show your code
2019-03-29T12:44:09.253600
Chester
pythondev_help_Chester_2019-03-29T12:44:09.253600
1,553,863,449.2536
15,783
pythondev
help
It's a bit convoluted, but let me see if I can produce a condensed POC
2019-03-29T12:44:54.254000
Kasandra
pythondev_help_Kasandra_2019-03-29T12:44:54.254000
1,553,863,494.254
15,784
pythondev
help
Is there a way to restrict `glob` so that a user provided string like '..' will not walk the path up? I'm trying to let the user search for files in a specific folder and it should not be possible to break out of that folder...
2019-03-29T12:48:55.257000
Tyson
pythondev_help_Tyson_2019-03-29T12:48:55.257000
1,553,863,735.257
15,785
pythondev
help
~`pathlib.Path.glob()` won't walk up IIRC~ nope yes it will
2019-03-29T12:49:24.257300
Jonas
pythondev_help_Jonas_2019-03-29T12:49:24.257300
1,553,863,764.2573
15,786
pythondev
help
This code itself is not producing an error, but is an identical flow to what I have in my code: ``` from typing import Optional # These 3 classes are in a separate library class Queue: pass class DatabaseQueue(Queue): pass class PostgresQueue(DatabaseQueue): pass # These 2 functions are in my application def queue() -&gt; Optional[Queue]: return _postgres_queue() def _postgres_queue() -&gt; PostgresQueue: return PostgresQueue() ```
2019-03-29T12:54:30.257900
Kasandra
pythondev_help_Kasandra_2019-03-29T12:54:30.257900
1,553,864,070.2579
15,787
pythondev
help
`chroot`?
2019-03-29T12:54:43.258200
Chester
pythondev_help_Chester_2019-03-29T12:54:43.258200
1,553,864,083.2582
15,788
pythondev
help
sounds like a requirement you don't want
2019-03-29T13:04:18.260900
Jonas
pythondev_help_Jonas_2019-03-29T13:04:18.260900
1,553,864,658.2609
15,789
pythondev
help
how about just list the files you want to search
2019-03-29T13:04:37.261900
Jonas
pythondev_help_Jonas_2019-03-29T13:04:37.261900
1,553,864,677.2619
15,790
pythondev
help
and use `glob.glob()` on the filenames
2019-03-29T13:04:43.262400
Jonas
pythondev_help_Jonas_2019-03-29T13:04:43.262400
1,553,864,683.2624
15,791
pythondev
help
`[filename for filename in files_i_can_list if glob.matches(filename)]`...
2019-03-29T13:05:02.263100
Jonas
pythondev_help_Jonas_2019-03-29T13:05:02.263100
1,553,864,702.2631
15,792
pythondev
help
You mean like `os.chroot`? I was hoping for a more easy solution. I was fiddling around with `glob.escape` but I'm not sure that works in all cases...
2019-03-29T13:06:03.264500
Tyson
pythondev_help_Tyson_2019-03-29T13:06:03.264500
1,553,864,763.2645
15,793
pythondev
help
<@Jonas> so I'd list the folder filenames into a list and then just glob the list content?
2019-03-29T13:06:52.265900
Tyson
pythondev_help_Tyson_2019-03-29T13:06:52.265900
1,553,864,812.2659
15,794
pythondev
help
Sounds like a plan
2019-03-29T13:07:10.266400
Tyson
pythondev_help_Tyson_2019-03-29T13:07:10.266400
1,553,864,830.2664
15,795
pythondev
help
I think that might work. Thanks!
2019-03-29T13:09:38.266800
Tyson
pythondev_help_Tyson_2019-03-29T13:09:38.266800
1,553,864,978.2668
15,796
pythondev
help
I have two kinds of messages: messages that contain user-defined payload and messages that allow to change connection state (like "open", "close", "flow", "qos", etc). What would be the right english word to describe the latter messages? Is "service messages" ok?
2019-03-29T13:29:49.268500
Chester
pythondev_help_Chester_2019-03-29T13:29:49.268500
1,553,866,189.2685
15,797
pythondev
help
`status` or `state`?
2019-03-29T13:30:20.268900
Clemmie
pythondev_help_Clemmie_2019-03-29T13:30:20.268900
1,553,866,220.2689
15,798
pythondev
help
So I’m currently trying to run my flask api with gunicorn and it runs fine and all, but for some reason werkzeug is still serving out exceptions.
2019-03-29T13:41:22.269700
Candra
pythondev_help_Candra_2019-03-29T13:41:22.269700
1,553,866,882.2697
15,799
pythondev
help
This is in docker on stretch with python 3.5.3
2019-03-29T13:41:47.270200
Candra
pythondev_help_Candra_2019-03-29T13:41:47.270200
1,553,866,907.2702
15,800
pythondev
help
<@Clemmie> it's more like linux - there's kernel that has all sorts of runtime priorities and powers, and there's userspace
2019-03-29T13:42:30.270800
Chester
pythondev_help_Chester_2019-03-29T13:42:30.270800
1,553,866,950.2708
15,801
pythondev
help
I obviously can't name messages "kernel" and "userspace", it's silly
2019-03-29T13:42:54.271200
Chester
pythondev_help_Chester_2019-03-29T13:42:54.271200
1,553,866,974.2712
15,802
pythondev
help
The idea is that "critical" and "non-critical" messages should be processed separately (I also don't really like the word "critical")
2019-03-29T13:43:50.272500
Chester
pythondev_help_Chester_2019-03-29T13:43:50.272500
1,553,867,030.2725
15,803
pythondev
help
I don’t follow completely, but some ideas regardless :wink: - fundamental, system, service
2019-03-29T13:45:56.274000
Clemmie
pythondev_help_Clemmie_2019-03-29T13:45:56.274000
1,553,867,156.274
15,804
pythondev
help
<@Clemmie> how about anything between parentheses?
2019-03-29T13:46:58.275600
Freeda
pythondev_help_Freeda_2019-03-29T13:46:58.275600
1,553,867,218.2756
15,805
pythondev
help
I tried this -&gt; \[(.*?)\] to no avail
2019-03-29T13:47:15.276100
Freeda
pythondev_help_Freeda_2019-03-29T13:47:15.276100
1,553,867,235.2761
15,806
pythondev
help
Alright, I guess I figured - i don't actually need a word at all :slightly_smiling_face: All "critical" messages live only in two sets of amqp methods, I can just check them
2019-03-29T13:47:20.276200
Chester
pythondev_help_Chester_2019-03-29T13:47:20.276200
1,553,867,240.2762
15,807
pythondev
help
nevermind: \((.*?)\)
2019-03-29T13:48:13.276400
Freeda
pythondev_help_Freeda_2019-03-29T13:48:13.276400
1,553,867,293.2764
15,808
pythondev
help
ugh
2019-03-29T13:48:14.276600
Freeda
pythondev_help_Freeda_2019-03-29T13:48:14.276600
1,553,867,294.2766
15,809
pythondev
help
why the `?`?
2019-03-29T13:49:21.277100
Clemmie
pythondev_help_Clemmie_2019-03-29T13:49:21.277100
1,553,867,361.2771
15,810
pythondev
help
Idk
2019-03-29T13:53:55.277300
Freeda
pythondev_help_Freeda_2019-03-29T13:53:55.277300
1,553,867,635.2773
15,811
pythondev
help
I'm new to regex... any python
2019-03-29T13:54:00.277500
Freeda
pythondev_help_Freeda_2019-03-29T13:54:00.277500
1,553,867,640.2775
15,812
pythondev
help
isnt that just a wildcard?
2019-03-29T13:54:15.277700
Freeda
pythondev_help_Freeda_2019-03-29T13:54:15.277700
1,553,867,655.2777
15,813
pythondev
help
nope - it means match the previous 0 or 1 times
2019-03-29T13:55:45.278000
Clemmie
pythondev_help_Clemmie_2019-03-29T13:55:45.278000
1,553,867,745.278
15,814
pythondev
help
here is a good place to test regex <https://regex101.com/>
2019-03-29T13:55:54.278400
Clemmie
pythondev_help_Clemmie_2019-03-29T13:55:54.278400
1,553,867,754.2784
15,815
pythondev
help
Ooo
2019-03-29T13:56:03.279100
Freeda
pythondev_help_Freeda_2019-03-29T13:56:03.279100
1,553,867,763.2791
15,816
pythondev
help
do you want to include the parens, or just get what is inside matching parens?
2019-03-29T13:56:07.279300
Clemmie
pythondev_help_Clemmie_2019-03-29T13:56:07.279300
1,553,867,767.2793
15,817
pythondev
help
just what's inside
2019-03-29T13:56:14.279800
Freeda
pythondev_help_Freeda_2019-03-29T13:56:14.279800
1,553,867,774.2798
15,818
pythondev
help
Does anyone know of a good library for NodeJS (or any js interpreter) for python? All I can find are javascript implementations of python, and not the other way around.
2019-03-29T13:56:28.280600
Virgie
pythondev_help_Virgie_2019-03-29T13:56:28.280600
1,553,867,788.2806
15,819
pythondev
help
also, is there a way to get the 3 characters after a "u" or "o" letter
2019-03-29T13:56:50.281100
Freeda
pythondev_help_Freeda_2019-03-29T13:56:50.281100
1,553,867,810.2811
15,820