https://github.com/basbl/ex_castor_edc
An unofficial Elixir wrapper for the Castor EDC API
https://github.com/basbl/ex_castor_edc
elixir
Last synced: 5 days ago
JSON representation
An unofficial Elixir wrapper for the Castor EDC API
- Host: GitHub
- URL: https://github.com/basbl/ex_castor_edc
- Owner: basbl
- License: mit
- Created: 2021-11-20T14:46:07.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2023-05-21T13:30:20.000Z (about 3 years ago)
- Last Synced: 2026-03-07T17:52:54.145Z (4 months ago)
- Topics: elixir
- Language: Elixir
- Homepage: https://hexdocs.pm/ex_castor_edc
- Size: 1.25 MB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
- Codeowners: CODEOWNERS
Awesome Lists containing this project
README
# ExCastorEDC
[](https://hex.pm/packages/ex_castor_edc) [](https://hexdocs.pm/ex_castor_edc) 
An unofficial Elixir wrapper for the [Castor EDC API](https://data.castoredc.com/api).
Not all endpoints have been implemented yet, these will be gradually added in future releases.
## Getting started
In order to use `ex_castor_edc`, you will need Elixir installed. Then create an
Elixir project via the `mix` build tool:
```
$ mix new my_app
```
Then you can add `ex_castor_edc` as dependency in your `mix.exs`.
```elixir
def deps do
[
{:ex_castor_edc, "~> 0.4.0"}
]
end
```
Alternatively, inside a script or Livebook:
```elixir
Mix.install([
{:ex_castor_edc, "~> 0.4.0"}
])
```