7 ms·
Django Packages lists 160 apps that work with Python 3. See https://www.djangopackages.com/python3/ https://www.djangopackages.com/python3/ From personal exper
by pydanny 13y ago
Django Packages lists 160 apps that work with Python 3. See https://www.djangopackages.com/python3/ https://www.djangopackages.com/python3/
From personal experience, most of the critical ones are compatible.
- kot-behemoth 13y agoWell, apart from Fabric.
- pydanny 13y agoFabric isn't part of Django. There is nothing specific about Django in Fabric. In fact, the vast majority of my deployments do not use Fabric.
- codonaut 13y agoDo you use something in place of Fabric?
- commixon 13y agoParamiko could be a good example i think...
- mixmastamyk 13y agoI was thinking something more like ansible. Of course I'm partial to my new pave project: https://bitbucket.org/mixmastamyk/pave https://bitbucket.org/mixmastamyk/pave It is based on fabric, and uses a yaml file to automate it.
- tutuca 13y agoNo, no, fabric uses paramiko as the ssh abstraction layer.
- kot-behemoth 13y agoI am aware of that, but I still consider it one of my favorite libraries, and thought it would be useful to mention that it's not yet py3k-ready. I can imagine quite a few people might depend on it. What are you using instead?
- jacobian 13y agoYou may want to check out Invoke (https://github.com/pyinvoke/invoke); https://github.com/pyinvoke/invoke); it's the successor to Fabric, and it's Python 3 compatible.
- mh- 13y agoHN appended that link: https://github.com/pyinvoke/invoke https://github.com/pyinvoke/invoke
- twsted 13y agoFor what I can see, Invoke is just a revamped version of Fabric’s task running components. Fabric 2.0 will "leverage Invoke for task running, leaving Fabric itself much more library oriented".
- calpaterson 13y agoFabric is on the way. Paramiko, the ssh library underlying Fabric, now has a Python 3 PR for which all tests pass: https://github.com/paramiko/paramiko/pull/233 https://github.com/paramiko/paramiko/pull/233
- mahmoudhossam 13y agoAnd reportlab
- ris 13y agoLast I looked reportlab doesn't even use new-style classes.
- jemeshsu 13y agoBoto (using SES for email) is main one. And supervisord if you want to keep your deployment Python 3 only.
- pydanny 13y agohttps://github.com/boto/boto3 https://github.com/boto/boto3 Still in progress, but there you go.
- mayhew 13y agoCircus is Python 3 compatible if people are looking for an alternative to supervisor. There's always the option of just using Upstart or systemd as well.
- yeukhon 13y agoCircus looks huge and doesn't appeal for one or two apps. I do however wish to experiment with circus at some point. Do you have any comparison to make, assuming you have used both? Or anyone out there? Thanks
- collyw 13y agoI think the MySQL one might be quite a big one for many people. I know Postgress is better (South tells me every time the migration doesn´t work) but for converting older projects it definitely going to be useful.