Azimutt
DrawSQL
DBDiagram.io
Supabase
ChartDB
LucidChart
draw.io
TablePlus
Python
JavaScript
Java
C++
Rust
Ruby
PHP
Elixir
If you are looking to explore and understand your database (relational or document), Azimutt is the tool you need. It's the first entity relationship diagram built to handle big database schema (up to 1000 tables) with dedicated features: search, find path and even schema analysis to keep it consistent.
Azimutt
PythonNo Azimutt videos yet. You could help us improve this page by suggesting one.
Azimutt's answer
Azimutt is mainly targeted at developers working with databases, allowing them to easily explore and understand them by either importing the schema or connecting to a live instance.
As it's quite easy to use, we have seen other profile such as product owners, engineering managers and even CFOs using it to better understand the product they build or extract meaningful data on their own ^^
Azimutt's answer
Early 2021 I joined Doctolib, a health startup very successful in France, and discovered their big Ruby on Rails monolith backed by a large PostgreSQL database with more than 700 business tables (more then 1300 in total). As an architect I worked with several teams and needed to understand their models but neither Ruby, Rails or the structure.sql were very helpful for such a big app. So I looked for a tool but they all failed with such a large database, so after a few month and tens of tools tested, I decided to build my own: Azimutt. Now it has evolved a lot and we are still very active to enable new usages every months. I believe it's a solid product and quite unique โค๏ธ
Azimutt's answer
From development languages, Azimutt is built with Elm/TypeScript for the frontend, Elixir/Phoenix for the backend and PostgreSQL/S3 as storage.
Azimutt's answer
It's the only ERD able to handle databases with many tables (>1000) nicely thanks to unique features:
It's also very unique in the sense it's made to explore and understand real world databases, from development to production with larges features:
Thousands of developers already love it, give it a try, we have several samples you can try right away!
Azimutt's answer
Azimutt is the all-in-one app to explore real world databases. If you look for very specialized features some competitors may be more suited, but if you want a versatile app to explore and understand your database, we believe no competitor come close to us.
Azimutt's answer
Azimutt is used at Doctolib (3000 people company) and some other french scale ups I can't disclose yet.
Based on our record, Python seems to be a lot more popular than Azimutt. While we know about 299 links to Python, we've tracked only 4 mentions of Azimutt. We are tracking product recommendations and mentions on various public social media platforms and blogs. They can help you identify which product is more popular and what people think of it.
Not mine but someone showed me this : https://azimutt.app/. - Source: Hacker News / almost 2 years ago
I just want to get a basic overview quickly. An old colleague of mine created an interactive web app that does this. We use it internally and I find it super useful. Supports SQLite, among others: https://azimutt.app/. - Source: Hacker News / over 2 years ago
Hello Dev.to community, I'm Sam, a proud part of a dedicated trio that built Azimutt.app. - Source: dev.to / about 3 years ago
A couple of options here: - From a database. Generate ERD by connecting to your database directly. I've used this as a quick way to generate a diagram from my local or even QA DB (not prod DB for obvious security reasons). - From a schema dump file. Take a pg dump and then generate an ERD from the dump file. There are ERD tools like dbdaddy.dev and azimutt.app that support these options. Source: over 3 years ago
137Foundry provides legacy modernization services that include dependency mapping as a foundational assessment phase. Prettier and ESLint are useful companion tools for enforcing code style consistency as the refactoring proceeds. Node.js and Python.org official documentation are authoritative references for understanding the import and module systems of those runtimes. - Source: dev.to / about 2 months ago
For Python codebases, tools like Python's built-in ast module and import analysis scripts can generate call graphs. For JavaScript, ESLint and module analysis tools serve a similar purpose. GitHub advanced search can help you find all internal references to a specific function across a large repository. - Source: dev.to / about 2 months ago
Import asyncio Import aiohttp From bs4 import BeautifulSoup Async def scrape_and_parse(url: str, session: aiohttp.ClientSession) -> dict: async with session.get(url) as response: html = await response.text() # BeautifulSoup parsing happens after the await โ no issue soup = BeautifulSoup(html, "html.parser") return { "url": url, "title": soup.title.string if soup.title... - Source: dev.to / 3 months ago
**_Beginner mistake to avoid_** - Writing SQL only inside DBeaver - Always save SQL files in VS Code and commit them **Using PostgreSQL with Python** _**What Python does here**_ Python talks to PostgreSQL and says: - โSave this dataโ - โGet this dataโ - PostgreSQL listens. Python works. _**Step 1: Install Python **_ - Download from https://python.org - During install, check Add Python to PATH Screenshot... - Source: dev.to / 6 months ago
Import time Import requests Import asyncio Import aiohttp Urls = [ 'https://example.com', 'https://httpbin.org/get', 'https://python.org' ] # Synchronous version Def sync_fetch(): for url in urls: response = requests.get(url) print(f"{url} fetched with {len(response.text)} characters") # Async version Async def async_fetch(): async with aiohttp.ClientSession() as session: ... - Source: dev.to / 9 months ago
DrawSQL - Easy database diagrams. Create, visualize and collaborate on your database entity relationship diagrams.
JavaScript - Lightweight, interpreted, object-oriented language with first-class functions
DBDiagram.io - Free database diagrams designer for analysts & developers ๐
Java - A concurrent, class-based, object-oriented, language specifically designed to have as few implementation dependencies as possible
Supabase - An open source Firebase alternative
C++ - Has imperative, object-oriented and generic programming features, while also providing the facilities for low level memory manipulation