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
None
2019-06-04T04:06:30.010600
Derek
pythondev_help_Derek_2019-06-04T04:06:30.010600
1,559,621,190.0106
26,621
pythondev
help
Browsing to localhost:8000/editblog/1 works indicating my editblog view is functional
2019-06-04T04:07:25.011300
Derek
pythondev_help_Derek_2019-06-04T04:07:25.011300
1,559,621,245.0113
26,622
pythondev
help
I’m clearly missing something related to the line creating the link to edit each post on index.html: `<a href="{% url 'blogs:editblog' entry.id %}">edit entry</a>`
2019-06-04T04:09:28.011900
Derek
pythondev_help_Derek_2019-06-04T04:09:28.011900
1,559,621,368.0119
26,623
pythondev
help
which is correct with `entry.id` or `post.id` ?
2019-06-04T04:17:02.012600
Ike
pythondev_help_Ike_2019-06-04T04:17:02.012600
1,559,621,822.0126
26,624
pythondev
help
None
2019-06-04T04:20:25.013100
Derek
pythondev_help_Derek_2019-06-04T04:20:25.013100
1,559,622,025.0131
26,625
pythondev
help
it is inside a for loop using `post` , so `post.id` seems to be correct.
2019-06-04T04:20:52.013600
Ike
pythondev_help_Ike_2019-06-04T04:20:52.013600
1,559,622,052.0136
26,626
pythondev
help
I suspect I need to modify the return on the editblog view function to `return HttpResponseRedirect(reverse('blogs:index', args=[entry.id]))`
2019-06-04T04:20:58.013800
Derek
pythondev_help_Derek_2019-06-04T04:20:58.013800
1,559,622,058.0138
26,627
pythondev
help
That doesn’t seem to help though :disappointed:
2019-06-04T04:21:11.014100
Derek
pythondev_help_Derek_2019-06-04T04:21:11.014100
1,559,622,071.0141
26,628
pythondev
help
Ahhhh that works, I totally see what’s happening now
2019-06-04T04:22:06.014400
Derek
pythondev_help_Derek_2019-06-04T04:22:06.014400
1,559,622,126.0144
26,629
pythondev
help
Using different variables in my view functions has made it confusing
2019-06-04T04:22:33.014800
Derek
pythondev_help_Derek_2019-06-04T04:22:33.014800
1,559,622,153.0148
26,630
pythondev
help
Thank you <@Ike>!!! :pray:
2019-06-04T04:22:48.015200
Derek
pythondev_help_Derek_2019-06-04T04:22:48.015200
1,559,622,168.0152
26,631
pythondev
help
I actually didn’t need to do this, as I was not trying to return to a particular page that referenced the entry.id
2019-06-04T04:24:34.015500
Derek
pythondev_help_Derek_2019-06-04T04:24:34.015500
1,559,622,274.0155
26,632
pythondev
help
this is the code.. can you help to learn how to call post api's
2019-06-04T04:28:13.015700
Adalberto
pythondev_help_Adalberto_2019-06-04T04:28:13.015700
1,559,622,493.0157
26,633
pythondev
help
Hi, I'm trying to scrape the tag of the youtube videos using google API in python. tags = item["snippet"]["tags"] ( This will scrape the tags available in the video) I have list of video ids and passing into these above parameter For some videos I'm getting the tag data and inbetween loops stops aburptly and throwing a KeyError: 'tags' My doubt is like some videos doesn't have tags? So it is throwing the keyerror or I'm doing in a wrong way?
2019-06-04T06:53:23.016600
Roxie
pythondev_help_Roxie_2019-06-04T06:53:23.016600
1,559,631,203.0166
26,634
pythondev
help
None
2019-06-04T06:58:07.017400
Faith
pythondev_help_Faith_2019-06-04T06:58:07.017400
1,559,631,487.0174
26,635
pythondev
help
Hi <@Roxie> just a friendly reminder to not immediately cross post, it’s best to wait a little while for a response before posting elsewhere. I’ve deleted the posts in the other channels for now.
2019-06-04T06:58:17.017500
Faith
pythondev_help_Faith_2019-06-04T06:58:17.017500
1,559,631,497.0175
26,636
pythondev
help
Apologies for that. I thought to communicate with the different people in different channels. If that is a wrong way to do apologies me
2019-06-04T07:11:01.018000
Roxie
pythondev_help_Roxie_2019-06-04T07:11:01.018000
1,559,632,261.018
26,637
pythondev
help
No worries we understand :slightly_smiling_face:
2019-06-04T07:21:36.018200
Faith
pythondev_help_Faith_2019-06-04T07:21:36.018200
1,559,632,896.0182
26,638
pythondev
help
Most people are in multiple channels - help has almost everyone in it
2019-06-04T07:21:58.018400
Faith
pythondev_help_Faith_2019-06-04T07:21:58.018400
1,559,632,918.0184
26,639
pythondev
help
Ok if I have any queries in future will pose in <#C07EFMZ1N|help>
2019-06-04T07:26:46.019500
Roxie
pythondev_help_Roxie_2019-06-04T07:26:46.019500
1,559,633,206.0195
26,640
pythondev
help
I'm trying to write a temporary csv file and I'm using the tempfile module for that. It has a NamedTemporaryFile function (<https://docs.python.org/3/library/tempfile.html#tempfile.NamedTemporaryFile>). However, I want to attach the file to an email because another party has to process it, and therefore the filename should be consistent. The NamedTemporaryFile has prefix/suffix parameters, but still also creates a random string as filename. Does anyone know how to let it just your own filename without the random name string? The TemporaryFile (not NamedTemporaryFile) function doesnt have a name attirbute so I can't use it in other functions
2019-06-04T07:28:08.021300
Dawn
pythondev_help_Dawn_2019-06-04T07:28:08.021300
1,559,633,288.0213
26,641
pythondev
help
<@Dawn> <https://stackoverflow.com/questions/10547859/rename-python-tempfile>
2019-06-04T07:39:07.021700
Hiroko
pythondev_help_Hiroko_2019-06-04T07:39:07.021700
1,559,633,947.0217
26,642
pythondev
help
but then the whole idea of having a temp file is gone...
2019-06-04T07:58:41.022200
Dawn
pythondev_help_Dawn_2019-06-04T07:58:41.022200
1,559,635,121.0222
26,643
pythondev
help
it should be removed automatically after sending. so i have a send email function within the with tempfile as: context provider
2019-06-04T07:59:01.022700
Dawn
pythondev_help_Dawn_2019-06-04T07:59:01.022700
1,559,635,141.0227
26,644
pythondev
help
I feel like you should use a temp file because you shouldn’t really care about its filename. You should care about how it’s named when attached to the email. <https://stackoverflow.com/questions/29239572/python-email-mime-attachment-filename>
2019-06-04T08:06:24.024200
Chester
pythondev_help_Chester_2019-06-04T08:06:24.024200
1,559,635,584.0242
26,645
pythondev
help
<@Dawn> ^
2019-06-04T08:06:50.024500
Chester
pythondev_help_Chester_2019-06-04T08:06:50.024500
1,559,635,610.0245
26,646
pythondev
help
<@Roxie> I just used it, and found that some videos have no tags, as you mentioned. It's necessary to check in advance if tags are contained :smile:
2019-06-04T08:23:41.024900
Ike
pythondev_help_Ike_2019-06-04T08:23:41.024900
1,559,636,621.0249
26,647
pythondev
help
<@Roxie> It would be nice if you could write the details of the error here : )
2019-06-04T08:54:44.025200
Ike
pythondev_help_Ike_2019-06-04T08:54:44.025200
1,559,638,484.0252
26,648
pythondev
help
Adding onto what <@Ike> said, you can also use `some_dict.get("my key", None)`, and it will get you either the value of that key, or `None` if that key doesn't exist. You can put anything as the default though
2019-06-04T09:04:57.025400
Ashley
pythondev_help_Ashley_2019-06-04T09:04:57.025400
1,559,639,097.0254
26,649
pythondev
help
Hi, now I'm facing different issue. My request exceeded.
2019-06-04T09:21:39.026100
Roxie
pythondev_help_Roxie_2019-06-04T09:21:39.026100
1,559,640,099.0261
26,650
pythondev
help
&lt;HttpError 403 when requesting <https://www.googleapis.com/youtube/v3/commentThreads?part=id%2Csnippet&amp;maxResults=100&amp;videoId=GxWLe7mONMg&amp;textFormat=plainText&amp;key=AIzaSyCOrBRZ5Mp3S7e5JcADlCgKiDNDP6gPqqQ&amp;alt=json> returned "The request cannot be completed because you have exceeded your &lt;a href="/youtube/v3/getting-started#quota"&gt;quota&lt;/a&gt;."&gt;
2019-06-04T09:21:41.026300
Roxie
pythondev_help_Roxie_2019-06-04T09:21:41.026300
1,559,640,101.0263
26,651
pythondev
help
Is there any way to increase this?
2019-06-04T09:21:56.026500
Roxie
pythondev_help_Roxie_2019-06-04T09:21:56.026500
1,559,640,116.0265
26,652
pythondev
help
I have tried editing the quotas which is available in the console
2019-06-04T09:24:41.026700
Roxie
pythondev_help_Roxie_2019-06-04T09:24:41.026700
1,559,640,281.0267
26,653
pythondev
help
isn't that more for running the whole think? my primary problem is that while editing a file pycharm gives me a yellow dotted line bellow variable names if they are unresolved references. i would prefer not having to run all unit tests to verify whether i made a typo in a variable.
2019-06-04T09:29:11.027100
Christina
pythondev_help_Christina_2019-06-04T09:29:11.027100
1,559,640,551.0271
26,654
pythondev
help
This should answer your question <https://developers.google.com/youtube/v3/getting-started>
2019-06-04T09:33:23.027300
Ashley
pythondev_help_Ashley_2019-06-04T09:33:23.027300
1,559,640,803.0273
26,655
pythondev
help
Hi thanks much for the reference
2019-06-04T09:37:24.027600
Roxie
pythondev_help_Roxie_2019-06-04T09:37:24.027600
1,559,641,044.0276
26,656
pythondev
help
I have one more query. Some videos comments are disabled, how can I set the condition same like tags?
2019-06-04T09:38:01.027800
Roxie
pythondev_help_Roxie_2019-06-04T09:38:01.027800
1,559,641,081.0278
26,657
pythondev
help
How can I check the condition if the comments are disabled
2019-06-04T09:38:43.028000
Roxie
pythondev_help_Roxie_2019-06-04T09:38:43.028000
1,559,641,123.028
26,658
pythondev
help
i am quite sure that google has an excellent documentation. doesn't it say? have you tried googling it? Alternatively, what does the API return regarding comments when they are disabled? :slightly_smiling_face: can't you make a check some how
2019-06-04T09:40:52.028300
Christina
pythondev_help_Christina_2019-06-04T09:40:52.028300
1,559,641,252.0283
26,659
pythondev
help
The response from the API that you're dealing with is a dict once you've parsed it. You can apply logic to it and anything inside it just like any other form of data
2019-06-04T09:41:55.028500
Ashley
pythondev_help_Ashley_2019-06-04T09:41:55.028500
1,559,641,315.0285
26,660
pythondev
help
If there's something in that dict that tells you comments are disabled, you can look at that
2019-06-04T09:42:26.028700
Ashley
pythondev_help_Ashley_2019-06-04T09:42:26.028700
1,559,641,346.0287
26,661
pythondev
help
Even if it doesn't explicitly say something like "comments disabled"
2019-06-04T09:42:44.028900
Ashley
pythondev_help_Ashley_2019-06-04T09:42:44.028900
1,559,641,364.0289
26,662
pythondev
help
<@Christina> Yup that is not a feature from API
2019-06-04T10:18:04.029400
Roxie
pythondev_help_Roxie_2019-06-04T10:18:04.029400
1,559,643,484.0294
26,663
pythondev
help
<@Ashley> I applied a condition like if the comment count is 0 assume that comments are disabled
2019-06-04T10:19:03.029600
Roxie
pythondev_help_Roxie_2019-06-04T10:19:03.029600
1,559,643,543.0296
26,664
pythondev
help
Is that right way to follow
2019-06-04T10:19:12.029800
Roxie
pythondev_help_Roxie_2019-06-04T10:19:12.029800
1,559,643,552.0298
26,665
pythondev
help
My point was essentially what Salmon explained way better. the 'right way' is just the best way to solve your problem. Whether your solution is sufficient, depends on the problem you are trying to solve. If it is system critical to know whether they are disabled or that no one has commented on it, I would probably investigate how to make sure I got the correct value. if it is less relevant, then your solution seems fine :slightly_smiling_face:
2019-06-04T10:24:35.030200
Christina
pythondev_help_Christina_2019-06-04T10:24:35.030200
1,559,643,875.0302
26,666
pythondev
help
Not really. I have this in my `vimrc` `call neomake#configure#automake('nrwi', 500)` which essentially calls neomake anytime a change happens, this will highlight errors (in different ways depending on how it is set up and what version of vim/neovim you are using. )
2019-06-04T10:29:59.030500
Lashawna
pythondev_help_Lashawna_2019-06-04T10:29:59.030500
1,559,644,199.0305
26,667
pythondev
help
oh fair enough. what is 'nrwi' ? Narwasi Railway Station?
2019-06-04T10:34:18.030900
Christina
pythondev_help_Christina_2019-06-04T10:34:18.030900
1,559,644,458.0309
26,668
pythondev
help
I believe it's just `normal read write insert` as in do this action 500 miliseconds after any of these things happen. Adjust the `500` to whatever you like
2019-06-04T10:54:24.031100
Lashawna
pythondev_help_Lashawna_2019-06-04T10:54:24.031100
1,559,645,664.0311
26,669
pythondev
help
oh cool, thanks! :slightly_smiling_face:
2019-06-04T11:16:04.031300
Christina
pythondev_help_Christina_2019-06-04T11:16:04.031300
1,559,646,964.0313
26,670
pythondev
help
Do I have this try except block correct with the retur statement or do I not need them at all?
2019-06-04T11:23:36.032000
Adolfo
pythondev_help_Adolfo_2019-06-04T11:23:36.032000
1,559,647,416.032
26,671
pythondev
help
``` try: self.influx.create_database(INFLUXDB_DBNAME) self.influx.write_points(json_body) return True except: logger.error("Failed to send metric to InfluxDB " "host {0}:{1} database {2}!".format(str(self.host), str(self.port), self.dbname)) return False ```
2019-06-04T11:23:48.032500
Adolfo
pythondev_help_Adolfo_2019-06-04T11:23:48.032500
1,559,647,428.0325
26,672
pythondev
help
<@Adolfo> what does the function do?
2019-06-04T11:24:12.033100
Ashley
pythondev_help_Ashley_2019-06-04T11:24:12.033100
1,559,647,452.0331
26,673
pythondev
help
I assume the indentation error is a copy/paste artifact.
2019-06-04T11:24:16.033200
Clemmie
pythondev_help_Clemmie_2019-06-04T11:24:16.033200
1,559,647,456.0332
26,674
pythondev
help
yea thats copy pasta error on slack
2019-06-04T11:24:25.033600
Adolfo
pythondev_help_Adolfo_2019-06-04T11:24:25.033600
1,559,647,465.0336
26,675
pythondev
help
your returns are ok, but it is bad form to use a naked `except`. You want to catch the errors you expect
2019-06-04T11:24:39.034200
Clemmie
pythondev_help_Clemmie_2019-06-04T11:24:39.034200
1,559,647,479.0342
26,676
pythondev
help
it creates a DB connection and writes to db
2019-06-04T11:24:41.034400
Adolfo
pythondev_help_Adolfo_2019-06-04T11:24:41.034400
1,559,647,481.0344
26,677
pythondev
help
seems like it doesn't need to return anything at all
2019-06-04T11:24:46.034600
Ashley
pythondev_help_Ashley_2019-06-04T11:24:46.034600
1,559,647,486.0346
26,678
pythondev
help
a naked one will hide other errors
2019-06-04T11:24:53.034800
Clemmie
pythondev_help_Clemmie_2019-06-04T11:24:53.034800
1,559,647,493.0348
26,679
pythondev
help
if it throws an error, you can know that the write failed
2019-06-04T11:25:07.035400
Ashley
pythondev_help_Ashley_2019-06-04T11:25:07.035400
1,559,647,507.0354
26,680
pythondev
help
I assume it is trying to return that the write happened
2019-06-04T11:25:11.035600
Clemmie
pythondev_help_Clemmie_2019-06-04T11:25:11.035600
1,559,647,511.0356
26,681
pythondev
help
right, returned that the write happened
2019-06-04T11:25:31.036300
Adolfo
pythondev_help_Adolfo_2019-06-04T11:25:31.036300
1,559,647,531.0363
26,682
pythondev
help
if no error is thrown, then you can assume it worked
2019-06-04T11:25:34.036500
Ashley
pythondev_help_Ashley_2019-06-04T11:25:34.036500
1,559,647,534.0365
26,683
pythondev
help
but this is correct if you want to capture that logic in one place, and not catch it at the calling location
2019-06-04T11:26:14.037100
Clemmie
pythondev_help_Clemmie_2019-06-04T11:26:14.037100
1,559,647,574.0371
26,684
pythondev
help
but this is deducible from the exception. Python is all about `ask for forgiveness rather than permission` - afaik python is optimized regarding exceptions that you can essentially use them as flags to parse around. but your solution is fine but i would probably add the exception that can be cast by `influx`. This except would also get caught if for instance the system tries to shut down the program gracefully, meaning the program wont shut down but rather tell your system that the db write failed.
2019-06-04T11:28:20.040100
Christina
pythondev_help_Christina_2019-06-04T11:28:20.040100
1,559,647,700.0401
26,685
pythondev
help
hey all, am I able to write a better regex to confirm if a string starts with with a specific format like so? ``` ^(CHE.*L)([\s\W\S]+)$ ``` And the example string is like so; ``` CHE_SEF10L_awrqwrqw132414qwrq_qwrq.xml ```
2019-06-04T11:29:17.041000
Arturo
pythondev_help_Arturo_2019-06-04T11:29:17.041000
1,559,647,757.041
26,686
pythondev
help
Does anyone know any good sources on building criterions for pypika? I need to build out a WHERE clause that adds/removes comparisons based on some conditionals.
2019-06-04T11:32:08.042400
Maybelle
pythondev_help_Maybelle_2019-06-04T11:32:08.042400
1,559,647,928.0424
26,687
pythondev
help
that looks very strange
2019-06-04T11:35:10.044900
Alene
pythondev_help_Alene_2019-06-04T11:35:10.044900
1,559,648,110.0449
26,688
pythondev
help
so you want things that start with `CHE&lt;random stuff&gt;L`, followed by any amount of either spaces, non spaces, or non word characters?
2019-06-04T11:35:20.045200
Alene
pythondev_help_Alene_2019-06-04T11:35:20.045200
1,559,648,120.0452
26,689
pythondev
help
it's mostly the `[\s\W\S]` that's confusing
2019-06-04T11:35:31.045600
Alene
pythondev_help_Alene_2019-06-04T11:35:31.045600
1,559,648,131.0456
26,690
pythondev
help
<@Adolfo> I'd guess that you have some flow control where you call that function based on the return value. I might try handling the exception there instead in that function. That way there isn't redundant flow control and it's explicitely stated what's happening at that level and isn't something like: ``` if self.do_thing(): mroe stuff else: other stuff ``` where it doesn't say why `other stuff` was done, and/or the name of `do_thing` doesn't really warrant a T/F response
2019-06-04T11:35:47.046000
Ashley
pythondev_help_Ashley_2019-06-04T11:35:47.046000
1,559,648,147.046
26,691
pythondev
help
yea correct. I agree Salmon, im going to go with that approach
2019-06-04T11:36:23.046400
Adolfo
pythondev_help_Adolfo_2019-06-04T11:36:23.046400
1,559,648,183.0464
26,692
pythondev
help
yeah, was thinking maybe I need to do use positive lookaheads or negative look behinds. But now figured out I can invoke a python script and list dir and check if the string starts with my desired 'CHE_XXXL'
2019-06-04T11:36:56.046500
Arturo
pythondev_help_Arturo_2019-06-04T11:36:56.046500
1,559,648,216.0465
26,693
pythondev
help
Hello, I'm looking to integrate appium with pycharm where my iOS and Android tests can live. Currently, the IDE for python code is Pycharm and I've installed Appium Studio and Appium Server. Would anyone know how to integrate appium with Pycharm so I can write my automated tests there while using the inspector in appium to capture the elements ?
2019-06-04T12:48:54.049500
Kandice
pythondev_help_Kandice_2019-06-04T12:48:54.049500
1,559,652,534.0495
26,694
pythondev
help
appium has a doc for integrating with pycharm. It is for mac, but hopefully the process is similar if you have another OS <https://discuss.appium.io/t/appium-setup-pycharm-ce-appium-python-client-pytest-in-your-mac/18935>
2019-06-04T12:51:07.050200
Clemmie
pythondev_help_Clemmie_2019-06-04T12:51:07.050200
1,559,652,667.0502
26,695
pythondev
help
I do use a mac for all of my testing. Thanks huge for this!
2019-06-04T12:52:31.050800
Kandice
pythondev_help_Kandice_2019-06-04T12:52:31.050800
1,559,652,751.0508
26,696
pythondev
help
<@Clemmie>
2019-06-04T12:52:42.051100
Kandice
pythondev_help_Kandice_2019-06-04T12:52:42.051100
1,559,652,762.0511
26,697
pythondev
help
Hi, I have a task where I have to send a document for approval. This document is to be sent to the client. If the approval is done I send the document immediately. The approver has 24 hrs to approve, if he doesn't approve the document is sent automatically. Is there some way I can achieve this in Django. Now we may have many similar documents lined up. How should I plan events into the future? Any help will be appreciated.
2019-06-04T12:53:42.051400
Maryland
pythondev_help_Maryland_2019-06-04T12:53:42.051400
1,559,652,822.0514
26,698
pythondev
help
are you stuck on a specific piece?
2019-06-04T14:15:23.051900
Holly
pythondev_help_Holly_2019-06-04T14:15:23.051900
1,559,657,723.0519
26,699
pythondev
help
i trying to run my program from the console, but i get an error saying module isnt found however if i run it in pycharm, it runs just fine? any suggestions?
2019-06-04T16:09:45.052900
Nenita
pythondev_help_Nenita_2019-06-04T16:09:45.052900
1,559,664,585.0529
26,700
pythondev
help
Working directory likely to be different, so import paths are different
2019-06-04T16:10:43.053300
Raven
pythondev_help_Raven_2019-06-04T16:10:43.053300
1,559,664,643.0533
26,701
pythondev
help
i kinda figured that
2019-06-04T16:10:57.053500
Nenita
pythondev_help_Nenita_2019-06-04T16:10:57.053500
1,559,664,657.0535
26,702
pythondev
help
So, what haven't you figured?
2019-06-04T16:12:05.053700
Raven
pythondev_help_Raven_2019-06-04T16:12:05.053700
1,559,664,725.0537
26,703
pythondev
help
well im looking over it and getting kinda confused.
2019-06-04T16:13:10.054100
Nenita
pythondev_help_Nenita_2019-06-04T16:13:10.054100
1,559,664,790.0541
26,704
pythondev
help
i honestly dont know what ot change to fix this
2019-06-04T16:13:18.054600
Nenita
pythondev_help_Nenita_2019-06-04T16:13:18.054600
1,559,664,798.0546
26,705
pythondev
help
are you running a virtual env in pycharm
2019-06-04T16:14:27.054900
Holly
pythondev_help_Holly_2019-06-04T16:14:27.054900
1,559,664,867.0549
26,706
pythondev
help
its possible that library is in your virtualenv and not on your base system
2019-06-04T16:14:39.055400
Holly
pythondev_help_Holly_2019-06-04T16:14:39.055400
1,559,664,879.0554
26,707
pythondev
help
i.e. if you enter that virtual env from the command line it'd probably work
2019-06-04T16:14:54.055700
Holly
pythondev_help_Holly_2019-06-04T16:14:54.055700
1,559,664,894.0557
26,708
pythondev
help
is there a way to set a not parameter in regex? I've got a capture group that matches something, but I need a not before it saying basically "go to the second group if it doesn't match this group"
2019-06-04T16:21:28.056400
Holly
pythondev_help_Holly_2019-06-04T16:21:28.056400
1,559,665,288.0564
26,709
pythondev
help
example: I need a 10 digit number that starts with 3 or 7, but the digits in it can't repeat 3 or more times
2019-06-04T16:21:49.056900
Holly
pythondev_help_Holly_2019-06-04T16:21:49.056900
1,559,665,309.0569
26,710
pythondev
help
I got the matching part down with the number in general, its just the not part I'm struggling to figure out
2019-06-04T16:22:06.057300
Holly
pythondev_help_Holly_2019-06-04T16:22:06.057300
1,559,665,326.0573
26,711
pythondev
help
<@Nenita> how are you running it from the command line?
2019-06-04T16:26:02.057600
Ashley
pythondev_help_Ashley_2019-06-04T16:26:02.057600
1,559,665,562.0576
26,712
pythondev
help
sorry for the late reply. was showing co workers something.
2019-06-04T16:26:18.057900
Nenita
pythondev_help_Nenita_2019-06-04T16:26:18.057900
1,559,665,578.0579
26,713
pythondev
help
i just cmd to the directory and type in my py filename
2019-06-04T16:26:27.058200
Nenita
pythondev_help_Nenita_2019-06-04T16:26:27.058200
1,559,665,587.0582
26,714
pythondev
help
try this instead
2019-06-04T16:26:40.058400
Ashley
pythondev_help_Ashley_2019-06-04T16:26:40.058400
1,559,665,600.0584
26,715
pythondev
help
`python -m filename`
2019-06-04T16:26:55.058700
Ashley
pythondev_help_Ashley_2019-06-04T16:26:55.058700
1,559,665,615.0587
26,716
pythondev
help
don't use `.py` though
2019-06-04T16:27:00.058900
Ashley
pythondev_help_Ashley_2019-06-04T16:27:00.058900
1,559,665,620.0589
26,717
pythondev
help
same error
2019-06-04T16:28:14.059100
Nenita
pythondev_help_Nenita_2019-06-04T16:28:14.059100
1,559,665,694.0591
26,718
pythondev
help
is this inside a larger package?
2019-06-04T16:28:39.059400
Ashley
pythondev_help_Ashley_2019-06-04T16:28:39.059400
1,559,665,719.0594
26,719
pythondev
help
None
2019-06-04T16:30:14.059500
Nenita
pythondev_help_Nenita_2019-06-04T16:30:14.059500
1,559,665,814.0595
26,720