994 Integrations with Python

View a list of Python integrations and software that integrates with Python below. Compare the best Python integrations as well as features, ratings, user reviews, and pricing of software that integrates with Python. Here are the current Python integrations in 2025:

  • 1
    tox

    tox

    tox

    tox aims to automate and standardize testing in Python. It is part of a larger vision of easing the packaging, testing and release process of Python software. tox is a generic virtualenv management and test command-line tool you can use for checking that your package installs correctly with different Python versions and interpreters, running your tests in each of the environments, configuring your test tool of choice, and acting as a frontend to continuous integration servers, greatly reducing boilerplate and merging CI and shell-based testing. First, install tox with pip install tox. Then put basic information about your project and the test environments you want your project to run in into a tox.ini file residing right next to your setup.py file. You can also try generating a tox.ini file automatically, by running tox-quickstart and then answering a few simple questions. Install and test your project against Python2.7 and Python3.6.
    Starting Price: Free
  • 2
    h5py

    h5py

    HDF5

    The h5py package is a Pythonic interface to the HDF5 binary data format. It lets you store huge amounts of numerical data, and easily manipulate that data from NumPy. For example, you can slice into multi-terabyte datasets stored on disk, as if they were real NumPy arrays. Thousands of datasets can be stored in a single file, categorized and tagged however you want. H5py uses straightforward NumPy and Python metaphors, like dictionary and NumPy array syntax. For example, you can iterate over datasets in a file, or check out the .shape or .dtype attributes of datasets. You don't need to know anything special about HDF5 to get started. In addition to the easy-to-use high level interface, h5py rests on a object-oriented Cython wrapping of the HDF5 C API. Almost anything you can do from C in HDF5, you can do from h5py.
    Starting Price: Free
  • 3
    IPy

    IPy

    IPy

    The IP class allows a comfortable parsing and handling for most notations in use for IPv4 and IPv6 addresses and networks. It was greatly inspired by RIPE’s Perl module NET::IP’s interface but doesn’t share the implementation. It doesn’t share non-CIDR netmasks, so funky stuff like a netmask of 0xffffff0f can’t be done here. It can detect about a dozen different ways of expressing IP addresses and networks, parse them and distinguish between IPv4 and IPv6 addresses. Nearly all class methods which return a string have an optional parameter ‘wantprefixlen’ which controls if the prefixlen or netmask is printed. Per default the prefilen is always shown if the network contains more than one address. You can also change the defaults on an per-object basis by fiddling with the class members.
    Starting Price: Free
  • 4
    luminoth

    luminoth

    luminoth

    Luminoth is an open source toolkit for computer vision. Currently, we support object detection, but we are aiming for much more. : Luminoth is still alpha-quality release, which means the internal and external interfaces (such as command line) are very likely to change as the codebase matures. . If you want GPU support, you should install the GPU version of TensorFlow with pip install tensorflow-gpu, or else you can use the CPU version using pip install tensorflow. Luminoth can also install TensorFlow for you if you install it with pip install luminoth[tf] or pip install luminoth[tf-gpu], depending on the version of TensorFlow you wish to use.
    Starting Price: Free
  • 5
    warcat

    warcat

    Python Software Foundation

    Tool and library for handling Web ARChive (WARC) files. Naively join archives into one. Extract files from archive. List commands available. List contents of archive. Load archive and write it back out. Split archives into individual records. Verify digest and validate conformance. The library may not be entirely thread-safe yet. The goal of the Warcat project is to create a tool and library as easily and fast as manipulating any other archive such as tar and zip archives. Warcat is designed to handle large, gzip-ed files by partially extracting them as needed. Warcat is provided without warranty and cannot guarantee the safety of your files. Remember to make backups and test them! A WARC file contains one or more records concatenated together. Each record contains named fields, newline, a content block, newline, and newline. A Content Block may be two types, {binary data} or {Named Fields, newline, and binary data}.
    Starting Price: Free
  • 6
    Mako

    Mako

    Mako

    It provides a familiar, non-XML syntax that compiles into Python modules for maximum performance. Mako's syntax and API borrows from the best ideas of many others, including Django and Jinja2 templates, Cheetah, Myghty, and Genshi. Conceptually, Mako is an embedded Python (i.e. Python Server Page) language, which refines the familiar ideas of componentized layout and inheritance to produce one of the most straightforward and flexible models available, while also maintaining close ties to Python calling and scoping semantics. As templates are ultimately compiled into Python bytecode, Mako's approach is extremely efficient and was originally written to be just as fast as Cheetah. Today, Mako is very close in speed to Jinja2, which uses a similar approach and for which Mako was an inspiration. Can access variables from their enclosing scope as well as the template's request context
    Starting Price: Free
  • 7
    yarl

    yarl

    Python Software Foundation

    All URL parts, scheme, user, password, host, port, path, query, and fragment are accessible by properties. All URL manipulations produce a new URL object. Strings passed to constructor and modification methods are automatically encoded giving canonical representation as result. Regular properties are percent-decoded, use raw_ versions for getting encoded strings. Human-readable representation of URL is available as .human_repr(). PyPI contains binary wheels for Linux, Windows and MacOS. If you want to install yarl on another operating system (like Alpine Linux, which is not manylinux-compliant because of the missing glibc and therefore, cannot be used with our wheels) the tarball will be used to compile the library from the source code. It requires a C compiler and Python headers installed. Please note that the pure-Python (uncompiled) version is much slower. However, PyPy always uses a pure-Python implementation, and, as such, it is unaffected by this variable.
    Starting Price: Free
  • 8
    zdaemon

    zdaemon

    Python Software Foundation

    zdaemon is a Unix (Unix, Linux, Mac OS X) Python program that wraps commands to make them behave as proper daemons. zdaemon provides a script, zdaemon, that can be used to run other programs as POSIX (Unix) daemons. (Of course, it is only usable on POSIX-complient systems.) Using zdaemon requires specifying a number of options, which can be given in a configuration file, or as command-line options. It also accepts commands teling it what to do. Start a process as a daemon. Stop a running daemon process. Stop and then restart a program. Find out if the program is running. Send a signal to the daemon process. Reopen the transcript log. Commands can be given on a command line, or can be given using an interactive interpreter. We can specify a program name and command-line options in the program command. Note, however, that the command-line parsing is pretty primitive.
    Starting Price: Free
  • 9
    zope.interface

    zope.interface

    Python Software Foundation

    This package is intended to be independently reusable in any Python project. It is maintained by the Zope Toolkit project. This package provides an implementation of “object interfaces” for Python. Interfaces are a mechanism for labeling objects as conforming to a given API or contract. So, this package can be considered as an implementation of the Design By Contract methodology support in Python. Interfaces are objects that specify (document) the external behavior of objects that “provide” them. An interface specifies behavior through informal documentation in a doc string, attribute definitions, and invariants, which are conditions that must hold for objects that provide the interface. Attribute definitions specify specific attributes. They define the attribute name and provide documentation and constraints of attribute values. Attribute definitions can take a number of forms.
    Starting Price: Free
  • 10
    NetworkX

    NetworkX

    NetworkX

    NetworkX is a Python package for the creation, manipulation, and study of the structure, dynamics, and functions of complex networks. Generators for classic graphs, random graphs, and synthetic networks. Additional benefits from Python include fast prototyping, easy to teach, and multi-platform. Network structure and analysis measures.
    Starting Price: Free
  • 11
    BuildVu

    BuildVu

    IDR Solutions

    With BuildVu, you’ll unlock precise PDF-to-HTML/SVG conversion, giving you greater control and added functionality over PDF in your web application. -Optimized Content: BuildVu intelligently converts PDFs, optimizing for smaller file sizes and fast rendering in browsers. -File Metadata: Access PDF data in JSON format, including metadata, word lists, outlines (bookmarks), and annotations. -Thumbnails: Generate high-quality page thumbnails with customizable dimensions. -Annotations: Enjoy support for various annotation types (Links, Popups, Sound/Video, Text, Highlight, Underline) in easy-to-use JSON format. -search.json: Extract all text from the document alongside the HTML content. -Font Conversion: Restructure embedded fonts for compatibility across web browsers. -Office Conversion: Combine BuildVu with LibreOffice for seamless conversion from Office formats (Word, PowerPoint, Excel).
    Starting Price: $450 per month
  • 12
    unittest

    unittest

    Python

    The unittest unit testing framework was originally inspired by JUnit and has a similar flavor as major unit testing frameworks in other languages. It supports test automation, sharing of setup and shutdown code for tests, aggregation of tests into collections, and independence of the tests from the reporting framework. A test fixture represents the preparation needed to perform one or more tests, and any associated cleanup actions. This may involve, for example, creating temporary or proxy databases, directories, or starting a server process. A test suite is a collection of test cases, test suites, or both. It is used to aggregate tests that should be executed together. A test runner is a component which orchestrates the execution of tests and provides the outcome to the user. The runner may use a graphical interface, a textual interface, or return a special value to indicate the results of executing the tests.
    Starting Price: Free
  • 13
    Puppeteer

    Puppeteer

    Puppeteer

    Most things that you can do manually in the browser can be done using Puppeteer! Puppeteer-core is intended to be a lightweight version of Puppeteer for launching an existing browser installation or for connecting to a remote one. Be sure that the version of puppeteer-core you install is compatible with the browser you intend to connect to. Puppeteer will be familiar to people using other browser testing frameworks. You create an instance of Browser, open pages, and then manipulate them with Puppeteer's API. By default, Puppeteer downloads and uses a specific version of Chromium so its API is guaranteed to work out of the box. To use Puppeteer with a different version of Chrome or Chromium, pass in the executable's path when creating a Browser instance.
    Starting Price: Free
  • 14
    Playwright

    Playwright

    Playwright

    Playwright supports all modern rendering engines including Chromium, WebKit, and Firefox. Test on Windows, Linux, and macOS, locally or on CI, headless or headed. Playwright waits for elements to be actionable prior to performing actions. It also has a rich set of introspection events. The combination of the two eliminates the need for artificial timeouts - the primary cause of flaky tests. Playwright assertions are created specifically for the dynamic web. Checks are automatically retried until the necessary conditions are met. Configure test retry strategy, capture execution trace, videos, screenshots to eliminate flakes. Browsers run web content belonging to different origins in different processes. Playwright is aligned with the modern browsers architecture and runs tests out-of-process. This makes Playwright free of the typical in-process test runner limitations.
    Starting Price: Free
  • 15
    Robot Framework

    Robot Framework

    Robot Framework

    Robot Framework is a generic open-source automation framework. It can be used for test automation and robotic process automation (RPA). Robot Framework is supported by Robot Framework Foundation. Many industry-leading companies use the tool in their software development. Robot Framework is open and extensible. Robot Framework can be integrated with virtually any other tool to create powerful and flexible automation solutions. Robot Framework is free to use without licensing costs. Robot Framework has an easy syntax, utilizing human-readable keywords. Its capabilities can be extended by libraries implemented with Python, Java or many other programming languages. Robot Framework has a rich ecosystem around it, consisting of libraries and tools that are developed as separate projects.
    Starting Price: Free
  • 16
    behave

    behave

    behave

    Behavior-driven development (or BDD) is an agile software development technique that encourages collaboration between developers, QA and non-technical or business participants in a software project. We have a page further describing this philosophy. Behavior-driven development (or BDD) is an agile software development technique that encourages collaboration between developers, QA and non-technical or business participants in a software project. It was originally named in 2003 by Dan North as a response to test-driven development (TDD), including acceptance test or customer test driven development practices as found in extreme programming. BDD is a second-generation, outside–in, pull-based, multiple-stakeholder, multiple-scale, high-automation, agile methodology. It describes a cycle of interactions with well-defined outputs, resulting in the delivery of working, tested software that matters.
    Starting Price: Free
  • 17
    Quiver

    Quiver

    Quiver Quantitative

    Trends in FinTech such as commissions-free trading have made it easier than ever to actively manage your own portfolio, which has created millions of retail traders around the world. Over the past decade, alternative data has exploded in popularity among professional money managers. Alternative data allows investors to tap into new and unique data sources to aid their decisions. However, alternative data is typically priced for institutional clients, and is not widely available to retail investors. Quiver allows retail investors to tap into the power of big data, and have access to actionable, easy to interpret data that hasn’t already been dissected by Wall Street.
    Starting Price: Free
  • 18
    RapidFort

    RapidFort

    RapidFort

    Automatically eliminate unused software components and deploy smaller, faster, more secure workloads. RapidFort drastically reduces vulnerability and patch management queues so that developers can focus on building. By eliminating unused container components, RapidFort enhances production workload security and saves developers from unnecessarily patching and maintaining unused code. RapidFort profiles containers to understand what components are needed to run. Run your containers as normal in any environment, dev, test, or prod. Use any container deployment, including Kubernetes, Docker Compose, Amazon EKS, and AWS Fargate. RapidFort then identifies which packages you must keep, enabling you to remove unused packages. Typical improvements are in the 60% to 90% range. RapidFort also provides the option to build and customize remediation profiles, allowing you to pick and choose what to retain or remove.
    Starting Price: $5,000 per month
  • 19
    Predibase

    Predibase

    Predibase

    Declarative machine learning systems provide the best of flexibility and simplicity to enable the fastest-way to operationalize state-of-the-art models. Users focus on specifying the “what”, and the system figures out the “how”. Start with smart defaults, but iterate on parameters as much as you’d like down to the level of code. Our team pioneered declarative machine learning systems in industry, with Ludwig at Uber and Overton at Apple. Choose from our menu of prebuilt data connectors that support your databases, data warehouses, lakehouses, and object storage. Train state-of-the-art deep learning models without the pain of managing infrastructure. Automated Machine Learning that strikes the balance of flexibility and control, all in a declarative fashion. With a declarative approach, finally train and deploy models as quickly as you want.
  • 20
    gopaddle

    gopaddle

    gopaddle

    Unleash the power of the no-code platform for modern applications. Build, Provision, Run and Scale Cloud-Native Applications by leveraging your team's current capabilities. Unlock the potential of your applications, capture new revenue opportunities and exceed customer expectations by modernizing your legacy and greenfield applications rapidly. Be the first to market and lead the change. Leverage Out-of-the-box DevOps capabilities in the platform to simplify and automate your software delivery and maintenance. Spice up your 'cloud first' strategy with multi and hybrid cloud enablement. Avoid vendor lock-in and give the flexibility of choice to your teams to bring their own cloud and infrastructure. Eliminate manual errors due to human factors and save time to modernize applications. Debug and resolve issues faster than before using the built-in developer tools.
    Starting Price: $45 per month
  • 21
    Glipper

    Glipper

    Glipper

    Glipper is a clipboard manager for GNOME. It maintains a history of text copied to the clipboard from which you can choose. Glipper uses plugins to give the user all the extra functionality. In previous versions, Glipper was a GNOME applet, but now it uses an app indicator to support Ubuntu Unity and Ubuntu's Gnome Classic. It allows users of Unix-like operating systems to access a history of X Selections, any item of which can be reselected for pasting. Glipper is often described as the GNOME counterpart to KDE's Klipper. Older versions of Glipper could also be run outside of GNOME, but the newest version 1.0 is GNOME only because of its heavy integration into different GNOME techniques. However, it can be run inside Xfce4's panel using the XfApplet wrapper, and through it, into any custom session that uses xfce4-panel, such as Openbox sessions.
    Starting Price: Free
  • 22
    Comet

    Comet

    Comet

    Manage and optimize models across the entire ML lifecycle, from experiment tracking to monitoring models in production. Achieve your goals faster with the platform built to meet the intense demands of enterprise teams deploying ML at scale. Supports your deployment strategy whether it’s private cloud, on-premise servers, or hybrid. Add two lines of code to your notebook or script and start tracking your experiments. Works wherever you run your code, with any machine learning library, and for any machine learning task. Easily compare experiments—code, hyperparameters, metrics, predictions, dependencies, system metrics, and more—to understand differences in model performance. Monitor your models during every step from training to production. Get alerts when something is amiss, and debug your models to address the issue. Increase productivity, collaboration, and visibility across all teams and stakeholders.
    Starting Price: $179 per user per month
  • 23
    ScraperAPI

    ScraperAPI

    ScraperAPI

    With anti-bot detection and bypassing built into the API you never need to worry about having your requests blocked. We automatically prune slow proxies from our pools, and guarantee unlimited bandwidth with speeds up to 100Mb/s, perfect for speedy web crawlers. Whether you need to scrape 100 pages per month or 100 million pages per month, ScraperAPI can give you the scale you need. One of the most frustrating parts of automated web scraping is constantly dealing with IP blocks and CAPTCHAs. ScraperAPI rotates IP addresses with each request. To ensure a higher level of successful requests when using our scraper, we’ve built a new product, Async Scraper. Rather than making requests to our endpoint waiting for the response, this endpoint submits a job of scraping, in which you can later collect the data from using our status endpoint.
    Starting Price: $49 per month
  • 24
    ScrapeOwl

    ScrapeOwl

    ScrapeOwl

    We only use the highest quality residential IP addresses to ensure reliability and uptime. Run chrome instances to scrape-at-scale without worrying about resource usage or browser and session management. Get country-specific results for platforms that use localization to display prices and descriptions like Amazon.fr vs Amazon.ae and eBay. Circumvent web security measures by getting data without triggering Catpchas on Cloudflare, Hcaptcha, Google recaptcha. Get country-specific results for platforms that use localization to display prices and descriptions like Amazon.fr vs Amazon.ae and eBay. Extract only the elements you need from a page without needing to parse html yourself. Collect products, prices, and descriptions from product listing pages on e-commerce platforms. APIs are consumed programmatically, meaning you write a program to get the data you want from websites you want to scrape and parse.
    Starting Price: $29 per month
  • 25
    AssemblyAI

    AssemblyAI

    AssemblyAI

    Automatically convert audio and video files and live audio streams to text with AssemblyAI's speech-to-text APIs. Do more with audio intelligence, summarization, content moderation, topic detection, and more. Powered by cutting-edge AI models. From in-depth tutorials to detailed changelogs, to comprehensive documentation, AssemblyAI is focused on providing developers a great experience every step of the way. From core speech-to-text conversion to sentiment analysis, our simple API offers a full suite of solutions catered to all your business speech-to-text needs. We work with startups of all sizes, from early-stage startups to scale-ups, by providing cost-efficient speech-to-text solutions. We're built for scale. We process millions of audio files every day for hundreds of customers, including dozens of Fortune 500 enterprises. Universal-2: Our most advanced speech-to-text model captures the complexity of human speech for impeccable audio data that powers sharper insights.
    Starting Price: $0.00025 per second
  • 26
    OpenCV

    OpenCV

    OpenCV

    OpenCV (Open Source Computer Vision Library) is an open-source computer vision and machine learning software library. OpenCV was built to provide a common infrastructure for computer vision applications and to accelerate the use of machine perception in commercial products. Being a BSD-licensed product, OpenCV makes it easy for businesses to utilize and modify the code. The library has more than 2500 optimized algorithms, which includes a comprehensive set of both classic and state-of-the-art computer vision and machine learning algorithms. These algorithms can be used to detect and recognize faces, identify objects, classify human actions in videos, track camera movements, track moving objects, extract 3D models of objects, produce 3D point clouds from stereo cameras, and stitch images together to produce a high-resolution image of an entire scene, find similar images from an image database, remove red eyes from images taken using flash, follow eye movements, recognize scenery, etc.
    Starting Price: Free
  • 27
    Zebedee

    Zebedee

    Zebedee

    From high-stakes esports tournaments to casual mobile games, our world is open to everyone. Bitcoin is programmable money. We make it a seamless part of the game experience. If you can scan a QR code, you can earn with Zebedee. Straightforward, instant, and available now. Play our games or play with our APIs. Either way, you'll soon discover why Bitcoin is transforming the world of gaming. Open a new acquisition channel and revenue stream in the quickly growing world of Bitcoin gaming. Gain an edge over your competition by offering cutting-edge Bitcoin Lightning services and a gateway into the exploding world of Bitcoin gaming. Play a single intense match with live Bitcoin transfers and earn a share of the prize pot based on your percentage of the total score. In survival mode, your sats are your life. When you score, you get an extra life. When you die, you lose some life. If you run out of seats, you get kicked from the match.
    Starting Price: Free
  • 28
    PDFmyURL

    PDFmyURL

    PDFmyURL

    Use our HTML to PDF API to create PDFs from URLs or HTML. Let your visitors save web pages as PDFs with a single click! Convert entire websites to PDF easily! Join thousands of customers making high-quality PDFs since 2008! Quickly and easily convert any URL or raw HTML into a high-quality PDF. You can use our REST API in any programming language and it comes packed with many options for different layouts, headers, footers, watermarking encryption, and much more. Put a save as PDF link or button on any of your web pages and let your visitors download these pages as PDF with a single click. You control many layout options and set a custom header and/or footer. Save your entire website as a PDF for copyright or other purposes. You just enter the URL and we'll take all the pages of the website and pack them into a single PDF. You grab a coffee and wait until we finish because we'll email you when it's done!
    Starting Price: $19 per month
  • 29
    Superblocks

    Superblocks

    Superblocks

    Superblocks is a programmable IDE for developers to build any internal app, workflow, or scheduled job at a fraction of the time and cost. Ship next month's roadmap this week. Quickly build apps, workflows & jobs connected to your data. Secure with granular permissions (RBAC), SSO, audit logs, and secret management in seconds. Deploy with Git and monitor production. Extend anything with code. No need to learn React, HTML, or CSS. Drag and drop components, connect them to data and make your app dynamic by triggering APIs. Build custom KYC, Compliance, AML, and credit approval tools to enable robust support processes to increase the velocity of your support team. Stop wrestling with CLIs. Quickly build admin panels for your datastores to read, write, and update your customer data with tables, forms, and charts. Track deployment status and monitor versions as they’re deployed to production from a single pane of glass. Read/write to any deployment system you use.
    Starting Price: $0 per month
  • 30
    Replicate

    Replicate

    Replicate

    Machine learning can now do some extraordinary things: it can understand the world, drive cars, write code, make art. But, it's still extremely hard to use. Research is typically published as a PDF, with scraps of code on GitHub and weights on Google Drive (if you’re lucky!). Unless you're an expert, it's impossible to take that work and apply it to a real-world problem. We’re making machine learning accessible to everyone. People creating machine learning models should be able to share them in a way that other people can use, and people who want to use machine learning should be able to do so without getting a PhD. With great power also comes great responsibility. We believe that with better tools and safeguards, we'll make this powerful technology safer and easier to understand.
    Starting Price: Free
  • 31
    MacTerm

    MacTerm

    MacTerm

    Powerful replacement for macOS Terminal, supporting 24-bit color, standard graphics protocols and iTerm2 image sequences and color schemes. MacTerm is one of the few emulators in the world that allow terminal-based programs to set up to 8 bits per RGB component (for a total of 24 bits), allowing for a large number and large spectrum of colors on the screen. The terminal is capable of preserving incoming text perfectly: whether you copy it to the Clipboard, capture it to a file, print it, or drag and drop, any special characters will be present. You can also use the floating command line window to input any kind of character. (In 4.1.0, there are limits on which Unicode characters can actually be displayed by the terminal; these limitations are being removed in 5.0.) Finally, Unicode is supported for file names, preference collection names, and macros.
    Starting Price: Free
  • 32
    Doc Converter Pro

    Doc Converter Pro

    Doc Converter Pro

    Convert one file or an entire folder. With an average conversion time of less than one second you will have your documents converted in no time. Create custom conversion templates to suit your needs. Full control over images, CSS, find and replace/delete and more. Share your templates with colleagues. Batch convert Word or PDF files to HTML and clean up the code. Convert Word to PDF, PDF to Word. Most document formats supported. The program comes with a full selection of templates that should cover the needs of most users. You just select the one you want to use from the drop-down list. When converting to HTML you have full control over images, code and CSS. You can even run find and replace commands. Once you are happy with your template it can be saved for later use or shared with colleagues.
    Starting Price: $10 per month
  • 33
    Workona

    Workona

    Workona

    The essential work organizer for the browser. Your work is scattered across dozens of tabs & cloud apps. Workona puts it all in one place, so projects are finally organized. Organize your tabs, docs, & links into a dedicated space for each project. A workspace organizes everything for a project: tabs, docs, notes, tasks, and resources from all your cloud apps. Workspaces are flexible enough to keep up with the pace of modern work. Perfect for teams that use Google Drive! Workona brings together all the apps you already use. With a single source of truth for each project, your team can finally focus. Workspaces hold docs & links from any app, so nothing slips between the cracks. Workspaces pull your team processes out of scattered apps and into one place, so your team can work more efficiently. From anywhere in the browser, search for tabs or other work with laser precision. Plus, sync tabs to your devices seamlessly.
    Starting Price: $7 per month
  • 34
    Sunflower

    Sunflower

    Sunflower

    Small and highly customizable twin-panel file manager for Linux. It is intended to be an easy-to-use and powerful file manager that seamlessly integrates into the GNOME desktop environment (but is not limited to). Feature-packed configuration to help make the program your own. More flexibility in your daily operations through easy to use interface. Set of tabs for every occasion. Visually mark your files and directories for quick reference. Quick access to the command line interface through terminal tabs, VTE, or external. Better multitasking with full multithreading support. Easily extensible with Python and GTK+. Fully optimized for keyboard users. Sunflower is a small and highly customizable twin-panel file manager for Linux with support for plugins. Fully compatible and native to Wayland compositors.
    Starting Price: Free
  • 35
    Towhee

    Towhee

    Towhee

    You can use our Python API to build a prototype of your pipeline and use Towhee to automatically optimize it for production-ready environments. From images to text to 3D molecular structures, Towhee supports data transformation for nearly 20 different unstructured data modalities. We provide end-to-end pipeline optimizations, covering everything from data decoding/encoding, to model inference, making your pipeline execution 10x faster. Towhee provides out-of-the-box integration with your favorite libraries, tools, and frameworks, making development quick and easy. Towhee includes a pythonic method-chaining API for describing custom data processing pipelines. We also support schemas, making processing unstructured data as easy as handling tabular data.
    Starting Price: Free
  • 36
    MergeBase

    MergeBase

    MergeBase

    With the lowest false positive software composition analysis (SCA) scanner, comprehensive software bill of materials (SBOM) engine, and patented Java Dynamic Application Hardening capability, MergeBase provides the only software supply chain security solution offering real-time DevSecOps visibility of third-party risk from development into operation covering all major languages from C/C++, .NET, JavaScript/NPM to Java.
    Starting Price: $380 per month
  • 37
    Paperplane

    Paperplane

    Paperplane

    Installing and maintaining a PDF backend is tedious and time-consuming. Paperplane adds PDF functionality to your app fast, so you can move on to what matters. If you have batch workloads, Paperplane will create up to 20 PDFs in parallel. Allowing you more time to improve your workflow and pump out more PDFs. The API is asynchronous too, meaning you can fire and forget your PDF jobs rather than keeping long-running processes around until everything finishes. Webhooks take care of notifying you of any errors that may have occurred during the PDF generation process. Are you looking for a solution to generate PDFs from your single-page app? If your site works in Chrome, it’ll work with Paperplane. Or choose to wait for an element to appear on the page before generating the PDF, so you can be sure all your content has loaded.
    Starting Price: $15 per month
  • 38
    Quix

    Quix

    Quix

    Building real-time apps and services require lots of components running in concert: Kafka, VPC hosting, infrastructure as code, container orchestration, observability, CI/CD, persistent volumes, databases, and much more. The Quix platform takes care of all the moving parts. You just connect your data and start building. That’s it. No provisioning clusters or configuring resources. Use Quix connectors to ingest transaction messages streamed from your financial processing systems in a virtual private cloud or on-premise data center. All data in transit is encrypted end-to-end and compressed with G-Zip and Protobuf for security and efficiency. Detect fraudulent patterns with machine learning models or rule-based algorithms. Create fraud warning messages as troubleshooting tickets or display them in support dashboards.
    Starting Price: $50 per month
  • 39
    Meteomatics

    Meteomatics

    Meteomatics

    Meteomatics specializes in high-resolution commercial weather forecasting, power output forecasting for wind, solar and hydro, weather data gathering from the lower atmosphere using Meteodrones, and weather data delivery via the Weather API. - Unlimited accesses/day - Weather data querying via URL - Unified weather data access for historical and current weather, forecasts, climate models, and data from over 25 weather models - WMS and WFS interface - Delivery of forecasts with an average response time of 20 to 30 ms - 90 m downscaling worldwide - 1800+ parameters - Historical weather data from 1979 Climate data including climate scenarios up to the year 2100 - Secured use with HTTP and HTTPS - Integration with many formats, connectors, and programming languages available - Proprietary European Weather Model with 1 km resolution – EURO1k (Business plan)
    Starting Price: $0/month/user
  • 40
    Binary Ninja

    Binary Ninja

    Binary Ninja

    Binary Ninja is an interactive disassembler, decompiler, and binary analysis platform for reverse engineers, malware analysts, vulnerability researchers, and software developers that runs on Windows, macOS, and Linux. Disassemble executables and libraries from multiple formats, platforms, and architectures. Decompile code to C or BNIL for any supported architecture, including your own. Automate analysis with C++, Python, and Rust APIs from inside or outside the UI. Visualize control flow and navigate through cross-references interactively. Name variables and functions, apply types, create structures, and add comments. Collaborate effortlessly with synchronized commits using our Enterprise product. Our built-in decompiler works with all of our officially supported architectures at one price and builds on a powerful family of ILs called BNIL. In fact, not just our architectures, but even community architectures can produce amazing decompilation.
    Starting Price: $299 one-time payment
  • 41
    ELCA Smart Data Lake Builder
    Classical Data Lakes are often reduced to basic but cheap raw data storage, neglecting significant aspects like transformation, data quality and security. These topics are left to data scientists, who end up spending up to 80% of their time acquiring, understanding and cleaning data before they can start using their core competencies. In addition, classical Data Lakes are often implemented by separate departments using different standards and tools, which makes it harder to implement comprehensive analytical use cases. Smart Data Lakes solve these various issues by providing architectural and methodical guidelines, together with an efficient tool to build a strong high-quality data foundation. Smart Data Lakes are at the core of any modern analytics platform. Their structure easily integrates prevalent Data Science tools and open source technologies, as well as AI and ML. Their storage is cheap and scalable, supporting both unstructured data and complex data structures.
    Starting Price: Free
  • 42
    Tarpaulin

    Tarpaulin

    Tarpaulin

    Tarpaulin is a code coverage reporting tool for the cargo build system, named for a waterproof cloth used to cover cargo on a ship. Currently, tarpaulin provides working line coverage and while fairly reliable may still contain minor inaccuracies in the results. A lot of work has been done to get it working on a wide range of projects, but often unique combinations of packages and build features can cause issues so please report anything you find that's wrong. Also, check out our roadmap for planned features. On Linux Tarpaulin's default tracing backend is still Ptrace and will only work on x86 and x64 processors. This can be changed to the llvm coverage instrumentation with engine llvm, for Mac and Windows this is the default collection method. It can also be run in Docker, which is useful for when you don't use Linux but want to run it locally.
    Starting Price: Free
  • 43
    kcov

    kcov

    kcov

    Kcov is a FreeBSD/Linux/OSX code coverage tester for compiled languages, Python and Bash. Kcov was originally a fork of Bcov, but has since evolved to support a large feature set in addition to that of Bcov. Kcov, like Bcov, uses DWARF debugging information for compiled programs to make it possible to collect coverage information without special compiler switches.
    Starting Price: Free
  • 44
    pytest-cov
    This plugin produces coverage reports. Compared to just using coverage run this plugin does some extras. Subprocess support, so you can fork or run stuff in a subprocess and will get covered without any fuss. Xdist support, so you can use all of pytest-xdist’s features and still get coverage. Consistent pytest behavior. All features offered by the coverage package should work, either through pytest-cov’s command line options or through coverage’s config file. Under certain scenarios, a stray .pth file may be left around in site packages. The data file is erased at the beginning of testing to ensure clean data for each test run. If you need to combine the coverage of several test runs you can use the --cov-append option to append this coverage data to coverage data from previous test runs. The data file is left at the end of testing so that it is possible to use normal coverage tools to examine it.
    Starting Price: Free
  • 45
    IDWise

    IDWise

    IDWise

    Convert good folks to good customers faster and build trust. Identity verification made simple. 13,000+ ID documents supported in 200+ countries and territories. Up to 50 AI-based Security Checks on each ID Document in seconds. Bank-Grade certified Biometrics Checks. Unparalleled Emerging Markets expertise. Dramatically accelerate customer conversion and bring down abandonment rates with IDWise’s fully automated, AI-driven, highly accurate and user-friendly identity verification solution. At IDWise we love to keep things simple. Everything from our simple all-in pricing plans to our seamless integration is tailored to help you serve your customers quickly and reliably with minimal friction, while focusing your precious resources at what you do best – running your business. We pride ourselves in our long-term partnership approach, recognizing that no two companies are the same when it comes to finding the right mix between speed, user experience, fraud prevention and compliance.
    Starting Price: $1 per verification
  • 46
    Einblick

    Einblick

    Einblick

    Einblick is the fastest and most collaborative way to explore data, create predictions, and deploy data apps. Our canvases radically change data science workflows by making it so much easier to explore, clean, and manipulate data on a novel interface. We are the only platform that let you collaborate in real-time with your whole team. Decision-making is a group activity, so let’s get everyone involved. Don’t waste time hand-tuning models. Our AutoML is focused on helping you create explainable predictions and identify key drivers without fuss. Einblick packages common analytics functionality into easy-to-use operators that let you abstract repetitive tasks and get to answers faster. From Snowflake to S3 buckets to CSV files, connect your data source and start getting to answers within minutes. Take a list of churned and current customers and join in everything you know about them. Uncover the key factors that led to churn, and identify how at-risk every customer is.
    Starting Price: $9 per month
  • 47
    NLP Cloud

    NLP Cloud

    NLP Cloud

    Fast and accurate AI models suited for production. Highly-available inference API leveraging the most advanced NVIDIA GPUs. We selected the best open-source natural language processing (NLP) models from the community and deployed them for you. Fine-tune your own models - including GPT-J - or upload your in-house custom models, and deploy them easily to production. Upload or Train/Fine-Tune your own AI models - including GPT-J - from your dashboard, and use them straight away in production without worrying about deployment considerations like RAM usage, high-availability, scalability... You can upload and deploy as many models as you want to production.
    Starting Price: $29 per month
  • 48
    AI21 Studio

    AI21 Studio

    AI21 Studio

    AI21 Studio provides API access to Jurassic-1 large-language-models. Our models power text generation and comprehension features in thousands of live applications. Take on any language task. Our Jurassic-1 models are trained to follow natural language instructions and require just a few examples to adapt to new tasks. Use our specialized APIs for common tasks like summarization, paraphrasing and more. Access superior results at a lower cost without reinventing the wheel. Need to fine-tune your own custom model? You're just 3 clicks away. Training is fast, affordable and trained models are deployed immediately. Give your users superpowers by embedding an AI co-writer in your app. Drive user engagement and success with features like long-form draft generation, paraphrasing, repurposing and custom auto-complete.
    Starting Price: $29 per month
  • 49
    Akto

    Akto

    Akto

    Akto is an open source API security in CI/CD platform. Key features of Akto include: 1. API Discovery 2. API Security Testing 3. Sensitive Data Exposure 4. API Security Posture Management 5. Authentication and Authorization 6. API Security in DevSecOps Akto helps developers and security teams secure APIs in their CI/CD by continuously discovering and testing APIs for vulnerabilities. Akto's pricing is transparent on website. Free tier is available. You can deploy both self-hosted and in cloud. It takes only few mins to deploy and see results. Akto can integrate with multiple traffic sources - Burpsuite, AWS, postman, GCP, gateways, etc.
  • 50
    Apache TinkerPop

    Apache TinkerPop

    Apache Software Foundation

    Apache TinkerPop™ is a graph computing framework for both graph databases (OLTP) and graph analytic systems (OLAP). Gremlin is the graph traversal language of Apache TinkerPop. Gremlin is a functional, data-flow language that enables users to succinctly express complex traversals on (or queries of) their application's property graph. Every Gremlin traversal is composed of a sequence of (potentially nested) steps. A graph is a structure composed of vertices and edges. Both vertices and edges can have an arbitrary number of key/value pairs called properties. Vertices denote discrete objects such as a person, a place, or an event. Edges denote relationships between vertices. For instance, a person may know another person, have been involved in an event, and/or have recently been at a particular place. If a user's domain is composed of a heterogeneous set of objects (vertices) that can be related to one another in a multitude of ways (edges).
    Starting Price: Free