Re: [Twisted-Python] Twisted 14.0.0-pre2 Announcement
On 9 Apr, 10:59 pm, don...@stufft.io wrote: On Apr 9, 2014, at 6:55 PM, Itamar Turner-Trauring wrote: On 04/09/2014 03:48 PM, exar...@twistedmatrix.com wrote: And that shortcoming could be mitigated by documenting (or even formally declaring) this dependency more prominently (I see it's in the NEWS file and the SSL howto but not, for example, in the INSTALL file). A ssl-requirements.txt file seems like a good idea; we're going to be adding the pem package as well, it looks like, and having one thing people can install automatically is a lot better than having all our users manually type stuff in. ___ Twisted-Python mailing list Twisted-Python@twistedmatrix.com http://twistedmatrix.com/cgi-bin/mailman/listinfo/twisted-python extras! Then people can do: install_requires=[“Twisted[ssl]”] This would be great. What do people who want to use pip to set up a Twisted development environment do? Jean-Paul ___ Twisted-Python mailing list Twisted-Python@twistedmatrix.com http://twistedmatrix.com/cgi-bin/mailman/listinfo/twisted-python
Re: [Twisted-Python] Twisted 14.0.0-pre2 Announcement
On Apr 10, 2014, at 6:56 AM, exar...@twistedmatrix.com wrote: > On 9 Apr, 10:59 pm, don...@stufft.io wrote: >> >> On Apr 9, 2014, at 6:55 PM, Itamar Turner-Trauring >> wrote: >>> On 04/09/2014 03:48 PM, exar...@twistedmatrix.com wrote: And that shortcoming could be mitigated by documenting (or even formally declaring) this dependency more prominently (I see it's in the NEWS file and the SSL howto but not, for example, in the INSTALL file). >>> A ssl-requirements.txt file seems like a good idea; we're going to be >>> adding the pem package as well, it looks like, and having one thing people >>> can install automatically is a lot better than having all our users >>> manually type stuff in. >>> >>> ___ >>> Twisted-Python mailing list >>> Twisted-Python@twistedmatrix.com >>> http://twistedmatrix.com/cgi-bin/mailman/listinfo/twisted-python >> >> extras! >> >> Then people can do: >> >> install_requires=[“Twisted[ssl]”] > > This would be great. What do people who want to use pip to set up a Twisted > development environment do? > > Jean-Paul > > ___ > Twisted-Python mailing list > Twisted-Python@twistedmatrix.com > http://twistedmatrix.com/cgi-bin/mailman/listinfo/twisted-python Well you can do ``pip install Twisted[ssl]`` too. I don’t have a better solution that that up my sleeve though :( - Donald Stufft PGP: 0x6E3CBCE93372DCFA // 7C6B 7C5D 5E2B 6356 A926 F04F 6E3C BCE9 3372 DCFA signature.asc Description: Message signed with OpenPGP using GPGMail ___ Twisted-Python mailing list Twisted-Python@twistedmatrix.com http://twistedmatrix.com/cgi-bin/mailman/listinfo/twisted-python
Re: [Twisted-Python] Twisted 14.0.0-pre2 Announcement
Use pip install -e .[ssl] in the dir with the twisted setup.py. Works like a charm. Dustin On Thu, Apr 10, 2014 at 7:06 AM, Donald Stufft wrote: > > On Apr 10, 2014, at 6:56 AM, exar...@twistedmatrix.com wrote: > >> On 9 Apr, 10:59 pm, don...@stufft.io wrote: >>> >>> On Apr 9, 2014, at 6:55 PM, Itamar Turner-Trauring >>> wrote: On 04/09/2014 03:48 PM, exar...@twistedmatrix.com wrote: > > And that shortcoming could be mitigated by documenting (or even formally > declaring) this dependency more prominently (I see it's in the NEWS file > and the SSL howto but not, for example, in the INSTALL file). A ssl-requirements.txt file seems like a good idea; we're going to be adding the pem package as well, it looks like, and having one thing people can install automatically is a lot better than having all our users manually type stuff in. ___ Twisted-Python mailing list Twisted-Python@twistedmatrix.com http://twistedmatrix.com/cgi-bin/mailman/listinfo/twisted-python >>> >>> extras! >>> >>> Then people can do: >>> >>> install_requires=[“Twisted[ssl]”] >> >> This would be great. What do people who want to use pip to set up a Twisted >> development environment do? >> >> Jean-Paul >> >> ___ >> Twisted-Python mailing list >> Twisted-Python@twistedmatrix.com >> http://twistedmatrix.com/cgi-bin/mailman/listinfo/twisted-python > > Well you can do ``pip install Twisted[ssl]`` too. I don’t have a better > solution that that up my sleeve though :( > > - > Donald Stufft > PGP: 0x6E3CBCE93372DCFA // 7C6B 7C5D 5E2B 6356 A926 F04F 6E3C BCE9 3372 DCFA > > > ___ > Twisted-Python mailing list > Twisted-Python@twistedmatrix.com > http://twistedmatrix.com/cgi-bin/mailman/listinfo/twisted-python > ___ Twisted-Python mailing list Twisted-Python@twistedmatrix.com http://twistedmatrix.com/cgi-bin/mailman/listinfo/twisted-python
Re: [Twisted-Python] Twisted 14.0.0-pre2 Announcement
Oh whoops, I misread what Jean-Paul said. Yes you can do that, either directly or in a requirements file. On Apr 10, 2014, at 8:35 AM, Dustin J. Mitchell wrote: > Use > > pip install -e .[ssl] > > in the dir with the twisted setup.py. Works like a charm. > > Dustin > > On Thu, Apr 10, 2014 at 7:06 AM, Donald Stufft wrote: >> >> On Apr 10, 2014, at 6:56 AM, exar...@twistedmatrix.com wrote: >> >>> On 9 Apr, 10:59 pm, don...@stufft.io wrote: On Apr 9, 2014, at 6:55 PM, Itamar Turner-Trauring wrote: > On 04/09/2014 03:48 PM, exar...@twistedmatrix.com wrote: >> >> And that shortcoming could be mitigated by documenting (or even formally >> declaring) this dependency more prominently (I see it's in the NEWS file >> and the SSL howto but not, for example, in the INSTALL file). > A ssl-requirements.txt file seems like a good idea; we're going to be > adding the pem package as well, it looks like, and having one thing > people can install automatically is a lot better than having all our > users manually type stuff in. > > ___ > Twisted-Python mailing list > Twisted-Python@twistedmatrix.com > http://twistedmatrix.com/cgi-bin/mailman/listinfo/twisted-python extras! Then people can do: install_requires=[“Twisted[ssl]”] >>> >>> This would be great. What do people who want to use pip to set up a >>> Twisted development environment do? >>> >>> Jean-Paul >>> >>> ___ >>> Twisted-Python mailing list >>> Twisted-Python@twistedmatrix.com >>> http://twistedmatrix.com/cgi-bin/mailman/listinfo/twisted-python >> >> Well you can do ``pip install Twisted[ssl]`` too. I don’t have a better >> solution that that up my sleeve though :( >> >> - >> Donald Stufft >> PGP: 0x6E3CBCE93372DCFA // 7C6B 7C5D 5E2B 6356 A926 F04F 6E3C BCE9 3372 DCFA >> >> >> ___ >> Twisted-Python mailing list >> Twisted-Python@twistedmatrix.com >> http://twistedmatrix.com/cgi-bin/mailman/listinfo/twisted-python >> > > ___ > Twisted-Python mailing list > Twisted-Python@twistedmatrix.com > http://twistedmatrix.com/cgi-bin/mailman/listinfo/twisted-python - Donald Stufft PGP: 0x6E3CBCE93372DCFA // 7C6B 7C5D 5E2B 6356 A926 F04F 6E3C BCE9 3372 DCFA signature.asc Description: Message signed with OpenPGP using GPGMail ___ Twisted-Python mailing list Twisted-Python@twistedmatrix.com http://twistedmatrix.com/cgi-bin/mailman/listinfo/twisted-python
Re: [Twisted-Python] which async framework?
> The protocols are all financial (do we really not have a pure-python FIX > library?!) but none are likely to have existing python implementations. > > How should I pick between the options? What would people recommend and why? > This might be a starting point for the FIX stuff https://pypi.python.org/pypi/fixlib/0.5 Tim Hughes mailto:thug...@thegoldfish.org ___ Twisted-Python mailing list Twisted-Python@twistedmatrix.com http://twistedmatrix.com/cgi-bin/mailman/listinfo/twisted-python