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
Why what
2019-04-30T12:21:29.244200
Emelda
pythondev_help_Emelda_2019-04-30T12:21:29.244200
1,556,626,889.2442
21,621
pythondev
help
Why am I running this command?
2019-04-30T12:21:43.244400
Emelda
pythondev_help_Emelda_2019-04-30T12:21:43.244400
1,556,626,903.2444
21,622
pythondev
help
why do you want it as a pure string
2019-04-30T12:21:53.244600
Clemmie
pythondev_help_Clemmie_2019-04-30T12:21:53.244600
1,556,626,913.2446
21,623
pythondev
help
Because Python is trying to interpret it as python and not windows command line
2019-04-30T12:22:16.244800
Emelda
pythondev_help_Emelda_2019-04-30T12:22:16.244800
1,556,626,936.2448
21,624
pythondev
help
I don't know any other way to access windows credential manager from python
2019-04-30T12:22:50.245000
Emelda
pythondev_help_Emelda_2019-04-30T12:22:50.245000
1,556,626,970.245
21,625
pythondev
help
oh, you mean the string param? I thought you meant the whole thing
2019-04-30T12:22:54.245200
Clemmie
pythondev_help_Clemmie_2019-04-30T12:22:54.245200
1,556,626,974.2452
21,626
pythondev
help
Right just the string I want to send to the local shell
2019-04-30T12:23:17.245400
Emelda
pythondev_help_Emelda_2019-04-30T12:23:17.245400
1,556,626,997.2454
21,627
pythondev
help
the easiest way is to make that into a windows `bat` file (i think windows still uses bat) that takes a param, and call it that way. But triple quotes should worl
2019-04-30T12:23:52.245600
Clemmie
pythondev_help_Clemmie_2019-04-30T12:23:52.245600
1,556,627,032.2456
21,628
pythondev
help
I would like to do this all in python without having to rely on the shell honestly
2019-04-30T12:24:50.245900
Emelda
pythondev_help_Emelda_2019-04-30T12:24:50.245900
1,556,627,090.2459
21,629
pythondev
help
try the triple quotes, that may work. The recommended way to execute shell command is `subprocess.call()` instead of `os.system()` - you may want to look into that
2019-04-30T12:27:38.246100
Clemmie
pythondev_help_Clemmie_2019-04-30T12:27:38.246100
1,556,627,258.2461
21,630
pythondev
help
What's the difference?
2019-04-30T12:27:54.246300
Emelda
pythondev_help_Emelda_2019-04-30T12:27:54.246300
1,556,627,274.2463
21,631
pythondev
help
from the `os.system` docs: >The subprocess module provides more powerful facilities for spawning new processes and retrieving their results; using that module is preferable to using this function. See the Replacing Older Functions with the subprocess Module section in the subprocess documentation for some helpful recipes.’
2019-04-30T12:28:48.246500
Clemmie
pythondev_help_Clemmie_2019-04-30T12:28:48.246500
1,556,627,328.2465
21,632
pythondev
help
nvm quick google search told me
2019-04-30T12:28:54.246700
Emelda
pythondev_help_Emelda_2019-04-30T12:28:54.246700
1,556,627,334.2467
21,633
pythondev
help
But yea that
2019-04-30T12:29:05.246900
Emelda
pythondev_help_Emelda_2019-04-30T12:29:05.246900
1,556,627,345.2469
21,634
pythondev
help
I'm not completely sure I understand what makes them "not good", but one thing which pops out is that they reference `self.dataframe`, which doesn't seem to exist. Perhaps you want your `__init__` routine to grab its `dataframe` argument and save it as `self.dataframe`?
2019-04-30T12:39:42.248600
Sasha
pythondev_help_Sasha_2019-04-30T12:39:42.248600
1,556,627,982.2486
21,635
pythondev
help
You're also sort of using the class like just a nested function, doing a bunch of computation and output in the `__init__` function and then discarding the object afterwards. It's not technically wrong, but it's unexpected.
2019-04-30T12:42:16.249900
Sasha
pythondev_help_Sasha_2019-04-30T12:42:16.249900
1,556,628,136.2499
21,636
pythondev
help
yea i fixed the self.dataframe portion. i just notice i have function calls that are just bare.
2019-04-30T13:14:45.250300
Nenita
pythondev_help_Nenita_2019-04-30T13:14:45.250300
1,556,630,085.2503
21,637
pythondev
help
So the first line works fine. Printing the row data shows it inserts just fine, however the second line runs fine, but doesn't insert the data if i print the row data? What am I doing wrong?
2019-04-30T13:31:10.250500
Nenita
pythondev_help_Nenita_2019-04-30T13:31:10.250500
1,556,631,070.2505
21,638
pythondev
help
nvm
2019-04-30T13:31:32.250900
Nenita
pythondev_help_Nenita_2019-04-30T13:31:32.250900
1,556,631,092.2509
21,639
pythondev
help
just saw my dictionary isnt built properly
2019-04-30T13:31:39.251200
Nenita
pythondev_help_Nenita_2019-04-30T13:31:39.251200
1,556,631,099.2512
21,640
pythondev
help
alright so my code works fine and all, but when exporting my dataframe, it doesn't retain the values that have been inserted?
2019-04-30T13:38:31.251900
Nenita
pythondev_help_Nenita_2019-04-30T13:38:31.251900
1,556,631,511.2519
21,641
pythondev
help
if i print the row data as the code is running, it will show that the data has been inserted into the correct location, but it doesn't show any data was inserted after exporting the dataframe
2019-04-30T13:39:04.252600
Nenita
pythondev_help_Nenita_2019-04-30T13:39:04.252600
1,556,631,544.2526
21,642
pythondev
help
Sounds like you've done something to duplicate the dataframe along the way, and are exporting a different variable than the one you're modifying.
2019-04-30T13:40:07.253600
Sasha
pythondev_help_Sasha_2019-04-30T13:40:07.253600
1,556,631,607.2536
21,643
pythondev
help
Some Pandas calls return a new dataframe rather than modify the original.
2019-04-30T13:40:29.254000
Sasha
pythondev_help_Sasha_2019-04-30T13:40:29.254000
1,556,631,629.254
21,644
pythondev
help
ive never encountered this issue before and i just insert the same df into each function.
2019-04-30T13:41:39.255200
Nenita
pythondev_help_Nenita_2019-04-30T13:41:39.255200
1,556,631,699.2552
21,645
pythondev
help
its the same code as above, but just with the fixed 'self.dataframe'
2019-04-30T13:42:13.255600
Nenita
pythondev_help_Nenita_2019-04-30T13:42:13.255600
1,556,631,733.2556
21,646
pythondev
help
Can you post your revised `__init__`?
2019-04-30T13:43:06.256200
Sasha
pythondev_help_Sasha_2019-04-30T13:43:06.256200
1,556,631,786.2562
21,647
pythondev
help
im gunna try something real quick as a test
2019-04-30T13:43:09.256300
Nenita
pythondev_help_Nenita_2019-04-30T13:43:09.256300
1,556,631,789.2563
21,648
pythondev
help
sure
2019-04-30T13:43:10.256500
Nenita
pythondev_help_Nenita_2019-04-30T13:43:10.256500
1,556,631,790.2565
21,649
pythondev
help
not much revision tbh though
2019-04-30T13:43:54.256600
Nenita
pythondev_help_Nenita_2019-04-30T13:43:54.256600
1,556,631,834.2566
21,650
pythondev
help
this is the line i use when inserting my df to be used across all functions
2019-04-30T13:44:29.256900
Nenita
pythondev_help_Nenita_2019-04-30T13:44:29.256900
1,556,631,869.2569
21,651
pythondev
help
im gunna change the dataframe.to_csv to payroll.to_csv and see if that makes a difference
2019-04-30T13:45:16.257600
Nenita
pythondev_help_Nenita_2019-04-30T13:45:16.257600
1,556,631,916.2576
21,652
pythondev
help
nope no change
2019-04-30T13:45:29.258000
Nenita
pythondev_help_Nenita_2019-04-30T13:45:29.258000
1,556,631,929.258
21,653
pythondev
help
wth :thinking_face:
2019-04-30T13:45:39.258400
Nenita
pythondev_help_Nenita_2019-04-30T13:45:39.258400
1,556,631,939.2584
21,654
pythondev
help
Can you check the timestamp on your output .CSV file? I'm suspicious of the backslash in the filename, so it may not be being saved where you think it should be.
2019-04-30T13:45:55.258800
Sasha
pythondev_help_Sasha_2019-04-30T13:45:55.258800
1,556,631,955.2588
21,655
pythondev
help
Oh, never mind, raw string.
2019-04-30T13:46:16.259000
Sasha
pythondev_help_Sasha_2019-04-30T13:46:16.259000
1,556,631,976.259
21,656
pythondev
help
other than the data coming from pyodbc, i may be able to make some changes so you can run it for yourself.
2019-04-30T13:46:46.259700
Nenita
pythondev_help_Nenita_2019-04-30T13:46:46.259700
1,556,632,006.2597
21,657
pythondev
help
yea give me a sec. ill set this up so you can run it from your end if you choose to
2019-04-30T13:47:42.260100
Nenita
pythondev_help_Nenita_2019-04-30T13:47:42.260100
1,556,632,062.2601
21,658
pythondev
help
Ah, I think I see the problem. The documentation for `iterrows()` says, "You should never modify something you are iterating over. This is not guaranteed to work in all cases. Depending on the data types, the iterator returns a copy and not a view, and writing to it will have no effect." So when you are changing `data[]` values, it isn't necessarily getting propagated into the dataframe.
2019-04-30T13:50:18.261300
Sasha
pythondev_help_Sasha_2019-04-30T13:50:18.261300
1,556,632,218.2613
21,659
pythondev
help
ah that makes sense.
2019-04-30T13:50:40.261500
Nenita
pythondev_help_Nenita_2019-04-30T13:50:40.261500
1,556,632,240.2615
21,660
pythondev
help
so will i need to use csv reader?
2019-04-30T13:50:52.261900
Nenita
pythondev_help_Nenita_2019-04-30T13:50:52.261900
1,556,632,252.2619
21,661
pythondev
help
wait. i may just need a return on the iterrows()
2019-04-30T13:52:22.262200
Nenita
pythondev_help_Nenita_2019-04-30T13:52:22.262200
1,556,632,342.2622
21,662
pythondev
help
so it returns the new copy
2019-04-30T13:52:27.262400
Nenita
pythondev_help_Nenita_2019-04-30T13:52:27.262400
1,556,632,347.2624
21,663
pythondev
help
omg, even putting the df.to_csv at the end of my iterrows() it still doesnt export the copy
2019-04-30T13:53:52.262900
Nenita
pythondev_help_Nenita_2019-04-30T13:53:52.262900
1,556,632,432.2629
21,664
pythondev
help
Yeah, the trouble is there isn't any "copy"... each data value is getting discarded the next time through the loop. You may want to consider creating a new dataframe as you go, or else iterating through the primary keys and modifying the dataframe row in-place.
2019-04-30T13:55:53.264400
Sasha
pythondev_help_Sasha_2019-04-30T13:55:53.264400
1,556,632,553.2644
21,665
pythondev
help
```for process in (process for process in psutil.process_iter() if process.name()=="firefox.exe"): process.kill()``` this doesn't seem to be working for me for some reason, does anyone know why this would be?
2019-04-30T13:56:09.264700
Emelda
pythondev_help_Emelda_2019-04-30T13:56:09.264700
1,556,632,569.2647
21,666
pythondev
help
it seems to be taking forever to run and then the process is still running
2019-04-30T13:56:39.265100
Emelda
pythondev_help_Emelda_2019-04-30T13:56:39.265100
1,556,632,599.2651
21,667
pythondev
help
ok seems i have to match the process name exactly if it's case sensitive
2019-04-30T13:59:19.265600
Emelda
pythondev_help_Emelda_2019-04-30T13:59:19.265600
1,556,632,759.2656
21,668
pythondev
help
but man does it take forever
2019-04-30T13:59:27.265800
Emelda
pythondev_help_Emelda_2019-04-30T13:59:27.265800
1,556,632,767.2658
21,669
pythondev
help
you can do `process.name().lower` and evaluate against all lower case
2019-04-30T14:00:59.266400
Clemmie
pythondev_help_Clemmie_2019-04-30T14:00:59.266400
1,556,632,859.2664
21,670
pythondev
help
I still wonder why `psutil.process_iter()` takes so long
2019-04-30T14:01:48.267100
Emelda
pythondev_help_Emelda_2019-04-30T14:01:48.267100
1,556,632,908.2671
21,671
pythondev
help
figured it out <@Sasha>
2019-04-30T14:03:25.268800
Nenita
pythondev_help_Nenita_2019-04-30T14:03:25.268800
1,556,633,005.2688
21,672
pythondev
help
reading the docs it sounds like it does a lot to setup. It seems like you could speed things up if you take a look at <https://psutil.readthedocs.io/en/latest/#filtering-and-sorting-processes> - passing just one or two attributes, and doing and `info` dict lookup instead of calling the `.name()` method might make things faster
2019-04-30T14:03:28.269200
Clemmie
pythondev_help_Clemmie_2019-04-30T14:03:28.269200
1,556,633,008.2692
21,673
pythondev
help
this is the final result. problem is if i print the row data before and after inserting values into hireddate, the hireddate column is not at the end.
2019-04-30T14:07:35.269300
Nenita
pythondev_help_Nenita_2019-04-30T14:07:35.269300
1,556,633,255.2693
21,674
pythondev
help
this the printout before and after inserting values into hireddate. it doesnt create the column. only the column shows after exporting?
2019-04-30T14:08:10.269600
Nenita
pythondev_help_Nenita_2019-04-30T14:08:10.269600
1,556,633,290.2696
21,675
pythondev
help
oh
2019-04-30T14:09:40.270000
Nenita
pythondev_help_Nenita_2019-04-30T14:09:40.270000
1,556,633,380.27
21,676
pythondev
help
my
2019-04-30T14:09:40.270200
Nenita
pythondev_help_Nenita_2019-04-30T14:09:40.270200
1,556,633,380.2702
21,677
pythondev
help
fn
2019-04-30T14:09:44.270400
Nenita
pythondev_help_Nenita_2019-04-30T14:09:44.270400
1,556,633,384.2704
21,678
pythondev
help
gosh
2019-04-30T14:09:45.270600
Nenita
pythondev_help_Nenita_2019-04-30T14:09:45.270600
1,556,633,385.2706
21,679
pythondev
help
my column is hiredate not hireddate :face_palm:
2019-04-30T14:10:22.271300
Nenita
pythondev_help_Nenita_2019-04-30T14:10:22.271300
1,556,633,422.2713
21,680
pythondev
help
I want to include Amazon user review in my resume, will that helps? As I heard kaggle projects like, Titanic and Heart are too common which doesn’t add any value in resume
2019-04-30T14:11:02.271400
China
pythondev_help_China_2019-04-30T14:11:02.271400
1,556,633,462.2714
21,681
pythondev
help
Amazon user review of what? A project you built?
2019-04-30T14:14:08.272000
Clemmie
pythondev_help_Clemmie_2019-04-30T14:14:08.272000
1,556,633,648.272
21,682
pythondev
help
If yes, then don’t put the reviews in the resume, just the project - they will go look at the project and the reviews if they are interested
2019-04-30T14:14:34.272600
Clemmie
pythondev_help_Clemmie_2019-04-30T14:14:34.272600
1,556,633,674.2726
21,683
pythondev
help
I'm having a problem with windows 10 python every time I put a command with $ error it how can I solute this error
2019-04-30T17:04:37.280600
Blythe
pythondev_help_Blythe_2019-04-30T17:04:37.280600
1,556,643,877.2806
21,684
pythondev
help
be sure the command includes a dollar sign, and its not the symbol for a prompt
2019-04-30T17:08:48.281100
Hiroko
pythondev_help_Hiroko_2019-04-30T17:08:48.281100
1,556,644,128.2811
21,685
pythondev
help
sounds like you’re interpreting the cmd prompt to bbe part of the command
2019-04-30T17:11:04.281500
Hiroko
pythondev_help_Hiroko_2019-04-30T17:11:04.281500
1,556,644,264.2815
21,686
pythondev
help
so i got a weird issue that ive only had happen twice now. very rare, but very odd as well. so when a certain funtion is running, when it hits a certain line in that function, it just kills the function and actually starts the function over. it repeats indefinitely. Sending some screens.
2019-04-30T17:26:11.283000
Nenita
pythondev_help_Nenita_2019-04-30T17:26:11.283000
1,556,645,171.283
21,687
pythondev
help
when this function fires:
2019-04-30T17:26:32.283200
Nenita
pythondev_help_Nenita_2019-04-30T17:26:32.283200
1,556,645,192.2832
21,688
pythondev
help
it gets to the highlighted line and then just starts the function over indefinitely. no errors, nothing. just start over??
2019-04-30T17:27:08.283500
Nenita
pythondev_help_Nenita_2019-04-30T17:27:08.283500
1,556,645,228.2835
21,689
pythondev
help
hey all - I have a few data miners that I am writing which I'd like to run daily, and have the ability to keep track of what ran, if it failed, etc. I understand there are task queues that I could use (e.g. celery), but they all seem to require setting up the task queue and monitoring separate. Any advice on what would be the simplest method to schedule, log, and monitor the jobs?
2019-04-30T18:01:30.286700
Shirley
pythondev_help_Shirley_2019-04-30T18:01:30.286700
1,556,647,290.2867
21,690
pythondev
help
<@Shirley> are you on linux? I'd schedule a `cronjob` for each of your data miners, you can have it output the log to wherever you want.
2019-04-30T18:18:14.287400
Maricruz
pythondev_help_Maricruz_2019-04-30T18:18:14.287400
1,556,648,294.2874
21,691
pythondev
help
windows unfortunately
2019-04-30T18:18:26.287800
Shirley
pythondev_help_Shirley_2019-04-30T18:18:26.287800
1,556,648,306.2878
21,692
pythondev
help
Windows has `task scheduler`
2019-04-30T18:18:29.287900
Maricruz
pythondev_help_Maricruz_2019-04-30T18:18:29.287900
1,556,648,309.2879
21,693
pythondev
help
I haven't used it much though...there's probably a better Python scheduler out there, I'll let someone more knowledgeable chime in
2019-04-30T18:18:58.289000
Maricruz
pythondev_help_Maricruz_2019-04-30T18:18:58.289000
1,556,648,338.289
21,694
pythondev
help
I was thinking about task scheduler, but I was not sure how reliable that would be in the long term?
2019-04-30T18:18:59.289200
Shirley
pythondev_help_Shirley_2019-04-30T18:18:59.289200
1,556,648,339.2892
21,695
pythondev
help
<@Nenita> There's not enough context to really see what's going on. Two possibilities that come to mind: there's a recursive call to the same function, or maybe there's an exception that is caught by a retry loop at a higher level of the code.
2019-04-30T18:29:25.290600
Sasha
pythondev_help_Sasha_2019-04-30T18:29:25.290600
1,556,648,965.2906
21,696
pythondev
help
how can i grab a variable from another function to use it? like: ```
2019-04-30T18:46:55.291300
Priscilla
pythondev_help_Priscilla_2019-04-30T18:46:55.291300
1,556,650,015.2913
21,697
pythondev
help
<@Priscilla> why would you want to, as opposed to returning that variable
2019-04-30T18:48:00.292700
Jamison
pythondev_help_Jamison_2019-04-30T18:48:00.292700
1,556,650,080.2927
21,698
pythondev
help
``` if test_1 == 'PASS': foo = ', PASS' else: bar = ', FAIL' ```
2019-04-30T18:48:35.293200
Priscilla
pythondev_help_Priscilla_2019-04-30T18:48:35.293200
1,556,650,115.2932
21,699
pythondev
help
well, i need a loop that creates a string for each item in my list and will populate 'PASS' or 'FAIL' depending on how they perform in each test... so it can be written to a CSV. I already have a for statement that itterates through for one test like so
2019-04-30T18:50:10.295800
Priscilla
pythondev_help_Priscilla_2019-04-30T18:50:10.295800
1,556,650,210.2958
21,700
pythondev
help
None
2019-04-30T18:50:30.296100
Priscilla
pythondev_help_Priscilla_2019-04-30T18:50:30.296100
1,556,650,230.2961
21,701
pythondev
help
You can't generally "grab" variables from within functions. You can (a) use a global variable, (b) have the function return the data, or (c) pass in some kind of container to the function for it to modify. Sometimes this sort of need is also a sign that you may want to have the functions as part of a class with shared state.
2019-04-30T18:50:42.296600
Sasha
pythondev_help_Sasha_2019-04-30T18:50:42.296600
1,556,650,242.2966
21,702
pythondev
help
i looked into that and I dont really understand shared states, and not even really classes
2019-04-30T18:51:35.297200
Priscilla
pythondev_help_Priscilla_2019-04-30T18:51:35.297200
1,556,650,295.2972
21,703
pythondev
help
unfortunately I dont have time to try and implement that right now ya know
2019-04-30T18:51:59.298000
Priscilla
pythondev_help_Priscilla_2019-04-30T18:51:59.298000
1,556,650,319.298
21,704
pythondev
help
A class is "smart data", in that it can store things, but also knows how to do things with that data. For instance, a list is a class... it stores objects, but it also knows how to `sort()` itself.
2019-04-30T18:53:00.298900
Sasha
pythondev_help_Sasha_2019-04-30T18:53:00.298900
1,556,650,380.2989
21,705
pythondev
help
oh
2019-04-30T18:53:34.299100
Priscilla
pythondev_help_Priscilla_2019-04-30T18:53:34.299100
1,556,650,414.2991
21,706
pythondev
help
looking it upo
2019-04-30T18:55:48.299500
Priscilla
pythondev_help_Priscilla_2019-04-30T18:55:48.299500
1,556,650,548.2995
21,707
pythondev
help
so would i wrap a class and all functions in a for loop and let it spit out the results of each device?
2019-04-30T18:56:32.300700
Priscilla
pythondev_help_Priscilla_2019-04-30T18:56:32.300700
1,556,650,592.3007
21,708
pythondev
help
<@Shirley> Task Scheduler is as reliable as the platform you're running it on. It's the standard for running things at a specific time on Windows.
2019-04-30T18:56:39.301100
Carmen
pythondev_help_Carmen_2019-04-30T18:56:39.301100
1,556,650,599.3011
21,709
pythondev
help
no that woudlnt work nvm
2019-04-30T18:56:40.301200
Priscilla
pythondev_help_Priscilla_2019-04-30T18:56:40.301200
1,556,650,600.3012
21,710
pythondev
help
I don't know whether you want to try it here, but the pattern might be to have a class which represents each device. It knows its own serial number, it knows how to run tests on itself, it keeps the test results as part of its own data, and when asked it can print out all of that.
2019-04-30T18:59:00.303500
Sasha
pythondev_help_Sasha_2019-04-30T18:59:00.303500
1,556,650,740.3035
21,711
pythondev
help
so if i under
2019-04-30T18:59:23.303600
Priscilla
pythondev_help_Priscilla_2019-04-30T18:59:23.303600
1,556,650,763.3036
21,712
pythondev
help
(There's no single "right way" to do what you seem to need to implement.)
2019-04-30T19:00:27.305300
Sasha
pythondev_help_Sasha_2019-04-30T19:00:27.305300
1,556,650,827.3053
21,713
pythondev
help
unfortunatly the tests are not automatted, the user will run test1 on all devices, then test2 on all, then test3 on all
2019-04-30T19:00:38.305600
Priscilla
pythondev_help_Priscilla_2019-04-30T19:00:38.305600
1,556,650,838.3056
21,714
pythondev
help
right, hard to break the habit of finding THE answer lol
2019-04-30T19:01:10.306100
Priscilla
pythondev_help_Priscilla_2019-04-30T19:01:10.306100
1,556,650,870.3061
21,715
pythondev
help
i wish i could just have a placeholder in a string that populates itself. its in my brain but making it happen is not working out lol
2019-04-30T19:08:12.306600
Priscilla
pythondev_help_Priscilla_2019-04-30T19:08:12.306600
1,556,651,292.3066
21,716
pythondev
help
Can you do something like: ```results = serial_number results += test1(serial_number) results += test2(serial_number) results += test3(serial_number) print(results)```
2019-04-30T19:10:51.308000
Sasha
pythondev_help_Sasha_2019-04-30T19:10:51.308000
1,556,651,451.308
21,717
pythondev
help
This project is sounding roughly like a piece of software I helped implement years ago for a tool calibration company. The technicians would go on-site and be calibrating individual tools. They'd have to manually do the testing on the piece of equipment (making measurements against known standards) and then record their results by typing them into the software. Is that similar to what you're doing here?
2019-04-30T19:13:54.311800
Carmen
pythondev_help_Carmen_2019-04-30T19:13:54.311800
1,556,651,634.3118
21,718
pythondev
help
yes it is similar
2019-04-30T19:15:16.312200
Priscilla
pythondev_help_Priscilla_2019-04-30T19:15:16.312200
1,556,651,716.3122
21,719
pythondev
help
basically exactly the same actually.
2019-04-30T19:19:01.312600
Priscilla
pythondev_help_Priscilla_2019-04-30T19:19:01.312600
1,556,651,941.3126
21,720