https://github.com/erudika/para-client-csharp
.NET Client for Para
https://github.com/erudika/para-client-csharp
api-client backend-services csharp dot-net para
Last synced: 6 days ago
JSON representation
.NET Client for Para
- Host: GitHub
- URL: https://github.com/erudika/para-client-csharp
- Owner: Erudika
- License: apache-2.0
- Created: 2015-09-09T23:05:56.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2022-12-16T17:23:25.000Z (over 2 years ago)
- Last Synced: 2024-08-09T03:52:18.904Z (9 months ago)
- Topics: api-client, backend-services, csharp, dot-net, para
- Language: C#
- Homepage: https://paraio.org
- Size: 604 KB
- Stars: 3
- Watchers: 3
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README

# .NET Client for Para
[](https://badge.fury.io/nu/para_client_csharp)
[](https://gitter.im/Erudika/para?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)## What is this?
**Para** was designed as a simple and modular backend framework for object persistence and retrieval.
It helps you build applications faster by taking care of the backend. It works on three levels -
objects are stored in a NoSQL data store or any old relational database, then automatically indexed
by a search engine and finally, cached.This is the .NET client for Para.
### Quick start
1. Use the [NuGet](https://www.nuget.org/) package manager and add `para_client_csharp` as a
dependency to your project:```
Install-Package para_client_csharp -Version x.y.z
```
OR
```
dotnet add package para_client_csharp --version x.y.z
```2. Initialize the client with your access and secret API keys.
```csharp
ParaClient client = new ParaClient('ACCESS_KEY', 'SECRET_KEY');
```## Documentation
### [Read the Docs](https://paraio.org/docs)
## Contributing
1. Fork this repository and clone the fork to your machine
2. Create a branch (`git checkout -b my-new-feature`)
3. Implement a new feature or fix a bug and add some tests
4. Commit your changes (`git commit -am 'Added a new feature'`)
5. Push the branch to **your fork** on GitHub (`git push origin my-new-feature`)
6. Create new Pull Request from your forkFor more information see [CONTRIBUTING.md](https://github.com/Erudika/para/blob/master/CONTRIBUTING.md)
## License
[Apache 2.0](LICENSE)