Code Monkey home page Code Monkey logo

fbchat-sharp's People

Contributors

dependabot[bot] avatar f-rakete avatar gave92 avatar markovcd avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

fbchat-sharp's Issues

Cannot handle gif messages

If a message contains a .gif, a 'System.NullReferenceException' is thrown. Everything is fine with images and stickers.

Markalive problem

Hello please i have problem with markalive i have markalive falsr but iam permanently active on fb by my bot so markalive not working i think

2 Factor Authentication Not Working with SMS

Iam able to login with with no authentication and everything is working fine. I turned on 2 step authentication and now its not working. Im using this sample project with no code changes. The Inputbox comes up asking to enter my code but I never get the code to my phone. If I login from the browser it works fine. I get the sms and I can login. But for the app it does not work. I tried both uwp and wpf. The only thing that happens is that Facebook sees a login request and blocks that request. There is no sms being sent. It only gets blocked. Seems like sms 2 step is not being initiated from the app. If i use anything else such as browser or Facebook Messenger I get the sms code and I can login. Please can you help with this? Everything else is working great just this one last thing. Thank you. Here is the error I get from facebook when I check from the browser ===

Review Recent Login
Someone recently tried to log into your account from an unrecognized computer or mobile browser. Because you set up two-factor authentication, your account is temporarily locked. Please complete the following steps to regain access to your account.

again exception :(

Hello i have again exception
Exception thrown: 'fbchat_sharp.API.FBchatPleaseRefresh' in fbchat-sharp.dll
Refreshing state and resending request

after latest update its worked for few days but today its back :(

Sending images doesn't work

Hi! I've recently started using your library in my project. Unluckily, sending images doesn't work for me.

Code (FBClient is the the same as in the example):

using System;
using System.IO;
using System.Threading.Tasks;
using fbchat_sharp.API;

namespace bot
{
    class Program
    {
        private static readonly FBClient client = new FBClient();
        static async Task Main()
        {
            Console.WriteLine("fbchat-sharp test");
            await client.DoLogin("login", "password");
            using (FileStream stream = File.OpenRead("image.png"))
            {
                await client.sendLocalImage("image.png", stream, null, "0000", ThreadType.GROUP);
            }
        }
    }
}

Exception:

Unhandled Exception: System.NullReferenceException: Object reference not set to an instance of an object.
   at fbchat_sharp.API.FBchatFacebookError..ctor(String message, String fb_error_code, String fb_error_message, Int32 request_status_code) in /home/konrad11901/Projects/TEST/fbchat-sharp/API/Models.cs:line 32
   at fbchat_sharp.API.Utils.<checkRequest>d__12.MoveNext() in /home/konrad11901/Projects/TEST/fbchat-sharp/API/Utils.cs:line 122
--- End of stack trace from previous location where exception was thrown ---
   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()
   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
   at System.Runtime.CompilerServices.TaskAwaiter`1.GetResult()
   at fbchat_sharp.API.Client.<_postFile>d__36.MoveNext() in /home/konrad11901/Projects/TEST/fbchat-sharp/API/Client.cs:line 347
--- End of stack trace from previous location where exception was thrown ---
   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()
   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
   at System.Runtime.CompilerServices.TaskAwaiter`1.GetResult()
   at fbchat_sharp.API.Client.<_uploadImage>d__71.MoveNext() in /home/konrad11901/Projects/TEST/fbchat-sharp/API/Client.cs:line 1482
--- End of stack trace from previous location where exception was thrown ---
   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()
   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
   at System.Runtime.CompilerServices.TaskAwaiter`1.GetResult()
   at fbchat_sharp.API.Client.<sendLocalImage>d__74.MoveNext() in /home/konrad11901/Projects/TEST/fbchat-sharp/API/Client.cs:line 1565
--- End of stack trace from previous location where exception was thrown ---
   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()
   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
   at System.Runtime.CompilerServices.TaskAwaiter`1.GetResult()
   at bot.Program.<Main>d__1.MoveNext() in /home/konrad11901/Projects/TEST/bot/Program.cs:line 17
--- End of stack trace from previous location where exception was thrown ---
   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()
   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
   at bot.Program.<Main>()

I don't know if it's a mistake in my code or the library just doesn't work properly. If it's my mistake, I'd be thankful for pointing it out!

I'm compiling the latest version of the library from source, I'm not using the NuGet package.

doLogin() throws System.TypeLoadException

Client client = new Client();
await client.doLogin(login, password);

throws error

Could not load "AngleSharp.Parser.Html.HtmlParser" from "AngleSharp, Version=0.13.0.0, Culture=neutral, PublicKeyToken=e83494dcdc6d31ea".
 StackTrace:    in fbchat_sharp.API.Client.<_login>d__41.MoveNext()
   in System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1.Start[TStateMachine](TStateMachine& stateMachine)
   in fbchat_sharp.API.Client._login()
   in fbchat_sharp.API.Client.<doLogin>d__46.MoveNext()
---
in System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
   in System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
   in System.Runtime.CompilerServices.TaskAwaiter.GetResult()
   in socialPost.MainWindow.<DoFacebookMessendgerAsync>d__91.MoveNext()
Data: System.Collections.ListDictionaryInternal, Source: fbchat-sharp

in fbchat (python) same loggining info passes fine

Best examples

It would be interesting to add a solution folder in the project with some examples as well as we have in fbchat, such as EchoBot.

FB_User.color always returns null

FB_User.color always returns null and I think it should be ThreadColor not Stringand if it should be a String then it must returns the color hex code

Question

Hello please its will be possible to make simple project for you quick guide to your repository?
Thanks in advance for your answer

onMessage problem

Hello please i have problem with onMessage event.
This event stop working after few hours without any error i think its stop listening. and i dont know how to print debug messages :( to console and better to file

Does this library continue to function?

Hey!

Does this library continue to function?

I can't log in, but email and password are correct.
I have done all as you, also checked your examples and they also don't work.
I installed Gave.Libs.Fbchat.

Use Visual Studio 2017.

Null reference exception (fix proposed)

I tested library, found Null reference exception in company chats (quick replies) - see file Message.cs, line 281:

var quick_replies = JToken.Parse(data.get("platform_xmd_encoded")?.Value<string>()).get("quick_replies");
if (quick_replies.Type == JTokenType.Array)
    rtn.quick_replies = quick_replies.Select((q) => FB_QuickReply.graphql_to_quick_reply(q)).ToList();
else
    rtn.quick_replies = new List<FB_QuickReply>() { FB_QuickReply.graphql_to_quick_reply(quick_replies) };

In two company chats I received quick_replies == null.
Propose small fix:

                var quick_replies = JToken.Parse(data.get("platform_xmd_encoded")?.Value<string>()).get("quick_replies");
                if (quick_replies != null)
                {
                    if (quick_replies.Type == JTokenType.Array)
                        rtn.quick_replies = quick_replies.Select((q) => FB_QuickReply.graphql_to_quick_reply(q)).ToList();
                    else
                        rtn.quick_replies = new List<FB_QuickReply>() { FB_QuickReply.graphql_to_quick_reply(quick_replies) };
                }

Account become untrusted really fast

This error message happend from Facebook.

"We want to make sure your account is secure
We have recently noticed an unusual activity on your account. We have disconnected you for your safety and that of other users.
To re-access your account, we will guide you through a few steps."

I read it might be cause of creating too much session, so I used this code:

        `bool islogged = false;
        ConstVars.client = new FBClient_Cookies();
        var client = new FBClient_Cookies();
        islogged =  await ConstVars.client.TryLogin();
        if (islogged)
        {
            Console.WriteLine("got last session.");
        }
        else
        {
            Console.WriteLine("new session.");
            await ConstVars.client.doLogin("mail", "pass", 1);
        }
        await ConstVars.client.WriteCookiesAsync();`

It always returns "new session".
Any idea about how to process ?

Login issue

I cant login. Session is null. Is there something i dont understand?

Regards kimmo

Many errors

I've got an error with
Something happened: fbchat_sharp.API.FB_LoggingIn
Error logging in
It loads up the interface then the whole thing froze and thats it.
Also
fbchat_sharp.API.FBchatPleaseRefresh: 'Error #1357004
This exception was originally thrown at this call stack:
fbchat_sharp.API.Session._post(string, System.Collections.Generic.Dictionary<string, object>, System.Collections.Generic.Dictionary<string, fbchat_sharp.API.FB_File>, bool, System.Threading.CancellationToken, bool) in Session.cs
[External Code]
fbchat_sharp.API.Session._post(string, System.Collections.Generic.Dictionary<string, object>, System.Collections.Generic.Dictionary<string, fbchat_sharp.API.FB_File>, bool, System.Threading.CancellationToken, bool) in Session.cs
[External Code]
fbchat_sharp.API.Session.graphql_requests(System.Collections.Generic.List<fbchat_sharp.API.GraphQL>) in Session.cs
[External Code]
fbchat_sharp.API.Client.fetchThreadInfo(System.Collections.Generic.List) in Client.cs
[External Code]
fbchat_sharp.API.Client.fetchProfile() in Client.cs
[External Code]
s1
s2

Cannot log in

I have problems doing login. I do type the correct username/password, but still login is not succesful - boolean from DoLogin is false and no details seem available?
I have an old NodeJS application using facebook-chat-api and with this I can login.

I'm using this under dotnet core (2.1).

Any ideas?

Facebook lock account

Whenever I try to write a chat message facebook locks my account and forces me to change my password. With this great app my code is simple:

MessengerClient client = new FBClient_Simple();
var result = client.DoLogin(Email, Password).Result;
var group = client.searchForGroups(Group).Result;
var msg_uid = client.SendMessage(Message, group[0].uid, ThreadType.GROUP).Result;
r = client.DoLogout().Result;

Does anyone else have this problem? Is there a workaround?

onMessage not working

Hello i using this app for logging my messages but now not working onMessage on netcore logging is without problem but onmessage not works :(

Any way to login as Page?

Is there any way to retrieve data for a page (threads, messages, etc)?
I was looking for any options on the doLogin method to input the page ID but couldn't found anything.😊Thanks

By the way, amazing library, it's just very hard to find, once this becomes more visible in google im sure it will be huge.

Question

Hello please its will be possible to capture pictures,videos and voice messages i nean attachmebts and automaticaly download to pc? if yes how many thanks in advance for your answer sinceresly K4r3l01

[QUESTION] How to sendLocalFiles?

Stream stream = new MemoryStream(File.ReadAllBytes(@attachment));
var dct = new Dictionary<string, Stream>();
dct.Add(attachment, stream); 
msg_uid = await client.sendLocalFiles(dct, message, user, ThreadType.USER);

Is wrong, because throws errors.

fbchat_sharp.API.FBchatException
Error: Message: Some files could not be uploaded: {
  "uploadID": null,
  "metadata": []
}

Wrong graphql response splitting.

When "= {" is in a FBThread message, the library will throw an exception:

Unterminated string. Expected delimiter: ". Path 'q0.data.message_thread.messages.nodes[97].message.text', line 1, position 67415. at Newtonsoft.Json.JsonTextReader.ReadStringIntoBuffer(Char quote) FacebookDataAnalyzer> at Newtonsoft.Json.JsonTextReader.ParseValue() FacebookDataAnalyzer> at Newtonsoft.Json.JsonTextReader.Read() FacebookDataAnalyzer> at Newtonsoft.Json.Linq.JContainer.ReadContentFrom(JsonReader r, JsonLoadSettings settings) FacebookDataAnalyzer> at Newtonsoft.Json.Linq.JContainer.ReadTokenFrom(JsonReader reader, JsonLoadSettings options) FacebookDataAnalyzer> at Newtonsoft.Json.Linq.JObject.Load(JsonReader reader, JsonLoadSettings settings) FacebookDataAnalyzer> at Newtonsoft.Json.Linq.JToken.ReadFrom(JsonReader reader, JsonLoadSettings settings) FacebookDataAnalyzer> at Newtonsoft.Json.Linq.JToken.Parse(String json, JsonLoadSettings settings) FacebookDataAnalyzer> at Newtonsoft.Json.Linq.JToken.Parse(String json) FacebookDataAnalyzer> at fbchat_sharp.API.GraphQL_JSON_Decoder.graphql_response_to_json(String content) in D:\Projects\fbchat-sharp\fbchat-sharp\API\GraphQl.cs:line 313 FacebookDataAnalyzer> at fbchat_sharp.API.Client._graphql(Dictionary2 payload, Int32 error_retries) in D:\Projects\fbchat-sharp\fbchat-sharp\API\Client.cs:line 273
FacebookDataAnalyzer> at fbchat_sharp.API.Client.graphql_requests(List1 queries) in D:\Projects\fbchat-sharp\fbchat-sharp\API\Client.cs:line 376 FacebookDataAnalyzer> at fbchat_sharp.API.Client.graphql_request(GraphQL query) in D:\Projects\fbchat-sharp\fbchat-sharp\API\Client.cs:line 387 FacebookDataAnalyzer> at fbchat_sharp.API.Client.fetchThreadMessages(String thread_id, Int32 limit, String before) in D:\Projects\fbchat-sharp\fbchat-sharp\API\Client.cs:line 1215

I've checked it numerous times, and pinpointed issue to this line line 309 - GraphQl.cs:
var json_array = content.Split(new[] { "\n{", " {" }, StringSplitOptions.RemoveEmptyEntries).Select(s => s.StartsWith("{") ? s : "{" + s);

Building for UWP Windows Store = Error

Hello everyone. I have another error I hope you can help to fix. When building this app for UWP I get a certification error. Im building only for x64 in release mode. Here is the error.

Binary analyzer
Error Found: The binary analyzer test detected the following errors:
File clrjit.dll has failed the AppContainerCheck check.
Impact if not fixed: If the app doesn’t use the available Windows protections, it can increase the vulnerability of the customer's computer to malware.
How to fix: Apply the required linker options - SAFESEH, DYNAMICBASE, NXCOMPAT, and APPCONTAINER - when you link the app. See links below for more information:

This is when I build in release mode and run the certification program. App works fine when I deploy in debug and release on my pc. But when I run the certification on the release package of this app it fails. Also keep in mind that I did not add any nuget packages or other librarys. This is strikly only the the code from this github. Thanks.

Verbosity Setting

I have been trying to login serveral times however I get nothing apart from a simple false boolean. Is there any way to debug why the login is failing? I have tried to use the example project as well but it also fails to login. I have checked email and password multiple times.
Regards

DoLogin() always returns false in UWP

DoLogin() always returns false in UWP but it works in WinForms I'm using version 0.2.9

Update: I tried to build fbchat with newer dependencies (but AngleSharp is still at 0.9.11) and I got the this in console when I'm trying to login

Exception thrown: 'fbchat_sharp.API.FBchatException' in fbchat.UWP.dll Exception thrown: 'fbchat_sharp.API.FBchatException' in System.Private.CoreLib.ni.dll fbchat_sharp.API.FBchatException: Login from session failed. at fbchat_sharp.API.Client.<fromSession>d__22.MoveNext() --- End of stack trace from previous location where exception was thrown --- at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task) at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) at System.Runtime.CompilerServices.TaskAwaiter.GetResult() at fbchat_sharp.API.MessengerClient.<TryLogin>d__0.MoveNext(): TryLogin Logging in [email protected]... Exception thrown: 'System.NullReferenceException' in fbchat.UWP.dll Attempt #1 failed, retrying Exception thrown: 'System.NullReferenceException' in fbchat.UWP.dll Attempt #2 failed, retrying Exception thrown: 'System.NullReferenceException' in fbchat.UWP.dll Attempt #3 failed, retrying Exception thrown: 'System.NullReferenceException' in fbchat.UWP.dll Attempt #4 failed, retrying Exception thrown: 'System.NullReferenceException' in fbchat.UWP.dll Exception thrown: 'System.NullReferenceException' in fbchat.UWP.dll Exception thrown: 'System.NullReferenceException' in System.Private.CoreLib.ni.dll System.NullReferenceException: Object reference not set to an instance of an object. at fbchat_sharp.API.Client.<login>d__33.MoveNext() --- End of stack trace from previous location where exception was thrown --- at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task) at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) at System.Runtime.CompilerServices.TaskAwaiter.GetResult() at fbchat_sharp.API.MessengerClient.<DoLogin>d__1.MoveNext(): DoLogin

Capture2

Execution of this query is blocked.

Recently sendText to any group started returning an error (sending to user is fine) - not sure what this means:

{{
"code": 1675036,
"api_error_code": 33,
"summary": "GraphQL Query Blocked",
"description": "Execution of this query is blocked.",
"is_silent": true,
"is_transient": false,
"requires_reauth": false,
"allow_user_retry": false,
"debug_info": null,
"query_path": null,
"fbtrace_id": "GjMx19I5E7z",
"www_request_id": "AWwSM9Fr8cNEnKY6PTPjkLL",
"sentry_block_user_info": null,
"help_center_id": null
}}

FetchThreadList() returns null

I was following the examples, but I receive the following exception:

System.ArgumentNullException
HResult=0x80004003
Message=Value cannot be null.
Source=System.Private.CoreLib
StackTrace:
at System.String.Replace(String oldValue, String newValue)
at fbchat_sharp.API.GraphQL_JSON_Decoder.graphql_to_thread(JToken thread)
at fbchat_sharp.API.Client.<>c.b__62_0(JToken node)
at System.Linq.Enumerable.WhereSelectEnumerableIterator2.MoveNext() at System.Collections.Generic.List1..ctor(IEnumerable1 collection) at System.Linq.Enumerable.ToList[TSource](IEnumerable1 source)
at fbchat_sharp.API.Client.d__62.MoveNext()
at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
at System.Runtime.CompilerServices.TaskAwaiter`1.GetResult()

Any idea why this is happening?

Error StartListening with .Net Standard 4.7

The included example works perfectly, but when I try to implement it in my project, an error is triggered "The header 'Referer' must be modified with the appropriate property or method".

The error is occurring at line 3363 of the Client.cs file
Error1

The exception is fired at the caller.
Error2

This error is really expected, as some Headers cannot be specified, as documented in HttpWebRequest.Headers.
But I did not find in MQTTnet.Client a way to specify the Referer directly in a property, in this way, I believe that the error is not in your code, but in MQTTnet.

The solution found was to add remark in 3 lines of code, as below and everything works fine.
Error3

I don't know why it works well with Net Core, because I didn't evaluate the MQTTnet code, but I believe it is a good idea to report the error to them and request a parse in the header properties and add the restricted headers in their corresponding properties.

Thank you very much and great work.

Unable to Login Client.DoLogin always returns false

Facebook provides me a notification on attempt to login:
We noticed an unusual login from a device or location you don't usually use. Was this you?
I can select yes and also ask it to remember the browser but next login attempts also fail.
I have confirmed the username and password by typing it in manually again to login to facebook.
DoLogin returns false no matter the situation.

       // Instantiate FBClient
        FBClient client = new FBClient();
      
       // Login with username and password
       var logged_in = await client.DoLogin("username", "password");

Possibility to send 2FA code when available

Hi there and, firstly, thanks for the work done on this library!
I've had enough of Android and Facebook's bloated engineering so I started working on a lean UWP client for my Lumia 630 phone. Eventually I plan on porting all I need to return to WP10 and its lack of spam or bloat.

Your library exposes a On2FACode callback, which is great, unfortunately, I can't for the life of me figure out a way to ask for user input, wait for user input and read the user's input from a textbox within the same callback.

Now, the quickest, most miserable solution that came to me was polling - and, as expected, this broke the app (serves me right haha). I could set the client as a Singleton and spin the On2FACode callback in a parallel thread then put it to sleep and wake it again when the user finishes typing its 2FA code. I'll probably do just that.

Alternatively, if you could kindly consider exposing in the API something like a MessengerClient.Send2FACode(string input) method, that would be amazing!

Thanks for your time and keep on the awesome work!

Exception when use markAsRead();

When i use client.markAsRead(threadIds) i got exception "Error #1357031 when sending request: The content you requested cannot be displayed at the moment. It may be temporarily unavailable, the link you clicked on may have expired or you may not have permission to view this page."

Error in fetchThreadList

I get this error = Unknown thread type: MARKETPLACE. I can see from your source code that there is no marketplace. Maybe Im doing something wrong? Im on Windows 10 UWP. Thanks.

Multiples connected accounts at same time

I need to run multiple instances, receive and send messages on all of them at the same time.
I am able to easily send messages through the correct account, but when receiving messages, two things happen:

  1. The "onMessage" event is triggered once for each account logged in, for example, if I have an account logged in, the event is triggered once. If I have 3 accounts, the same message triggers the event 3 times, each time with the same message.
  2. I cannot identify the account that received the message. In all parameters of the event "onMessage", only the data of the sender is informed and at no time the recipient.

I tried in three ways and always with the same result:

  • Instantiating a class multiple times:
    myClass runInctance1 = new myClass();
    myClass1.Login();
    myClass runInctance2 = new myClass();
    myClass2.Login();

  • With Thread:
    Thread runInstance = new Thread (new ThreadStart (myClass.Login));
    runningInstance.Start ();

-With ThreadPool:
ThreadPool.QueueUserWorkItem (myClass.Login);

I believe I am doing something wrong, as I am not an expert in C# and your routine is very well done and working very well.
One more thing. I'm creating a .Net Standard 4.7 library (DLL) and haven't tested it with Core or any other way.

Thanks in advance.

Unable to sign in with phonenumber

Hi
I’m having trouble logging in to my messenger account that uses phone number instead of e-mail address as user. I only have messenger but no facebook account. If I use my dogs facebook account with e-mail it works great.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.