Skip to main content

An app to manage Linkedin posts in a Django project

This project has been archived.

The maintainers of this project have marked this project as archived. No new releases are expected.

Project description

django-linkedin-posts

Set up

  1. Get your Linkedin Access Token https://www.linkedin.com/developers/tools/oauth/token-generator
  2. Install from PyPI
python -m pip install django-linkedin-posts
  1. Add the package to your settings INSTALLED_APPS
INSTALLED_APPS = [
    ...
    "django_linkedin_posts",
    ...
]
  1. Add the following setting variables
## thid-party apps

# django-linkedin-posts (our app)
import os
from dotenv import load_dotenv # python-dotenv

load_dotenv() 

LINKEDIN_AUTHOR_TPYE = "organization" # "organization" or "person"
LINKEDIN_AUTHOR_ID = os.environ.get("LINKEDIN_AUTHOR_ID")
LINKEDIN_ACCESS_TOKEN = os.environ.get("LINKEDIN_ACCESS_TOKEN")

## The following keys are not needed at the moment
## But they are planned to be used.
## For example for updating the Access Token using the Refresh Token
# LINKEDIN_CLIENT_ID = os.environ.get("LINKEDIN_CLIENT_ID")
# LINKEDIN_CLIENT_SECRET = os.environ.get("LINKEDIN_CLIENT_SECRET") 
# LINKEDIN_REFRESH_TOKEN = os.environ.get("LINKEDIN_REFRESH_TOKEN") 

Usage

Create a simple Post

from django_linkedin_posts.models import Post

# create a post instance in the db
post = Post.objects.create(
    comment="Hi, this is me publishing a post using django-linkedin-posts"
)

# share it in Linkedin 
post.share()

Create a poll with options

from django_linkedin_posts.models import create_poll_with_options

# create a poll with its options. 
p = create_poll_with_options("hello", "What's up?", ["good", "bad"])

# share it
p.share()

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

django-linkedin-posts-0.0.4.tar.gz (19.9 kB view details)

Uploaded Source

Built Distribution

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

django_linkedin_posts-0.0.4-py3-none-any.whl (22.3 kB view details)

Uploaded Python 3

File details

Details for the file django-linkedin-posts-0.0.4.tar.gz.

File metadata

  • Download URL: django-linkedin-posts-0.0.4.tar.gz
  • Upload date:
  • Size: 19.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 colorama/0.4.4 importlib-metadata/4.6.4 keyring/23.5.0 pkginfo/1.8.2 readme-renderer/42.0 requests-toolbelt/0.9.1 requests/2.25.1 rfc3986/1.5.0 tqdm/4.57.0 urllib3/1.26.5 CPython/3.10.12

File hashes

Hashes for django-linkedin-posts-0.0.4.tar.gz
Algorithm Hash digest
SHA256 dbd18e66d78932b2b723c91e7b7d25ec787bcd62a1813647ea709bbbcace25ae
MD5 8d5443f9fd0597044da3257079b638ba
BLAKE2b-256 ce1c4d7ac4fdac837dfa65623d55fb05b7c06c01f9e4ff69dfb4064de434d76a

See more details on using hashes here.

File details

Details for the file django_linkedin_posts-0.0.4-py3-none-any.whl.

File metadata

  • Download URL: django_linkedin_posts-0.0.4-py3-none-any.whl
  • Upload date:
  • Size: 22.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 colorama/0.4.4 importlib-metadata/4.6.4 keyring/23.5.0 pkginfo/1.8.2 readme-renderer/42.0 requests-toolbelt/0.9.1 requests/2.25.1 rfc3986/1.5.0 tqdm/4.57.0 urllib3/1.26.5 CPython/3.10.12

File hashes

Hashes for django_linkedin_posts-0.0.4-py3-none-any.whl
Algorithm Hash digest
SHA256 10956205b5b95d66bcc3d8f76276939e59fd0b21d145055919cdb0948416fa15
MD5 75f2fe3ac7dbc9985c0a42510c20f1f6
BLAKE2b-256 379996015c92031e017619e806aab782ea4dcd0ffa4bc6fd1fb2d8b23414231c

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