Metadata-Version: 2.1
Name: subfork
Version: 1.0.4
Summary: Subfork Python API
Home-page: https://github.com/subforkdev/subfork
Author: Subfork
Author-email: help@subfork.com
License: BSD-3-Clause
Project-URL: Documentation, https://docs.fork.io
Project-URL: Demo, https://test.fork.io
Project-URL: Issue Tracker, https://github.com/subforkdev/subfork/issues
Project-URL: Trademark Policy, https://github.com/subforkdev/subfork/blob/main/TRADEMARKS.md
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
License-File: TRADEMARKS.md
Requires-Dist: jsmin>=3.0.1
Requires-Dist: psutil>=5.9.3
Requires-Dist: PyYAML>=5.4
Requires-Dist: requests>=2.25.1
Requires-Dist: urllib3>=1.26.2
Requires-Dist: python-socketio~=5.11
Requires-Dist: websocket-client<2,>=1.6

# Subfork Python API

[Quickstart](#quickstart) |
[Basic Commands](#basic-commands) |
[Workers](#workers) |
[Config File](#config-file) |
[Environments](#environments) |
[Distribution](#distribution)

Subfork is the easiest way to build and deploy static sites and micro web apps.
This package provides the Subfork Python API and command line interface.

- Docs: https://docs.fork.io
- GitHub: https://github.com/subforkdev/subfork
- PyPI: https://pypi.org/project/subfork
- Demo: https://test.fork.io

## Installation

The easiest way to install:

```bash
$ pip install -U subfork
```

Installing from source:

```bash
$ git clone https://github.com/subforkdev/subfork
$ cd subfork
$ pip install .
```

## Setup

In order to authenticate with the Subfork API, you will first need to create
a site and API access keys for your site at [subfork.com](https://subfork.com).

```bash
$ export SUBFORK_ACCESS_KEY=<access key>
$ export SUBFORK_SECRET_KEY=<secret key>
```

Modify the `subfork.yml` [config file](#config-file) at the root of your project
or set `$SUBFORK_CONFIG_FILE` to the path to `subfork.yml`:

```bash
$ export SUBFORK_CONFIG_FILE=/etc/project/subfork.yml
```

## Quickstart

To use the Subfork Python API you must first complete the configuration steps
below. Then instantiate a client using the site domain and access keys:

```python
import subfork

client = subfork.get_client()
site = client.site()
```

Getting pages:

```python
pages = site.pages()  # all pages
page = site.get_page("index.html")  # get index.html
```

Getting data:

```python
# get all of the 'bookings' for 'Sally'
params = [["guestid", "=", "Sally"]]
results = site.get_data("bookings").find(params)
```

Updating data:

```python
# update the 'total' value for a booking
data = site.get_data("bookings").find_one(params)
data["total"] = 600.00
results = site.get_data("bookings").update(data["id"], data)
```

## Basic Commands

To create a `subfork.yml` [config file](#config-file) from existing html templates
and static files:

```bash
$ subfork create -t <templates folder> -s <static folder>
```

where the templates folder is the folder containing all of the html files, and the
static folder is the folder containing all of the static files (.jpg, .js, .css, etc).
Be sure to update the values in the new `subfork.yml` if necessary.

To test a site locally using the dev server:

```bash
$ subfork run
```

To deploy and release a site:

```bash
$ subfork deploy -c "initial deployment" --release
```

To process queued tasks using workers defined in the [config file](#config-file):

```bash
$ subfork worker
```

## Workers

Task workers are decentralized Python functions that poll task queues for new jobs.
As new jobs are added to the queue, task workers pull them off and pass data
to the specified Python function.

See the `subfork.worker.test` function for an example of a simple worker that takes jobs
from the `test` queue and returns a string.

To run a worker that pulls jobs from the `test` queue and runs the test function:

```bash
$ subfork worker --queue test --func subfork.worker.test
```

Workers will automatically retry failed jobs.

Getting task results:

```python
queue = site.get_queue("test")
task = queue.get_task(taskid)
results = task.get_results()
```

Creating new tasks:

```python
task = queue.create_task({"t": 1})
```

Tasks and task data can be viewed on the tasks page of the subfork dashboard.

## Config File

The `subfork.yml` config file contains required auth info, page templates,
routes (or endpoints), static files and task worker definitions.

The example config file contains two endpoints and a worker:

```yaml
# enter site domain (e.g. mysite.fork.io)
domain: ${SUBFORK_DOMAIN}

# enter site credentials here
access_key: ${SUBFORK_ACCESS_KEY}
secret_key: ${SUBFORK_SECRET_KEY}

# path to templates and static files
template_folder: templates
static_folder: static

# page template definitions
templates:
  index:
    route: /
    file: index.html
  user:
    route: /user/<username>
    file: user.html

# task worker definitions
workers:
  test:
    queue: test
    function: subfork.worker.test
```

## Environments

Settings can be easily managed using [envstack](https://github.com/rsgalloway/envstack)
to manage environments. By default, subfork looks for a `subfork.env`
environment file, but you can easily create different environments, for example
a `prod.env` environment file, or a `dev.env` environment file:

```bash
$ envstack subfork -s SUBFORK_ACCESS_KEY=abc123 SUBFORK_SECRET_KEY=xyz456 -eo dev.env
$ ./dev.env -- subfork run
```

Access keys can be stored securely in an .env file (see
[instructions here](https://github.com/rsgalloway/envstack?tab=readme-ov-file#encryption)
for generating encryption keys):

```bash
$ envstack keys -eo secrets.env
```

## Distribution

File distribution can be optionally managed using the `dist.json` file and
installed using [distman](https://github.com/rsgalloway/distman):

```bash
$ pip install -U distman
$ ./prod.env -- dist [OPTIONS]
```

## Demo

See [test.fork.io](https://test.fork.io) for an example of a simple demo site,
or get the source code here:

```bash
$ git clone https://github.com/subforkdev/test.fork.io
```

## Trademark Notice

Subfork and the Subfork logo are trademarks of Subfork.  
The BSD 3-Clause License covers the source code but does **not** grant rights to use the Subfork
name or logo. You may refer to Subfork in a descriptive way (e.g. “compatible with Subfork”),
but you may not use Subfork trademarks in your own branding, project names, or domains
without prior written permission. See [TRADEMARKS.md](./TRADEMARKS.md) for details.
