https://github.com/joeychilson/edgar_client
An Elixir-based HTTP Client for SEC's EDGAR
https://github.com/joeychilson/edgar_client
edgar elixir sec
Last synced: 2 months ago
JSON representation
An Elixir-based HTTP Client for SEC's EDGAR
- Host: GitHub
- URL: https://github.com/joeychilson/edgar_client
- Owner: joeychilson
- License: mit
- Created: 2023-06-23T08:41:59.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-07-26T06:52:58.000Z (almost 2 years ago)
- Last Synced: 2025-03-27T20:24:16.562Z (3 months ago)
- Topics: edgar, elixir, sec
- Language: Rust
- Homepage:
- Size: 9.78 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# EDGAR
`EDGAR` is an Elixir-based HTTP Client for SEC's EDGAR.
**This library is a work in progress.**
## Installation
`EDGAR` is available on Hex. Add it to your list of dependencies in `mix.exs`:
```elixir
def deps do
[
{:edgar_client, "~> 0.10.0"}
]
end
```## Configuration
```elixir
# A default user agent is provided, but you should change it to your own to prevent your requests from being blocked.
config :edgar_client, :user_agent, "name "
```