It's taken me a bit longer than I expected, but here it is: the new Pythonista forum. I've been unhappy with the old one for several reasons – most importantly, spam was becoming quite a nuisance.
While the old forum was a standard Vanilla installation (a PHP-based open source web app), I've written the new one from scratch in Python (obviously), running on App Engine. While it doesn't have a lot of bells and whistles, it does have the features I care about, and I'm hoping that it'll be a lot less attractive for spam bots and the like. But if spam does become a problem again, I think that I'll be able to respond a lot better.
I have imported all the discussions from the old forum, and if you've had an account there (and posted at least once), you should be able to login with the same username and password here.
One important change is that posts are now formatted as Markdown, instead of HTML, and it's also possible to syntax-highlight Python (or other) code, e.g. this:
```python
import random
print 'hello'
print random.randint(42)
```
will turn into this:
import random
print 'hello'
print random.randint(42)
As of now, there are no email notifications, but you can subscribe to the forum (or any category) with RSS feeds.
I hope you enjoy the changes and the forum will become a welcoming place for all Pythonista users again.
Cheers,
--Ole