Re: Help with Streaming and Chunk Processing for Large JSON Data (60 GB) from Kenna API

2024-09-29 Thread Abdur-Rahmaan Janhangeer via Python-list
Idk if you tried Polars, but it seems to work well with JSON data import polars as pl pl.read_json("file.json") Kind Regards, Abdur-Rahmaan Janhangeer about <https://compileralchemy.github.io/> | blog <https://www.pythonkitchen.com> github <https://github.com/Abdur-Rah

Re: PyCon

2024-05-18 Thread Abdur-Rahmaan Janhangeer via Python-list
May 2024 at 04:10, Abdur-Rahmaan Janhangeer via Python-list > wrote: > > > > Yes, this year's pretty exciting, great keynotes, great lightnings, great > > location, great even sponsor talks (thought they would be pumping a lot > of > > marketing, but the

Re: PyCon

2024-05-18 Thread Abdur-Rahmaan Janhangeer via Python-list
Yes, this year's pretty exciting, great keynotes, great lightnings, great location, great even sponsor talks (thought they would be pumping a lot of marketing, but the ones i went were pretty awesome technically) Organization side pretty smooth as well 👍 On Fri, 17 May 2024, 20:58 Larry Martell v

Re: [RELEASE] Python 3.12.3 and 3.13.0a6 released

2024-04-10 Thread Abdur-Rahmaan Janhangeer via Python-list
I have to comment on this one: "Docstrings now have their leading indentation stripped" Incredibly useful! Kind Regards, Abdur-Rahmaan Janhangeer about <https://compileralchemy.github.io/> | blog <https://www.pythonkitchen.com> github <https://github.com/Abdur-RahmaanJ

Re: on the python paradox

2022-12-11 Thread Abdur-Rahmaan Janhangeer
because it will get them a job; they learn it because they genuinely like to program and aren't satisfied with the languages they already know." Kind Regards, Abdur-Rahmaan Janhangeer about <https://compileralchemy.github.io/> | blog <https://www.pythonkitchen.com> gith

Re: Why no list as dict key?

2022-04-20 Thread Abdur-Rahmaan Janhangeer
As clear as daylight, thanks! Kind Regards, Abdur-Rahmaan Janhangeer about <https://compileralchemy.github.io/> | blog <https://www.pythonkitchen.com> github <https://github.com/Abdur-RahmaanJ> Mauritius -- https://mail.python.org/mailman/listinfo/python-list

Re: Why no list as dict key?

2022-04-20 Thread Abdur-Rahmaan Janhangeer
Assumes checking for object equality before inserting. If they are they same, do we need different hashes? Kind Regards, Abdur-Rahmaan Janhangeer about <https://compileralchemy.github.io/> | blog <https://www.pythonkitchen.com> github <https://github.com/Abdur-RahmaanJ> Mauri

Re: Why no list as dict key?

2022-04-20 Thread Abdur-Rahmaan Janhangeer
object themselves. Maybe the speed drop is not worth it. Kind Regards, Abdur-Rahmaan Janhangeer about <https://compileralchemy.github.io/> | blog <https://www.pythonkitchen.com> github <https://github.com/Abdur-RahmaanJ> Mauritius On Wed, Apr 20, 2022 at 10:35 PM Chris Angelico wr

Why no list as dict key?

2022-04-20 Thread Abdur-Rahmaan Janhangeer
Greetings list, Using Python3.9, i cannot assign a list [1, 2] as key to a dictionary. Why is that so? Thanks in advanced! Kind Regards, Abdur-Rahmaan Janhangeer about <https://compileralchemy.github.io/> | blog <https://www.pythonkitchen.com> github <https://github.com

Re: Python Qualification?

2022-03-29 Thread Abdur-Rahmaan Janhangeer
n one. I'd say that contributing to OpenSource helps a lot to sharpen the sense of knowing what you need exactly! Kind Regards, Abdur-Rahmaan Janhangeer about <https://compileralchemy.github.io/> | blog <https://www.pythonkitchen.com> github <https://github.com/Abdur-RahmaanJ>

Re: Best way to check if there is internet?

2022-02-25 Thread Abdur-Rahmaan Janhangeer
> I never knew this. Where can I read more about this origin? https://python-history.blogspot.com/2009/01/personal-history-part-1-cwi.html?m=1 <> There are more sources which i cannot remember from the top of my head -- https://mail.python.org/mailman/listinfo/python-list

Re: Best way to check if there is internet?

2022-02-25 Thread Abdur-Rahmaan Janhangeer
Yes i know that JS has switch from before I was referring to the pattern matching proposal. I cannot find the original place i read it from but here's the github one https://github.com/tc39/proposal-pattern-matching -- https://mail.python.org/mailman/listinfo/python-list

Re: Best way to check if there is internet?

2022-02-25 Thread Abdur-Rahmaan Janhangeer
Normally people put Python in the scripting category. I learnt typed languages like C++ and Java at first. People who learn languages like these tend to put Python in a non-serious category. The post was more ironic than litteral. After 5 years of following the mailing lists i realised that there

Re: Best way to check if there is internet?

2022-02-25 Thread Abdur-Rahmaan Janhangeer
Avi solved the captive portal problem above. It's by comparing the page content to a dynamic output. I was asking for wifi just in case i missed anything we did not yet discuss. I consider the thread closed, thanks everybody, it was very fruitful for me. Thanks for the in-between. I really like

Re: Best way to check if there is internet?

2022-02-22 Thread Abdur-Rahmaan Janhangeer
> > > Since you have to deal with things that you do not control changing > after you check what is the point in checking? You have to write the code > to recover anyway. > Well foe my usecase, the operation running is not in months or a really long time. As Avi mentionned above, that would be po

Re: Best way to check if there is internet?

2022-02-22 Thread Abdur-Rahmaan Janhangeer
I've got my answers but the 'wandering' a bit on this thread is at least connected to the topic ^^. Last question: If we check for wifi or ethernet cable connection? Wifi sometimes tell of connected but no internet connection. So it detected that there is or there is no internet ... -- https://m

Re: Best way to check if there is internet?

2022-02-22 Thread Abdur-Rahmaan Janhangeer
Well, nice perspective. It's a valid consideration, sound theory but poor practicality according to me. It you view it like this then between the moment we press run or enter key on the terminal, our Python interpreter might get deleted. We never know, it can happen. Though it's nice to go in a

Re: Best way to check if there is internet?

2022-02-22 Thread Abdur-Rahmaan Janhangeer
Thanks for the function but i think having the function as described won't return True all time Me: dipping my foot in hot water, yes we can go ... In the sprit of "practicality beats purity", devs needs a function XD Kind Regards, Abdur-Rahmaan Janhange

Re: Best way to check if there is internet?

2022-02-22 Thread Abdur-Rahmaan Janhangeer
discussed here but, it would have been nevertheless great to have this tiny function instead of nothing Kind Regards, Abdur-Rahmaan Janhangeer about <https://compileralchemy.github.io/> | blog <https://www.pythonkitchen.com> github <https://github.com/Abdur-RahmaanJ> Mauritius

Re: Why does not Python accept functions with no names?

2022-02-21 Thread Abdur-Rahmaan Janhangeer
> BTW, this is not what is usually meant by the term "anonymous function". An anonymous function is one that is not bound to *any* name. The thing you're proposing wouldn't be anonymous -- it would have a name, that name being the empty string. Thanks for clarifying this point 👍👍👍 -- https://mai

Re: Why does not Python accept functions with no names?

2022-02-20 Thread Abdur-Rahmaan Janhangeer
Yes I know about lambdas but was just an introspection about the reasoning behind ^^ Kind Regards, Abdur-Rahmaan Janhangeer about <https://compileralchemy.github.io/> | blog <https://www.pythonkitchen.com> github <https://github.com/Abdur-RahmaanJ> Mauritius -- https://mail.

Re: Why does not Python accept functions with no names?

2022-02-20 Thread Abdur-Rahmaan Janhangeer
Thanks for the answers. @Chris Well Python deliberately throws an exception if we do not pass in a function name. Just wanted to know why it should. As the above case is a 100% pure anonymous function. Kind Regards, Abdur-Rahmaan Janhangeer about <https://compileralchemy.github.io/>

Why does not Python accept functions with no names?

2022-02-20 Thread Abdur-Rahmaan Janhangeer
Greetings list. Out of curiosity, why doesn't Python accept def (): return '---' () Where the function name is ''? Kind Regards, Abdur-Rahmaan Janhangeer about <https://compileralchemy.github.io/> | blog <https://www.pythonkitchen.com> github <http

Re: Best way to check if there is internet?

2022-02-09 Thread Abdur-Rahmaan Janhangeer
ill always be the same. Thanks for pointing out! Kind Regards, Abdur-Rahmaan Janhangeer about <https://compileralchemy.github.io/> | blog <https://www.pythonkitchen.com> github <https://github.com/Abdur-RahmaanJ> Mauritius -- https://mail.python.org/mailman/listinfo/python-list

Re: Best way to check if there is internet?

2022-02-09 Thread Abdur-Rahmaan Janhangeer
m Google, and report "no network"). Yes you are right ... lol i misread the error i guess Kind Regards, Abdur-Rahmaan Janhangeer about <https://compileralchemy.github.io/> | blog <https://www.pythonkitchen.com> github <https://github.com/Abdur-RahmaanJ> Mauritius --

Re: Best way to check if there is internet?

2022-02-09 Thread Abdur-Rahmaan Janhangeer
It's a demo to get the idea behind, uses requests and the rich library. Kind Regards, Abdur-Rahmaan Janhangeer about <https://compileralchemy.github.io/> | blog <https://www.pythonkitchen.com> github <https://github.com/Abdur-RahmaanJ> Mauritius On Wed, Feb 9, 2022

Re: Best way to check if there is internet?

2022-02-08 Thread Abdur-Rahmaan Janhangeer
ernet connection') sys.exit() gist link: https://gist.github.com/Abdur-rahmaanJ/7917dc5ab7f5d2aa37b2723909be08f7 I think for me having the internet means ability to request urls Kind Regards, Abdur-Rahmaan Janhangeer about <https://compileralchemy.github.io/> | blog <https://www.pythonkitchen.com>

Re: Best way to check if there is internet?

2022-02-07 Thread Abdur-Rahmaan Janhangeer
Popular browsers tell: No internet connection detected. A function that goes in the same sense. Unless they too are pinging Google.com to check ... Kind Regards, Abdur-Rahmaan Janhangeer about <https://compileralchemy.github.io/> | blog <https://www.pythonkitchen.com> github <htt

Best way to check if there is internet?

2022-02-07 Thread Abdur-Rahmaan Janhangeer
ay to check for internet connectivity: https://www.ibm.com/support/pages/checking-network-connectivity-when-using-python-and-ibm-resilient-circuits Kind Regards, Abdur-Rahmaan Janhangeer about <https://compileralchemy.github.io/> | blog <https://www.pythonkitchen.com> github <http

Re: A Newspaper for Python Mailing Lists

2022-01-21 Thread Abdur-Rahmaan Janhangeer
over the years! Now the topics are very serious, the conversations contribute much. Keep it up! Kind Regards, Abdur-Rahmaan Janhangeer about <https://compileralchemy.github.io/> | blog <https://www.pythonkitchen.com> github <https://github.com/Abdur-RahmaanJ> Mauritius -- https

Re: A Newspaper for Python Mailing Lists

2022-01-20 Thread Abdur-Rahmaan Janhangeer
ot getting with existing resources. I had cool tutos/articles, new libs, popular posts, job openings, events but not a complete overview of meta posts. On Fri, 21 Jan 2022, 02:13 Dan Stromberg, wrote: > > There's also Python Weekly: > https://www.pythonweekly.com/ > > On Sat, Ja

Re: A Newspaper for Python Mailing Lists

2022-01-20 Thread Abdur-Rahmaan Janhangeer
Now I have a concern. For the RSS feed. Does your client filter by the latest item or pubDate? I published another edition yesterday but noticed that the item was not the latest in the list. Kind Regards, Abdur-Rahmaan Janhangeer about <https://compileralchemy.github.io/> | blog

Re: A Newspaper for Python Mailing Lists

2022-01-11 Thread Abdur-Rahmaan Janhangeer
Added RSS: 2.0 unless later versions have some advantages: https://pyherald.com/rss.xml Kind Regards, Abdur-Rahmaan Janhangeer about <https://compileralchemy.github.io/> | blog <https://www.pythonkitchen.com> github <https://github.com/Abdur-RahmaanJ> Mauritius > -- ht

Re: A Newspaper for Python Mailing Lists

2022-01-08 Thread Abdur-Rahmaan Janhangeer
Well yes XD though LWN covers Py topics well when it wants 1. Yes sure, did not expect RSS interest 2. Excuse my blunder, will do! On Sun, 9 Jan 2022, 01:15 Peter J. Holzer, wrote: > On 2021-12-26 20:40:03 +0400, Abdur-Rahmaan Janhangeer wrote: > > I have started a newspaper (not n

A Newspaper for Python Mailing Lists

2021-12-26 Thread Abdur-Rahmaan Janhangeer
t way to bring mailing list gems to a wider readership. So, here's the url https://pyherald.com/ Kind Regards, Abdur-Rahmaan Janhangeer about <https://compileralchemy.github.io/> | blog <https://www.pythonkitchen.com> github <https://github.com/Abdur-RahmaanJ> Mauritius

Re: PyCharm settings - per: print('\N{flag: Mauritius}') not supported in py3.9

2021-12-21 Thread Abdur-Rahmaan Janhangeer
Yet another unicode issue XD Kind Regards, Abdur-Rahmaan Janhangeer about <https://compileralchemy.github.io/> | blog <https://www.pythonkitchen.com> github <https://github.com/Abdur-RahmaanJ> Mauritius -- https://mail.python.org/mailman/listinfo/python-list

Re: print('\N{flag: Mauritius}') not supported in py3.9

2021-11-28 Thread Abdur-Rahmaan Janhangeer
Greetings, But why is it so? -- https://mail.python.org/mailman/listinfo/python-list

Re: print('\N{flag: Mauritius}') not supported in py3.9

2021-11-28 Thread Abdur-Rahmaan Janhangeer
Greetings, I get you but why do the short names work for some and not for others? Kind Regards, Abdur-Rahmaan Janhangeer about <https://compileralchemy.github.io/> | blog <https://www.pythonkitchen.com> github <https://github.com/Abdur-RahmaanJ> Mauritius -- https://mail.

print('\N{flag: Mauritius}') not supported in py3.9

2021-11-28 Thread Abdur-Rahmaan Janhangeer
uot;", line 1 print('\N{flag: Mauritius}') ^ i get SyntaxError: (unicode error) 'unicodeescape' codec can't decode bytes in position 0-18: unknown Unicode character name So is it that Python3.9 does not support it or what is the

Re: Advantages of Default Factory in Dataclasses

2021-11-21 Thread Abdur-Rahmaan Janhangeer
On Tue, Nov 16, 2021 at 7:17 PM Paul Bryan wrote: > On Tue, 2021-11-16 at 17:04 +0400, Abdur-Rahmaan Janhangeer wrote: > > A simple question: why do we need field(default_factory ) in dataclasses? > > > To initialize a default value when a new instance of the dataclass is >

Advantages of Default Factory in Dataclasses

2021-11-16 Thread Abdur-Rahmaan Janhangeer
Greetings list, A simple question: why do we need field(default_factory ) in dataclasses? Why not make that field as an attribute return a function? Useful implementation examples / use cases appreciated. Kind Regards, Abdur-Rahmaan Janhangeer about <https://compileralchemy.github.io/>

Re: Getting Directory of Command Line Entry Point For Packages

2021-11-13 Thread Abdur-Rahmaan Janhangeer
Greetings, This is what I am trying to do: How to get the getcwd of the directory of where the command is run and not that of the file where the cli entrypoint is found. Having the user enter the absolute path as a cli argument does not sound nice. Kind Regards, Abdur-Rahmaan Janhangeer about

Re: Getting Directory of Command Line Entry Point For Packages

2021-11-12 Thread Abdur-Rahmaan Janhangeer
icle <https://python-history.blogspot.com/2009/04/and-snake-attacks.html> as i was compiling a list of articles <https://www.pythonkitchen.com/python-engineering-articles/> and guess that it might be. Kind Regards, Abdur-Rahmaan Janhangeer about <https://compileralchemy

Getting Directory of Command Line Entry Point For Packages

2021-11-12 Thread Abdur-Rahmaan Janhangeer
Well forgetting about the lines above, how do i get the path from which miaw the command is called from? Thanks Kind Regards, Abdur-Rahmaan Janhangeer about <https://compileralchemy.github.io/> | blog <https://www.pythonkitchen.com> github <https://github.com/Abdur-RahmaanJ&

First Ever FlaskCon Tickets Sales

2021-11-04 Thread Abdur-Rahmaan Janhangeer
Kind Regards, Abdur-Rahmaan Janhangeer about <https://compileralchemy.github.io/> | blog <https://www.pythonkitchen.com> github <https://github.com/Abdur-RahmaanJ> Mauritius -- https://mail.python.org/mailman/listinfo/python-list

Re: Why so fast a web framework?

2021-10-28 Thread Abdur-Rahmaan Janhangeer
web folks don't care, web folks seem to care. And as a web someone i wanted to know why is that so. Kind Regards, Abdur-Rahmaan Janhangeer about <https://compileralchemy.github.io/> | blog <https://www.pythonkitchen.com> github <https://github.com/Abdur-RahmaanJ> Mauriti

Re: Why so fast a web framework?

2021-10-28 Thread Abdur-Rahmaan Janhangeer
Me Like why exactly is that the case, i would not be surprised for rust, C, CPP etc But as to where the difference comes for two comparatively similar langs. Kind Regards, Abdur-Rahmaan Janhangeer about <https://compileralchemy.github.io/> | blog <https://www.pythonkitchen.com> g

FlaskCon 2021: The Last Call

2021-10-28 Thread Abdur-Rahmaan Janhangeer
ive QnA. So internet connection should not be an issue. Submit talks: https://flaskcon.com/y/2021/ Kind Regards, Abdur-Rahmaan Janhangeer about <https://compileralchemy.github.io/> | blog <https://www.pythonkitchen.com> github <https://github.com/Abdur-RahmaanJ> Mauritius -- ht

Re: walrus with a twist :+= or ...

2021-10-28 Thread Abdur-Rahmaan Janhangeer
Kind Regards, Abdur-Rahmaan Janhangeer about <https://compileralchemy.github.io/> | blog <https://www.pythonkitchen.com> github <https://github.com/Abdur-RahmaanJ> Mauritius -- https://mail.python.org/mailman/listinfo/python-list

Re: Why so fast a web framework?

2021-10-27 Thread Abdur-Rahmaan Janhangeer
@Chris @Peter See that famous benchmark https://www.techempower.com/benchmarks/#section=data-r20 Like routinely PHP frameworks appear higher up than py -- https://mail.python.org/mailman/listinfo/python-list

Why so fast a web framework?

2021-10-27 Thread Abdur-Rahmaan Janhangeer
See this: https://github.com/walkor/webman Why similar frameworks do not exist in Python. Is it because of lack of lib contributors or due to an inherent difference in Py and PHP? Thanks! Kind Regards, Abdur-Rahmaan Janhangeer about <https://compileralchemy.github.io/> | blog

Re: New assignmens ...

2021-10-27 Thread Abdur-Rahmaan Janhangeer
I no longer track the threads on the subject ... Many simultaneous ones ongoing! Kind Regards, Abdur-Rahmaan Janhangeer about <https://compileralchemy.github.io/> | blog <https://www.pythonkitchen.com> github <https://github.com/Abdur-RahmaanJ> Mauritius -- https://mail.

FlaskCon's CFP is now open till Oct 24

2021-09-28 Thread Abdur-Rahmaan Janhangeer
Greetings folks, FlaskCon is around again this year, the very latest conf of the year. Bouncing in the first week of December, 1 2 3 4. CFP is open, submit -> https://flaskcon.com/ Any queries, let them fly to flask...@gmail.com Kind Regards, Abdur-Rahmaan Janhangeer about <

Re: EuroPython Society: General Assembly 2021

2021-09-27 Thread Abdur-Rahmaan Janhangeer
Greetings Damien, The mailing list is public and i would have a hard time dealing with 1000s of people replying: `stop mailing me`, maybe a private message to mal would have sufficed. Kind Regards, Abdur-Rahmaan Janhangeer about <https://compileralchemy.github.io/> | blog

Re: The code version of python -i

2021-09-19 Thread Abdur-Rahmaan Janhangeer
oders my natural instinct is to ... code a prez tool from scratch! Kind Regards, Abdur-Rahmaan Janhangeer about <https://compileralchemy.github.io/> | blog <https://www.pythonkitchen.com> github <https://github.com/Abdur-RahmaanJ> Mauritius On Fri, Sep 17, 2021 at 5:04 AM d

Re: The code version of python -i

2021-09-15 Thread Abdur-Rahmaan Janhangeer
Thanks folks will update with progress soon > -- https://mail.python.org/mailman/listinfo/python-list

The code version of python -i

2021-09-15 Thread Abdur-Rahmaan Janhangeer
Greetings, If i have a file name flower.py and i add x = 1 in it. When i run python -i flower.py i get a shell >>> If type x i get 1 >>> x 1 The values are auto injected. How do i start a shell by code with values already injected? Thanks Kind Regards, Abdur-Rahmaan Janha

Re: ANN: Version 0.5.1 of the Python config module has been released.

2021-09-12 Thread Abdur-Rahmaan Janhangeer
Used by 4.8k but only ... 4 stars -- https://mail.python.org/mailman/listinfo/python-list

Re: urgent

2021-09-04 Thread Abdur-Rahmaan Janhangeer
You need an IDE Check out: PyCharm Wing IDE Spyder ^^ Very few people use the in-built IDE -- https://mail.python.org/mailman/listinfo/python-list

Re: src layout for projects seems not so popular

2021-08-31 Thread Abdur-Rahmaan Janhangeer
Also a takeaway from my package experience is that even though __init__.py is not needed for module import, it's still needed for packaging (py3.8). Find won't find the module else. Kind Regards, Abdur-Rahmaan Janhangeer about <https://compileralchemy.github.io/&g

src layout for projects seems not so popular

2021-08-30 Thread Abdur-Rahmaan Janhangeer
Greetings list, Just an observation. Out of Github's trending repos for Python for today, I could find only 2 repos using the src layout. Matplotlib and another one. https://github.com/trending/python?since=daily Kind Regards, Abdur-Rahmaan Janhangeer about <https://compileralchemy.g

Setup.py + src: Modules not found

2021-08-30 Thread Abdur-Rahmaan Janhangeer
bot.x, the package was installed but on a fresh release, it does not know what exactly is honeybot for the first time Q: In my case in modules what should i write to import from /api? Kind Regards, Abdur-Rahmaan Janhangeer about <https://compileralchemy.github.io/> | blog <https://ww

Pandas: Multiple CSVs in one Zip file

2021-08-26 Thread Abdur-Rahmaan Janhangeer
way. Thanks Kind Regards, Abdur-Rahmaan Janhangeer about <https://compileralchemy.github.io/> | blog <https://www.pythonkitchen.com> github <https://github.com/Abdur-RahmaanJ> Mauritius -- https://mail.python.org/mailman/listinfo/python-list

FlaskCon's Call For Volunteers Is On

2021-08-17 Thread Abdur-Rahmaan Janhangeer
According to previsions, it might be the last Python conf of the year! Kind Regards, Abdur-Rahmaan Janhangeer about <https://compileralchemy.github.io/> | blog <https://www.pythonkitchen.com> github <https://github.com/Abdur-RahmaanJ> Mauritius -- https://mail.python.org/mailman/listinfo/python-list

Re: OT: Autism in discussion groups (was: Re: Proposal: Disconnect comp.lang.python from python-list)

2021-05-09 Thread Abdur-Rahmaan Janhangeer
serve as a hint and guiding principles. Kind Regards, Abdur-Rahmaan Janhangeer about <https://compileralchemy.github.io/> | blog <https://www.pythonkitchen.com> github <https://github.com/Abdur-RahmaanJ> Mauritius -- https://mail.python.org/mailman/listinfo/python-list

Re: OT: Autism in discussion groups (was: Re: Proposal: Disconnect comp.lang.python from python-list)

2021-05-09 Thread Abdur-Rahmaan Janhangeer
was referring to changes which are not so blatant and obvious. Cases which are wrong for some people but right for others not because of moral correctness directly but more because of associations present in a particular country. Kind Regards, Abdur-Rahmaan Janhangeer about <https://compileralchemy.github.io/> | blog <https://www.pythonkitchen.com> github <https://github.com/Abdur-RahmaanJ> Mauritius -- https://mail.python.org/mailman/listinfo/python-list

Re: OT: Autism in discussion groups (was: Re: Proposal: Disconnect comp.lang.python from python-list)

2021-05-09 Thread Abdur-Rahmaan Janhangeer
political motivation based heavily on the decisions of people from one specific country. Kind Regards, Abdur-Rahmaan Janhangeer about <https://compileralchemy.github.io/> | blog <https://www.pythonkitchen.com> github <https://github.com/Abdur-RahmaanJ> Mauritius -- https://mail

Re: OT: Autism in discussion groups (was: Re: Proposal: Disconnect comp.lang.python from python-list)

2021-05-09 Thread Abdur-Rahmaan Janhangeer
ular country. This poses the question of the legitimacy of the influence of a certain nation over the PSF. Kind Regards, Abdur-Rahmaan Janhangeer about <https://compileralchemy.github.io/> | blog <https://www.pythonkitchen.com> github <https://github.com/Abdur-RahmaanJ> Mauritius -- https://mail.python.org/mailman/listinfo/python-list

Understanding PyPi download stats

2021-05-07 Thread Abdur-Rahmaan Janhangeer
Greetings list, See these two links below providing download stats for a package: 1) https://pypistats.org/packages/shopyo 2) https://pepy.tech/project/shopyo Particularly for 2) Are the data accurate? Kind Regards, Abdur-Rahmaan Janhangeer about <https://compileralchemy.github.io/>

Re: Bloody rubbish

2021-05-06 Thread Abdur-Rahmaan Janhangeer
@Gene Heskett That ran deep. I was going to ask you were doing in PythonLand but you answered it at the end. Maybe i should ask what made you interested in Python in the first place? -- https://mail.python.org/mailman/listinfo/python-list

Re: Proposal: Disconnect comp.lang.python from python-list

2021-05-06 Thread Abdur-Rahmaan Janhangeer
It was high time 👍 a proposal like that came up We have seen from time to time some comp lang interruptions ~ -- https://mail.python.org/mailman/listinfo/python-list

Re: XanaNews Statistic for comp.lang.python. 4/1/2021 5:52:47 AM

2021-04-01 Thread Abdur-Rahmaan Janhangeer
So, is that mail spam or ...? -- https://mail.python.org/mailman/listinfo/python-list

Re: .title() - annoying mistake

2021-03-19 Thread Abdur-Rahmaan Janhangeer
ns: ..." Why not do it if you know people miss it? Kind Regards, Abdur-Rahmaan Janhangeer about <https://compileralchemy.github.io/> | blog <https://www.pythonkitchen.com> github <https://github.com/Abdur-RahmaanJ> Mauritius -- https://mail.python.org/mailman/listinfo/python-list

Re: .title() - annoying mistake

2021-03-19 Thread Abdur-Rahmaan Janhangeer
At least i'd expect what it pretends to do even if not following English. Missing ' is a weird behaviour, i get it they skipped every non lettet On Fri, 19 Mar 2021, 22:50 Grant Edwards, wrote: > > In English, certain words are not capitalized in titles unless they're > the first word in the t

Re: .title() - annoying mistake

2021-03-19 Thread Abdur-Rahmaan Janhangeer
On Fri, 19 Mar 2021, 22:07 MRAB, wrote: > You want English "man's" to become "Man's", but French "l'homme" to > become "L'Homme". It's language-dependant. > Ah depends on a language (English i guess). Thanks > -- https://mail.python.org/mailman/listinfo/python-list

Re: .title() - annoying mistake

2021-03-19 Thread Abdur-Rahmaan Janhangeer
Aie sorry, Did not know it targetted the non-english speakers. Kind Regards, Abdur-Rahmaan Janhangeer about <https://compileralchemy.github.io/> | blog <https://www.pythonkitchen.com> github <https://github.com/Abdur-RahmaanJ> Mauritius -- https://mail.python.org/mailman/listinfo/python-list

Re: .title() - annoying mistake

2021-03-19 Thread Abdur-Rahmaan Janhangeer
It's about unnecessary capitalisation for a common use case in English. You can see it in action on my site: https://www.compileralchemy.com/#articles see 24. Kind Regards, Abdur-Rahmaan Janhangeer about <https://compileralchemy.github.io/> | blog <https://www.pythonkitchen.com&

Re: .title() - annoying mistake

2021-03-19 Thread Abdur-Rahmaan Janhangeer
Thanks very much! That's annoying. You have to roll your own solution! Kind Regards, Abdur-Rahmaan Janhangeer about <https://compileralchemy.github.io/> | blog <https://www.pythonkitchen.com> github <https://github.com/Abdur-RahmaanJ> Mauritius > -- https://mail.p

.title() - annoying mistake

2021-03-19 Thread Abdur-Rahmaan Janhangeer
Greetings list, See this: >>> "Python's usage".title() "Python'S Usage" It should have been Python's Usage Why capitalise the S? Kind Regards, Abdur-Rahmaan Janhangeer about <https://compileralchemy.github.io/> | blog <https://www.pythonk

Packaging/MANIFEST.in: Incude All, Exclude .gitignore

2021-02-28 Thread Abdur-Rahmaan Janhangeer
Greetings list, SInce i have a .gitignore, how do i exclude all files and folders listed by my gitignore? How do i include everything by default? Kind Regards, Abdur-Rahmaan Janhangeer about <https://compileralchemy.github.io/> | blog <https://www.pythonkitchen.com> github <htt

Re: New Python implementation

2021-02-16 Thread Abdur-Rahmaan Janhangeer
Greetings, age: After university to retirement level: school, A Level is high school, not university -- https://mail.python.org/mailman/listinfo/python-list

Re: New Python implementation

2021-02-16 Thread Abdur-Rahmaan Janhangeer
Then, if it was no Python at that time, it might be no Python for life. With that mindset ongoing, those students think they know Python, they studied it, but they missed the whole thing. Forest, trees and leaves. They know only the color of the sign board leading to the place. Kind Reg

Re: New Python implementation

2021-02-15 Thread Abdur-Rahmaan Janhangeer
After reading the thread i'm like: where can i try it out ... On Thu, 11 Feb 2021, 16:38 Mr Flibble, wrote: > > Hi! > > I am starting work on creating a new Python implementation from scratch > using "neos" my universal compiler that can compile any programming > language. I envision this imple

Re: Venv behaviour change py3.9

2021-02-15 Thread Abdur-Rahmaan Janhangeer
, Abdur-Rahmaan Janhangeer about <https://compileralchemy.github.io/> | blog <https://www.pythonkitchen.com> github <https://github.com/Abdur-RahmaanJ> Mauritius On Sun, Feb 14, 2021 at 6:45 PM Barry Scott wrote: > > > > On 14 Feb 2021, at 09:42, Abd

Venv behaviour change py3.9

2021-02-14 Thread Abdur-Rahmaan Janhangeer
Greetings all, on 3.7 when i do $ python -m venv venv it creates a venv in venv folder but on 3.9 it returns no such file or directory os: windows. Any ideas on why the behaviour changes? -- https://mail.python.org/mailman/listinfo/python-list

Re: A beginning beginner's question about input, output and . . .

2021-01-11 Thread Abdur-Rahmaan Janhangeer
for Tkinter, it's really annoying. PyQt5 and others are a lot better. PyQt5 follows the Cpp function namings Kind Regards, Abdur-Rahmaan Janhangeer about <https://compileralchemy.github.io/> | blog <https://www.pythonkitchen.com> github <https://github.com/Abdur-RahmaanJ> M

Re: Python Mauritius Usergroup - End of Year report 2020

2021-01-03 Thread Abdur-Rahmaan Janhangeer
Greetings, ^^ Thanks! Kind Regards, Abdur-Rahmaan Janhangeer about <https://compileralchemy.github.io/> | blog <https://www.pythonkitchen.com> github <https://github.com/Abdur-RahmaanJ> Mauritius On Sun, Jan 3, 2021 at 8:12 AM dn via Python-list wrote: > On 1/3/21 5

Python Mauritius Usergroup - End of Year report 2020

2021-01-02 Thread Abdur-Rahmaan Janhangeer
Greetings list, Here's our usergroup's end of year report for 2020: Happy reading! https://www.pymug.com/assets/pymug_end_of_year_2020_v2.pdf Kind Regards, Abdur-Rahmaan Janhangeer about <https://compileralchemy.github.io/> | blog <https://www.pythonkitchen.com> gith

Re: Does windows edit .py file shebangs?

2021-01-01 Thread Abdur-Rahmaan Janhangeer
Greetings list, Being a windows user since long, this made me laugh. Tell me 1/ What version of Python are you running? 2/ What editor/IDE are you using? Kind Regards, Abdur-Rahmaan Janhangeer about <https://compileralchemy.github.io/> | blog <https://www.pythonkitchen.com> g

Re: Lambda in parameters

2020-12-19 Thread Abdur-Rahmaan Janhangeer
that time i was looking for companies who use OCaml etc Did not come across Jane Street (If you know someone from there tell them the question writer has a really twisted mind ^^)/. I don't understand why though you would prefer OCaml over Python, Go, Java etc for a company ^^ Kind Regards, Abd

Re: Lambda in parameters

2020-12-19 Thread Abdur-Rahmaan Janhangeer
-Rahmaan Janhangeer about <https://compileralchemy.github.io/> | blog <https://www.pythonkitchen.com> github <https://github.com/Abdur-RahmaanJ> Mauritius -- https://mail.python.org/mailman/listinfo/python-list

Re: Lambda in parameters

2020-12-19 Thread Abdur-Rahmaan Janhangeer
Greetings, Very clear explanations, rewriting lambdas as a function was the key to understand it. Did not know was a lisp inspiration. My mind still spiralling XD Kind Regards, Abdur-Rahmaan Janhangeer about <https://compileralchemy.github.io/> | blog <https://www.pythonkitchen.co

Re: Lambda in parameters

2020-12-18 Thread Abdur-Rahmaan Janhangeer
): def pair(f): return f(a, b) return pair Implement car and cdr. # --- Kind Regards, Abdur-Rahmaan Janhangeer https://www.github.com/Abdur-RahmaanJ Mauritius sent from gmail client on Android, that's why the signature is so ugly. On Fri, 18 Dec 2020, 10:02 Cameron Simpson,

Lambda in parameters

2020-12-17 Thread Abdur-Rahmaan Janhangeer
how lambda achieves this Kind Regards, Abdur-Rahmaan Janhangeer https://www.github.com/Abdur-RahmaanJ Mauritius sent from gmail client on Android, that's why the signature is so ugly. -- https://mail.python.org/mailman/listinfo/python-list

Documenting the Python Community

2020-11-02 Thread Abdur-Rahmaan Janhangeer
g with those I have some sort of relationship with. The idea behind is to reinforce the community touch. The draft might seem a tedious task for the expected benefits but with the right approach it will be smooth. Feel free to continue the conversation! Kind Regards, Abdur-Rahmaan Janhangeer abou

Re: What might cause my sample program to forget that already imported datetime?

2020-10-12 Thread Abdur-Rahmaan Janhangeer
Btw why a datetime in datetime? It causes much confusion. I dont know the design decision behind, if someone knows, it might be good to explain I dont expect it to change anytime soon due to backward compatibility, but just for knowledge. Kind Regards, Abdur-Rahmaan Janhangeer https

Re: Faking stdlib

2020-10-01 Thread Abdur-Rahmaan Janhangeer
Abdur-Rahmaan Janhangeer https://www.github.com/Abdur-RahmaanJ Mauritius sent from gmail client on Android, that's why the signature is so ugly. -- https://mail.python.org/mailman/listinfo/python-list

Re: Importing from within package

2020-09-23 Thread Abdur-Rahmaan Janhangeer
Thanks for the lead. Checking tomorrow! If so i'll have to include other folders as well ... Kind Regards, Abdur-Rahmaan Janhangeer https://www.github.com/Abdur-RahmaanJ Mauritius sent from gmail client on Android, that's why the signature is so ugly. -- https://mail.python.o

Re: Importing from within package

2020-09-23 Thread Abdur-Rahmaan Janhangeer
shopyoapi Kind Regards, Abdur-Rahmaan Janhangeer https://www.github.com/Abdur-RahmaanJ Mauritius sent from gmail client on Android, that's why the signature is so ugly. -- https://mail.python.org/mailman/listinfo/python-list

Re: Importing from within package

2020-09-22 Thread Abdur-Rahmaan Janhangeer
Greetings list, In case this might help, i am on Python3.8 and running in a virtual env This command also does not work: python -m shopyo new . test2 Kind Regards, Abdur-Rahmaan Janhangeer about <https://compileralchemy.github.io/> | blog <https://abdur-rahmaanj.github.io/> g

  1   2   3   4   5   >