Skip to main content

Using Github API (to pull individuals, orgs, and article content), setup a local sqlite database, syncing images to Cloudflare.

Project description

corpus-pax

Setting up the initial, foundational tables with generic users, organizations, and articles.

flowchart LR

subgraph main
  local(local machine)--run corpus-pax--->db[(sqlite.db)]
  local--avatar.jpeg---cf(cloudflare)
end
subgraph github/corpus
  folder1(members)--data via api---local
  folder2(orgs)--data via api---local
end
subgraph github/lawsql-articles
  folder3(github/lawsql-articles/content)--data via api---local
end

Implies updated Github repositories:

  1. corpus (for entities, i.e. members and orgs) and
  2. lawsql-articles (markdown style articles).

With respect to entities, data concerning members will be pulled from such repository. Each avatar image should be named avatar.jpeg so that these can be uploaded to Cloudflare.

Install

poetry add corpus-pax
poetry update

Supply .env

Create an .env file to create/populate the database. See sample .env highlighting the following variables:

  1. Cloudflare CF_ACCT
  2. Cloudflare CF_TOKEN
  3. Github GH_TOKEN
  4. DB_FILE (sqlite)

Note the workflow where the secrets are included for Github actions. Ensure these are set in the repository's <url-to-repo>/settings/secrets/actions, making the proper replacements when the tokens for Cloudflare and Github expire.

Notes

Why Github

The names and profiles of individuals and organizations are stored in Github. These are pulled into the application via an API call requiring the use of a personal access token.

Why Cloudflare Images

Individuals and organizations have images stored in Github. To persist and optimize images for the web, I use Cloudflare images.

Why sqlite

The initial data is simple. This database however will be the foundation for a more complicated schema. Sqlite seems a better fit for experimentation and future embeddability of the same for app use.

Steps

Review database connection

Need to specify filename, e.g. ex.db, for this to created in the root directory of the project folder. Without the filename, the Connection (sqlite-utils' Database() under the hood) used is the path declared in $env.DB_FILE

from sqlpyd import Connection  # this is sqlite-utils' Database() under the hood

c = Connection(DatabasePath="ex.db", WALMode=False)

Add persons

Create and populate the persons-related tables:

from corpus_pax import init_persons

init_persons(c)

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

corpus_pax-0.1.4.tar.gz (10.5 kB view hashes)

Uploaded Source

Built Distribution

corpus_pax-0.1.4-py3-none-any.whl (11.2 kB view hashes)

Uploaded Python 3

Supported by

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