Skip to main content

python client for the Roboflow application

Project description

Roboflow Python


roboflow logo


Roboflow streamlines your computer vision pipeline - upload data, label it, download datasets, train models, deploy models, and repeat.

The Roboflow Python Package is a python wrapper around the core Roboflow web application and REST API.

We also maintain an open source set of CV utililities and notebook tutorials in Python:

Installation

To install this package, please use Python 3.6 or higher.

Install from PyPi (Recommended):

pip install roboflow

Install from Source:

git clone https://github.com/roboflow-ai/roboflow-python.git
cd roboflow-python
python3 -m venv env
source env/bin/activate
pip3 install -r requirements.txt

Authentication

import roboflow
roboflow.login()

Quickstart

Datasets

Download any of over 200,000 public computer vision datasets from Roboflow Universe. Label and download your own datasets on app.roboflow.com.

import roboflow
dataset = roboflow.download_dataset(dataset_url="universe.roboflow.com/...", model_format="yolov8")
#ex. dataset = roboflow.download_dataset(dataset_url="https://universe.roboflow.com/joseph-nelson/bccd/dataset/1", model_format="yolov8")
print(dataset.location)

Models

Predict with any of over 50,000 public computer vision models. Train your own computer vision models on app.roboflow.com or train upload your model from open source models - see https://github.com/roboflow/notebooks

img_url = "https://media.roboflow.com/quickstart/aerial_drone.jpeg?updatedAt=1678743716455"
universe_model_url = "https://universe.roboflow.com/brad-dwyer/aerial-solar-panels/model/6"

model = roboflow.load_model(model_url=universe_model_url)
pred = model.predict(img_url, hosted=True)
pred.plot()

Library Structure

The Roboflow python library is structured by the core Roboflow application objects.

Workspace (workspace.py) --> Project (project.py) --> Version (version.py)

from roboflow import Roboflow
rf = Roboflow()
workspace = rf.workspace("WORKSPACE_URL")
project = workspace.project("PROJECT_URL")
version = project.version("VERSION_NUMBER")

The workspace, project, and version parameters are the same that you will find in the URL addresses at app.roboflow.com and universe.roboflow.com.

Within the workspace object you can perform actions like making a new project, listing your projects, or performing active learning where you are using predictions from one project's model to upload images to a new project.

Within the project object, you can retrieve metadata about the project, list versions, generate a new dataset version with preprocessing and augmentation settings, train a model in your project, and upload images and annotations to your project.

Within the version object, you can download the dataset version in any model format, train the version on Roboflow, and deploy your own external model to Roboflow.

Contributing

If you want to extend our Python library or if you find a bug, please open a PR!

Also be sure to test your code the unittest command at the /root level directory.

Run tests:

python -m unittest

When creating new functions, please follow the Google style Python docstrings. See example below:

def example_function(param1: int, param2: str) -> bool:
    """Example function that does something.

    Args:
        param1: The first parameter.
        param2: The second parameter.

    Returns:
        The return value. True for success, False otherwise.

    """

We provide a Makefile to format and ensure code quality. Be sure to run them before creating a PR.

# format code with `black` and `isort`
make style

# check code with flake8
make check_code_quality

Note These tests will be run automatically when you commit thanks to git hooks.

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

roboflow-1.1.1.tar.gz (49.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

roboflow-1.1.1-py3-none-any.whl (57.4 kB view details)

Uploaded Python 3

File details

Details for the file roboflow-1.1.1.tar.gz.

File metadata

  • Download URL: roboflow-1.1.1.tar.gz
  • Upload date:
  • Size: 49.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.8.17

File hashes

Hashes for roboflow-1.1.1.tar.gz
Algorithm Hash digest
SHA256 a621b32a986d2aa96e05b292c3093a5513221ce851c34e41c4623637b2cbdd09
MD5 448f0f6e62c4dfb0a172d0e8d78ff440
BLAKE2b-256 813b9d2400ec649929e0d9d0dbdcc17605b23de4ad14f228d0d6b49e65190472

See more details on using hashes here.

File details

Details for the file roboflow-1.1.1-py3-none-any.whl.

File metadata

  • Download URL: roboflow-1.1.1-py3-none-any.whl
  • Upload date:
  • Size: 57.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.8.17

File hashes

Hashes for roboflow-1.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 aa3c4a5b51ba5aebc3b4c68d96bfe24fd6122ca4ba95d865df5829f034a4ac6f
MD5 b333490b14ebdfea2c6b79c67b573815
BLAKE2b-256 e2a4682f069f483e5292eef9a446d55a18d4309780e4b20267a8c574256ade04

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page