Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Layr | 1,210 | 23 | 2 months ago | 20 | October 15, 2020 | mit | TypeScript | |||
Dramatically simplify full‑stack development | ||||||||||
Devicemanager.api | 160 | 3 years ago | 4 | C# | ||||||
Web API Framework demonstrates scalable, multitenant, architecture and allows building its own solution in the minutes. Uses: Entity Framework, UnitOfWork, Repository patterns. Wrapped in Docker, Kubernetes | ||||||||||
Beef | 125 | 1 | 13 | 5 days ago | 71 | August 18, 2022 | 3 | mit | C# | |
The Business Entity Execution Framework (Beef) framework, and the underlying code generation, has been primarily created to support the industrialization of API development. | ||||||||||
Dbwebapi | 91 | 2 | a year ago | 13 | December 03, 2018 | 2 | mit | C# | ||
(Migrated from CodePlex) DbWebApi is a .Net library that implement an entirely generic Web API (RESTful) for HTTP clients to call database (Oracle & SQL Server) stored procedures or functions in a managed way out-of-the-box without any configuration or coding. | ||||||||||
Emissions Api | 66 | 9 months ago | 15 | mit | Python | |||||
Web API to easily access satellite-based emission data | ||||||||||
Sc2gears | 30 | a year ago | apache-2.0 | Java | ||||||
The COMPLETE (!) source code of the Sc2gears universe (Sc2gears app + Sc2gears Database + web-based parsing engine - bundled in an Eclipse project). | ||||||||||
Spa With Blazor | 27 | 4 years ago | C# | |||||||
Creating a Single Page Application with Razor pages in Blazor using Entity Framework Core database first approach. | ||||||||||
Uoft Timetable Generator | 20 | 5 years ago | agpl-3.0 | C# | ||||||
A web application that generates timetables for university students at the University of Toronto | ||||||||||
Netcorewithdocker | 19 | 3 years ago | mit | C# | ||||||
Tutorial with samples about how to setup .Net Core with Docker | ||||||||||
Webapiboilerplate | 19 | 2 years ago | mit | C# | ||||||
Boilerplate project for ASP.NET Core WebAPI: user registration and authentication, localization, logging, sending emails, 100% documented, unit tests |
This is the main repository for the Emissions API.
If you just want to use Emissions API as a service, take a look at our API documentation or visit our website for additional information and examples.
Below you will find a small introduction about setting the services in this repository up for development.
If you want to take a deeper dive into this, you can take a look at the documentation, visit the issues or take a look into the libraries and tools we created around this project.
To install the requirements execute
pip install -r requirements.txt
You might have to explicitly deal with C-dependencies like psycopg2
yourself,
One way to do this is to use your corresponding system packages.
After that you can run the different services using
python -m emissionsapi.preprocess
python -m emissionsapi.autoupdater
python -m emissionsapi.web
Emissions API will look for configuration files in the following order:
./emissionsapi.yml
~/emissionsapi.yml
/etc/emissionsapi.yml
A configuration file template can be found at etc/emissionsapi.yml
.
To get started, just copy this to the main project directory and adjust the
values if the defaults do not work for you.
This project is using a PostgreSQL database with the PostGIS extension.
There is a simple docker-compose.yml
file to make it easier to setup a
database for development.