Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Who is using pongo2? #241

Open
flosch opened this issue Aug 24, 2020 · 29 comments
Open

Who is using pongo2? #241

flosch opened this issue Aug 24, 2020 · 29 comments
Labels

Comments

@flosch
Copy link
Owner

flosch commented Aug 24, 2020

Hi everyone,

I'm aware that development on pongo2 slowed down over the last couple years as it has been declared as almost feature complete.

Recently I've been thinking about actively continuing development and add support for a bunch of new features other template engines (incl. Django's) came up with.

Before I continue invest more time into that I'd like to compile a list of projects/companies/individuals who actively use pongo2 in their applications. I not only want to take this list into account for my decision making of continuing development but also want to compile a show room/list of users and make that publicly available.

If you, your project or your company is using (or has been using) pongo2 feel free to add a comment with name & link. If you can provide an example of your use case, that'd be highly appreciated as well. (If I can use your company's/project's logo as well for the show room, please explicitly state so.) If you have any missing features or feedback I should consider, please add this to your comment.

Thanks everyone for your time and help!

@gavbaa
Copy link
Contributor

gavbaa commented Aug 24, 2020

JCA Solutions, using it for most of our server-side e-learning products, including https://trainingvault.net/ (used for the entire admin) and one of our LMS versions. Feel free to use our logo.

Personally I'd love to see more Jinja2 features in here, as the Python projects I've moved off of were mostly Jinja2-bound.

@flosch flosch pinned this issue Aug 24, 2020
@egorsmkv
Copy link

Good to hear these good news!

I have been using the project for my personal projects and all was fine so I can't say what I did not have in pongo2's functionality.

@sarim
Copy link

sarim commented Aug 25, 2020

Got your email, and I don't mind. Actually I haven't managed to use pongo2 in a real world product yet. We use symfony a lot. And its template engine, twig. Which is very similar. I searched for a similar template engine in golang world and found this way back when.

I don't have much feedback to add. Maybe you could check out jinja2 and twig and see If they same any extra features you could add in pongo2.

@rsdoiel
Copy link

rsdoiel commented Aug 25, 2020

Thanks for reaching out. I was interested in Pongo2 as a possible shared template language between Python and Go. We do some Python Flask web things from time to time at work. Since that time we're moving away from Go as we've found Python more flexible for most of our staff for content prep and rendering. If I do more Go development I'd be very interested in a template language that is well documented, known to the Python community and works with Go too. Teaching Go templates just didn't work for us. All the best, Robert

@snaffi
Copy link

snaffi commented Aug 27, 2020

Embedded application Bitconf for Bitrix24 ERP system uses pongo2

https://www.bitrix24.com/apps/?app=ipkozlovzoom.zoom

Florian thank you for your great project!

@bu
Copy link

bu commented Aug 27, 2020

Thanks for reaching, flosch.This is Buwei.

Before I ran into Golang world, I've been using Twig.php and twig.js in the real world projects. Indeed, when I switched to Golang, I searched your project pongo2, which inherit the same spirit of original Jinja2 template language. I usually use with integration with Gin and Fiber web framework, currently I'm looking for create custom adapter to generate email, and you made the API simple to work with. Big thanks.

FYI, I recently made a website for my company using pongo2's custom filter feature to calculate numbers based on input. e.g. ounce to grams, ..etc. (ref: https://risehill.tw)

@pierrre
Copy link
Contributor

pierrre commented Aug 31, 2020

@flosch Hello!
When I answered to your email, I didn't have any real feature request in mind.
I just found one that would be really useful for me and my company (and maybe others).
I'm using pongo2 with an HTML WYSIWYG editor.
It would be nice to be able to highlight "pongo2 syntax error".
It's currently reporting syntax error as "normal" error messages.
It's not very easy nor safe to try to parse the error message, and extract the line/column.
Is it possible to return a custom error type (that could be matched with errors.As()) containing more information about the syntax error ?

@ghost
Copy link

ghost commented Sep 14, 2020

Proudly using pongo2 as Gosense blog template engine.

My blog is powered by gosense blog engine.

https://www.netroby.com

@siredwin
Copy link

I have always used Pongo2 for all my personal projects.
I also found it useful as a lexer/parser.
It saved me from writing my own.

@mayowa
Copy link

mayowa commented Sep 23, 2020

Hi I have used pongo2 for a number projects that made it into production (Two CRM solutions and an E-commerce site) and many side projects as well as internal tools. Unfortunately I can't share links or mention names, but unless a project must be built as SPA I use pongo2.

@nodens
Copy link

nodens commented Oct 26, 2020

Hi, I know https://github.com/lxc/lxd/ uses it, e.g. for templating files in vm images.

@jinjaghost
Copy link

Jaguar Network, we use pongo2 to manage grafana dashboards based on jinja2 templates.

@fermin-silva
Copy link

I'm using it for my website:
https://www.mininoticias.com.ar/

@slieberth
Copy link

I have a implemtation in python/Jinja2 which renders YAML and Latex and would like to migrate to golang, is I am interested in pongo2,

  • I would need configural delimeters, e.g.
        latex_jinja_env = jinja2.Environment(\
            block_start_string = '\BLOCK{',
            block_end_string = '}',
            variable_start_string = '\VAR{',
            variable_end_string = '}',
            comment_start_string = '\#{',
            comment_end_string = '}',
            line_statement_prefix = '%-',
            line_comment_prefix = '%#',
            trim_blocks = True,
            autoescape = False,
            loader = jinja2.FileSystemLoader("/"))

and for yaml runbooks:

        macro_jinja_env = Environment(\
            block_start_string = '#-MACRO-BLOCK',
            block_end_string = '-#',
            variable_start_string = '#-MACRO-',
            variable_end_string = '-#',
            comment_start_string = '#%#',
            comment_end_string = '#%#',
            line_statement_prefix = '#*#',
            line_comment_prefix = '#!#',
            trim_blocks = True,
            autoescape = False,
            loader = FileSystemLoader("."))

I would support for tests and coding ...

@denysvitali
Copy link

Not sure if it's interesting, but I have just created a repo here:
https://github.com/swisscom/pongo2-runner

It's a small CLI that uses pongo2 to render jinja2 like templates. Super useful IMHO as a substitute of envsubst.

For now it covers only our use case, which is to inject properly some environment variables, but in the future multiple sources can be added :)

@joelkesler
Copy link

joelkesler commented Mar 17, 2021

At my company we are looking into using it for an email template renderer :)

edit: My company is @vendasta over in Canada

@flosch
Copy link
Owner Author

flosch commented Mar 19, 2021

At my company we are looking into using it for an email template renderer :)

Thanks for letting me know! May I ask which company that is?

@xc
Copy link

xc commented Mar 31, 2021

Our content management framework(CMF) is using Pongo2. It has not been released yet(but it's close). I have written appreciation on the doc(will be in other places also when release) https://digimaker.org/doc/#thanks .

Really nice template engine. And nice to hear new features coming. :)

@bcavns01
Copy link

We're using it for parts of our bare-metal provisioning process: https://github.com/ns1/waitron
We've added a custom tag and filter as well, which wasn't too painful.

@AlyssaDaemon
Copy link

WarnerMedia uses it as part of their Platform Technology's VOD / Clips workflow. We use it to template out JSON documents / API calls. Unfortunately I can't link anything as its all internal access only, but the platform is used across all WM brands so any clips you see on say HBO Max, Cartoon Network, CNN, NBAtv, internal WM sites etc. all have used pongo2 on the digital video side.

@themartorana
Copy link
Contributor

Flyclops uses it for our internal admin backends.

@rsvancara
Copy link

tryingadventure.com -- photography blog. Added a few custom tags.

@preslavrachev
Copy link

I am currently partnering up with a company in Germany and together we built Murmel - a full-blown Web application that uses Pongo2 everywhere. I can't say how happy we were to find out about the language. At the beginning, we started out with Go's default templating engine, but we quickly realized that some parts quickly became unmaintainable.

Our Go app is very much based on Django's principles. Plus, we've had previous experience building Django apps. So, it was only natural that we ended up using a templating syntax that felt near and dear to our hearts.

Great job!

@stefanwuthrich
Copy link

stefanwuthrich commented Jan 17, 2022

Using it for boardengine.io V2, running React JS Job Board
Thank you very much for your great lib

@idc77
Copy link

idc77 commented Feb 1, 2022

https://c64g.com/
A commodore64 games site.

@shantanugadgil

This comment was marked as off-topic.

@xyproto
Copy link
Contributor

xyproto commented Mar 24, 2022

The Algernon web server is using Pongo2:
https://github.com/xyproto/algernon

@iredmail
Copy link
Contributor

iredmail commented May 7, 2022

Spider Email Archiver uses Fiber as http server and pongo2 as html template engine. Clearly mentioned on the "Credits" page of its website:
https://spider-archiver.com/credits.html

@wnederhof
Copy link

Basecode, the tool I created and use in multiple projects for creating full-stack Java/Kotlin + React apps, heavily relies on Pongo2 for templating. Coming from Pebble in the JVM ecosystem, I could pretty much use the same templates I used on the JVM, which was a huge win :-) https://github.com/wnederhof/basecode

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests