March 2017 Summaries
2 posts from Contentful
Filter
Month:
Year:
Post Summaries
Back to Blog
The author uses APIs extensively in their development work and finds tools like Postman helpful but prefers a more integrated solution that runs continuously in the terminal, allowing for easy access to API data without an additional program running. They created a Node.js module to help with this, but ultimately decided to write a shell script instead due to its simplicity and flexibility, which they can now use to quickly access data from Contentful by parsing a JSON configuration file using the `jq` module. This has saved them time and enabled them to focus on more important tasks, highlighting the benefits of shell scripting for productivity.
Mar 20, 2017
888 words in the original blog post.
The Contentful team has released a Python SDK that offers a range of tools for developers to easily get started with the platform, including detailed guides and tutorials. The SDK utilizes metaprogramming techniques to simplify code and improve developer experience. By using features such as `__getattr__` and introspection, the team has been able to create a more streamlined and efficient way of interacting with the Contentful API. This allows developers to focus on building their applications rather than worrying about the underlying API implementation. The SDK also uses metaprogramming to map JSON responses to Python objects, reducing code duplication and improving readability.
Mar 17, 2017
981 words in the original blog post.