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
Does anyone know a good NLP guide to start with? Im just beginning my journey with NLP and need a thorough understanding about it. Thanks :)
2019-04-24T23:38:12.030400
Alyssa
pythondev_help_Alyssa_2019-04-24T23:38:12.030400
1,556,149,092.0304
20,421
pythondev
help
Does anyone know if QCylinderGeometry is implemented in PySide2 yet? and if so, how to import it?
2019-04-25T04:21:04.033700
Renay
pythondev_help_Renay_2019-04-25T04:21:04.033700
1,556,166,064.0337
20,422
pythondev
help
nvm just figured it out. you have to import the whole of Qt3DExtras
2019-04-25T04:37:49.034000
Renay
pythondev_help_Renay_2019-04-25T04:37:49.034000
1,556,167,069.034
20,423
pythondev
help
I'm trying to parse a string to datetime. I'm using the reference, but can't figure out the specific notation of this timezone. The string literal looks like this: `"Mon Dec 24 2018 09:26:16 GMT+0100 (CET)"`. I tried parsing it like this: `datetime.strptime(date_literal, '%a %b %d %Y %H:%M:%S %z')`, but I think it fails on the timezone notation. Any ideas?
2019-04-25T05:26:55.035400
Dawn
pythondev_help_Dawn_2019-04-25T05:26:55.035400
1,556,170,015.0354
20,424
pythondev
help
where are you getting this string?
2019-04-25T06:32:34.036800
Hiroko
pythondev_help_Hiroko_2019-04-25T06:32:34.036800
1,556,173,954.0368
20,425
pythondev
help
because `(CET)` is definitely not standard
2019-04-25T06:32:44.037100
Hiroko
pythondev_help_Hiroko_2019-04-25T06:32:44.037100
1,556,173,964.0371
20,426
pythondev
help
aah, central european time
2019-04-25T06:35:26.037600
Hiroko
pythondev_help_Hiroko_2019-04-25T06:35:26.037600
1,556,174,126.0376
20,427
pythondev
help
<@Dawn> install pytz or use arrow
2019-04-25T06:36:53.038600
Hiroko
pythondev_help_Hiroko_2019-04-25T06:36:53.038600
1,556,174,213.0386
20,428
pythondev
help
`%z` is the numeric UTC offset, `%Z` is the time zone name which seems to be what you would need, although you also might need to account for the literal parantheses
2019-04-25T06:37:06.039200
Wilber
pythondev_help_Wilber_2019-04-25T06:37:06.039200
1,556,174,226.0392
20,429
pythondev
help
<https://arrow.readthedocs.io/en/latest/>
2019-04-25T06:37:06.039300
Hiroko
pythondev_help_Hiroko_2019-04-25T06:37:06.039300
1,556,174,226.0393
20,430
pythondev
help
ah I just realized the string has both
2019-04-25T06:37:32.039600
Wilber
pythondev_help_Wilber_2019-04-25T06:37:32.039600
1,556,174,252.0396
20,431
pythondev
help
using a library is never a bad idea if its getting compliated
2019-04-25T06:37:59.040200
Wilber
pythondev_help_Wilber_2019-04-25T06:37:59.040200
1,556,174,279.0402
20,432
pythondev
help
I think it's because the %a and %b get the local notation of a date. So Mon Dec is English, but my locale is Dutch so that's different
2019-04-25T07:03:01.040800
Dawn
pythondev_help_Dawn_2019-04-25T07:03:01.040800
1,556,175,781.0408
20,433
pythondev
help
I wish it would just spit out regular isodates ...
2019-04-25T07:03:18.041400
Dawn
pythondev_help_Dawn_2019-04-25T07:03:18.041400
1,556,175,798.0414
20,434
pythondev
help
Hi Team, I am in a jam and have been searching for a solution to my challenge: I would like to check if a dataframe column starts with ‘27’ and remove that from the ‘27’ from that specific item - currently I have this after several other attempts: `contract_sales.SecondaryMSISDN = contract_sales.SecondaryMSISDN.str.startswith('27').replace('27', '')` .... I think that I am overthinking it? :smiley: Thank you in advance
2019-04-25T08:19:30.041800
Lashay
pythondev_help_Lashay_2019-04-25T08:19:30.041800
1,556,180,370.0418
20,435
pythondev
help
replace will replace every instance of the `27` <@Lashay>
2019-04-25T08:22:16.042200
Christina
pythondev_help_Christina_2019-04-25T08:22:16.042200
1,556,180,536.0422
20,436
pythondev
help
I thought as much, but it gives me a bool value, so I will need to find something else to get it solved… Back to the drawing board :slightly_smiling_face:
2019-04-25T08:23:02.043200
Lashay
pythondev_help_Lashay_2019-04-25T08:23:02.043200
1,556,180,582.0432
20,437
pythondev
help
so it might not be ideal. but i don't know the MSISDN so not sure if it's relevant. Also you don't need the `startwith`. First of all, maybe have such a long line :stuck_out_tongue: it's less readable in general. but you can do soemthing like: "27".join(contract_sales.SecondaryMSISDN.str.split('27')[1:])
2019-04-25T08:24:01.043500
Christina
pythondev_help_Christina_2019-04-25T08:24:01.043500
1,556,180,641.0435
20,438
pythondev
help
The MSISDN is like a cell number, now to make the data in the dataframe more reliable, I had to remove the `27` from some if it starts with it
2019-04-25T08:25:55.043700
Lashay
pythondev_help_Lashay_2019-04-25T08:25:55.043700
1,556,180,755.0437
20,439
pythondev
help
okay. then wrap my line in a `if foo.starts_with("27"):`
2019-04-25T08:26:32.043900
Christina
pythondev_help_Christina_2019-04-25T08:26:32.043900
1,556,180,792.0439
20,440
pythondev
help
and it works
2019-04-25T08:26:34.044100
Christina
pythondev_help_Christina_2019-04-25T08:26:34.044100
1,556,180,794.0441
20,441
pythondev
help
Thank you for the help… Much appreciated!
2019-04-25T08:30:14.044500
Lashay
pythondev_help_Lashay_2019-04-25T08:30:14.044500
1,556,181,014.0445
20,442
pythondev
help
so full line: ``` secondary_msisdn =contract_sales.SecondaryMSISDN.str if secondary_msisdn.startswith('27'): # replace first occurence contract_sales.SecondaryMSISDN = "27".join(secondary_msisdn.split('27')[1:])``` ```
2019-04-25T08:32:56.044700
Christina
pythondev_help_Christina_2019-04-25T08:32:56.044700
1,556,181,176.0447
20,443
pythondev
help
:+1: Thank you!
2019-04-25T08:35:17.045100
Lashay
pythondev_help_Lashay_2019-04-25T08:35:17.045100
1,556,181,317.0451
20,444
pythondev
help
I'm not sure but I think `replace` can take an argument on how many to replace (like split)
2019-04-25T08:38:07.045800
Jimmy
pythondev_help_Jimmy_2019-04-25T08:38:07.045800
1,556,181,487.0458
20,445
pythondev
help
Yes
2019-04-25T08:38:22.046000
Yaeko
pythondev_help_Yaeko_2019-04-25T08:38:22.046000
1,556,181,502.046
20,446
pythondev
help
```Help on method_descriptor: replace(self, old, new, count=-1, /) Return a copy with all occurrences of substring old replaced by new. count Maximum number of occurrences to replace. -1 (the default value) means replace all occurrences. If the optional argument count is given, only the first count occurrences are replaced. ```
2019-04-25T08:38:31.046300
Yaeko
pythondev_help_Yaeko_2019-04-25T08:38:31.046300
1,556,181,511.0463
20,447
pythondev
help
:thumbsup:
2019-04-25T08:39:41.046700
Jimmy
pythondev_help_Jimmy_2019-04-25T08:39:41.046700
1,556,181,581.0467
20,448
pythondev
help
oic. then that is a better solution than my split hack :stuck_out_tongue:
2019-04-25T08:39:49.047000
Christina
pythondev_help_Christina_2019-04-25T08:39:49.047000
1,556,181,589.047
20,449
pythondev
help
Is APS Scheduler is supported in python2?
2019-04-25T09:03:11.047700
Darcie
pythondev_help_Darcie_2019-04-25T09:03:11.047700
1,556,182,991.0477
20,450
pythondev
help
?
2019-04-25T09:04:10.047900
Darcie
pythondev_help_Darcie_2019-04-25T09:04:10.047900
1,556,183,050.0479
20,451
pythondev
help
it appears it's tested against 2.7: <https://github.com/agronholm/apscheduler/blob/master/tox.ini>
2019-04-25T09:08:47.048200
Karoline
pythondev_help_Karoline_2019-04-25T09:08:47.048200
1,556,183,327.0482
20,452
pythondev
help
classifiers lists 2.7 as well: <https://github.com/agronholm/apscheduler/blob/master/setup.py#L27>
2019-04-25T09:09:08.048500
Karoline
pythondev_help_Karoline_2019-04-25T09:09:08.048500
1,556,183,348.0485
20,453
pythondev
help
and if you ctrl-f `dropped support` on <https://apscheduler.readthedocs.io/en/latest/versionhistory.html>, the only version listed is python 3.3
2019-04-25T09:09:43.049400
Hiroko
pythondev_help_Hiroko_2019-04-25T09:09:43.049400
1,556,183,383.0494
20,454
pythondev
help
tl;dr <@Darcie> one of the best ways to answer that question is to look in the code
2019-04-25T09:11:18.049900
Hiroko
pythondev_help_Hiroko_2019-04-25T09:11:18.049900
1,556,183,478.0499
20,455
pythondev
help
I want to filter the list of URLs and I don't need social URLs. How to do it? ``` flt = filter(lambda x: ('facebook', 'linkedin', 'youtube', 'twitter') not in x, website_list) ``` It is wrong Thank you very much :smiley:
2019-04-25T11:43:45.050400
Jung
pythondev_help_Jung_2019-04-25T11:43:45.050400
1,556,192,625.0504
20,456
pythondev
help
```if any(ext in url_string for ext in extensionsToCheck): print(url_string)```
2019-04-25T12:05:11.051500
Leida
pythondev_help_Leida_2019-04-25T12:05:11.051500
1,556,193,911.0515
20,457
pythondev
help
from: <https://stackoverflow.com/questions/6531482/how-to-check-if-a-string-contains-an-element-from-a-list-in-python>
2019-04-25T12:05:31.051800
Leida
pythondev_help_Leida_2019-04-25T12:05:31.051800
1,556,193,931.0518
20,458
pythondev
help
```[ url for url in website_list for except in exception_list if except not in url]```
2019-04-25T12:08:59.053900
Leida
pythondev_help_Leida_2019-04-25T12:08:59.053900
1,556,194,139.0539
20,459
pythondev
help
this in my head translates to take an url form the website list and check it against exceptions and take those that pass and turn em into a list
2019-04-25T12:11:21.055400
Leida
pythondev_help_Leida_2019-04-25T12:11:21.055400
1,556,194,281.0554
20,460
pythondev
help
ah man it duplicates for each exception
2019-04-25T12:14:42.056500
Leida
pythondev_help_Leida_2019-04-25T12:14:42.056500
1,556,194,482.0565
20,461
pythondev
help
so the any was smart in the stack solution
2019-04-25T12:14:51.056800
Leida
pythondev_help_Leida_2019-04-25T12:14:51.056800
1,556,194,491.0568
20,462
pythondev
help
`[url for url in website_list if url not in exception_list]`
2019-04-25T12:20:38.057600
Clemmie
pythondev_help_Clemmie_2019-04-25T12:20:38.057600
1,556,194,838.0576
20,463
pythondev
help
this wont do string comparison will it?
2019-04-25T12:22:07.058300
Leida
pythondev_help_Leida_2019-04-25T12:22:07.058300
1,556,194,927.0583
20,464
pythondev
help
if the string is partial of the full url
2019-04-25T12:22:25.058700
Leida
pythondev_help_Leida_2019-04-25T12:22:25.058700
1,556,194,945.0587
20,465
pythondev
help
oh, no, if it is a partial you would want to make a method that takes the string and runs it through your str compare and returns true/false then do `[url for url in website_list if good_domain(url)]`
2019-04-25T12:24:04.060000
Clemmie
pythondev_help_Clemmie_2019-04-25T12:24:04.060000
1,556,195,044.06
20,466
pythondev
help
```[url for url in website_list if not any(True for ex in ex_list if ex in url)]``` - i was sure there was a single liner there somewhere. In reality tho do what misthop said. Being clever doesnt mean good code.
2019-04-25T12:50:40.061400
Leida
pythondev_help_Leida_2019-04-25T12:50:40.061400
1,556,196,640.0614
20,467
pythondev
help
anyone have any links to a javascript workspace because I have an issue that is ultimately killing me
2019-04-25T13:45:08.062600
Nenita
pythondev_help_Nenita_2019-04-25T13:45:08.062600
1,556,199,908.0626
20,468
pythondev
help
otherwise, id love to ask it here
2019-04-25T13:45:17.062900
Nenita
pythondev_help_Nenita_2019-04-25T13:45:17.062900
1,556,199,917.0629
20,469
pythondev
help
try in <#C07EYDP25|webdev> that is open to other web technologies
2019-04-25T13:46:07.063300
Clemmie
pythondev_help_Clemmie_2019-04-25T13:46:07.063300
1,556,199,967.0633
20,470
pythondev
help
k thanks
2019-04-25T13:47:47.063500
Nenita
pythondev_help_Nenita_2019-04-25T13:47:47.063500
1,556,200,067.0635
20,471
pythondev
help
we also have <#C45V5EJ15|lang_javascript>
2019-04-25T13:51:05.064100
Eliana
pythondev_help_Eliana_2019-04-25T13:51:05.064100
1,556,200,265.0641
20,472
pythondev
help
the #javascript channel on irc is also a good source of help.
2019-04-25T13:51:34.064500
Eliana
pythondev_help_Eliana_2019-04-25T13:51:34.064500
1,556,200,294.0645
20,473
pythondev
help
Guys I have a text with similar structure, someone could recommend some approach to scrape this?
2019-04-25T15:23:22.065000
Jolanda
pythondev_help_Jolanda_2019-04-25T15:23:22.065000
1,556,205,802.065
20,474
pythondev
help
I'd start with a couple of utility routines which can identify the indent level of a line and whether the text is all-caps or not.
2019-04-25T15:27:05.066500
Sasha
pythondev_help_Sasha_2019-04-25T15:27:05.066500
1,556,206,025.0665
20,475
pythondev
help
I want the final output similar to :
2019-04-25T15:30:55.066600
Jolanda
pythondev_help_Jolanda_2019-04-25T15:30:55.066600
1,556,206,255.0666
20,476
pythondev
help
None
2019-04-25T15:37:16.067000
Jolanda
pythondev_help_Jolanda_2019-04-25T15:37:16.067000
1,556,206,636.067
20,477
pythondev
help
Is only based in structure, so find caps doesnt work
2019-04-25T15:37:53.067900
Jolanda
pythondev_help_Jolanda_2019-04-25T15:37:53.067900
1,556,206,673.0679
20,478
pythondev
help
Oh, okay, so the INTER TEXT is just identified by being the first line of a text block?
2019-04-25T15:39:19.068500
Sasha
pythondev_help_Sasha_2019-04-25T15:39:19.068500
1,556,206,759.0685
20,479
pythondev
help
Yes
2019-04-25T15:40:21.068700
Jolanda
pythondev_help_Jolanda_2019-04-25T15:40:21.068700
1,556,206,821.0687
20,480
pythondev
help
Sample of page
2019-04-25T15:44:17.068900
Jolanda
pythondev_help_Jolanda_2019-04-25T15:44:17.068900
1,556,207,057.0689
20,481
pythondev
help
Do 'name collisions' occur in Jupyter / Colab notebooks ? Specifically in naming the notebook and importing packages ?
2019-04-25T17:53:36.070900
Clayton
pythondev_help_Clayton_2019-04-25T17:53:36.070900
1,556,214,816.0709
20,482
pythondev
help
Like if the notebook is named `numpy.ipynb`?
2019-04-25T18:12:33.071500
Bethany
pythondev_help_Bethany_2019-04-25T18:12:33.071500
1,556,215,953.0715
20,483
pythondev
help
yes. and also if a file is uploaded to the Colab VM, or a local Jupyter server.
2019-04-25T18:18:32.072900
Clayton
pythondev_help_Clayton_2019-04-25T18:18:32.072900
1,556,216,312.0729
20,484
pythondev
help
I'd be surprised if that was a problem but I suppose it's possible
2019-04-25T18:19:04.073400
Bethany
pythondev_help_Bethany_2019-04-25T18:19:04.073400
1,556,216,344.0734
20,485
pythondev
help
set(website_list).difference(set(exception_list))
2019-04-25T19:03:50.073500
Brain
pythondev_help_Brain_2019-04-25T19:03:50.073500
1,556,219,030.0735
20,486
pythondev
help
Does this open for you ? <https://github.com/paulgureghian/MXNet_Projects/blob/master/MXNet_Gluon.ipynb>
2019-04-25T19:13:10.074000
Clayton
pythondev_help_Clayton_2019-04-25T19:13:10.074000
1,556,219,590.074
20,487
pythondev
help
Nope.
2019-04-25T19:30:06.074400
Maricruz
pythondev_help_Maricruz_2019-04-25T19:30:06.074400
1,556,220,606.0744
20,488
pythondev
help
ok. thanks
2019-04-25T19:31:22.074800
Clayton
pythondev_help_Clayton_2019-04-25T19:31:22.074800
1,556,220,682.0748
20,489
pythondev
help
Cant import mxnet either as mxnet or an alias of mx:
2019-04-25T19:33:51.075400
Clayton
pythondev_help_Clayton_2019-04-25T19:33:51.075400
1,556,220,831.0754
20,490
pythondev
help
I need to take a bunch of functions (A, B, C...) and perform them sequentially according to some kind of index. so it goes Unit1: A, B, C... then Unit2: A, B, C... and so on for however many Units there are. :thinking_face: what is it I am looking for? is there a concept that this falls into?
2019-04-25T19:53:54.078200
Priscilla
pythondev_help_Priscilla_2019-04-25T19:53:54.078200
1,556,222,034.0782
20,491
pythondev
help
The Unit sequence would be well-represented by a `map()`. The A, B, C sequence is less common, but you can do that with a loop: ```for func in [A, B, C]: value = func(value)```
2019-04-25T20:01:57.079600
Sasha
pythondev_help_Sasha_2019-04-25T20:01:57.079600
1,556,222,517.0796
20,492
pythondev
help
what do you mean by "The A, B, C sequence is less common"?
2019-04-25T20:07:43.079900
Priscilla
pythondev_help_Priscilla_2019-04-25T20:07:43.079900
1,556,222,863.0799
20,493
pythondev
help
Just that it's more usual to want to iterate over data than iterate over functions, so I don't think there's a Python built-in for applying a list of functions to a value, like there is for applying a function to a list of data.
2019-04-25T20:09:05.081000
Sasha
pythondev_help_Sasha_2019-04-25T20:09:05.081000
1,556,222,945.081
20,494
pythondev
help
But you can just do it easily in a loop as above.
2019-04-25T20:09:38.081400
Sasha
pythondev_help_Sasha_2019-04-25T20:09:38.081400
1,556,222,978.0814
20,495
pythondev
help
oh i see!
2019-04-25T20:09:43.081500
Priscilla
pythondev_help_Priscilla_2019-04-25T20:09:43.081500
1,556,222,983.0815
20,496
pythondev
help
thanks Ed
2019-04-25T20:09:48.081700
Priscilla
pythondev_help_Priscilla_2019-04-25T20:09:48.081700
1,556,222,988.0817
20,497
pythondev
help
Hey guys I have a question. I am have to make a small tool that will need to run on windows (with python of course) but I do not have any windows machine with me, only Ubuntu and MacOs. Is there any tools that can "compile" my scripts in order to make some kind of executable for windows? Assuming that the final machine will not even have python package installed. Thx for your answers
2019-04-25T20:17:22.085700
Etha
pythondev_help_Etha_2019-04-25T20:17:22.085700
1,556,223,442.0857
20,498
pythondev
help
maybe buy a cheap windows computer? or user a virtual machine?
2019-04-25T20:36:46.086400
Priscilla
pythondev_help_Priscilla_2019-04-25T20:36:46.086400
1,556,224,606.0864
20,499
pythondev
help
only things I can think of
2019-04-25T20:37:01.086800
Priscilla
pythondev_help_Priscilla_2019-04-25T20:37:01.086800
1,556,224,621.0868
20,500
pythondev
help
You’ll need a windows computer. In a pinch a VM may do the trick. You’ll still need to get hands on an ISO.
2019-04-25T21:18:55.088200
Eliana
pythondev_help_Eliana_2019-04-25T21:18:55.088200
1,556,227,135.0882
20,501
pythondev
help
<@Etha> For testing it, you'll need to get access to some form of Windows to verify that your executable works, as the others mentioned. For the technical aspect of your question, you're looking for <https://www.pyinstaller.org/>
2019-04-25T21:28:18.089600
Carmen
pythondev_help_Carmen_2019-04-25T21:28:18.089600
1,556,227,698.0896
20,502
pythondev
help
Hoooo yeah that looks great. I'm running out of space so I won't be able to test on a VM, but I will be able to make some tests on the final machine. Thank you guys
2019-04-25T21:31:01.091300
Etha
pythondev_help_Etha_2019-04-25T21:31:01.091300
1,556,227,861.0913
20,503
pythondev
help
is there a way to put a function within a function?
2019-04-25T21:36:43.092000
Priscilla
pythondev_help_Priscilla_2019-04-25T21:36:43.092000
1,556,228,203.092
20,504
pythondev
help
Sure
2019-04-25T21:37:50.092400
Hiroko
pythondev_help_Hiroko_2019-04-25T21:37:50.092400
1,556,228,270.0924
20,505
pythondev
help
Inner function
2019-04-25T21:37:55.092700
Hiroko
pythondev_help_Hiroko_2019-04-25T21:37:55.092700
1,556,228,275.0927
20,506
pythondev
help
<https://realpython.com/inner-functions-what-are-they-good-for/>
2019-04-25T21:38:33.093500
Hiroko
pythondev_help_Hiroko_2019-04-25T21:38:33.093500
1,556,228,313.0935
20,507
pythondev
help
will that let me pass 1 argument to all of the inner functions and receive 1 output from the outer (?) functions
2019-04-25T21:38:49.094000
Priscilla
pythondev_help_Priscilla_2019-04-25T21:38:49.094000
1,556,228,329.094
20,508
pythondev
help
lol i guess i could just look at that huh!
2019-04-25T21:39:01.094400
Priscilla
pythondev_help_Priscilla_2019-04-25T21:39:01.094400
1,556,228,341.0944
20,509
pythondev
help
i think thats exactly what I am looking for, thanks <@Hiroko>
2019-04-25T21:40:16.094900
Priscilla
pythondev_help_Priscilla_2019-04-25T21:40:16.094900
1,556,228,416.0949
20,510
pythondev
help
How to store an API key in a Python variable so as not to expose it in a shared Colab notebook ?
2019-04-25T21:44:06.095800
Clayton
pythondev_help_Clayton_2019-04-25T21:44:06.095800
1,556,228,646.0958
20,511
pythondev
help
Environment variables.
2019-04-25T21:46:41.096000
Carmen
pythondev_help_Carmen_2019-04-25T21:46:41.096000
1,556,228,801.096
20,512
pythondev
help
If you have experience with Google Cloud Platform - is it relatively painless to move over to AWS? I mean not to move infrastructure, codebases and servers from one to the other - but more is it easy to work on AWS as a platform if you are familiar with GCP?
2019-04-26T00:40:35.099200
Conchita
pythondev_help_Conchita_2019-04-26T00:40:35.099200
1,556,239,235.0992
20,513
pythondev
help
I'd say so _subjectively_ speaking.
2019-04-26T00:58:49.099700
Gemma
pythondev_help_Gemma_2019-04-26T00:58:49.099700
1,556,240,329.0997
20,514
pythondev
help
You'll have some familiarity with common cloud services.
2019-04-26T00:59:51.100800
Gemma
pythondev_help_Gemma_2019-04-26T00:59:51.100800
1,556,240,391.1008
20,515
pythondev
help
I started with GCP and have recently tried AWS as well. It was not too tough to get used to it.
2019-04-26T01:29:06.102600
Marivel
pythondev_help_Marivel_2019-04-26T01:29:06.102600
1,556,242,146.1026
20,516
pythondev
help
Nice <@Marivel>
2019-04-26T01:40:05.102800
Conchita
pythondev_help_Conchita_2019-04-26T01:40:05.102800
1,556,242,805.1028
20,517
pythondev
help
Hello. What could be the reason that PyCharm doesn't see Faker here?
2019-04-26T05:18:10.103900
Ermelinda
pythondev_help_Ermelinda_2019-04-26T05:18:10.103900
1,556,255,890.1039
20,518
pythondev
help
It should be:
2019-04-26T05:23:32.104200
Ermelinda
pythondev_help_Ermelinda_2019-04-26T05:23:32.104200
1,556,256,212.1042
20,519
pythondev
help
from faker import Faker
2019-04-26T05:23:36.104400
Ermelinda
pythondev_help_Ermelinda_2019-04-26T05:23:36.104400
1,556,256,216.1044
20,520