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 | ```#!/usr/bin/env python
import requests
import json
url= 'https://x/rest/login'
payload = {"username": "admin",
"password": "x" ,
"Content-Type":"application/json",
}
headers = { }
r = <http://requests.post|requests.post>(url, data=json.dumps(payload), verify=False )
print(r.content)``` | 2017-10-13T11:46:03.000450 | Burma | pythondev_help_Burma_2017-10-13T11:46:03.000450 | 1,507,895,163.00045 | 96,803 |
pythondev | help | you don’t need to use json.dumps | 2017-10-13T11:46:27.000699 | Meg | pythondev_help_Meg_2017-10-13T11:46:27.000699 | 1,507,895,187.000699 | 96,804 |
pythondev | help | just `data = payload` | 2017-10-13T11:46:35.000186 | Meg | pythondev_help_Meg_2017-10-13T11:46:35.000186 | 1,507,895,195.000186 | 96,805 |
pythondev | help | <http://docs.python-requests.org/en/master/user/quickstart/#more-complicated-post-requests> | 2017-10-13T11:47:10.000454 | Meg | pythondev_help_Meg_2017-10-13T11:47:10.000454 | 1,507,895,230.000454 | 96,806 |
pythondev | help | from that page
```>>> payload = {'key1': 'value1', 'key2': 'value2'}
>>> r = <http://requests.post|requests.post>("<http://httpbin.org/post>", data=payload)
>>> print(r.text)``` | 2017-10-13T11:47:32.000239 | Meg | pythondev_help_Meg_2017-10-13T11:47:32.000239 | 1,507,895,252.000239 | 96,807 |
pythondev | help | basically I'm making a post requests to a api and expecting it to return a token request string | 2017-10-13T11:47:35.000087 | Burma | pythondev_help_Burma_2017-10-13T11:47:35.000087 | 1,507,895,255.000087 | 96,808 |
pythondev | help | in json | 2017-10-13T11:47:38.000258 | Burma | pythondev_help_Burma_2017-10-13T11:47:38.000258 | 1,507,895,258.000258 | 96,809 |
pythondev | help | Thanks I'll Give it a kick | 2017-10-13T11:48:18.000099 | Burma | pythondev_help_Burma_2017-10-13T11:48:18.000099 | 1,507,895,298.000099 | 96,810 |
pythondev | help | Nice it worked :+1: | 2017-10-13T11:50:58.000053 | Burma | pythondev_help_Burma_2017-10-13T11:50:58.000053 | 1,507,895,458.000053 | 96,811 |
pythondev | help | Also, why are you defining headers as an empty dict? You aren't using it either, or at least not in this snippet | 2017-10-13T11:51:40.000092 | Meghan | pythondev_help_Meghan_2017-10-13T11:51:40.000092 | 1,507,895,500.000092 | 96,812 |
pythondev | help | The Question is should I be using payload or headers ? | 2017-10-13T11:52:52.000345 | Burma | pythondev_help_Burma_2017-10-13T11:52:52.000345 | 1,507,895,572.000345 | 96,813 |
pythondev | help | we have to define the header fields using postman | 2017-10-13T11:53:06.000180 | Burma | pythondev_help_Burma_2017-10-13T11:53:06.000180 | 1,507,895,586.00018 | 96,814 |
pythondev | help | <@Malorie> Did you ever get the pdf situation figured out? Our local Python meetup last night had a speaker talk about it. (Looking for link) | 2017-10-13T11:53:08.000495 | Seema | pythondev_help_Seema_2017-10-13T11:53:08.000495 | 1,507,895,588.000495 | 96,815 |
pythondev | help | That depends on what the server is expecting. | 2017-10-13T11:53:11.000514 | Meghan | pythondev_help_Meghan_2017-10-13T11:53:11.000514 | 1,507,895,591.000514 | 96,816 |
pythondev | help | Headers would likely include things like api-keys, I believe. Where as the form content I think would typically be in payload. | 2017-10-13T11:53:51.000379 | Meghan | pythondev_help_Meghan_2017-10-13T11:53:51.000379 | 1,507,895,631.000379 | 96,817 |
pythondev | help | Then you'll want to add headers=headers to your <http://requests.post|requests.post> call. | 2017-10-13T11:54:20.000306 | Meghan | pythondev_help_Meghan_2017-10-13T11:54:20.000306 | 1,507,895,660.000306 | 96,818 |
pythondev | help | csv.DictReader seems to not support what I was hoping for. May have to extend it some day. Was thinking it would be nice to read a csv, determine if it is headered, if so use those, if not use specified. I could see where it could be error prone though. | 2017-10-13T11:55:51.000369 | Meghan | pythondev_help_Meghan_2017-10-13T11:55:51.000369 | 1,507,895,751.000369 | 96,819 |
pythondev | help | Thanks I'll give that a try as well for the post call | 2017-10-13T11:56:39.000736 | Burma | pythondev_help_Burma_2017-10-13T11:56:39.000736 | 1,507,895,799.000736 | 96,820 |
pythondev | help | <@Meghan> you could determine yourself if the first raw are headers or not | 2017-10-13T12:06:32.000315 | Ciera | pythondev_help_Ciera_2017-10-13T12:06:32.000315 | 1,507,896,392.000315 | 96,821 |
pythondev | help | and then use the reader you want for each | 2017-10-13T12:06:38.000666 | Ciera | pythondev_help_Ciera_2017-10-13T12:06:38.000666 | 1,507,896,398.000666 | 96,822 |
pythondev | help | Hello,
```
....
try:
db.session.commit()
except:
db.session.rollback()
```
In test, to get 100% coverage how to make `db.session.commit()` generate an exception, is it possible with `mock` library ? I'm a little bit lost :confused: | 2017-10-13T12:06:53.000344 | Sunny | pythondev_help_Sunny_2017-10-13T12:06:53.000344 | 1,507,896,413.000344 | 96,823 |
pythondev | help | wouldn't something like
```
try:
...
except:
db.session.rollback()
else:
db.session.commit()
``` | 2017-10-13T12:07:27.000422 | Ciera | pythondev_help_Ciera_2017-10-13T12:07:27.000422 | 1,507,896,447.000422 | 96,824 |
pythondev | help | make more sense ? | 2017-10-13T12:08:28.000351 | Ciera | pythondev_help_Ciera_2017-10-13T12:08:28.000351 | 1,507,896,508.000351 | 96,825 |
pythondev | help | <@Ciera> Yeah, that is what I was thinking. | 2017-10-13T12:08:42.000033 | Meghan | pythondev_help_Meghan_2017-10-13T12:08:42.000033 | 1,507,896,522.000033 | 96,826 |
pythondev | help | hum not really, or I miss something <http://docs.sqlalchemy.org/en/latest/orm/session_transaction.html> | 2017-10-13T12:16:38.000626 | Sunny | pythondev_help_Sunny_2017-10-13T12:16:38.000626 | 1,507,896,998.000626 | 96,827 |
pythondev | help | ah yeah didn't know it was sqlalchemy :slightly_smiling_face: my bad | 2017-10-13T12:20:42.000267 | Ciera | pythondev_help_Ciera_2017-10-13T12:20:42.000267 | 1,507,897,242.000267 | 96,828 |
pythondev | help | and yeah it's possible with mock | 2017-10-13T12:21:04.000424 | Ciera | pythondev_help_Ciera_2017-10-13T12:21:04.000424 | 1,507,897,264.000424 | 96,829 |
pythondev | help | you need to use `side_effect` I believe | 2017-10-13T12:21:20.000519 | Ciera | pythondev_help_Ciera_2017-10-13T12:21:20.000519 | 1,507,897,280.000519 | 96,830 |
pythondev | help | Thanks I will take look :smile: | 2017-10-13T12:24:50.000274 | Sunny | pythondev_help_Sunny_2017-10-13T12:24:50.000274 | 1,507,897,490.000274 | 96,831 |
pythondev | help | Hi guys, bit stuck here. Trying to append user input integers into an empty list, and for the program to tell me if the numbers 1,2,3 are in that list. Here’s my code:
```def main():
print("This program will ask the user to enter a list of integers and will check if the numbers 1, 2, and 3 are contained within that list.")
n = eval(input("How many numbers will the list have?"))
control = [1, 2, 3]
A = []
for i in range (n):
A.append(input("Please enter a number: "))
if control in A:
print("Yes")
else:
print("No")
main()```
The program is running, but I think it’s not appending to A, as checking if control is in A for input (1, 2, 3, 4, 5) outputs `no` | 2017-10-13T13:34:11.000154 | Asley | pythondev_help_Asley_2017-10-13T13:34:11.000154 | 1,507,901,651.000154 | 96,832 |
pythondev | help | so you have a list, and you want to see if a value from that list exists in another list? | 2017-10-13T13:38:22.000282 | Meg | pythondev_help_Meg_2017-10-13T13:38:22.000282 | 1,507,901,902.000282 | 96,833 |
pythondev | help | `in` only works when you have `value’ on the left and an iterable data structure like a list, set, dict, etc on the right | 2017-10-13T13:38:55.000364 | Meg | pythondev_help_Meg_2017-10-13T13:38:55.000364 | 1,507,901,935.000364 | 96,834 |
pythondev | help | I want to see if all values in a list (control) are in another list (the one made of the integers the user inputs) | 2017-10-13T13:39:57.000398 | Asley | pythondev_help_Asley_2017-10-13T13:39:57.000398 | 1,507,901,997.000398 | 96,835 |
pythondev | help | But if I’m not wrong, those inputs should be a list themselves as I am asking for them to be appended | 2017-10-13T13:40:24.000064 | Asley | pythondev_help_Asley_2017-10-13T13:40:24.000064 | 1,507,902,024.000064 | 96,836 |
pythondev | help | However, I think I’m doing it wrong | 2017-10-13T13:40:27.000661 | Asley | pythondev_help_Asley_2017-10-13T13:40:27.000661 | 1,507,902,027.000661 | 96,837 |
pythondev | help | `input` will give you strings, so `A` will be a list of strings | 2017-10-13T13:40:42.000360 | Frieda | pythondev_help_Frieda_2017-10-13T13:40:42.000360 | 1,507,902,042.00036 | 96,838 |
pythondev | help | while `control` is a list of ints | 2017-10-13T13:40:50.000309 | Frieda | pythondev_help_Frieda_2017-10-13T13:40:50.000309 | 1,507,902,050.000309 | 96,839 |
pythondev | help | You’re correct | 2017-10-13T13:40:51.000002 | Asley | pythondev_help_Asley_2017-10-13T13:40:51.000002 | 1,507,902,051.000002 | 96,840 |
pythondev | help | What an idiotic mistake on my behalf | 2017-10-13T13:40:59.000449 | Asley | pythondev_help_Asley_2017-10-13T13:40:59.000449 | 1,507,902,059.000449 | 96,841 |
pythondev | help | Thank you | 2017-10-13T13:41:03.000336 | Asley | pythondev_help_Asley_2017-10-13T13:41:03.000336 | 1,507,902,063.000336 | 96,842 |
pythondev | help | not idiotic at all | 2017-10-13T13:41:09.000508 | Frieda | pythondev_help_Frieda_2017-10-13T13:41:09.000508 | 1,507,902,069.000508 | 96,843 |
pythondev | help | furthermore, what you’re trying to do requires use of `all` | 2017-10-13T13:42:10.000067 | Meg | pythondev_help_Meg_2017-10-13T13:42:10.000067 | 1,507,902,130.000067 | 96,844 |
pythondev | help | as in do all these values in `control` exist in `A`? | 2017-10-13T13:42:27.000535 | Meg | pythondev_help_Meg_2017-10-13T13:42:27.000535 | 1,507,902,147.000535 | 96,845 |
pythondev | help | i'd personally use sets | 2017-10-13T13:42:27.000536 | Frieda | pythondev_help_Frieda_2017-10-13T13:42:27.000536 | 1,507,902,147.000536 | 96,846 |
pythondev | help | wouldn't require any iteration | 2017-10-13T13:42:38.000259 | Frieda | pythondev_help_Frieda_2017-10-13T13:42:38.000259 | 1,507,902,158.000259 | 96,847 |
pythondev | help | true, or list comprehension | 2017-10-13T13:42:49.000395 | Meg | pythondev_help_Meg_2017-10-13T13:42:49.000395 | 1,507,902,169.000395 | 96,848 |
pythondev | help | Am I able to order numbers in a set? | 2017-10-13T13:43:00.000382 | Asley | pythondev_help_Asley_2017-10-13T13:43:00.000382 | 1,507,902,180.000382 | 96,849 |
pythondev | help | listcomp would be back to using a `for` loop though | 2017-10-13T13:43:11.000545 | Frieda | pythondev_help_Frieda_2017-10-13T13:43:11.000545 | 1,507,902,191.000545 | 96,850 |
pythondev | help | no, you can't order numbers in a set but i'm only talking about the comparison | 2017-10-13T13:43:26.000391 | Frieda | pythondev_help_Frieda_2017-10-13T13:43:26.000391 | 1,507,902,206.000391 | 96,851 |
pythondev | help | you'd leave `A` and `control` alone except for the `if` | 2017-10-13T13:43:39.000115 | Frieda | pythondev_help_Frieda_2017-10-13T13:43:39.000115 | 1,507,902,219.000115 | 96,852 |
pythondev | help | I see, thanks a lot :slightly_smiling_face: | 2017-10-13T13:43:46.000191 | Asley | pythondev_help_Asley_2017-10-13T13:43:46.000191 | 1,507,902,226.000191 | 96,853 |
pythondev | help | How do I send tacos again? | 2017-10-13T13:45:01.000411 | Asley | pythondev_help_Asley_2017-10-13T13:45:01.000411 | 1,507,902,301.000411 | 96,854 |
pythondev | help | if `A` and `control` never grow very large, iteration methods would be fine, btw. | 2017-10-13T13:45:17.000164 | Frieda | pythondev_help_Frieda_2017-10-13T13:45:17.000164 | 1,507,902,317.000164 | 96,855 |
pythondev | help | sets are just cleaner | 2017-10-13T13:45:24.000619 | Frieda | pythondev_help_Frieda_2017-10-13T13:45:24.000619 | 1,507,902,324.000619 | 96,856 |
pythondev | help | Yeah, you’re right | 2017-10-13T13:45:42.000017 | Asley | pythondev_help_Asley_2017-10-13T13:45:42.000017 | 1,507,902,342.000017 | 96,857 |
pythondev | help | <@Frieda> :taco: | 2017-10-13T13:51:34.000431 | Asley | pythondev_help_Asley_2017-10-13T13:51:34.000431 | 1,507,902,694.000431 | 96,858 |
pythondev | help | <@Meg> :taco: | 2017-10-13T13:51:42.000264 | Asley | pythondev_help_Asley_2017-10-13T13:51:42.000264 | 1,507,902,702.000264 | 96,859 |
pythondev | help | With multiprocessing,are globals non-existent in the spawned processes? I have a global logger but I get a NameError from a function the process calls. | 2017-10-13T15:07:34.000515 | Meghan | pythondev_help_Meghan_2017-10-13T15:07:34.000515 | 1,507,907,254.000515 | 96,860 |
pythondev | help | Hey all-- Went to a Meetup last night, and this is a problem they gave us to solve via pair/ mob program programming. <https://github.com/RappidDevelopment/NumberConverterKata/tree/master/javascript> This is a python solution I came up with. It works, but I'd appreciate some feedback so I could find things to improve and make it more "Pythonic". Thanks! <https://repl.it/MbHk/28> | 2017-10-13T15:24:02.000414 | Kenny | pythondev_help_Kenny_2017-10-13T15:24:02.000414 | 1,507,908,242.000414 | 96,861 |
pythondev | help | Is anyone here that use facebookads sdk api-python? | 2017-10-13T15:51:29.000437 | Georgetta | pythondev_help_Georgetta_2017-10-13T15:51:29.000437 | 1,507,909,889.000437 | 96,862 |
pythondev | help | Hello eveyrone | 2017-10-13T16:40:51.000126 | Yasuko | pythondev_help_Yasuko_2017-10-13T16:40:51.000126 | 1,507,912,851.000126 | 96,863 |
pythondev | help | everyone | 2017-10-13T16:40:54.000216 | Yasuko | pythondev_help_Yasuko_2017-10-13T16:40:54.000216 | 1,507,912,854.000216 | 96,864 |
pythondev | help | I want to build a web application and i want to ask if python is the best language to use in such kind of websites | 2017-10-13T16:41:29.000516 | Yasuko | pythondev_help_Yasuko_2017-10-13T16:41:29.000516 | 1,507,912,889.000516 | 96,865 |
pythondev | help | It's widely used for this. | 2017-10-13T16:41:44.000391 | Suellen | pythondev_help_Suellen_2017-10-13T16:41:44.000391 | 1,507,912,904.000391 | 96,866 |
pythondev | help | flask is usually the choice for just a server, and I've seen django used pretty heavily as a framework for developing a full site | 2017-10-13T16:46:55.000030 | Marcelina | pythondev_help_Marcelina_2017-10-13T16:46:55.000030 | 1,507,913,215.00003 | 96,867 |
pythondev | help | Looking for some help on what looks best. | 2017-10-13T17:24:50.000335 | Myong | pythondev_help_Myong_2017-10-13T17:24:50.000335 | 1,507,915,490.000335 | 96,868 |
pythondev | help | Basically for the background of my site, I add an image and details above it. I originally had it in this format.
<https://i.gyazo.com/2a8d392cb178c79a4033ab6aac455239.png> | 2017-10-13T17:25:29.000031 | Myong | pythondev_help_Myong_2017-10-13T17:25:29.000031 | 1,507,915,529.000031 | 96,869 |
pythondev | help | But now wondering if something like this might be a bit cleaner looking and keeps it looking less pixelated | 2017-10-13T17:26:03.000117 | Myong | pythondev_help_Myong_2017-10-13T17:26:03.000117 | 1,507,915,563.000117 | 96,870 |
pythondev | help | <https://i.gyazo.com/44896037814792500f2574dbdb1f182a.png> | 2017-10-13T17:26:04.000047 | Myong | pythondev_help_Myong_2017-10-13T17:26:04.000047 | 1,507,915,564.000047 | 96,871 |
pythondev | help | <@Kenny> I'm a n00b to python so take this with a grain of salt. Could the three functions be reduced to something with an iterator/enumerate/zip/lambda? | 2017-10-13T18:07:09.000167 | Seema | pythondev_help_Seema_2017-10-13T18:07:09.000167 | 1,507,918,029.000167 | 96,872 |
pythondev | help | anyone familiar with any libraries that can convert volume based properties. say i have a string "1 cup" and I divide by 2, it becomes 1/2 cup. think food recipes. | 2017-10-13T21:16:29.000044 | Bruno | pythondev_help_Bruno_2017-10-13T21:16:29.000044 | 1,507,929,389.000044 | 96,873 |
pythondev | help | Not sure | 2017-10-13T21:43:51.000048 | Meg | pythondev_help_Meg_2017-10-13T21:43:51.000048 | 1,507,931,031.000048 | 96,874 |
pythondev | help | Have you looked at pint? | 2017-10-13T21:43:57.000104 | Meg | pythondev_help_Meg_2017-10-13T21:43:57.000104 | 1,507,931,037.000104 | 96,875 |
pythondev | help | <https://github.com/hgrecco/pint> | 2017-10-13T21:44:00.000066 | Meg | pythondev_help_Meg_2017-10-13T21:44:00.000066 | 1,507,931,040.000066 | 96,876 |
pythondev | help | i didnt see that one yet. i saw one called `measurement` but doesnt seem to work | 2017-10-13T21:52:13.000057 | Bruno | pythondev_help_Bruno_2017-10-13T21:52:13.000057 | 1,507,931,533.000057 | 96,877 |
pythondev | help | <@Kenny> some suggestions:
When iterating through the keys of a dictionary, you can write
`for key in dict:`
instead of
`for key in dict.keys():`
If you are using both the key and the value in the loop you may want to consider
`for key, value in dict.items():`
`string[0] == '1'`
feels more natural than
`int(string[0]) == 1`
If you replace the first element of teens with 'ten', you can get simplify parse_two somewhat.
When you are using a list as a constant (like ones, teens, and tens), consider using a tuple instead.
I'd probably move the stringified_int line into the split function and create a new helper function for the building of the string itself. The reason I want to do this is to try to maintain a single level of abstraction in each of our functions.
I think it might be nicer if instead of creating a dictionary with 'hundred', 'thousand', and 'million' as keys, we put them in a list or tuple like you did for ones, teens, and tens.
Here's how it might look: <https://repl.it/McUI>.
Overall, I like your approach and it looks good already! Some of my suggestions might be kind of opinionated. | 2017-10-14T02:06:46.000010 | Glynda | pythondev_help_Glynda_2017-10-14T02:06:46.000010 | 1,507,946,806.00001 | 96,878 |
pythondev | help | found it? | 2017-10-14T03:42:21.000012 | Malorie | pythondev_help_Malorie_2017-10-14T03:42:21.000012 | 1,507,952,541.000012 | 96,879 |
pythondev | help | 09:44, 09:45, 09:46, 09:47 -- one is less than two minutes apart from the next | 2017-10-14T07:29:26.000002 | Suellen | pythondev_help_Suellen_2017-10-14T07:29:26.000002 | 1,507,966,166.000002 | 96,880 |
pythondev | help | what would happen? | 2017-10-14T07:29:31.000034 | Suellen | pythondev_help_Suellen_2017-10-14T07:29:31.000034 | 1,507,966,171.000034 | 96,881 |
pythondev | help | Heya guys, struggling with Tkinter again... I have this:
```
class GUIManager(object):
def __init__(self):
self.mainMenu()
def mainMenu(self):
root = Tk()
l1 = Label(root, text = "BibliotePy - Fall 2017")
b1 = Button(root, text = "Agregar Alumno", command = insertAlumno)
l1.grid(row = 0)
b1.grid(row = 1)
root.mainloop()
def insertAlumno(self):
root = Tk()
l1 = Label(root, text = "Matrícula:")
l2 = Label(root, text = "Nombre:")
l3 = Label(root, text = "Telefono:")
e1 = Entry(root)
e2 = Entry(root)
e3 = Entry(root)
# Grid Placing
l1.grid(row = 0, sticky = E)
l2.grid(row = 1, sticky = E)
l3.grid(row = 2, sticky = E)
e1.grid(row = 0, column = 1)
e2.grid(row = 1, column = 1)
e3.grid(row = 2, column = 1)
root.mainloop()
```
And it give me this: `NameError: name 'insertAlumno' is not defined` | 2017-10-14T12:09:25.000013 | Lana | pythondev_help_Lana_2017-10-14T12:09:25.000013 | 1,507,982,965.000013 | 96,882 |
pythondev | help | try moving `mainMenu` below `insertAlumno` | 2017-10-14T12:10:10.000093 | Meg | pythondev_help_Meg_2017-10-14T12:10:10.000093 | 1,507,983,010.000093 | 96,883 |
pythondev | help | Question is, is there a way to call functions outside the root in Tkinter. Or even better, am I doing a good GUI? | 2017-10-14T12:10:11.000102 | Lana | pythondev_help_Lana_2017-10-14T12:10:11.000102 | 1,507,983,011.000102 | 96,884 |
pythondev | help | <@Meg> Will try now | 2017-10-14T12:10:26.000030 | Lana | pythondev_help_Lana_2017-10-14T12:10:26.000030 | 1,507,983,026.00003 | 96,885 |
pythondev | help | so that method is defined before mainMenu | 2017-10-14T12:10:30.000050 | Meg | pythondev_help_Meg_2017-10-14T12:10:30.000050 | 1,507,983,030.00005 | 96,886 |
pythondev | help | Nope, still `NameError` | 2017-10-14T12:11:55.000054 | Lana | pythondev_help_Lana_2017-10-14T12:11:55.000054 | 1,507,983,115.000054 | 96,887 |
pythondev | help | how are you calling that method? | 2017-10-14T12:12:17.000002 | Meg | pythondev_help_Meg_2017-10-14T12:12:17.000002 | 1,507,983,137.000002 | 96,888 |
pythondev | help | Within `mainMenu`, I have this line: `b1 = Button(root, text = "Agregar Alumno", command = insertAlumno)`. | 2017-10-14T12:13:07.000058 | Lana | pythondev_help_Lana_2017-10-14T12:13:07.000058 | 1,507,983,187.000058 | 96,889 |
pythondev | help | `insertAlumno` is outside the `mainMenu` function, but within the same class `GUIManager` | 2017-10-14T12:13:41.000088 | Lana | pythondev_help_Lana_2017-10-14T12:13:41.000088 | 1,507,983,221.000088 | 96,890 |
pythondev | help | gotcha | 2017-10-14T12:14:00.000033 | Meg | pythondev_help_Meg_2017-10-14T12:14:00.000033 | 1,507,983,240.000033 | 96,891 |
pythondev | help | so, then order doesn’t matter | 2017-10-14T12:14:09.000005 | Meg | pythondev_help_Meg_2017-10-14T12:14:09.000005 | 1,507,983,249.000005 | 96,892 |
pythondev | help | oh | 2017-10-14T12:15:03.000020 | Meg | pythondev_help_Meg_2017-10-14T12:15:03.000020 | 1,507,983,303.00002 | 96,893 |
pythondev | help | try `self.insertAlumno` for the `command` | 2017-10-14T12:15:12.000026 | Meg | pythondev_help_Meg_2017-10-14T12:15:12.000026 | 1,507,983,312.000026 | 96,894 |
pythondev | help | because you’re defining it in the class | 2017-10-14T12:15:46.000014 | Meg | pythondev_help_Meg_2017-10-14T12:15:46.000014 | 1,507,983,346.000014 | 96,895 |
pythondev | help | You did it! | 2017-10-14T12:20:26.000070 | Lana | pythondev_help_Lana_2017-10-14T12:20:26.000070 | 1,507,983,626.00007 | 96,896 |
pythondev | help | <@Meg> :taco: | 2017-10-14T12:20:35.000025 | Lana | pythondev_help_Lana_2017-10-14T12:20:35.000025 | 1,507,983,635.000025 | 96,897 |
pythondev | help | Best practices question, is there some sort of good practice/convention for referencing which co-routines call on a generator? It seems that the programmer would have to know that the generator yields 1 iteration each call but that the generator could be anywhere... | 2017-10-14T17:01:45.000077 | Seema | pythondev_help_Seema_2017-10-14T17:01:45.000077 | 1,508,000,505.000077 | 96,898 |
pythondev | help | Hello | 2017-10-14T17:50:42.000011 | Yasuko | pythondev_help_Yasuko_2017-10-14T17:50:42.000011 | 1,508,003,442.000011 | 96,899 |
pythondev | help | I am looking for a senior python developer for a startup. Please if anyone intrested pm me | 2017-10-14T17:51:41.000009 | Yasuko | pythondev_help_Yasuko_2017-10-14T17:51:41.000009 | 1,508,003,501.000009 | 96,900 |
pythondev | help | Can anyone tell me why this media query won't work in my css. I've made sure to set `width=device-width` in the `meta` as well as min-scaling set at 1. | 2017-10-14T21:51:55.000017 | Myong | pythondev_help_Myong_2017-10-14T21:51:55.000017 | 1,508,017,915.000017 | 96,901 |
pythondev | help | Nevermind, fixed it. Turns out the hardcoded style will not change so I removed that on the element and added another media query with min-width | 2017-10-14T21:55:19.000028 | Myong | pythondev_help_Myong_2017-10-14T21:55:19.000028 | 1,508,018,119.000028 | 96,902 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.