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
I watched a talk once that talked about how one of the permissions in windows that checks if a file is already opened stopped someone from installing things
2017-12-01T22:53:57.000031
Winnie
pythondev_help_Winnie_2017-12-01T22:53:57.000031
1,512,168,837.000031
101,903
pythondev
help
try rebooting first? otherwise I'd reinstall
2017-12-01T22:54:22.000080
Winnie
pythondev_help_Winnie_2017-12-01T22:54:22.000080
1,512,168,862.00008
101,904
pythondev
help
Yea, I'll try that next time around. Thanks Evan
2017-12-01T22:55:26.000322
Staci
pythondev_help_Staci_2017-12-01T22:55:26.000322
1,512,168,926.000322
101,905
pythondev
help
how do I catch this error? ``` raise binascii.Error('Incorrect padding') binascii.Error: Incorrect padding ```
2017-12-02T01:45:57.000096
Winnie
pythondev_help_Winnie_2017-12-02T01:45:57.000096
1,512,179,157.000096
101,906
pythondev
help
What am i doing wrong here? any help would be appreciated. Thanks
2017-12-02T07:54:45.000250
Yuki
pythondev_help_Yuki_2017-12-02T07:54:45.000250
1,512,201,285.00025
101,907
pythondev
help
what is your regex meant to be?
2017-12-02T07:56:40.000173
Winnie
pythondev_help_Winnie_2017-12-02T07:56:40.000173
1,512,201,400.000173
101,908
pythondev
help
I don't understand what this is
2017-12-02T07:56:57.000215
Winnie
pythondev_help_Winnie_2017-12-02T07:56:57.000215
1,512,201,417.000215
101,909
pythondev
help
hi <@Winnie> just to get the exact match of the word, /W is the space before and after.
2017-12-02T08:37:49.000243
Yuki
pythondev_help_Yuki_2017-12-02T08:37:49.000243
1,512,203,869.000243
101,910
pythondev
help
this is this is what i am trying to do using list comprehension ''' for word in wordDicto.keys(): if re.search(('\W{}\W'.format(word)), description, re.IGNORECASE): occurance=len(re.findall(('\W{}\W'.format(word)), description, re.IGNORECASE)) print("fo...
2017-12-02T08:44:14.000424
Yuki
pythondev_help_Yuki_2017-12-02T08:44:14.000424
1,512,204,254.000424
101,911
pythondev
help
I think you're overcomplicating it
2017-12-02T08:45:16.000100
Winnie
pythondev_help_Winnie_2017-12-02T08:45:16.000100
1,512,204,316.0001
101,912
pythondev
help
ok, thanks, i leave it way it is. :+1:
2017-12-02T08:46:14.000056
Yuki
pythondev_help_Yuki_2017-12-02T08:46:14.000056
1,512,204,374.000056
101,913
pythondev
help
try replacing the `"\W{}\W"` with `r"\W{}\W"` instead?
2017-12-02T08:46:20.000127
Winnie
pythondev_help_Winnie_2017-12-02T08:46:20.000127
1,512,204,380.000127
101,914
pythondev
help
that _might_ be the error
2017-12-02T08:46:54.000390
Winnie
pythondev_help_Winnie_2017-12-02T08:46:54.000390
1,512,204,414.00039
101,915
pythondev
help
but <@Yuki>, I think your program can be better stated like this ``` words = description.lower().split() foundwords = { word.lower() : words.count(word) for word in wordDicto.keys() if word.lower() in words } ```
2017-12-02T08:49:34.000441
Winnie
pythondev_help_Winnie_2017-12-02T08:49:34.000441
1,512,204,574.000441
101,916
pythondev
help
or better yet ``` from collections import Counter words = description.lower().split() foundwords = Counter( word for word in words if word in wordDicto.keys() ) ```
2017-12-02T08:52:15.000066
Winnie
pythondev_help_Winnie_2017-12-02T08:52:15.000066
1,512,204,735.000066
101,917
pythondev
help
thanks, tried it didn't solve it. :grimacing:
2017-12-02T09:21:06.000253
Yuki
pythondev_help_Yuki_2017-12-02T09:21:06.000253
1,512,206,466.000253
101,918
pythondev
help
:taco: :taco: <@Winnie> thanks!!
2017-12-02T09:22:52.000254
Yuki
pythondev_help_Yuki_2017-12-02T09:22:52.000254
1,512,206,572.000254
101,919
pythondev
help
hello gurus
2017-12-02T18:00:21.000011
Margaretta
pythondev_help_Margaretta_2017-12-02T18:00:21.000011
1,512,237,621.000011
101,920
pythondev
help
need help with upgrading python on mac
2017-12-02T18:00:30.000360
Margaretta
pythondev_help_Margaretta_2017-12-02T18:00:30.000360
1,512,237,630.00036
101,921
pythondev
help
:disappointed:
2017-12-02T18:06:16.000151
Margaretta
pythondev_help_Margaretta_2017-12-02T18:06:16.000151
1,512,237,976.000151
101,922
pythondev
help
@mention
2017-12-02T18:21:52.000044
Margaretta
pythondev_help_Margaretta_2017-12-02T18:21:52.000044
1,512,238,912.000044
101,923
pythondev
help
@everyone
2017-12-02T18:22:35.000477
Margaretta
pythondev_help_Margaretta_2017-12-02T18:22:35.000477
1,512,238,955.000477
101,924
pythondev
help
I'm stuck with this problem, I'm trying to return true or false if the word red is in the string submitted. It's not working for me and I'm sure it's something silly but I can't see it. ``` # Get our input from the command line import sys text= sys.argv[1] # Write your code here def isRed(X): return X.find('red') #t...
2017-12-02T18:46:59.000325
Devorah
pythondev_help_Devorah_2017-12-02T18:46:59.000325
1,512,240,419.000325
101,925
pythondev
help
what is `find` supposed to be?
2017-12-02T18:51:41.000546
Meg
pythondev_help_Meg_2017-12-02T18:51:41.000546
1,512,240,701.000546
101,926
pythondev
help
if you want to check if a string exists, use `in`
2017-12-02T18:51:55.000512
Meg
pythondev_help_Meg_2017-12-02T18:51:55.000512
1,512,240,715.000512
101,927
pythondev
help
as in `some_string` in `some_other_string`
2017-12-02T18:52:07.000335
Meg
pythondev_help_Meg_2017-12-02T18:52:07.000335
1,512,240,727.000335
101,928
pythondev
help
yeah
2017-12-02T18:56:40.000479
Devorah
pythondev_help_Devorah_2017-12-02T18:56:40.000479
1,512,241,000.000479
101,929
pythondev
help
For some reason codio was having us use that function
2017-12-02T18:57:12.000453
Devorah
pythondev_help_Devorah_2017-12-02T18:57:12.000453
1,512,241,032.000453
101,930
pythondev
help
codio?
2017-12-02T18:58:14.000516
Meg
pythondev_help_Meg_2017-12-02T18:58:14.000516
1,512,241,094.000516
101,931
pythondev
help
Some online ide / teaching platform
2017-12-02T18:58:35.000313
Devorah
pythondev_help_Devorah_2017-12-02T18:58:35.000313
1,512,241,115.000313
101,932
pythondev
help
I'm having some unexpected results from a selection sort, but it _only_ happens when I read the items I'm sorting from a file. If I hard-code the list's values it works. If I populate the list from a file the sort works sometimes, but not others.
2017-12-02T19:00:32.000507
Thomasina
pythondev_help_Thomasina_2017-12-02T19:00:32.000507
1,512,241,232.000507
101,933
pythondev
help
Trying to help a friend who's learning to code (I realize there are some inefficient and unnecessary things in this code)
2017-12-02T19:01:41.000016
Thomasina
pythondev_help_Thomasina_2017-12-02T19:01:41.000016
1,512,241,301.000016
101,934
pythondev
help
But I'm a bit stumped. The data coming from the files seems to be identical to when it's hard coded.
2017-12-02T19:01:56.000250
Thomasina
pythondev_help_Thomasina_2017-12-02T19:01:56.000250
1,512,241,316.00025
101,935
pythondev
help
In the results (truncated) I see: ```...118 129 180 170 146 158 151...```
2017-12-02T19:02:49.000292
Thomasina
pythondev_help_Thomasina_2017-12-02T19:02:49.000292
1,512,241,369.000292
101,936
pythondev
help
Is it gremlins? Because I think the problem is gremlins.
2017-12-02T19:07:43.000367
Thomasina
pythondev_help_Thomasina_2017-12-02T19:07:43.000367
1,512,241,663.000367
101,937
pythondev
help
`index_of_smallest = randomList[i:].index(smallest) + i` Fixed
2017-12-02T19:46:49.000121
Thomasina
pythondev_help_Thomasina_2017-12-02T19:46:49.000121
1,512,244,009.000121
101,938
pythondev
help
What’s the best way/api to find distance between locations as like a recommendation? Kind of the “these are the places within 10 miles of you” kinda thing
2017-12-02T21:52:31.000134
In
pythondev_help_In_2017-12-02T21:52:31.000134
1,512,251,551.000134
101,939
pythondev
help
Actually slightly more specific, given a bunch of different addresses, how does on tell which ones are within a certain distance
2017-12-02T21:55:03.000172
In
pythondev_help_In_2017-12-02T21:55:03.000172
1,512,251,703.000172
101,940
pythondev
help
Geo coding .. Look into Google maps api
2017-12-02T22:00:44.000258
Meg
pythondev_help_Meg_2017-12-02T22:00:44.000258
1,512,252,044.000258
101,941
pythondev
help
You'll get something like 1k free requests a day
2017-12-02T22:00:59.000374
Meg
pythondev_help_Meg_2017-12-02T22:00:59.000374
1,512,252,059.000374
101,942
pythondev
help
im currently using it to get lat/long from address
2017-12-02T22:01:09.000004
In
pythondev_help_In_2017-12-02T22:01:09.000004
1,512,252,069.000004
101,943
pythondev
help
What are you trying to do overall?
2017-12-02T22:06:08.000072
Meg
pythondev_help_Meg_2017-12-02T22:06:08.000072
1,512,252,368.000072
101,944
pythondev
help
the lat/long is to plot on a map, and im only asking for addresses of locations
2017-12-02T22:23:20.000051
In
pythondev_help_In_2017-12-02T22:23:20.000051
1,512,253,400.000051
101,945
pythondev
help
but I plan to have like a search box on a home page where you can look for "parks" and itll return back the closest parks around you (that I have in my database)
2017-12-02T22:24:28.000209
In
pythondev_help_In_2017-12-02T22:24:28.000209
1,512,253,468.000209
101,946
pythondev
help
Thing is, with Googles data, you can only store it for 30 days, according to the tos
2017-12-02T22:26:03.000194
Meg
pythondev_help_Meg_2017-12-02T22:26:03.000194
1,512,253,563.000194
101,947
pythondev
help
You can use openstreetmap's nomatim service, but that's iffy at times
2017-12-02T22:26:53.000205
Meg
pythondev_help_Meg_2017-12-02T22:26:53.000205
1,512,253,613.000205
101,948
pythondev
help
thats kinda annoying for the latitude and longitude
2017-12-02T22:28:34.000163
In
pythondev_help_In_2017-12-02T22:28:34.000163
1,512,253,714.000163
101,949
pythondev
help
the distance thing would be on the fly
2017-12-02T22:28:40.000267
In
pythondev_help_In_2017-12-02T22:28:40.000267
1,512,253,720.000267
101,950
pythondev
help
<@In> I was curious about the same thing. Google "geocoding api" and have a quick look at the link below. If you're not bothered by going global then many countries have local services. <https://www.programmableweb.com/news/7-free-geocoding-apis-google-bing-yahoo-and-mapquest/2012/06/21>
2017-12-02T23:55:15.000395
Manie
pythondev_help_Manie_2017-12-02T23:55:15.000395
1,512,258,915.000395
101,951
pythondev
help
I am looking for 1. a bot framework that has web/REST api support that I can use from my webapp, 2. preferably python but nodejs is cool too 3. gives me ability to customize Is there any such framework? Most tools are either on some platform (slack, fb etc.) or rulebased/cloud service (so lacks ability to customize)...
2017-12-03T00:30:05.000146
Loida
pythondev_help_Loida_2017-12-03T00:30:05.000146
1,512,261,005.000146
101,952
pythondev
help
What exactly this bot needs to do? A (chat, i suppose) bot necessary has to be bounded with a platform (slack, fb etc.), otherwise you can just build an API REST backend that does exactly what you want
2017-12-03T03:12:00.000189
Wade
pythondev_help_Wade_2017-12-03T03:12:00.000189
1,512,270,720.000189
101,953
pythondev
help
Anyway, give a look at this one <https://github.com/gunthercox/ChatterBot>
2017-12-03T03:27:07.000009
Wade
pythondev_help_Wade_2017-12-03T03:27:07.000009
1,512,271,627.000009
101,954
pythondev
help
I have 2 forms in a page. Depending on the user input on the count filed in TicketInfo, I'd like to create same number of Traveler form and append them to the page. How can I do that?
2017-12-03T05:13:56.000109
Florentina
pythondev_help_Florentina_2017-12-03T05:13:56.000109
1,512,278,036.000109
101,955
pythondev
help
<@Florentina> the most user-friendly way to do this, I think, would be to have some browser side JS that detects a change for that input and dynamically adds the extra forms to the page. Otherwise, you can set up a url with the ticketinfo count as a parameter and re-render the extra forms
2017-12-03T07:53:52.000374
Meg
pythondev_help_Meg_2017-12-03T07:53:52.000374
1,512,287,632.000374
101,956
pythondev
help
Is this the correct syntax to call on lists here? ``` item_total = (grocery_item['number']) * (grocery_item['price']) ``` I'm getting ``` TypeError: can't multiply sequence by non-int of type 'str' ``` If I wrap them with int and float I get ``` ValueError: could not convert string to float: 'float(cost)' ```
2017-12-03T09:04:53.000274
Devorah
pythondev_help_Devorah_2017-12-03T09:04:53.000274
1,512,291,893.000274
101,957
pythondev
help
try without the parens
2017-12-03T09:09:06.000394
Meg
pythondev_help_Meg_2017-12-03T09:09:06.000394
1,512,292,146.000394
101,958
pythondev
help
Same as the first one with just grocery_item['number']
2017-12-03T09:11:17.000006
Devorah
pythondev_help_Devorah_2017-12-03T09:11:17.000006
1,512,292,277.000006
101,959
pythondev
help
<@Devorah> could you print the values of `grocery_item['number']` and `grocery_item['price']`? I suspect one of them has value `'cost'`.
2017-12-03T09:14:14.000162
Ethyl
pythondev_help_Ethyl_2017-12-03T09:14:14.000162
1,512,292,454.000162
101,960
pythondev
help
@alex you are correct. :smile: This is what I have for adding to the dictionary, but it's not taking my values I input ``` #Accept input of the name of the grocery item purchased. item_name = input("Item name:\n") #Accept input of the quantitiy of the grocery item purchased. quantity = int(input("...
2017-12-03T09:18:46.000571
Devorah
pythondev_help_Devorah_2017-12-03T09:18:46.000571
1,512,292,726.000571
101,961
pythondev
help
<@Devorah> please remove `'` around dictionary values in the `grocery_item.update...` line.
2017-12-03T09:21:23.000035
Ethyl
pythondev_help_Ethyl_2017-12-03T09:21:23.000035
1,512,292,883.000035
101,962
pythondev
help
fantastic, that is now printing the proper values
2017-12-03T09:27:33.000380
Devorah
pythondev_help_Devorah_2017-12-03T09:27:33.000380
1,512,293,253.00038
101,963
pythondev
help
I'm trying to create a dictionary from inputs and then store it inside of a list, but what's happening is that the last value store in is writing over all the other entries in the list. ``` #Accept input of the name of the grocery item purchased. item_name = input("Item name:\n") #Accept input of the qu...
2017-12-03T11:22:01.000050
Devorah
pythondev_help_Devorah_2017-12-03T11:22:01.000050
1,512,300,121.00005
101,964
pythondev
help
by removing .update from grocery_item I'm getting it to create the dictionary in the list proper, but still it's not adding up correctly.
2017-12-03T11:31:54.000178
Devorah
pythondev_help_Devorah_2017-12-03T11:31:54.000178
1,512,300,714.000178
101,965
pythondev
help
When I run this ``` for x in grocery_history : item_total = grocery_item['number'] * grocery_item['price'] print('{number} {name} @ {price}'.format(**grocery_item) + ' ea ' + str(item_total)) #Calculate the total cost for the grocery_item. grand_total += item_total ``` It's only returning the last val...
2017-12-03T12:18:06.000198
Devorah
pythondev_help_Devorah_2017-12-03T12:18:06.000198
1,512,303,486.000198
101,966
pythondev
help
<@Devorah> Could you provide the entire piece of code? (maybe with python syntax on...)
2017-12-03T12:45:50.000201
Wade
pythondev_help_Wade_2017-12-03T12:45:50.000201
1,512,305,150.000201
101,967
pythondev
help
<@Devorah>
2017-12-03T15:12:56.000066
Suellen
pythondev_help_Suellen_2017-12-03T15:12:56.000066
1,512,313,976.000066
101,968
pythondev
help
``` for x in grocery_history: item_total = grocery_item['number'] * grocery_item['price'] print('{number} {name} @ ${price}'.format(**grocery_item) + ' ea ' + '$' + str(item_total)) ```
2017-12-03T15:13:00.000093
Suellen
pythondev_help_Suellen_2017-12-03T15:13:00.000093
1,512,313,980.000093
101,969
pythondev
help
You define `x` in a loop, but never actually use it
2017-12-03T15:13:16.000168
Suellen
pythondev_help_Suellen_2017-12-03T15:13:16.000168
1,512,313,996.000168
101,970
pythondev
help
Instead `number` and `price` are taken from `grocery_item`, which is the last added item
2017-12-03T15:13:45.000277
Suellen
pythondev_help_Suellen_2017-12-03T15:13:45.000277
1,512,314,025.000277
101,971
pythondev
help
So if you have 5 items, you're going to calculate a total sum of the latest product 5 times
2017-12-03T15:14:26.000031
Suellen
pythondev_help_Suellen_2017-12-03T15:14:26.000031
1,512,314,066.000031
101,972
pythondev
help
thanks for the hints
2017-12-03T15:15:49.000120
Devorah
pythondev_help_Devorah_2017-12-03T15:15:49.000120
1,512,314,149.00012
101,973
pythondev
help
Hey can someone explain this for me? why is the first for loop wrong and the second right? ```# If we list all the natural numbers below 10 that are multiples of 3 or 5, we get 3, 5, 6 and 9. The sum of these multiples is 23. # # Find the sum of all the multiples of 3 or 5 below 1000. falseSolution = list() # wrong s...
2017-12-03T15:35:37.000591
Suzy
pythondev_help_Suzy_2017-12-03T15:35:37.000591
1,512,315,337.000591
101,974
pythondev
help
`if` and `elif` meaning is different. An `elif` case is evaluated ONLY if a precedent `if` conditions turns out to be false
2017-12-03T16:03:06.000590
Wade
pythondev_help_Wade_2017-12-03T16:03:06.000590
1,512,316,986.00059
101,975
pythondev
help
correct
2017-12-03T16:03:28.000477
Meg
pythondev_help_Meg_2017-12-03T16:03:28.000477
1,512,317,008.000477
101,976
pythondev
help
Instead, `if` is always checked
2017-12-03T16:03:33.000269
Wade
pythondev_help_Wade_2017-12-03T16:03:33.000269
1,512,317,013.000269
101,977
pythondev
help
in your first solution, both `if` conditionals can be true and you can have `i` inserted twice
2017-12-03T16:03:44.000112
Meg
pythondev_help_Meg_2017-12-03T16:03:44.000112
1,512,317,024.000112
101,978
pythondev
help
because of math :stuck_out_tongue:
2017-12-03T16:04:05.000185
Wade
pythondev_help_Wade_2017-12-03T16:04:05.000185
1,512,317,045.000185
101,979
pythondev
help
in the second, only one is evaluated
2017-12-03T16:04:22.000580
Meg
pythondev_help_Meg_2017-12-03T16:04:22.000580
1,512,317,062.00058
101,980
pythondev
help
bingo :slightly_smiling_face:
2017-12-03T16:04:24.000499
Meg
pythondev_help_Meg_2017-12-03T16:04:24.000499
1,512,317,064.000499
101,981
pythondev
help
Ha :sweat_smile: do i feel stupid now.... ofcourse the same number can be both divisable of both 3 and 5.... Thanks for your answers
2017-12-03T16:08:22.000503
Suzy
pythondev_help_Suzy_2017-12-03T16:08:22.000503
1,512,317,302.000503
101,982
pythondev
help
youre welcome :slightly_smiling_face:
2017-12-03T16:09:38.000133
Wade
pythondev_help_Wade_2017-12-03T16:09:38.000133
1,512,317,378.000133
101,983
pythondev
help
<@Raguel> bot does NOT have to be bounded to a platform like slack, fb etc. I need to have that bot pop up in a website. So I need a REST API support. I dont want to build the REST API backend, just want to use it. At the end, based on the conversation, the bot will reply more intelligently and resolve issues in an En...
2017-12-03T20:49:24.000042
Loida
pythondev_help_Loida_2017-12-03T20:49:24.000042
1,512,334,164.000042
101,984
pythondev
help
Hi All, I am trying to represent this data in a pie chart with total and callouts. (My sample data <https://transfer.sh/dXlkt/testdata.csv>) Matplotlib seems too limited to be able to do it (or too difficult). Ive seen some example with R programming and ggplot, i was wondering if someone skilled in this area could ass...
2017-12-03T21:04:57.000288
Lavona
pythondev_help_Lavona_2017-12-03T21:04:57.000288
1,512,335,097.000288
101,985
pythondev
help
suppose if in a website that contain field for user to input number in time format. This input goes into mysql database when button is clicked
2017-12-04T03:51:27.000298
Sara
pythondev_help_Sara_2017-12-04T03:51:27.000298
1,512,359,487.000298
101,986
pythondev
help
I'm currently looking into how I can use this value insert by user and use it as timer to execute a python script
2017-12-04T03:51:43.000186
Sara
pythondev_help_Sara_2017-12-04T03:51:43.000186
1,512,359,503.000186
101,987
pythondev
help
how can I make it work similar to cronjob but instead of setting timer earlier it will set time based on user input
2017-12-04T03:52:15.000210
Sara
pythondev_help_Sara_2017-12-04T03:52:15.000210
1,512,359,535.00021
101,988
pythondev
help
any inputs ?
2017-12-04T03:52:26.000292
Sara
pythondev_help_Sara_2017-12-04T03:52:26.000292
1,512,359,546.000292
101,989
pythondev
help
<#C0LMFRMB5|django> Okay so this might look like a stupid question, but I just learnt django and I was building one small app.. then I thought Ill create some apis for the same using the django rest framework since the app went well.. I did achieve the task.. but how is it normally done, for example I have some url pa...
2017-12-04T07:03:22.000483
Arianne
pythondev_help_Arianne_2017-12-04T07:03:22.000483
1,512,371,002.000483
101,990
pythondev
help
<http://www.django-rest-framework.org/api-guide/versioning/>
2017-12-04T07:05:16.000028
Meg
pythondev_help_Meg_2017-12-04T07:05:16.000028
1,512,371,116.000028
101,991
pythondev
help
btw, <@Arianne>, just because you do <#C0LMFRMB5|django> doesn’t actually do anything. you should post this in that channel
2017-12-04T07:06:10.000535
Meg
pythondev_help_Meg_2017-12-04T07:06:10.000535
1,512,371,170.000535
101,992
pythondev
help
check out <http://www.django-rest-framework.org/api-guide/versioning/#urlpathversioning>
2017-12-04T07:06:29.000131
Meg
pythondev_help_Meg_2017-12-04T07:06:29.000131
1,512,371,189.000131
101,993
pythondev
help
Thank you, i didnt know ! <@Meg>
2017-12-04T07:15:42.000299
Arianne
pythondev_help_Arianne_2017-12-04T07:15:42.000299
1,512,371,742.000299
101,994
pythondev
help
:smile:
2017-12-04T07:17:03.000264
Meg
pythondev_help_Meg_2017-12-04T07:17:03.000264
1,512,371,823.000264
101,995
pythondev
help
<https://stackoverflow.com/questions/47632570/multivaluefield-returning-data-back-to-field>
2017-12-04T07:18:23.000016
Robbin
pythondev_help_Robbin_2017-12-04T07:18:23.000016
1,512,371,903.000016
101,996
pythondev
help
<@In> are you looking to get actual travel distance or as the crow flies? there are a couple of APIs out there (Mapbox, Google, MapQuest, etc.) that can do it on the fly, but if you only need say to do a 10 mile circle around their current location, that would be easy enough to handle right in the database
2017-12-04T15:40:15.000657
Willena
pythondev_help_Willena_2017-12-04T15:40:15.000657
1,512,402,015.000657
101,997
pythondev
help
if using postgres, you probably want to checkout ST_Buffer <http://www.postgis.net/docs/ST_Buffer.html>
2017-12-04T15:43:33.000478
Willena
pythondev_help_Willena_2017-12-04T15:43:33.000478
1,512,402,213.000478
101,998
pythondev
help
and sqlite has a similar function using libspatialite
2017-12-04T15:43:59.000348
Willena
pythondev_help_Willena_2017-12-04T15:43:59.000348
1,512,402,239.000348
101,999
pythondev
help
Having some trouble with pip and SSL certificates
2017-12-04T16:03:15.000366
Myong
pythondev_help_Myong_2017-12-04T16:03:15.000366
1,512,403,395.000366
102,000
pythondev
help
The flag `--trusted-host <http://pypi.python.org|pypi.python.org>` allows the download to work, but id like to find a more permanent solution...
2017-12-04T16:05:25.000663
Myong
pythondev_help_Myong_2017-12-04T16:05:25.000663
1,512,403,525.000663
102,001
pythondev
help
This is basically my error <https://python-forum.io/Thread-All-pip-install-attempts-are-met-with-SSL-error>
2017-12-04T16:40:34.000118
Myong
pythondev_help_Myong_2017-12-04T16:40:34.000118
1,512,405,634.000118
102,002