Re: [Python-Dev] [RELEASE] Python 3.7.3 is now available

2019-03-25 Thread Hasan Diwan
Congrats to all for a timely release! -- H On Mon, 25 Mar 2019 at 17:19, Ned Deily wrote: > https://blog.python.org/2019/03/python-373-is-now-available.html > > Python 3.7.3 is now available. Python 3.7.3 is the next > maintenance release of Python 3.7, the latest feature release of Python. > Yo

Re: [Python-Dev] [RELEASE] Python 3.7.1 and 3.6.7 are now available

2018-10-20 Thread Hasan Diwan
Congratulations to all involved. -- H On Sat, 20 Oct 2018 at 10:58, Ned Deily wrote: > > On behalf of the Python development community and the Python 3.7 release > team, we are pleased to announce the availability of Python 3.7.1. Python > 3.7.1 is the first maintenance release of the newest f

Re: [Python-Dev] [RELEASE] Python 2.7.15

2018-04-30 Thread Hasan Diwan
Congrats to all involved! -- H On 30 April 2018 at 21:09, Benjamin Peterson wrote: > Greetings, > I'm pleased to announce the immediate availability of Python 2.7.15, the > latest bug fix release in the senescent Python 2.7 series. > > Source and binary downloads may be found on python.org: > >

Re: [Python-Dev] [RELEASE] Python 3.6.4 is now available

2017-12-19 Thread Hasan Diwan
Grats to all! On 19 December 2017 at 00:42, Ned Deily wrote: > On behalf of the Python development community and the Python 3.6 > release team, I am happy to announce the availability of Python 3.6.4, > the fourth maintenance release of Python 3.6. Detailed information > about the changes made

Re: [Python-Dev] [RELEASE] Python 3.6.4rc1 and 3.7.0a3 now available

2017-12-08 Thread Hasan Diwan
Congrats to all involved! -- Hâ ï -- https://mail.python.org/mailman/listinfo/python-list

Re: [Python-Dev] [RELEASE] Python 3.6.4rc1 and 3.7.0a3 now available for testing

2017-12-05 Thread Hasan Diwan
Congrats to all involved! -- H​ -- https://mail.python.org/mailman/listinfo/python-list

Re: Were is a great place to Share your finished projects?

2016-07-14 Thread hasan . diwan
Michael Torrie writes: >I understand that in Python's case, pure cost wins out. Python.org >could host a GitLab instance, which contains the repo tools plus ticket >tracking, etc, and ordinary developers could push their changes to their >own public git repos and send in pull requests and it wou

Re: Controlling the Mac OSX GUI via Python?

2016-06-30 Thread hasan . diwan
>On 6/30/2016 3:22 PM, you wrote: >> I'd like to use Python to do some simple OSX GUI manipulations such >> as automatically arranging windows, periodically refreshing >> applications across multiple desktops, etc.. Is this possible and if >> so, is there a preferred package? Please see this page

Re: JSON to Pandas data frame

2016-06-25 Thread hasan . diwan
David Shi writes: >How to convert a JSON object into a Pandas data frame? You can use read_json -- http://pandas.pydata.org/pandas-docs/stable/generated/pandas.read_json.html to read it into a dataframe. Or you can read the json into python objects and use read_records to create a pandas DataFra

Re: how to create a dictionary from csv file?

2016-04-26 Thread Hasan Diwan
>> I am learning python. >> >> if I have a csv file, like this >> banana,4.0 >> apple,3.5 >> orange,3.0 >> >> Can anyone show me how to read the csv file line by line and then >> create a dictionary to contain these keys and values? with open('data.csv') as f: data = dict([[l.strip() for l

Re: Python2.7 win64 --- cannot install the package of scipy

2016-04-18 Thread Hasan Diwan
On 2016-04-16, ykt2271707...@gmail.com wrote: > I failed to install the package of scipy on Python2.7(win64). Have you tried anaconda python -- https://3230d63b5fc54e62148e-c95ac804525aac4b6dba79b00b39d1d3.ssl.cf1.rackcdn.com/Anaconda2-4.0.0-Windows-x86_64.exe -- https://mail.python.org/mailman

Re: hourly weather forecast data

2016-04-13 Thread Hasan Diwan
On 2016-04-13, Stephen Hansen wrote: > On Tue, Apr 12, 2016, at 08:36 PM, kamaraju kusumanchi wrote: >> Is there a way to get hourly weather forecast data (temperature, >> chance of precipitation) from the command line in Debian Linux? > > Personally, the last time I wanted to do something like th

Re: hourly weather forecast data

2016-04-12 Thread Hasan Diwan
On 2016-04-13, Miki Tebeka wrote: > >> Is there a way to get hourly weather forecast data (temperature, >> chance of precipitation) from the command line in Debian Linux? https://forecast.io may be the solution. It provides a JSON feed, which you can parse using jq, for example. The link you wan