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
<@Deloris> That sounds like a great idea. But I just installed miniconda instead.
2019-05-16T10:29:16.319100
Nella
pythondev_help_Nella_2019-05-16T10:29:16.319100
1,558,002,556.3191
24,021
pythondev
help
Are you installing as root? Anaconda is usually installed in $HOME/anaconda3
2019-05-16T10:29:21.319600
Bethany
pythondev_help_Bethany_2019-05-16T10:29:21.319600
1,558,002,561.3196
24,022
pythondev
help
<@Bethany> I previously installed Anaconda using brew
2019-05-16T10:29:54.320900
Nella
pythondev_help_Nella_2019-05-16T10:29:54.320900
1,558,002,594.3209
24,023
pythondev
help
well you don't need to setup any thing just try to download docker image
2019-05-16T10:29:57.321000
Deloris
pythondev_help_Deloris_2019-05-16T10:29:57.321000
1,558,002,597.321
24,024
pythondev
help
Miniconda docker image is a great idea btw I use it for almost anything
2019-05-16T10:29:59.321400
Bethany
pythondev_help_Bethany_2019-05-16T10:29:59.321400
1,558,002,599.3214
24,025
pythondev
help
which is available in docker
2019-05-16T10:30:19.321700
Deloris
pythondev_help_Deloris_2019-05-16T10:30:19.321700
1,558,002,619.3217
24,026
pythondev
help
and github
2019-05-16T10:30:22.322000
Deloris
pythondev_help_Deloris_2019-05-16T10:30:22.322000
1,558,002,622.322
24,027
pythondev
help
you can easily find one
2019-05-16T10:30:34.322400
Deloris
pythondev_help_Deloris_2019-05-16T10:30:34.322400
1,558,002,634.3224
24,028
pythondev
help
`continuumio/miniconda3`
2019-05-16T10:30:41.323200
Bethany
pythondev_help_Bethany_2019-05-16T10:30:41.323200
1,558,002,641.3232
24,029
pythondev
help
on google :slightly_smiling_face:
2019-05-16T10:30:49.323500
Deloris
pythondev_help_Deloris_2019-05-16T10:30:49.323500
1,558,002,649.3235
24,030
pythondev
help
<@Deloris> Get it
2019-05-16T10:31:03.323800
Nella
pythondev_help_Nella_2019-05-16T10:31:03.323800
1,558,002,663.3238
24,031
pythondev
help
How ever tenserflow gpu docker images will only work on linux
2019-05-16T10:33:07.324600
Deloris
pythondev_help_Deloris_2019-05-16T10:33:07.324600
1,558,002,787.3246
24,032
pythondev
help
so you have to use cpu in docker for windows <@Nella>
2019-05-16T10:33:40.325200
Deloris
pythondev_help_Deloris_2019-05-16T10:33:40.325200
1,558,002,820.3252
24,033
pythondev
help
I don’t use windows so that’s not a problem.
2019-05-16T11:15:35.325700
Nella
pythondev_help_Nella_2019-05-16T11:15:35.325700
1,558,005,335.3257
24,034
pythondev
help
Thanks for all your help
2019-05-16T11:15:46.326000
Nella
pythondev_help_Nella_2019-05-16T11:15:46.326000
1,558,005,346.326
24,035
pythondev
help
hello! need advice/help ```class Test: def __init__(self, mm): <http://self.mm|self.mm> = mm t = Test(123) t.aa = 234``` how can I rise error when somebody wants to add value to class attribute that was not declared in the class - `t.aa`?
2019-05-16T13:31:25.328300
Mi
pythondev_help_Mi_2019-05-16T13:31:25.328300
1,558,013,485.3283
24,036
pythondev
help
So, generally this is against the Python philosophy, which says that if the developer wants to add a new attribute, they probably have a good reason for it, so you might want to reconsider why you want to restrict them in this way... especially since any sort of protection can be bypassed by people who have your source code anyway.
2019-05-16T13:38:00.330500
Sasha
pythondev_help_Sasha_2019-05-16T13:38:00.330500
1,558,013,880.3305
24,037
pythondev
help
That said, have a look at `__slots__` for one way to do it.
2019-05-16T13:38:21.331000
Sasha
pythondev_help_Sasha_2019-05-16T13:38:21.331000
1,558,013,901.331
24,038
pythondev
help
Thanks!
2019-05-16T13:44:58.331400
Mi
pythondev_help_Mi_2019-05-16T13:44:58.331400
1,558,014,298.3314
24,039
pythondev
help
I had some spare time the last few days and wrote something to help myself track unit types (physical unit types, ie `meters` or `º Kelvin`. I essentially wanted to see if I could write the equivalent class to a `float` but have it check &amp; possibly convert units prior to using them for any math. It's done by using a class, `Quantity`, which uses `float` as its base class. Now, if I want to check units before adding 2 Quantities, I can define an `__add__` func which performs the check, and then returns a result if the units are compatible with a call to `self._check_compatibility`. What I was wondering is, for the return line here, having `super().__add__(o)` looks wrong to me. The code works as I want it to, but I wanted to know if there's a better way of adding to these default class dunder methods where the process you want is: 1- do some check, 2- use the base class's standard method, 3- cast the result to something else ```def __add__(self, other): # returns other, unmodified, or converted to a compatible 'Quantity' class o = self._check_compatibility(other) # returns the result as the same Quantity class as 'self' return self._cast_as_same_unit(super().__add__(o)) ```
2019-05-16T15:17:06.332600
Cherish
pythondev_help_Cherish_2019-05-16T15:17:06.332600
1,558,019,826.3326
24,040
pythondev
help
Not a problem, glad it worked! :slightly_smiling_face:
2019-05-16T15:28:54.332800
Madonna
pythondev_help_Madonna_2019-05-16T15:28:54.332800
1,558,020,534.3328
24,041
pythondev
help
Hello channel I need your advice, I am getting problems creating an script to automate excel files creation using the library openpyxl. I am not able to identify what is wrong in my string
2019-05-16T18:01:17.335200
Hosea
pythondev_help_Hosea_2019-05-16T18:01:17.335200
1,558,029,677.3352
24,042
pythondev
help
None
2019-05-16T18:01:31.335300
Hosea
pythondev_help_Hosea_2019-05-16T18:01:31.335300
1,558,029,691.3353
24,043
pythondev
help
OSError: [Errno 22] Invalid argument: 'C:\\Users\\litos\\PycharmProjects\\Endesa\\Productos\\CO20X - CONCESIONES POT &lt;= 10x.xlsx'
2019-05-16T18:01:41.335700
Hosea
pythondev_help_Hosea_2019-05-16T18:01:41.335700
1,558,029,701.3357
24,044
pythondev
help
thanks in advance
2019-05-16T18:01:44.335900
Hosea
pythondev_help_Hosea_2019-05-16T18:01:44.335900
1,558,029,704.3359
24,045
pythondev
help
<#C07EFMZ1N|help>
2019-05-16T18:02:35.336200
Hosea
pythondev_help_Hosea_2019-05-16T18:02:35.336200
1,558,029,755.3362
24,046
pythondev
help
I don't think you can have the `&lt;` in the file name
2019-05-16T18:02:59.336600
Marth
pythondev_help_Marth_2019-05-16T18:02:59.336600
1,558,029,779.3366
24,047
pythondev
help
damn it! you are right Thank you!
2019-05-16T18:06:16.336900
Hosea
pythondev_help_Hosea_2019-05-16T18:06:16.336900
1,558,029,976.3369
24,048
pythondev
help
None
2019-05-16T18:55:54.337600
Hai
pythondev_help_Hai_2019-05-16T18:55:54.337600
1,558,032,954.3376
24,049
pythondev
help
<@Hai> <https://curl.trillworks.com>
2019-05-16T19:06:35.338400
Hiroko
pythondev_help_Hiroko_2019-05-16T19:06:35.338400
1,558,033,595.3384
24,050
pythondev
help
i tried it but its eleminating the json
2019-05-16T19:10:51.338900
Hai
pythondev_help_Hai_2019-05-16T19:10:51.338900
1,558,033,851.3389
24,051
pythondev
help
am not sure why it is not showing the json in the POST request
2019-05-16T19:13:29.339700
Hai
pythondev_help_Hai_2019-05-16T19:13:29.339700
1,558,034,009.3397
24,052
pythondev
help
am getting this response but there is no json in this request
2019-05-16T19:14:24.340300
Hai
pythondev_help_Hai_2019-05-16T19:14:24.340300
1,558,034,064.3403
24,053
pythondev
help
import requests response = <http://requests.post|requests.post>('<http://google.com:9090/job/jenkisjobname/build>', auth=('john', 'password'))
2019-05-16T19:14:26.340500
Hai
pythondev_help_Hai_2019-05-16T19:14:26.340500
1,558,034,066.3405
24,054
pythondev
help
looking at the example from <http://python-requests.org|python-requests.org>, I’d say `json` is expected to be a dict ``` &gt;&gt;&gt; import json &gt;&gt;&gt; url = '<https://api.github.com/some/endpoint>' &gt;&gt;&gt; payload = {'some': 'data'} &gt;&gt;&gt; r = <http://requests.post|requests.post>(url, data=json.dumps(payload)) ```
2019-05-16T20:15:51.341600
Brain
pythondev_help_Brain_2019-05-16T20:15:51.341600
1,558,037,751.3416
24,055
pythondev
help
oops, wrong example ``` &gt;&gt;&gt; url = '<https://api.github.com/some/endpoint>' &gt;&gt;&gt; payload = {'some': 'data'} &gt;&gt;&gt; r = <http://requests.post|requests.post>(url, json=payload) ```
2019-05-16T20:16:58.341900
Brain
pythondev_help_Brain_2019-05-16T20:16:58.341900
1,558,037,818.3419
24,056
pythondev
help
<@Hai> ^
2019-05-16T20:17:22.342200
Brain
pythondev_help_Brain_2019-05-16T20:17:22.342200
1,558,037,842.3422
24,057
pythondev
help
None
2019-05-16T21:37:34.343200
Hai
pythondev_help_Hai_2019-05-16T21:37:34.343200
1,558,042,654.3432
24,058
pythondev
help
<@Brain> the json should be in this format '{"parameter": [{"name":"id", "value":"123"}, {"name":"verbosity", "value":"high"}]}'
2019-05-16T21:38:12.344000
Hai
pythondev_help_Hai_2019-05-16T21:38:12.344000
1,558,042,692.344
24,059
pythondev
help
``` <http://requests.post|requests.post>( 'JENKINS_URL/job/JOB_NAME/build', auth=('USER', 'TOKEN'), data='{"parameter": [{"name":"id", "value":"123"}, {"name":"verbosity", "value":"high"}]}' ) ```
2019-05-16T22:19:01.344300
Brain
pythondev_help_Brain_2019-05-16T22:19:01.344300
1,558,045,141.3443
24,060
pythondev
help
or ``` <http://requests.post|requests.post>( 'JENKINS_URL/job/JOB_NAME/build', auth=('USER', 'TOKEN'), json={"parameter": [{"name":"id", "value":"123"}, {"name":"verbosity", "value":"high"}]} ) ```
2019-05-16T22:21:35.344500
Brain
pythondev_help_Brain_2019-05-16T22:21:35.344500
1,558,045,295.3445
24,061
pythondev
help
Bias in machine learnig is often cause due to overfitting or underfitting??
2019-05-16T23:48:14.346100
Ozella
pythondev_help_Ozella_2019-05-16T23:48:14.346100
1,558,050,494.3461
24,062
pythondev
help
Hello, can I call the function of module from another app without `import` but with full name like `get_function('app.utits.something')` ?
2019-05-17T04:43:51.348500
Hassie
pythondev_help_Hassie_2019-05-17T04:43:51.348500
1,558,068,231.3485
24,063
pythondev
help
<@Chester>
2019-05-17T05:24:33.348700
Darcie
pythondev_help_Darcie_2019-05-17T05:24:33.348700
1,558,070,673.3487
24,064
pythondev
help
You haven't really answered my question
2019-05-17T05:30:35.349000
Chester
pythondev_help_Chester_2019-05-17T05:30:35.349000
1,558,071,035.349
24,065
pythondev
help
<@Hassie> Yeah, you can, check out <https://docs.python.org/3/library/importlib.html>
2019-05-17T06:30:30.000500
Nigel
pythondev_help_Nigel_2019-05-17T06:30:30.000500
1,558,074,630.0005
24,066
pythondev
help
I am using Tkinter and i need a way to see which button was pressed
2019-05-17T08:43:04.001700
Rodrick
pythondev_help_Rodrick_2019-05-17T08:43:04.001700
1,558,082,584.0017
24,067
pythondev
help
Like I have:
2019-05-17T08:43:10.001900
Rodrick
pythondev_help_Rodrick_2019-05-17T08:43:10.001900
1,558,082,590.0019
24,068
pythondev
help
```Button(master, text='Exit', command=mainline).grid( row=3, column=0, sticky=W, pady=4) Button(master, text='Send', command=mainline).grid( row=3, column=1, sticky=W, pady=4)```
2019-05-17T08:44:04.002700
Rodrick
pythondev_help_Rodrick_2019-05-17T08:44:04.002700
1,558,082,644.0027
24,069
pythondev
help
They both go to the `mainline` program but I want to see which one is pressed
2019-05-17T08:44:59.003600
Rodrick
pythondev_help_Rodrick_2019-05-17T08:44:59.003600
1,558,082,699.0036
24,070
pythondev
help
and set it to a true and false varable
2019-05-17T08:45:21.004100
Rodrick
pythondev_help_Rodrick_2019-05-17T08:45:21.004100
1,558,082,721.0041
24,071
pythondev
help
A website has this "Review" div whit a lot of information and I want to get the review content, name and the count of the stars with `BeautifulSoup`. But honestly I don't know how to get the count of the stars with the class `icon-star fulled`. I tried with `find` but I can't find with two classes I think. ``` &lt;div class="Review-info"&gt; &lt;div class="Review-name"&gt;&lt;strong&gt;Fernando Ramos&lt;/strong&gt;&lt;/div&gt; &lt;div class="Review-stars"&gt; &lt;i class="icon-star fulled"&gt;&lt;/i&gt; &lt;i class="icon-star fulled"&gt;&lt;/i&gt; &lt;i class="icon-star fulled"&gt;&lt;/i&gt; &lt;i class="icon-star fulled"&gt;&lt;/i&gt; &lt;i class="icon-star empty"&gt;&lt;/i&gt; &lt;/div&gt; &lt;/div&gt; ``` Anyone know how can I do this?
2019-05-17T09:11:25.007100
Dennise
pythondev_help_Dennise_2019-05-17T09:11:25.007100
1,558,084,285.0071
24,072
pythondev
help
Anyone know a way to import a module by path into the global namespace?
2019-05-17T09:25:20.007900
Lorie
pythondev_help_Lorie_2019-05-17T09:25:20.007900
1,558,085,120.0079
24,073
pythondev
help
does `global import x` work
2019-05-17T09:35:44.008200
Rodrick
pythondev_help_Rodrick_2019-05-17T09:35:44.008200
1,558,085,744.0082
24,074
pythondev
help
can you perform a find under the initial find? in a nested loop or conditional of sorts?
2019-05-17T09:50:44.008300
Holly
pythondev_help_Holly_2019-05-17T09:50:44.008300
1,558,086,644.0083
24,075
pythondev
help
I have this ``` review_description = soup.find_all("div", {"class": "Review"}) for reviews in review_description: review = reviews.find( "div", attrs={"class": "Review-description"} ).text.strip() ``` So, you mind another find inside the for?
2019-05-17T09:54:23.008500
Dennise
pythondev_help_Dennise_2019-05-17T09:54:23.008500
1,558,086,863.0085
24,076
pythondev
help
This works: ``` example = """&lt;div class="Review-info"&gt; &lt;div class="Review-name"&gt;&lt;strong&gt;Fernando Ramos&lt;/strong&gt;&lt;/div&gt; &lt;div class="Review-stars"&gt; &lt;i class="icon-star fulled"&gt;&lt;/i&gt; &lt;i class="icon-star fulled"&gt;&lt;/i&gt; &lt;i class="icon-star fulled"&gt;&lt;/i&gt; &lt;i class="icon-star fulled"&gt;&lt;/i&gt; &lt;i class="icon-star empty"&gt;&lt;/i&gt; &lt;/div&gt; &lt;/div&gt;""" data = BeautifulSoup(example, 'html.parser') stars = data.find('div', 'Review-stars') score = stars.find_all('i', 'fulled') ```
2019-05-17T09:56:33.008700
Donette
pythondev_help_Donette_2019-05-17T09:56:33.008700
1,558,086,993.0087
24,077
pythondev
help
Yes! That worked! Thanks so much for that <@Donette> :taco:
2019-05-17T10:01:03.009300
Dennise
pythondev_help_Dennise_2019-05-17T10:01:03.009300
1,558,087,263.0093
24,078
pythondev
help
Hey guys, I'm looking for someone to look over my automation program and give me some pointers, structural notes and such. I'm fairly new to python and I learn as I go.
2019-05-17T10:21:00.010400
Christene
pythondev_help_Christene_2019-05-17T10:21:00.010400
1,558,088,460.0104
24,079
pythondev
help
Question: Is there something similar to pipenv or virtualenvs that lets you install another python version?
2019-05-17T10:28:49.011000
Rubie
pythondev_help_Rubie_2019-05-17T10:28:49.011000
1,558,088,929.011
24,080
pythondev
help
<@Rubie> <https://github.com/pyenv/pyenv>
2019-05-17T10:29:14.011300
Nigel
pythondev_help_Nigel_2019-05-17T10:29:14.011300
1,558,088,954.0113
24,081
pythondev
help
<@Christene> if it is short-ish you can use the snippet feature here to show it for feedback. If it is longer/multiple files then throw a link to the git repository
2019-05-17T10:42:31.012400
Clemmie
pythondev_help_Clemmie_2019-05-17T10:42:31.012400
1,558,089,751.0124
24,082
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-05-17T10:42:33.012500
Leana
pythondev_help_Leana_2019-05-17T10:42:33.012500
1,558,089,753.0125
24,083
pythondev
help
<https://github.com/Matt5032/Automated-Task-Adder>
2019-05-17T11:02:50.012700
Christene
pythondev_help_Christene_2019-05-17T11:02:50.012700
1,558,090,970.0127
24,084
pythondev
help
First working project, I have no concept of how structurally it should be done. Feedback is appreciated
2019-05-17T11:03:29.013600
Christene
pythondev_help_Christene_2019-05-17T11:03:29.013600
1,558,091,009.0136
24,085
pythondev
help
my first question is your imports in the ui portion
2019-05-17T11:08:58.013900
Holly
pythondev_help_Holly_2019-05-17T11:08:58.013900
1,558,091,338.0139
24,086
pythondev
help
```python from tkinter import * from tkinter import messagebox from tkinter import ttk as ttk ```
2019-05-17T11:09:16.014300
Holly
pythondev_help_Holly_2019-05-17T11:09:16.014300
1,558,091,356.0143
24,087
pythondev
help
whoops, the python at the top is a miss type
2019-05-17T11:09:24.014600
Holly
pythondev_help_Holly_2019-05-17T11:09:24.014600
1,558,091,364.0146
24,088
pythondev
help
if you're importing *
2019-05-17T11:09:27.014800
Holly
pythondev_help_Holly_2019-05-17T11:09:27.014800
1,558,091,367.0148
24,089
pythondev
help
messagebox and tkk are already imported
2019-05-17T11:09:35.015100
Holly
pythondev_help_Holly_2019-05-17T11:09:35.015100
1,558,091,375.0151
24,090
pythondev
help
DM me Ryan
2019-05-17T11:09:39.015200
Christene
pythondev_help_Christene_2019-05-17T11:09:39.015200
1,558,091,379.0152
24,091
pythondev
help
thanks
2019-05-17T11:25:41.015400
Hassie
pythondev_help_Hassie_2019-05-17T11:25:41.015400
1,558,092,341.0154
24,092
pythondev
help
Heya
2019-05-17T14:48:05.016200
Gia
pythondev_help_Gia_2019-05-17T14:48:05.016200
1,558,104,485.0162
24,093
pythondev
help
What is the best library in python to create and send a email with HTML INLINE
2019-05-17T14:48:17.016600
Gia
pythondev_help_Gia_2019-05-17T14:48:17.016600
1,558,104,497.0166
24,094
pythondev
help
If i'm looking for duplicates in a excel column of data, is there a class of some kind I can use for that?
2019-05-17T14:57:15.017300
Walton
pythondev_help_Walton_2019-05-17T14:57:15.017300
1,558,105,035.0173
24,095
pythondev
help
i use openpyxl now. working on my little LDAP query script and one thing that someone here helped me realised was, how do I know i won't be submitting two UID of the same name, not just in LDAP.
2019-05-17T14:58:00.018200
Walton
pythondev_help_Walton_2019-05-17T14:58:00.018200
1,558,105,080.0182
24,096
pythondev
help
so if I have two TimSmiths in the UID column.... i gotta nip that in the bud
2019-05-17T14:58:22.018700
Walton
pythondev_help_Walton_2019-05-17T14:58:22.018700
1,558,105,102.0187
24,097
pythondev
help
did you load them in as python object? like a list of tuples?
2019-05-17T15:00:08.019100
Bethany
pythondev_help_Bethany_2019-05-17T15:00:08.019100
1,558,105,208.0191
24,098
pythondev
help
oh, I should state that i'm a noob. So to me, a tuple sounds like a yummy type of girlscout cookie.
2019-05-17T15:04:22.019600
Walton
pythondev_help_Walton_2019-05-17T15:04:22.019600
1,558,105,462.0196
24,099
pythondev
help
easiest way to remove dupes would be to use a set
2019-05-17T15:05:00.020000
Hiroko
pythondev_help_Hiroko_2019-05-17T15:05:00.020000
1,558,105,500.02
24,100
pythondev
help
what does yourcode look like?
2019-05-17T15:05:10.020400
Bethany
pythondev_help_Bethany_2019-05-17T15:05:10.020400
1,558,105,510.0204
24,101
pythondev
help
looked up Tuple! i'm caught up
2019-05-17T15:05:14.020600
Walton
pythondev_help_Walton_2019-05-17T15:05:14.020600
1,558,105,514.0206
24,102
pythondev
help
i can share my code... I just hope you haven't had lunch yet :slightly_smiling_face:
2019-05-17T15:05:33.021000
Walton
pythondev_help_Walton_2019-05-17T15:05:33.021000
1,558,105,533.021
24,103
pythondev
help
go ahead, we don't bite
2019-05-17T15:05:41.021200
Bethany
pythondev_help_Bethany_2019-05-17T15:05:41.021200
1,558,105,541.0212
24,104
pythondev
help
waiting on a long process
2019-05-17T15:05:55.021500
Bethany
pythondev_help_Bethany_2019-05-17T15:05:55.021500
1,558,105,555.0215
24,105
pythondev
help
And in the portion where my LDAP Loop is, I'm going to add the check for a double entry from column 2.
2019-05-17T15:11:56.022000
Walton
pythondev_help_Walton_2019-05-17T15:11:56.022000
1,558,105,916.022
24,106
pythondev
help
None
2019-05-17T15:12:29.022400
Walton
pythondev_help_Walton_2019-05-17T15:12:29.022400
1,558,105,949.0224
24,107
pythondev
help
Sorry for the delete, I had to remove private info
2019-05-17T15:12:48.022900
Walton
pythondev_help_Walton_2019-05-17T15:12:48.022900
1,558,105,968.0229
24,108
pythondev
help
you might find it a lot easier to work with pandas dataframes
2019-05-17T15:16:07.023200
Bethany
pythondev_help_Bethany_2019-05-17T15:16:07.023200
1,558,106,167.0232
24,109
pythondev
help
then you do whatever you want to the data frame, and read/write to excel at the beginning/end
2019-05-17T15:16:37.024100
Bethany
pythondev_help_Bethany_2019-05-17T15:16:37.024100
1,558,106,197.0241
24,110
pythondev
help
Not-Python Recommendation Request: I need to get a monitoring solution up and running, both for existing clients and eventual personal project monitoring. I'd like to avoid the problems everyone says Nagios has, but I honestly don't have enough experience with monitoring in general to make a good evaluation of the options out there. I also don't want to lock myself into a terrible choice because it looks shiny. Can I get some recommendations for what you've personally used in the past and what you think the good options are? "Definitely avoid" recommendations are also helpful.
2019-05-17T15:20:06.027700
Carmen
pythondev_help_Carmen_2019-05-17T15:20:06.027700
1,558,106,406.0277
24,111
pythondev
help
And to bring it back around to this particular Slack, if I can write the more complicated checks in Python, that would be a giant plus.
2019-05-17T15:20:29.028300
Carmen
pythondev_help_Carmen_2019-05-17T15:20:29.028300
1,558,106,429.0283
24,112
pythondev
help
people seem to like Datadog
2019-05-17T15:21:07.029100
Bethany
pythondev_help_Bethany_2019-05-17T15:21:07.029100
1,558,106,467.0291
24,113
pythondev
help
Unsure of what "problems" people are referencing with Nagios, but i've had nothing but great experience using their product, and i'm talking about the free version, not XI
2019-05-17T15:21:17.029300
Walton
pythondev_help_Walton_2019-05-17T15:21:17.029300
1,558,106,477.0293
24,114
pythondev
help
I dont know what your monitoring nor the platform however
2019-05-17T15:21:32.029600
Walton
pythondev_help_Walton_2019-05-17T15:21:32.029600
1,558,106,492.0296
24,115
pythondev
help
Platform will be Linux.
2019-05-17T15:21:45.030000
Carmen
pythondev_help_Carmen_2019-05-17T15:21:45.030000
1,558,106,505.03
24,116
pythondev
help
<@Bethany> suggestion for a decent PANDA tutorial?
2019-05-17T15:21:52.030300
Walton
pythondev_help_Walton_2019-05-17T15:21:52.030300
1,558,106,512.0303
24,117
pythondev
help
Monitoring will be everything from server status to app statuses and health checks.
2019-05-17T15:22:01.031000
Carmen
pythondev_help_Carmen_2019-05-17T15:22:01.031000
1,558,106,521.031
24,118
pythondev
help
<@Carmen> what's the infrastructure?
2019-05-17T15:22:14.031700
Bethany
pythondev_help_Bethany_2019-05-17T15:22:14.031700
1,558,106,534.0317
24,119
pythondev
help
like a linux box in house?
2019-05-17T15:22:26.032400
Bethany
pythondev_help_Bethany_2019-05-17T15:22:26.032400
1,558,106,546.0324
24,120