Re: BitChan (python project)

2024-09-06 Thread Schimon Jehudah via Python-list
Greetings, 711! This is very good! Do you know of Plebbit? It might be good to interoperate with Plebbit too. https://plebbit.com/ Kind regards, Schimon On Thu, 5 Sep 2024 04:53:05 - 711 Spooky Mart via Python-list wrote: > from https://github.com/813492291816/BitChan > > BitChan is a

BitChan (python project)

2024-09-05 Thread 711 Spooky Mart via Python-list
from https://github.com/813492291816/BitChan BitChan is a decentralized anonymous imageboard inspired by BitBoard and built on top of Bitmessage with Tor, I2P, and GnuPG. BitChan solves a number of security and free speech problems that have plagued most imageboards. Centralized imageboards can

Re: GIL-Removal Project Takes Another Step (Posting On Python-List Prohibited)

2024-03-20 Thread Chris Angelico via Python-list
On Wed, 20 Mar 2024 at 18:31, Greg Ewing via Python-list wrote: > > On 20/03/24 4:14 pm, Lawrence D'Oliveiro wrote: > > not to > > mention the latency when there isn’t quite enough memory for an allocation > > and you have to wait until the next GC run to proceed. Run the GC a > > thousand times a

Re: GIL-Removal Project Takes Another Step (Posting On Python-List Prohibited)

2024-03-20 Thread Greg Ewing via Python-list
On 20/03/24 4:14 pm, Lawrence D'Oliveiro wrote: not to mention the latency when there isn’t quite enough memory for an allocation and you have to wait until the next GC run to proceed. Run the GC a thousand times a second, and the latency is still 1 millisecond. That's not the way it usually wo

Re: PEP about recommended project folder layout

2022-07-31 Thread Chris Angelico
On Sun, 31 Jul 2022 at 20:27, Weatherby,Gerard wrote: > > I’m not aware of any standard convention for laying out packages. > > PEP 8 (https://peps.python.org/pep-0008/) specifies conventions for how to > write Python, so a standard layout PEP would not be inconsistent. > PEP 8 species rules for

Re: PEP about recommended project folder layout

2022-07-31 Thread Weatherby,Gerard
ot;PEP 609 – Python Packaging Authority (PyPA) Governance" [1] and the "PyPA specifications" [2]. My question in short: Is there an official document (e.g. a PEP) about a recommended layout for project folders. Looking into the wild and past there are a lot of variations of such la

Re: PEP about recommended project folder layout

2022-07-30 Thread Barry
: >> Hello, >> >> I am not sure if I looked into the correct sources. I was looking in >> "PEP 609 – Python Packaging Authority (PyPA) Governance" [1] and the >> "PyPA specifications" [2]. >> >> My question in short: Is ther

Re: PEP about recommended project folder layout

2022-07-30 Thread c.buhtz
gt; My question in short: Is there an official document (e.g. a PEP) > about a recommended layout for project folders. > > Looking into the wild and past there are a lot of variations of such > layouts. I am far away from being a pro but depending on experience > in my own projec

PEP about recommended project folder layout

2022-07-26 Thread c . buhtz
Hello, I am not sure if I looked into the correct sources. I was looking in "PEP 609 – Python Packaging Authority (PyPA) Governance" [1] and the "PyPA specifications" [2]. My question in short: Is there an official document (e.g. a PEP) about a recommended layout

Re: For a hierarchical project, the EXE file generated by "pyinstaller" does not start.

2021-12-08 Thread Mohsen Owzar
Chris Angelico schrieb am Dienstag, 7. Dezember 2021 um 19:16:54 UTC+1: > On Wed, Dec 8, 2021 at 4:49 AM Mohsen Owzar wrote: > > *** > > GPIOContrl.py > > *** > > cla

Re: For a hierarchical project, the EXE file generated by "pyinstaller" does not start.

2021-12-07 Thread Chris Angelico
On Wed, Dec 8, 2021 at 4:49 AM Mohsen Owzar wrote: > *** > GPIOContrl.py > *** > class GPIOControl: > def my_print(self, args): > if print_allowed == 1: > print(args) > >

For a hierarchical project, the EXE file generated by "pyinstaller" does not start.

2021-12-07 Thread Mohsen Owzar
Hi all, I have a problem with "pyinstaller". When I compile a single Python file, an EXE file is created in the "dist" directory, with which I can start the program and the GUI appears after a few seconds. But when I try to compile my project with "pyinstaller Relai

Re: [Python-ideas] Re: Looking for people interested in a Python register virtual machine project

2021-03-23 Thread Guido van Rossum
On Tue, Mar 23, 2021 at 12:40 PM Skip Montanaro wrote: > I've not attempted to make any changes to calling conventions. It > occurred to me that the LOAD_METHOD/CALL_METHOD pair could perhaps be > merged into a single opcode, but I haven't really thought about that. > Perhaps there's a good reaso

Re: [Python-ideas] Looking for people interested in a Python register virtual machine project

2021-03-23 Thread Skip Montanaro
> a) You're working with CPython bleeding edge. > b) You find that (bleeding edge) adding extra chore. > c) Nobody told you to work on bleeding (nor boss, nor a maintainer who > said "I'll merge it once you've done"), > > Then: why do you complicate your task by working on bleeding edge? > Could ta

Re: [Python-ideas] Looking for people interested in a Python register virtual machine project

2021-03-22 Thread Skip Montanaro
Thanks for the response. I will try to address your comments inline. > I guess it should be a good idea to answer what's the scope of this > project - is it research one or "production" one? If it's research one, > why be concerned with the churn of over-modern CPyth

Re: [Python-ideas] Looking for people interested in a Python register virtual machine project

2021-03-22 Thread Skip Montanaro
> Yeah, that is old writing, so is probably less clear (no pun intended) > than it should be. In frame_dealloc, Py_CLEAR is called for > stack/register slots instead of just Py_XDECREF. Might not be > necessary. Also, the intent is not to change any semantics here. The implementation of RETURN_VAL

Re: [Python-ideas] Looking for people interested in a Python register virtual machine project

2021-03-22 Thread Skip Montanaro
> In the "Object Lifetime" section you say "registers should be cleared upon > last reference". That isn't safe, since there can be hidden dependencies on > side effects of __del__, e.g.: > > process_objects = create_pipeline() > output_process = process_objects[-1] > return output_pr

Re: [Python-ideas] Looking for people interested in a Python register virtual machine project

2021-03-20 Thread Skip Montanaro
Yes, I remember Parrot. As I understand it their original goal was a language-agnostic virtual machine, which might have complicated things. I will do a bit of reading and add some text to the "PEP." Skip On Sat, Mar 20, 2021, 11:36 AM David Mertz wrote: > The Parrot project was

Looking for people interested in a Python register virtual machine project

2021-03-20 Thread Skip Montanaro
often needing to resolve conflicts because of churn in the current Python virtual machine. Though I kept getting things back in sync, I realize this is not a one-person project, at least not this one person. There are several huge chunks of Python I've ignored over the past 20 years, and not just the

need help with a ctypes project for PyPI

2021-02-03 Thread Simon Zhang
Hi, I have created a ctypes project as in the following link's first answer: https://stackoverflow.com/questions/42585210/extending-setuptools-extension-to-use-cmake-in-setup-py Since my machine's gcc is too high version or something, I used the docker image located here: https

Asyncio project code review

2021-01-08 Thread James
Good day for everyone. I have new asyncio project which use aiohttp connector and asyncio protocols/transports for tunneling packets through Tor Network cleanly. Project called aiotor: https://github.com/torpyorg/aiotor If someone with experience in asyncio field can make code review I will

asyncio project code review

2021-01-08 Thread James
Good day everyone. I have new asyncio project which use aiohttp connector and asyncio protocols/transports for tunneling packets through Tor Network cleanly. Project called aiotor: https://github.com/torpyorg/aiotor If someone with experience in asyncio field can make code review I will be

A new project to be started

2020-10-06 Thread Agnese Camellini
Hello to everyone, i don't have a clear idea about who to write about this project, which is only an idea, but it has to be written i think. At first it was just a comparative literature research project, but now that i am more involved in development, it has started to become more l

Re: The FaQ project - Single or Double quotes

2020-06-11 Thread Abdur-Rahmaan Janhangeer
On Thu, Jun 11, 2020 at 10:00 PM Abdur-Rahmaan Janhangeer < arj.pyt...@gmail.com> wrote: > Since the single vs double quote thread > i decided to reactivate the FaQ project. > > You can view it here > > https://abdur-rahmaanj.github.io/pyfaq/[list]_Single_or_double_quotes.

The FaQ project - Single or Double quotes

2020-06-11 Thread Abdur-Rahmaan Janhangeer
Since the single vs double quote thread i decided to reactivate the FaQ project. You can view it here https://abdur-rahmaanj.github.io/pyfaq/[list]_Single_or_double_quotes.html The index has some some more summaries: https://abdur-rahmaanj.github.io/pyfaq/ <https://abdur-rahmaanj.github

My New Project : Aduct

2020-04-12 Thread J.Arun Mani via Python-list
rs without any trouble. What help I need : This is my first project where I put a much work in writing docs and things. So I'm a pretty noob who needs a help from various people with different ideas. Hence I kindly request you to spend time with Aduct (if you can) : 1. Use Aduct - please use

Re: NLP Project with Python

2020-04-09 Thread Souvik Dutta
take time. Souvik flutter dev On Wed, Apr 8, 2020, 12:45 PM wrote: > Hello everyone > I`m new to python. I need to select a project idea so that I can work with > it during this semester. the project should be in the area of business and > finance > at first I was thinking of crea

Re: NLP Project with Python

2020-04-08 Thread joseph pareti
hon. I need to select a project idea so that I can work with > it during this semester. the project should be in the area of business and > finance > at first I was thinking of creating a project using NLP but I don`t know > what exactly to create > also I would like to create

NLP Project with Python

2020-04-08 Thread dreamyladygirl
Hello everyone I`m new to python. I need to select a project idea so that I can work with it during this semester. the project should be in the area of business and finance at first I was thinking of creating a project using NLP but I don`t know what exactly to create also I would like to create

Re: Would you be interested in this Python open source project?

2019-10-12 Thread oliver
projects that need help. Another major advantage of helping an existing project is that you will be seeing how others write python code so you will learn best practices faster (dont kid yourself, if you do it on your own the code you write now you will find horrible in a year, and you certainly will

Re: Would you be interested in this Python open source project?

2019-10-09 Thread Simon Connah
On 08/10/2019 15:05, Bill Deegan wrote: You might just consider working with the BuildBot project to add support for lighter weight build workers. Re-Re-Re-inventing the wheel is almost always wasted effort. Buildbot looks good. I'll check to make sure its open source license is compa

Re: Would you be interested in this Python open source project?

2019-10-09 Thread Simon Connah
On 08/10/2019 13:17, Rhodri James wrote: On 08/10/2019 11:22, Simon Connah wrote: I'm posting this message as a way to gauge interest in the project and to see if it is worth moving forward with. There are probably hundreds of CI/CD tools out there and many more general devops tools but

Re: Would you be interested in this Python open source project?

2019-10-08 Thread Bill Deegan
You might just consider working with the BuildBot project to add support for lighter weight build workers. Re-Re-Re-inventing the wheel is almost always wasted effort. On Tue, Oct 8, 2019 at 8:33 AM Rhodri James wrote: > On 08/10/2019 11:22, Simon Connah wrote: > > I'm posting thi

Re: Would you be interested in this Python open source project?

2019-10-08 Thread Rhodri James
On 08/10/2019 11:22, Simon Connah wrote: I'm posting this message as a way to gauge interest in the project and to see if it is worth moving forward with. There are probably hundreds of CI/CD tools out there and many more general devops tools but what I want to build is a CI/CD tool that

Would you be interested in this Python open source project?

2019-10-08 Thread Simon Connah
I'm posting this message as a way to gauge interest in the project and to see if it is worth moving forward with. There are probably hundreds of CI/CD tools out there and many more general devops tools but what I want to build is a CI/CD tool that ONLY supports Python 3.6 or greater and

Re: What's the latest best practice on Python project directory layouts?

2019-06-14 Thread Cameron Simpson
el. Here is how I lay out a project, based on my current one (nonPython bits elided): project/ bin/ lib/python/all-modules-here venv/ Various points: - I dislike using Python's "search for modules in the current directory"; I would _always_ rather set $PYTHONPATH fo

What's the latest best practice on Python project directory layouts?

2019-06-14 Thread Malcolm Greene
I have a collection of command line scripts that share a collection of common modules. This code collection is for internal use and will run under a single version of Python 3.6+ and a single OS. My understanding of best practice is to organize this collection of Python files into a folder struc

[Project Announcement] tglogger: Sending Live Logging Records to A Python Chat

2019-05-14 Thread Eray Erdin
I hereby announce my new project called tglogger to Python community. Check it out here <https://github.com/erayerdin/tglogger>. *What It Does* tglogger contains custom handler and formatter implementations in order to send logging records directly to a chat, which means you get loggin

Re: The Mailing List Digest Project

2019-03-29 Thread Jason Friedman
> > Pretty cool. FYI, the index page (now containing 4 articles) with Google >> Chrome 72.0.3626.x prompts me to translate to French. The articles >> themselves do not. >> > > I'm now getting the translation offer on other web pages with Chrome, not just this one. Thus, please ignore my prior po

Re: The Mailing List Digest Project

2019-03-27 Thread Abdur-Rahmaan Janhangeer
continuing a better effort here: https://github.com/PythonCHB/PythonListsSummaries moving to an impersonal repo later! Garanti sans virus. www.avast.com

Re: The Mailing List Digest Project

2019-03-27 Thread Abdur-Rahmaan Janhangeer
hum maybe beacuse i speak french some settings got configured but i don't see how. btw we are moving to a better repo with sphinx Garanti sans virus. www.avast.com

Re: The Mailing List Digest Project

2019-03-27 Thread Jason Friedman
On Mon, Mar 25, 2019 at 11:03 PM Abdur-Rahmaan Janhangeer < arj.pyt...@gmail.com> wrote: > As proposed on python-ideas, i setup a repo to turn mail threads into > articles. > > i included a script to build .md to .html (with syntax highlighting) here > is the index > > https://abdur-rahmaanj.githu

Re: The Mailing List Digest Project

2019-03-26 Thread Abdur-Rahmaan Janhangeer
#agree -- https://mail.python.org/mailman/listinfo/python-list

Re: The Mailing List Digest Project

2019-03-26 Thread Christopher Barker
On Tue, Mar 26, 2019 at 8:32 AM Abdur-Rahmaan Janhangeer < arj.pyt...@gmail.com> wrote: > Great! will see sphinx but if i find the html hard to customise, i'll drop > it. > Sphinx has theming support, plus you can do custom CSS if you want. But Highly discourage you from worrying about formattin

Re: The Mailing List Digest Project

2019-03-26 Thread Christopher Barker
On Mon, Mar 25, 2019 at 10:01 PM Abdur-Rahmaan Janhangeer < arj.pyt...@gmail.com> wrote: > As proposed on python-ideas, i setup a repo to turn mail threads into > articles. > Thanks for doing this — I find myself frequently telling people about past relevant threads on this list - it will be grea

Re: The Mailing List Digest Project

2019-03-26 Thread Abdur-Rahmaan Janhangeer
Great! will see sphinx but if i find the html hard to customise, i'll drop it. Search feature and tags coming. also, currently i'm formatting the mails rather than an article, i don't know if a real summary of the topic preferable ... Abdur-Rahmaan Janhangeer Mauritius -- https://mail.python.or

The Mailing List Digest Project

2019-03-25 Thread Abdur-Rahmaan Janhangeer
As proposed on python-ideas, i setup a repo to turn mail threads into articles. here is the repo https://github.com/Abdur-rahmaanJ/py-mailing-list-summary i included a script to build .md to .html (with syntax highlighting) here is the index https://abdur-rahmaanj.github.io/py-mailing-list-summ

Slack NLP : open source project

2018-12-30 Thread bhagvanarch
If you would like to join the slack NLP project, please share your github id to email address is bhagv...@quanticacomputacao.com or bhagv...@gmail.com. Slack NLP github repository https://github.com/bhagvank/slacknlp Slack channel http://goo.gl/BMGHjr Telegram group https://t.me

Monte Carlo Quant: Opensource project

2018-12-29 Thread bhagvanarch
Quantica computacao has started an open source initiative in python. We invite students and professionals to be part of it . My email address is bhagv...@quanticacomputacao.com or bhagvana...@gmail.com Repository link is : https://github.com/bhagvank/Montecarlo_Quant If you want to participate a

Re: Project Structure for Backend ETL Project

2018-08-21 Thread Terry Reedy
On 8/21/2018 11:46 AM, Jeff M wrote: Is this a good example to follow for a project that does mostly python to interact with external data sources including files, transformation, and import into Postgres? https://github.com/bast/somepackage AFAIK, the recommendations in the README are a

Project Structure for Backend ETL Project

2018-08-21 Thread Jeff M
Is this a good example to follow for a project that does mostly python to interact with external data sources including files, transformation, and import into Postgres? https://github.com/bast/somepackage I have a SWE background but not with python, and I want to make sure my team is

Re: Design of my project

2018-06-14 Thread ftg
On 13Jun2018 15:23, Fabien LUCE wrote: > >> Here is a small picture of my project. >> I'd like to fetch several datas from a website representing races results. >> Each line of the result contains rank, runner's name and other attributes >> of the runner (like club

Re: Design of my project

2018-06-13 Thread Cameron Simpson
On 13Jun2018 15:23, Fabien LUCE wrote: Here is a small picture of my project. I'd like to fetch several datas from a website representing races results. Each line of the result contains rank, runner's name and other attributes of the runner (like club etc...). For now I have created

Design of my project

2018-06-13 Thread Fabien LUCE
Hello everyone, Here is a small picture of my project. I'd like to fetch several datas from a website representing races results. Each line of the result contains rank, runner's name and other attributes of the runner (like club etc...). For now I have created 2 classes (Race

Project tree and import module

2018-06-08 Thread ftg
Hello, here is my project hierarchy: myproject | |- django-project-name | |- django-project-name | | |-urls.py | | |-views.py | |- manage.py |- my-package Is my projet tree correct? Shouldn't I put my-package into my django-project-name folder? Because I am facing some questionning

css script project refractor code

2018-05-18 Thread Abdur-Rahmaan Janhangeer
i have a project at : README : https://github.com/Abdur-rahmaanJ/css-script/blob/master/README.md SITE : https://abdur-rahmaanj.github.io/css-script/ and i want to refractor the main file : https://github.com/Abdur-rahmaanJ/css-script/blob/master/css_script/main.py if this was an old project

How would you split project into 2 parts?

2018-04-24 Thread Viacheslav Kondratiuk
I need to split a project into 2 parts. To have one part as the main project and include the second one as a submodule. Those parts located at different parts of a project. I can see 2 ways how I can do that: 1. Use PyCharm Refactor->Move functionality. It works fine. It takes a module o

Re: py2exe maintainer abandoned the project; is there any replacements? Or, anyone willing to continue the work?

2018-02-21 Thread Kryptxy via Python-list
I like pyinstaller. It's one-file exe creation is pretty good. You can give it a try. Original Message On 21 Feb 2018, 23:00, MGHSM wrote: > Am 21.02.18 um 18:30 schrieb MGHSM: > Thomas Heller himself says he's > "retiring" from py2exe in > https://sourceforge.net/p/py2exe/ma

Re: py2exe maintainer abandoned the project; is there any replacements? Or, anyone willing to continue the work?

2018-02-21 Thread Christian Gollwitzer
Am 21.02.18 um 18:30 schrieb MGHSM: Thomas Heller himself says he's "retiring" from py2exe in https://sourceforge.net/p/py2exe/mailman/message/36033869/ Is there any suitable replacement with similar or better capabilities? There is PyInstaller, which works on all major OS: http://www.pyinst

py2exe maintainer abandoned the project; is there any replacements? Or, anyone willing to continue the work?

2018-02-21 Thread MGHSM
Thomas Heller himself says he's "retiring" from py2exe in https://sourceforge.net/p/py2exe/mailman/message/36033869/ Is there any suitable replacement with similar or better capabilities? Is there any desires to continue the project? -- https://mail.python.org/mailman/listinfo/python-list

Install PyDev package or any other regular package during runtime in the python project

2018-01-31 Thread user2301
I am trying to dynamically install PyDev package at runtime. I have a PyDev project created in eclipse. I have a PyDev package on network location. Based on some configuration and input in my PyDev project, I want to install and load the PyDev package from network location. The classes

Re: OT: MPC-HC project ending? [Re: Lies in education [was Re: The "loop and a half"]]

2017-10-12 Thread breamoreboy
On Thursday, October 12, 2017 at 12:33:09 PM UTC+1, Chris Angelico wrote: > On Thu, Oct 12, 2017 at 8:12 PM, Thomas Jollans wrote: > > On 2017-10-12 02:51, Chris Angelico wrote: > >> If it wants new life, it's probably going to need a Linux version, > >> because that's where a lot of developers han

Re: OT: MPC-HC project ending? [Re: Lies in education [was Re: The "loop and a half"]]

2017-10-12 Thread Chris Angelico
On Thu, Oct 12, 2017 at 8:12 PM, Thomas Jollans wrote: > On 2017-10-12 02:51, Chris Angelico wrote: >> If it wants new life, it's probably going to need a Linux version, >> because that's where a lot of developers hang out. The reality is that >> open source developers are much more likely to deve

Re: OT: MPC-HC project ending? [Re: Lies in education [was Re: The "loop and a half"]]

2017-10-12 Thread Thomas Jollans
On 2017-10-12 02:51, Chris Angelico wrote: > If it wants new life, it's probably going to need a Linux version, > because that's where a lot of developers hang out. The reality is that > open source developers are much more likely to develop on Linux than > on Windows; you can maintain a Windows po

Re: OT: MPC-HC project ending? [Re: Lies in education [was Re: The "loop and a half"]]

2017-10-11 Thread Chris Angelico
d it says: > > > > July 16, 2017 XhmikosR > > v1.7.13, the latest, and probably the last release of our project… > > For quite a few months now, or even years, the number of active > developers has been decreasing and has inevitably reached zero. This, > unfortunat

OT: MPC-HC project ending? [Re: Lies in education [was Re: The "loop and a half"]]

2017-10-11 Thread boB Stepp
nal commands. > (Remark for Linux users: there is no Linux version of that player, it > is Windows-only) I went to https://mpc-hc.org/2017/07/16/1.7.13-released-and-farewell/ and it says: July 16, 2017 XhmikosR v1.7.13, the latest, and probably the last release of our project… For q

Re: django project avoid reload page where work algorithm

2017-10-08 Thread Richard Damon
On 10/8/17 4:46 PM, Xristos Xristoou wrote: Τη Κυριακή, 8 Οκτωβρίου 2017 - 10:48:38 μ.μ. UTC+3, ο χρήστης Richard Damon έγραψε: On 10/8/17 11:58 AM, Xristos Xristoou wrote: Τη Κυριακή, 8 Οκτωβρίου 2017 - 6:35:28 μ.μ. UTC+3, ο χρήστης MRAB έγραψε: On 2017-10-08 15:27, Xristos Xristoou wrote:

Re: django project avoid reload page where work algorithm

2017-10-08 Thread Michael Torrie
On 10/08/2017 02:46 PM, Xristos Xristoou wrote: > Τη Κυριακή, 8 Οκτωβρίου 2017 - 10:48:38 μ.μ. UTC+3, ο χρήστης Richard Damon > έγραψε: >> It sounds like the fundamental problem is that you are doing the >> calculation in the web page handler. This means that the browser will be >> stuck in the

Re: django project avoid reload page where work algorithm

2017-10-08 Thread Xristos Xristoou
Τη Κυριακή, 8 Οκτωβρίου 2017 - 10:48:38 μ.μ. UTC+3, ο χρήστης Richard Damon έγραψε: > On 10/8/17 11:58 AM, Xristos Xristoou wrote: > > Τη Κυριακή, 8 Οκτωβρίου 2017 - 6:35:28 μ.μ. UTC+3, ο χρήστης MRAB έγραψε: > >> On 2017-10-08 15:27, Xristos Xristoou wrote: > > > >> Do you mean "long reload"? >

Re: django project avoid reload page where work algorithm

2017-10-08 Thread Richard Damon
On 10/8/17 11:58 AM, Xristos Xristoou wrote: Τη Κυριακή, 8 Οκτωβρίου 2017 - 6:35:28 μ.μ. UTC+3, ο χρήστης MRAB έγραψε: On 2017-10-08 15:27, Xristos Xristoou wrote: Do you mean "long reload"? user can put some numbers in my html template and i take that numbers and i sue it in specific math

Re: django project avoid reload page where work algorithm

2017-10-08 Thread Xristos Xristoou
Τη Κυριακή, 8 Οκτωβρίου 2017 - 6:35:28 μ.μ. UTC+3, ο χρήστης MRAB έγραψε: > On 2017-10-08 15:27, Xristos Xristoou wrote: > Do you mean "long reload"? user can put some numbers in my html template and i take that numbers and i sue it in specific mathematical algorithm that algorithm to create res

Re: django project avoid reload page where work algorithm

2017-10-08 Thread MRAB
On 2017-10-08 15:27, Xristos Xristoou wrote: You can use the smtplib module to send an email. ok but how to avoid pong reload on page ?can you help me ? Do you mean "long reload"? If you have the user's email address from when they registered, you could have the user log in to get the

Re: django project avoid reload page where work algorithm

2017-10-08 Thread Xristos Xristoou
> You can use the smtplib module to send an email. ok but how to avoid pong reload on page ?can you help me ? -- https://mail.python.org/mailman/listinfo/python-list

Re: django project avoid reload page where work algorithm

2017-10-08 Thread MRAB
On 2017-10-08 11:27, Xristos Xristoou wrote: You mentioned email, so why not just ask for an email address to which you will send the result? i have user email from register i need to do all automate,how to use celery for this ? You can use the smtplib module to send an email. -- https://m

Re: django project avoid reload page where work algorithm

2017-10-08 Thread Xristos Xristoou
> You mentioned email, so why not just ask for an email address to which > you will send the result? i have user email from register i need to do all automate,how to use celery for this ? -- https://mail.python.org/mailman/listinfo/python-list

Re: django project avoid reload page where work algorithm

2017-10-07 Thread MRAB
On 2017-10-08 01:40, Xristos Xristoou wrote: I have a website where the user can be put three numbers on my html template and get some results from my personal mathematical algorithm. the result save at user personal table on my database and can see in specific tab in my website. my problem is

django project avoid reload page where work algorithm

2017-10-07 Thread Xristos Xristoou
I have a website where the user can be put three numbers on my html template and get some results from my personal mathematical algorithm. the result save at user personal table on my database and can see in specific tab in my website. my problem is where the algorithm to calculate result maybe t

Re: Hatch - A modern project, package, and virtual env manager

2017-09-28 Thread ofekmeister
Hatch 0.20.0 features easy cross-platform Conda installation and interactive project creation! https://github.com/ofek/hatch/blob/master/HISTORY.rst#0200 -- https://mail.python.org/mailman/listinfo/python-list

Re: Change project licence?

2017-09-26 Thread Ben Finney
Kryptxy via Python-list writes: > Yep. I will wait for a response. Thank you! There remains, of course, the option to keep developing and distributing the work under GNU GPL. As Chris points out, the GNU GPL terms are plenty permissive enough and keep the playing field guaranteed level for all.

Re: Project Euler 20.

2017-09-24 Thread Paul Rubin
Ian Kelly writes: sum(int(c) for c in str(math.factorial(100))) Doh! Using int(c) didn't occur to me and I didn't know about math.factorial. Notice also that WJ hasn't yet dared posting his crap on comp.lang.haskell. -- https://mail.python.org/mailman/listinfo/python-list

Re: Project Euler 20.

2017-09-24 Thread Ian Kelly
On Sun, Sep 24, 2017 at 4:35 PM, Paul Rubin wrote: > > "Robert L." writes: > >> Find the sum of the digits in the number 100! > > In Python? > > So you have come to plague us here too. > > >>> sum(ord(c)-ord('0') for c in str(reduce(lambda a,b: a*b, range(1,101),1))) > 648 Or for any Python 2.6

Re: Project Euler 20.

2017-09-24 Thread Paul Rubin
"Robert L." writes: >> Find the sum of the digits in the number 100! > In Python? So you have come to plague us here too. >>> sum(ord(c)-ord('0') for c in str(reduce(lambda a,b: a*b, range(1,101),1))) 648 -- https://mail.python.org/mailman/listinfo/python-list

Re: Change project licence?

2017-09-23 Thread Tim Chase
mentation code is under whatever license you like. If their contributions were minor, this might be a nice route to go. If they were a major contributor, you could be looking at a LOT of work. But those are your options: - keep the project as GPL - get *ALL* contributors to formally agree to

Re: Change project licence?

2017-09-23 Thread Michael Torrie
gt; Can I still proceed changing the licence? It has been more than a week since > the ticket was opened. If you remove the contributor's contributions from your project, then you can proceed without his permission. Otherwise, Chris and Leam are correct. You could replace all the contribut

Re: Change project licence?

2017-09-23 Thread Kryptxy via Python-list
Yep. I will wait for a response. Thank you! Original Message On 23 Sep 2017, 16:57, Chris Angelico wrote: > On Sat, Sep 23, 2017 at 7:44 PM, Leam Hall wrote: >> Like Chris said, evaluate the level of effort on the code. Wait, or replace. >> You will be happier when you take the

Re: Change project licence?

2017-09-23 Thread Chris Angelico
On Sat, Sep 23, 2017 at 7:44 PM, Leam Hall wrote: > Like Chris said, evaluate the level of effort on the code. Wait, or replace. > You will be happier when you take the honorable path. Remembering that that, of course, is Plan B; plan A is to keep trying to contact that last contributor.. S/he ha

Re: Change project licence?

2017-09-23 Thread Leam Hall
On 09/23/2017 05:14 AM, Chris Angelico wrote: On Sat, Sep 23, 2017 at 7:07 PM, Kryptxy wrote: Thank you all! I opened a ticket about the same (on github). I got response from most of them, and all are agreeing to the change. However, one contributor did not respond at all. I tried e-mailing, bu

Re: Change project licence?

2017-09-23 Thread Chris Angelico
On Sat, Sep 23, 2017 at 7:07 PM, Kryptxy wrote: > Thank you all! I opened a ticket about the same (on github). > I got response from most of them, and all are agreeing to the change. > However, one contributor did not respond at all. I tried e-mailing, but no > response. > Can I still proceed chan

Re: Change project licence?

2017-09-23 Thread Kryptxy via Python-list
ticket was opened. Sent with [ProtonMail](https://protonmail.com) Secure Email. > Original Message > Subject: Re: Change project licence? > Local Time: 15 September 2017 5:54 AM > UTC Time: 15 September 2017 00:24 > From: ros...@gmail.com > To: python-list@pyth

Re: Test Bank for Management, Operations Management, Supply Chain Management, Project Management for all editions

2017-09-21 Thread louisacorey
Organizational Behavior and Management, 11th Edition by Robert Konopaske and John Ivancevich and Michael Matteson -- https://mail.python.org/mailman/listinfo/python-list

Re: Hatch - A modern project, package, and virtual env manager

2017-09-18 Thread ofekmeister
Hatch now supports per-project package management! https://github.com/ofek/hatch/blob/master/HISTORY.rst#0140 -- https://mail.python.org/mailman/listinfo/python-list

Re: Change project licence?

2017-09-14 Thread Chris Angelico
On Fri, Sep 15, 2017 at 10:17 AM, Ben Finney wrote: >> I know how to change the licence, but I want to know is it fine and >> wise to change the licence at this point? (The project already has 19 >> clones, 250+ GitHub stars. Here: https://github.com/kryptxy/torrench) > >

Re: Change project licence?

2017-09-14 Thread Ben Finney
Kryptxy via Python-list writes: > I have an opensource (python) project under GPL3 licence. Is the license “GNU GPLv3 only”, or “GNU GPL v3 or later”, or something else? It doesn't materially affect the question, but it will make the discussion easier if we know what is the actual licen

Re: Change project licence?

2017-09-14 Thread Chris Angelico
se. In other words, if someone clones your project before the > license change, they can continue under original license, as per its > terms. You can't retroactively change the license on code that's > already been distributed, at least under the terms of the GPLv3. (I'm &

Re: Change project licence?

2017-09-14 Thread Michael Torrie
On 09/14/2017 11:22 AM, Kryptxy via Python-list wrote: > Hi, > I have an opensource (python) project under GPL3 licence. I wish > switch to MIT licence so as to make it more permissive. I know how to > change the licence, but I want to know is it fine and wise to change > the licenc

Re: Change project licence?

2017-09-14 Thread Chris Angelico
On Fri, Sep 15, 2017 at 3:22 AM, Kryptxy via Python-list wrote: > Hi, > I have an opensource (python) project under GPL3 licence. I wish switch to > MIT licence so as to make it more permissive. > I know how to change the licence, but I want to know is it fine and wise to > cha

Change project licence?

2017-09-14 Thread Kryptxy via Python-list
Hi, I have an opensource (python) project under GPL3 licence. I wish switch to MIT licence so as to make it more permissive. I know how to change the licence, but I want to know is it fine and wise to change the licence at this point? (The project already has 19 clones, 250+ GitHub stars. Here

Re: Hatch - A modern project, package, and virtual env manager

2017-09-12 Thread ofekmeister
0.10.0 features environment-aware testing, full Xonsh shell support, and more colors! https://github.com/ofek/hatch#0100 -- https://mail.python.org/mailman/listinfo/python-list

Re: Hatch - A modern project, package, and virtual env manager

2017-09-10 Thread ofekmeister
Hatch now supports all major shells!!! https://github.com/ofek/hatch#090 -- https://mail.python.org/mailman/listinfo/python-list

Re: Hatch - A modern project, package, and virtual env manager

2017-09-08 Thread ofekmeister
Temporary venvs support and terminal colors in 0.8.0! https://github.com/ofek/hatch#080 -- https://mail.python.org/mailman/listinfo/python-list

  1   2   3   4   5   6   7   8   9   10   >