Earlier quoted context omitted.
thanks for the feedback! i'm curious, how critical are graphs for your internal tools and what are some examples of their use?
Pretty darn critical! I built a service a few years ago to scrape natural gas volumes from different refineries and my client wanted that data plotted over time. Another project collected and displayed wellhead pressure data. Oh yeah, maps are also super important, and being able to overlay different statistics and or graphics over them.
Show HN: Dropbase – Build internal web apps with just Python
61–70 of 119 posts
Re: Show HN: Dropbase – Build internal web apps with just Python
#62Earlier quoted context omitted.
NiceGUI looks interesting, reminds me of reflex.dev a little bit. what kind of apps are you building with it?
I work on a Bioinformatics team, so we are a bunch of programmers, but not fully-fledged software engineers. We know Python well but have no front-end experience. Some examples: - Another non-technical team needs to know if our test covers specific genetic variants. The code to answer this is 10 lines of Python + a 100 line CSV. We can solve this with a CLI on our local computers but to serve it to the other team was…
are there any limitations you encounter with NiceGUI? do you need a user permission feature or does each user get admin access? can you see it scaling up easily?
Re: Show HN: Dropbase – Build internal web apps with just Python
#63Earlier quoted context omitted.
yes, that’s us. glad to see you remember our previous iteration :) internal app builder is certainly a challenging market to break into, but we believe we have something interesting to offer and are quite optimistic about our approach. were you a customer of the previous dropbase version (csv to database)? thanks again for your interest, it is always appreciated!
Oh man, I would love to compare notes. I pivoted in the reverse direction from: https://github.com/pycob/pyvibe To https://github.com/vanna-ai/vanna
Re: Show HN: Dropbase – Build internal web apps with just Python
#64Earlier quoted context omitted.
I work on a Bioinformatics team, so we are a bunch of programmers, but not fully-fledged software engineers. We know Python well but have no front-end experience. Some examples: - Another non-technical team needs to know if our test covers specific genetic variants. The code to answer this is 10 lines of Python + a 100 line CSV. We can solve this with a CLI on our local computers but to serve it to the other team was…
these are great examples, thanks for sharing! the second one is particularly interesting. python seems like a perfect fit for that use case. are there any limitations you encounter with NiceGUI? do you need a user permission feature or does each user get admin access? can you see it scaling up easily?
For scaling, I am viewing it mostly as an internal tool builder. I wouldn't recommend it for external applications. So as far as scaling an internal app I think it works fine. Their website [2] is built with NiceGUI, and it works fine, but you can feel the lag occasionally on some of their larger demo pages.
1. https://github.com/zauberzeug/nicegui/blob/main/examples/aut...
Re: Show HN: Dropbase – Build internal web apps with just Python
#65Re: Show HN: Dropbase – Build internal web apps with just Python
#66It would be great if this could generate a desktop app rather than another webapp that I need to host somewhere. We need to focus on desktop apps again.
Re: Show HN: Dropbase – Build internal web apps with just Python
#67Looks cool! I think there is a huge need for tools like this, especially as AI turns more subject matter experts into programmers who can code a bit of python. At my company we have recently started using NiceGUI which is a python wrapper for quasars+tailwind and seems like a very similar product. I’ve found it has a great level of abstraction that enables you to do Python only web App development without too much ma…
I also think there's a good number of people who have basic Python skills coming from data analytics and data science backgrounds, who might not be doing hardcore ML research but who nonetheless want to build simple web apps. One of our hypotheses is that our product would be a good fit for them.
Re: Show HN: Dropbase – Build internal web apps with just Python
#68This is really cool. I know lots of banks and trading firms have built home grown tools that do something similar to this.
Re: Show HN: Dropbase – Build internal web apps with just Python
#69FastUI ( https://github.com/samuelcolvin/FastUI ), a fully OSS Python-to-React library was just launched recently too
this looks great, thanks for sharing! i’ll check it out. we are also big fans of Pydantic and FastAPI
Re: Show HN: Dropbase – Build internal web apps with just Python
#70Earlier quoted context omitted.
this looks great, thanks for sharing! i’ll check it out. we are also big fans of Pydantic and FastAPI
Have you taken a look at django-ninja? It's like a modern take on Django Rest Framework (async + OpenAPI + Pydantic support are built-in)