Metadata-Version: 2.1
Name: linkedin-posts
Version: 0.0.8
Summary: Utility to share Linkedin posts using the Linkedin Marketing API
Author-email: Rami <ramiboutas@protonmail.com>
Project-URL: Homepage, https://github.com/ramiboutas/linkedin-posts
Project-URL: Bug Tracker, https://github.com/ramiboutas/linkedin-posts/issues
Project-URL: Documentation, https://linkedin-posts.ramiboutas.com
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Intended Audience :: Developers
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests

# Linkedin Posts

Utility to share Linkedin posts using the Linkedin Marketing API

Made easy to use in Python.


## Example

Here is a small example using the `share_poll` function.
```python
from linkedin_posts.polls import share_poll

response = share_poll(
  "<HERE YOUR ACCESS TOKEN>",
  comment="Hello, this is just a test...",
  poll_question="Is this is a nice poll?",
  poll_options=["Yes", "No", "I do not care"],
  author_type="organization",
  author_id="71513925",
)

```

[<img align="center"  width="100%"  src="docs/img/poll_example.png">](https://www.linkedin.com/company/nice-cv/)


## Need more?

[📚 Check out the docs 📚](https://linkedin-posts.ramiboutas.com)



