Skip to main content

Python CLI for uploading files and publishing static sites to OkFile

Project description

OkFile

Agent-first file upload and publish service built on Cloudflare Pages Functions, R2, and D1.

  • Website: https://www.okfile.com
  • Repository: https://github.com/okfilecom/okfile
  • License: Apache-2.0

Python CLI

The published Python package name is okfile.

Install the latest release from PyPI:

py -3 -m pip install okfile
okfile --version

Install a pinned version when you need reproducible environments:

py -3 -m pip install okfile==1.2.3

Upgrade to the latest release:

py -3 -m pip install --upgrade okfile

Fallback wheel install:

py -3 -m pip install "https://www.okfile.com/downloads/okfile-1.2.3-py3-none-any.whl"
  • PyPI: https://pypi.org/project/okfile/
  • CLI skill doc: ./SKILL.md

What It Does

OkFile is designed for Agents, scripts, and lightweight manual upload use cases.

It supports:

  • anonymous uploads
  • authenticated uploads with user API keys
  • direct file URLs for download or embedding
  • preview/playback URLs for image, video, and PDF
  • multipart upload for large files up to 500MB
  • phase-1 site directory upload with nested subdirectories and per-site subdomain publish URLs
  • automatic shared top-level directory stripping for folder-based site uploads
  • directory listing fallback when a published site does not contain root index.html
  • retrying only missing parts after incomplete multipart uploads
  • email magic-link login and account management
  • localized home, upload, and account pages

Main User Flows

1. Anonymous Publish

  1. POST /api/upload/prepare
  2. PUT uploadUrl or each parts[].uploadUrl
  3. POST /api/upload/complete
  4. return url and optionally playUrl

2. API Key Publish

  1. request a magic link and log in
  2. create an API key in /account
  3. call POST /api/upload/prepare with apiKey
  4. upload file data to signed URLs
  5. call POST /api/upload/complete

3. Manual Upload

Users can also use:

  • /zh/upload/
  • /en/upload/

This path is kept as a fallback entry, while API integration remains the recommended flow.

4. Site Directory Publish

  1. select a whole folder in /zh/upload/ or /en/upload/
  2. the uploader preserves nested relative paths
  3. if every file sits under one shared top-level folder, that folder is stripped and treated as the site root
  4. if the site contains root index.html, / renders that page
  5. if root index.html does not exist, / renders a directory listing with file name, size, and upload time
  6. image and video entries open inline, while other files use download links

Architecture

Runtime

  • Cloudflare Pages Functions for routing and API handling
  • Cloudflare Worker route for *.ok26.org/* site subdomains
  • Cloudflare R2 for file storage
  • Cloudflare D1 for auth and API key metadata
  • Resend for email magic links

Frontend

  • static index.html for homepage
  • static upload.html for manual upload
  • server-side localization and SEO injection in worker-app.js

Backend Responsibilities

  • issue presigned R2 upload URLs
  • complete multipart uploads
  • activate public file routes
  • resolve published site subdomains from request Host
  • manage sessions, magic links, and API keys
  • enforce anonymous and per-key quota limits

Core Routes

Pages

  • /zh/ and /en/: localized home pages
  • /zh/upload/ and /en/upload/: manual upload pages
  • /account: redirects to localized account page
  • /zh/account/ and /en/account/: localized account pages
  • /admin: admin console

Upload APIs

  • POST /api/upload/prepare
  • POST /api/upload/complete
  • GET /api/upload/status/{id}

Auth APIs

  • POST /api/auth/request-link
  • GET /auth/verify?token=...
  • GET /api/account/me
  • POST /api/account/api-keys

File URLs

  • /i/{id}: direct file URL
  • /i/{id}?play=1: preview/playback page
  • /d/{id}: controlled download route

Site URLs

  • https://{subdomain}.ok26.org/: site root or directory listing
  • https://{subdomain}.ok26.org/path/to/file: published site asset or document
  • https://{subdomain}.ok26.org/path/to/file?download=1: force download for a site file

Repository Layout

.
|- worker-app.js                      # main Pages Function entry
|- index.html                         # homepage
|- upload.html                        # manual upload page
|- schema.sql                         # D1 schema
|- wrangler.toml                      # Cloudflare config
|- SKILL.md                           # root skill document
|- .trae/skills/okfile/SKILL.md       # Trae skill definition
|- okfile-upload-pitfalls.md          # upload pitfalls and debugging notes

Local Development

Install dependencies:

npm install

Run local development:

npx wrangler pages dev .

Deploy to Cloudflare Pages:

npx wrangler pages deploy . --project-name okfile --branch main

Configuration

Store secrets in Cloudflare, not in the repository.

Secrets

  • R2_ACCESS_KEY_ID
  • R2_SECRET_ACCESS_KEY
  • RESEND_API_KEY

Plain-Text Vars

  • R2_ACCOUNT_ID
  • RESEND_FROM_EMAIL
  • ADMIN_EMAILS

Database

The D1 schema is defined in schema.sql and includes:

  • users
  • magic_links
  • sessions
  • api_keys
  • api_key_usage_windows

Upload Notes

See these repo docs for integration details:

  • SKILL.md
  • SITE_UPLOAD_DESIGN.md
  • .trae/skills/okfile/SKILL.md
  • okfile-upload-pitfalls.md

The pitfalls doc includes practical notes such as:

  • Cloudflare requiring a normal User-Agent for some requests
  • explicit Content-Length on R2 PUT
  • multipart retry strategy
  • large-file client recommendations on Windows

For site publishing:

  • use root index.html when you want the subdomain root to render a page
  • if you upload a single wrapper folder such as my-site/..., OkFile strips my-site/ automatically
  • if no root index.html exists, users land on a browsable directory listing instead of downloading an arbitrary file

Articles

Published and outward-facing articles are archived in docs/:

  • docs/README.md
  • docs/devto-agent-delivery-publish-file-or-site-test-guide.md
  • docs/aliyun-workbuddy-agent-file-site-publish-test-guide.md

Contributing

Please read CONTRIBUTING.md before opening pull requests.

Security

Please read SECURITY.md for reporting instructions and secret-handling rules.

Changelog

See CHANGELOG.md for release notes tracked in-repo.

License

Apache-2.0

Project details


Download files

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

Source Distribution

okfile-1.2.3.tar.gz (15.4 kB view details)

Uploaded Source

Built Distribution

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

okfile-1.2.3-py3-none-any.whl (15.1 kB view details)

Uploaded Python 3

File details

Details for the file okfile-1.2.3.tar.gz.

File metadata

  • Download URL: okfile-1.2.3.tar.gz
  • Upload date:
  • Size: 15.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.5

File hashes

Hashes for okfile-1.2.3.tar.gz
Algorithm Hash digest
SHA256 635ca6748dfcd72d8042b38029b827dba736abbcb6a3d52a492fcfc3518708e6
MD5 59695e2fae964d1020f0ce440da0a3fd
BLAKE2b-256 df728b5d62b65c168430e5ae0fc191e57f1589334b2304469a4cf228551cf80c

See more details on using hashes here.

File details

Details for the file okfile-1.2.3-py3-none-any.whl.

File metadata

  • Download URL: okfile-1.2.3-py3-none-any.whl
  • Upload date:
  • Size: 15.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.5

File hashes

Hashes for okfile-1.2.3-py3-none-any.whl
Algorithm Hash digest
SHA256 7987984fcc6f27453f0dde2106ca2c241854f13174ca0c4aebbfceb501f6ba5e
MD5 2e6749a57510ec7ea7a9e2d26a5bf8e6
BLAKE2b-256 1362f63215e90a67350fda77ba86e8477978de90123a3851bb7f168c60245549

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