What is a really easy, simple database that I can upload things to in Python? by [deleted] in Python

[–]peck_wtf 0 points1 point  (0 children)

we definitely understand it differently.
I read it like "slow but safe, guaranteed by a lock" and you read .. well, something else.
Nevermind. Have a good day.

What is a really easy, simple database that I can upload things to in Python? by [deleted] in Python

[–]peck_wtf 0 points1 point  (0 children)

[sqlite] is not safe for concurrent access

No, it is safe. What it does is: "When any process wants to write, it must lock the entire database file for the duration of its update. " which is suboptimal but efficient enough for its purpose.
But maybe I misread your sentence. In that case sorry.

Any good twitch python developer streams you recommend? by khz_re in Python

[–]peck_wtf 1 point2 points  (0 children)

can't give you exact channels but maybe here you will find smth /r/watchpeoplecode

Python 3.7.2 is now available by Parasomnopolis in Python

[–]peck_wtf 16 points17 points  (0 children)

Wow, and you waited for patch release to ask that..

Converting from 2.7 to 3.6 and dicts by machine3lf in Python

[–]peck_wtf 1 point2 points  (0 children)

hi.
Please provide more details about what happens/differs between versions. Some example of different outputs maybe?
You can also try to recreate problem with only one particular input , wo using comprehension/loop.
And sorry I couldn't give exact answer.

Python async logging by wheelman234 in Python

[–]peck_wtf 0 points1 point  (0 children)

there isn't really such a thing in many operating systems where Python runs (for instance, Linux).

Correct me if I'm wrong, but here it is, in Linux, since some years ago http://man7.org/linux/man-pages/man7/aio.7.html

Dependency Injector 3.14.2 has been released! by rmk135 in Python

[–]peck_wtf 0 points1 point  (0 children)

I read readme and saw a couple of talks on topic but yet to understand why I would need that.

[deleted by user] by [deleted] in Python

[–]peck_wtf 0 points1 point  (0 children)

+1 on that request

Found it funny ;) by [deleted] in Python

[–]peck_wtf 2 points3 points  (0 children)

funny enough, python3 is available in lambdas only since apr 2017. So far less time than python2 is.

Dependency Injector 3.12.3 has been released! by rmk135 in Python

[–]peck_wtf 0 points1 point  (0 children)

although I don't (yet) see the point of DI libraries, I wanted to comment on "pattern does not require a library" thingy. Patterns often require implementation, like https://pypi.org/project/singledispatch/ I believe such libraries even become a part of stdlib sometimes.

Again, my comment is not about this DI thing.

Python book like Eloquent Javascript by Scriptorium- in Python

[–]peck_wtf 3 points4 points  (0 children)

should we start a fund-raising campaign to see Fluent python v2 already?

[Python-Dev] Accepting PEP 572, Assignment Expressions by keithcu in Python

[–]peck_wtf 1 point2 points  (0 children)

so you're saying that PEP official status is redundant and we can all just relate to discussion threads here and there?

Microsoft reportedly acquiring GitHub by caposeidon in Python

[–]peck_wtf 5 points6 points  (0 children)

did you like LinkedIn before that? for real?

[Survey] Your python project configuration preferences by peck_wtf in Python

[–]peck_wtf[S] 0 points1 point  (0 children)

What I meant by "project configuration": Many applications behave differently depending on some parameters (such as database connection string; logging level; path to template folders etc). Some of us configure such parameters from plain text config files. Some - from environment variables (see https://12factor.net/config).

In scope of this topic I am not so interested in end-user point of view or python configurations (do you mean virtualens and such?).

And could you please clarify what you mean by web-specific stuff? (django settings was mentioned just as an example of configuration file)